Nav2 Navigation Stack - lyrical  lyrical
ROS 2 Navigation Stack
costmap_2d_publisher.cpp
1 /*********************************************************************
2  *
3  * Software License Agreement (BSD License)
4  *
5  * Copyright (c) 2008, 2013, Willow Garage, Inc.
6  * Copyright (c) 2019, Samsung Research America, Inc.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * * Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  * * Redistributions in binary form must reproduce the above
16  * copyright notice, this list of conditions and the following
17  * disclaimer in the documentation and/or other materials provided
18  * with the distribution.
19  * * Neither the name of Willow Garage, Inc. nor the names of its
20  * contributors may be used to endorse or promote products derived
21  * from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  *
36  * Author: Eitan Marder-Eppstein
37  * David V. Lu!!
38  *********************************************************************/
39 #include "nav2_costmap_2d/costmap_2d_publisher.hpp"
40 #include "nav2_costmap_2d/costmap_layer.hpp"
41 
42 #include <string>
43 #include <memory>
44 #include <utility>
45 
46 #include "nav2_costmap_2d/cost_values.hpp"
47 
48 namespace nav2_costmap_2d
49 {
50 
51 char * Costmap2DPublisher::cost_translation_table_ = NULL;
52 
54  const nav2::LifecycleNode::WeakPtr & parent,
55  Costmap2D * costmap,
56  std::string global_frame,
57  std::string topic_name,
58  bool always_send_full_costmap,
59  double map_vis_z)
60 : costmap_(costmap),
61  global_frame_(global_frame),
62  topic_name_(topic_name),
63  always_send_full_costmap_(always_send_full_costmap),
64  map_vis_z_(map_vis_z)
65 {
66  auto node = parent.lock();
67  clock_ = node->get_clock();
68  logger_ = node->get_logger();
69 
70  // TODO(bpwilcox): port onNewSubscription functionality for publisher
71  costmap_pub_ = node->create_publisher<nav_msgs::msg::OccupancyGrid>(
72  topic_name,
74  costmap_raw_pub_ = node->create_publisher<nav2_msgs::msg::Costmap>(
75  topic_name + "_raw",
77  costmap_update_pub_ = node->create_publisher<map_msgs::msg::OccupancyGridUpdate>(
78  topic_name + "_updates", nav2::qos::LatchedPublisherQoS());
79  costmap_raw_update_pub_ = node->create_publisher<nav2_msgs::msg::CostmapUpdate>(
80  topic_name + "_raw_updates", nav2::qos::LatchedPublisherQoS());
81 
82  // Create a service that will use the callback function to handle requests.
83  costmap_service_ = node->create_service<nav2_msgs::srv::GetCostmap>(
84  std::string("get_") + topic_name,
85  std::bind(
86  &Costmap2DPublisher::costmap_service_callback, this,
87  std::placeholders::_1, std::placeholders::_2, std::placeholders::_3));
88 
89  if (cost_translation_table_ == NULL) {
90  cost_translation_table_ = new char[256];
91 
92  // special values:
93  cost_translation_table_[0] = 0; // NO obstacle
94  cost_translation_table_[253] = 99; // INSCRIBED obstacle
95  cost_translation_table_[254] = 100; // LETHAL obstacle
96  cost_translation_table_[255] = -1; // UNKNOWN
97 
98  // regular cost values scale the range 1 to 252 (inclusive) to fit
99  // into 1 to 98 (inclusive).
100  for (int i = 1; i < 253; i++) {
101  cost_translation_table_[i] = static_cast<char>(1 + (97 * (i - 1)) / 251);
102  }
103  }
104 
105  xn_ = yn_ = 0;
106  x0_ = costmap_->getSizeInCellsX();
107  y0_ = costmap_->getSizeInCellsY();
108 }
109 
111 
112 // TODO(bpwilcox): find equivalent/workaround to ros::SingleSubscriberPublisher
113 /*
114 void Costmap2DPublisher::onNewSubscription(const ros::SingleSubscriberPublisher& pub)
115 {
116  prepareGrid();
117  pub.publish(grid_);
118 } */
119 
120 
121 void Costmap2DPublisher::updateGridParams()
122 {
123  saved_origin_x_ = costmap_->getOriginX();
124  saved_origin_y_ = costmap_->getOriginY();
125  grid_resolution_ = costmap_->getResolution();
126  grid_width_ = costmap_->getSizeInCellsX();
127  grid_height_ = costmap_->getSizeInCellsY();
128 }
129 
130 // prepare grid_ message for publication.
131 void Costmap2DPublisher::prepareGrid()
132 {
133  std::unique_lock<Costmap2D::mutex_t> lock(*(costmap_->getMutex()));
134 
135  grid_ = std::make_unique<nav_msgs::msg::OccupancyGrid>();
136 
137  grid_->header.frame_id = global_frame_;
138  grid_->header.stamp = clock_->now();
139 
140  grid_->info.resolution = grid_resolution_;
141 
142  grid_->info.width = grid_width_;
143  grid_->info.height = grid_height_;
144 
145  double wx, wy;
146  costmap_->mapToWorld(0, 0, wx, wy);
147  grid_->info.origin.position.x = wx - grid_resolution_ / 2;
148  grid_->info.origin.position.y = wy - grid_resolution_ / 2;
149  grid_->info.origin.position.z = map_vis_z_;
150  grid_->info.origin.orientation.w = 1.0;
151 
152  grid_->data.resize(grid_->info.width * grid_->info.height);
153 
154  unsigned char * data = costmap_->getCharMap();
155  std::transform(
156  data, data + grid_->data.size(), grid_->data.begin(),
157  [](unsigned char c) {return cost_translation_table_[c];});
158 }
159 
160 void Costmap2DPublisher::prepareCostmap()
161 {
162  std::unique_lock<Costmap2D::mutex_t> lock(*(costmap_->getMutex()));
163  double resolution = costmap_->getResolution();
164 
165  costmap_raw_ = std::make_unique<nav2_msgs::msg::Costmap>();
166 
167  costmap_raw_->header.frame_id = global_frame_;
168  costmap_raw_->header.stamp = clock_->now();
169 
170  costmap_raw_->metadata.layer = "master";
171  costmap_raw_->metadata.resolution = resolution;
172 
173  costmap_raw_->metadata.size_x = costmap_->getSizeInCellsX();
174  costmap_raw_->metadata.size_y = costmap_->getSizeInCellsY();
175 
176  double wx, wy;
177  costmap_->mapToWorld(0, 0, wx, wy);
178  costmap_raw_->metadata.origin.position.x = wx - resolution / 2;
179  costmap_raw_->metadata.origin.position.y = wy - resolution / 2;
180  costmap_raw_->metadata.origin.position.z = 0.0;
181  costmap_raw_->metadata.origin.orientation.w = 1.0;
182 
183  costmap_raw_->data.resize(costmap_raw_->metadata.size_x * costmap_raw_->metadata.size_y);
184 
185  unsigned char * data = costmap_->getCharMap();
186  memcpy(costmap_raw_->data.data(), data, costmap_raw_->data.size());
187 }
188 
189 std::unique_ptr<map_msgs::msg::OccupancyGridUpdate> Costmap2DPublisher::createGridUpdateMsg()
190 {
191  auto update = std::make_unique<map_msgs::msg::OccupancyGridUpdate>();
192 
193  update->header.stamp = clock_->now();
194  update->header.frame_id = global_frame_;
195  update->x = x0_;
196  update->y = y0_;
197  update->width = xn_ - x0_;
198  update->height = yn_ - y0_;
199  update->data.resize(update->width * update->height);
200  const std::uint32_t map_width = costmap_->getSizeInCellsX();
201  unsigned char * costmap_data = costmap_->getCharMap();
202  std::uint32_t i = 0;
203  for (std::uint32_t y = y0_; y < yn_; y++) {
204  std::uint32_t row_start = y * map_width + x0_;
205  std::transform(
206  costmap_data + row_start, costmap_data + row_start + update->width,
207  update->data.begin() + i,
208  [](unsigned char c) {return cost_translation_table_[c];});
209  i += update->width;
210  }
211  return update;
212 }
213 
214 std::unique_ptr<nav2_msgs::msg::CostmapUpdate> Costmap2DPublisher::createCostmapUpdateMsg()
215 {
216  auto msg = std::make_unique<nav2_msgs::msg::CostmapUpdate>();
217 
218  msg->header.stamp = clock_->now();
219  msg->header.frame_id = global_frame_;
220  msg->x = x0_;
221  msg->y = y0_;
222  msg->size_x = xn_ - x0_;
223  msg->size_y = yn_ - y0_;
224  msg->data.resize(msg->size_x * msg->size_y);
225  const std::uint32_t map_width = costmap_->getSizeInCellsX();
226  unsigned char * costmap_data = costmap_->getCharMap();
227 
228  std::uint32_t i = 0;
229  for (std::uint32_t y = y0_; y < yn_; y++) {
230  std::uint32_t row_start = y * map_width + x0_;
231  std::copy_n(costmap_data + row_start, msg->size_x, msg->data.begin() + i);
232  i += msg->size_x;
233  }
234  return msg;
235 }
236 
238 {
239  auto const costmap_layer = dynamic_cast<CostmapLayer *>(costmap_);
240  if (costmap_layer != nullptr && !costmap_layer->isEnabled()) {
241  return;
242  }
243 
244  float resolution = costmap_->getResolution();
245  if (always_send_full_costmap_ || grid_resolution_ != resolution ||
246  grid_width_ != costmap_->getSizeInCellsX() ||
247  grid_height_ != costmap_->getSizeInCellsY() ||
248  saved_origin_x_ != costmap_->getOriginX() ||
249  saved_origin_y_ != costmap_->getOriginY())
250  {
251  updateGridParams();
252  if (costmap_pub_->get_subscription_count() > 0) {
253  prepareGrid();
254  costmap_pub_->publish(std::move(grid_));
255  }
256  if (costmap_raw_pub_->get_subscription_count() > 0) {
257  prepareCostmap();
258  costmap_raw_pub_->publish(std::move(costmap_raw_));
259  }
260  } else if (x0_ < xn_) {
261  // Publish just update msgs
262  std::unique_lock<Costmap2D::mutex_t> lock(*(costmap_->getMutex()));
263  if (costmap_update_pub_->get_subscription_count() > 0) {
264  costmap_update_pub_->publish(createGridUpdateMsg());
265  }
266  if (costmap_raw_update_pub_->get_subscription_count() > 0) {
267  costmap_raw_update_pub_->publish(createCostmapUpdateMsg());
268  }
269  }
270 
271  xn_ = yn_ = 0;
272  x0_ = costmap_->getSizeInCellsX();
273  y0_ = costmap_->getSizeInCellsY();
274 }
275 
276 void
277 Costmap2DPublisher::costmap_service_callback(
278  const std::shared_ptr<rmw_request_id_t>/*request_header*/,
279  const std::shared_ptr<nav2_msgs::srv::GetCostmap::Request>/*request*/,
280  const std::shared_ptr<nav2_msgs::srv::GetCostmap::Response> response)
281 {
282  RCLCPP_DEBUG(logger_, "Received costmap service request");
283 
284  // TODO(bpwilcox): Grab correct orientation information
285  tf2::Quaternion quaternion;
286  quaternion.setRPY(0.0, 0.0, 0.0);
287 
288  auto size_x = costmap_->getSizeInCellsX();
289  auto size_y = costmap_->getSizeInCellsY();
290  auto data_length = size_x * size_y;
291  unsigned char * data = costmap_->getCharMap();
292  auto current_time = clock_->now();
293 
294  response->map.header.stamp = current_time;
295  response->map.header.frame_id = global_frame_;
296  response->map.metadata.size_x = size_x;
297  response->map.metadata.size_y = size_y;
298  response->map.metadata.resolution = costmap_->getResolution();
299  response->map.metadata.layer = "master";
300  response->map.metadata.map_load_time = current_time;
301  response->map.metadata.update_time = current_time;
302  response->map.metadata.origin.position.x = costmap_->getOriginX();
303  response->map.metadata.origin.position.y = costmap_->getOriginY();
304  response->map.metadata.origin.position.z = 0.0;
305  response->map.metadata.origin.orientation = tf2::toMsg(quaternion);
306  response->map.data.resize(data_length);
307  response->map.data.assign(data, data + data_length);
308 }
309 
310 } // end namespace nav2_costmap_2d
A QoS profile for latched, reliable topics with a history of 1 messages.
Costmap2DPublisher(const nav2::LifecycleNode::WeakPtr &parent, Costmap2D *costmap, std::string global_frame, std::string topic_name, bool always_send_full_costmap=false, double map_vis_z=0.0)
Constructor for the Costmap2DPublisher.
void publishCostmap()
Publishes the visualization data over ROS.
A 2D costmap provides a mapping between points in the world and their associated "costs".
Definition: costmap_2d.hpp:69
void mapToWorld(unsigned int mx, unsigned int my, double &wx, double &wy) const
Convert from map coordinates to world coordinates.
Definition: costmap_2d.cpp:280
unsigned char * getCharMap() const
Will return a pointer to the underlying unsigned char array used as the costmap.
Definition: costmap_2d.cpp:260
double getResolution() const
Accessor for the resolution of the costmap.
Definition: costmap_2d.cpp:578
unsigned int getSizeInCellsX() const
Accessor for the x size of the costmap in cells.
Definition: costmap_2d.cpp:548
double getOriginY() const
Accessor for the y origin of the costmap.
Definition: costmap_2d.cpp:573
unsigned int getSizeInCellsY() const
Accessor for the y size of the costmap in cells.
Definition: costmap_2d.cpp:553
double getOriginX() const
Accessor for the x origin of the costmap.
Definition: costmap_2d.cpp:568
A costmap layer base class for costmap plugin layers. Rather than just a layer, this object also cont...