occupancy_map_updater.cpp
Go to the documentation of this file.
1 /*********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2011, Willow Garage, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * * Neither the name of Willow Garage nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *********************************************************************/
34 
35 /* Author: Ioan Sucan, Jon Binney */
36 
39 
40 namespace occupancy_map_monitor
41 {
42 static const std::string LOGNAME = "occupancy_map_monitor";
43 
44 OccupancyMapUpdater::OccupancyMapUpdater(const std::string& type) : type_(type)
45 {
46 }
47 
48 OccupancyMapUpdater::~OccupancyMapUpdater() = default;
49 
50 void OccupancyMapUpdater::setMonitor(OccupancyMapMonitor* monitor)
51 {
52  monitor_ = monitor;
53  tree_ = monitor->getOcTreePtr();
54 }
55 
56 void OccupancyMapUpdater::readXmlParam(XmlRpc::XmlRpcValue& params, const std::string& param_name, double* value)
57 {
58  if (params.hasMember(param_name))
59  {
60  if (params[param_name].getType() == XmlRpc::XmlRpcValue::TypeInt)
61  *value = (int)params[param_name];
62  else
63  *value = (double)params[param_name];
64  }
65 }
66 
67 void OccupancyMapUpdater::readXmlParam(XmlRpc::XmlRpcValue& params, const std::string& param_name, unsigned int* value)
68 {
69  if (params.hasMember(param_name))
70  *value = (int)params[param_name];
71 }
72 
73 bool OccupancyMapUpdater::updateTransformCache(const std::string& target_frame, const ros::Time& target_time)
74 {
75  transform_cache_.clear();
76  if (transform_provider_callback_)
77  {
78  bool success = transform_provider_callback_(target_frame, target_time, transform_cache_);
79  if (!success)
81  1, LOGNAME,
82  "Transform cache was not updated. Self-filtering may fail. If transforms were not available yet, consider "
83  "setting robot_description_planning/shape_transform_cache_lookup_wait_time to wait longer for transforms");
84  return success;
85  }
86  else
87  {
88  ROS_WARN_THROTTLE_NAMED(1, LOGNAME, "No callback provided for updating the transform cache for octomap updaters");
89  return false;
90  }
91 }
92 } // namespace occupancy_map_monitor
occupancy_map_monitor::OccupancyMapUpdater::OccupancyMapUpdater
OccupancyMapUpdater(const std::string &type)
Definition: occupancy_map_updater.cpp:76
ROS_ERROR_THROTTLE_NAMED
#define ROS_ERROR_THROTTLE_NAMED(period, name,...)
occupancy_map_monitor.h
XmlRpc::XmlRpcValue::TypeInt
TypeInt
ROS_WARN_THROTTLE_NAMED
#define ROS_WARN_THROTTLE_NAMED(period, name,...)
XmlRpc::XmlRpcValue::hasMember
bool hasMember(const std::string &name) const
occupancy_map_updater.h
ros::Time
occupancy_map_monitor::LOGNAME
static const std::string LOGNAME
Definition: occupancy_map_monitor.cpp:78
occupancy_map_monitor
Definition: occupancy_map_monitor.h:54
XmlRpc::XmlRpcValue


occupancy_map_monitor
Author(s): Ioan Sucan , Jon Binney , Suat Gedikli
autogenerated on Thu Apr 18 2024 02:24:14