occupancy_map_updater.h
Go to the documentation of this file.
00001 /*********************************************************************
00002  * Software License Agreement (BSD License)
00003  *
00004  *  Copyright (c) 2011, Willow Garage, Inc.
00005  *  All rights reserved.
00006  *
00007  *  Redistribution and use in source and binary forms, with or without
00008  *  modification, are permitted provided that the following conditions
00009  *  are met:
00010  *
00011  *   * Redistributions of source code must retain the above copyright
00012  *     notice, this list of conditions and the following disclaimer.
00013  *   * Redistributions in binary form must reproduce the above
00014  *     copyright notice, this list of conditions and the following
00015  *     disclaimer in the documentation and/or other materials provided
00016  *     with the distribution.
00017  *   * Neither the name of Willow Garage nor the names of its
00018  *     contributors may be used to endorse or promote products derived
00019  *     from this software without specific prior written permission.
00020  *
00021  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00022  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00023  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00024  *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00025  *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00026  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00027  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00028  *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00029  *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00030  *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00031  *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00032  *  POSSIBILITY OF SUCH DAMAGE.
00033  *********************************************************************/
00034 
00035 /* Author: Ioan Sucan, Jon Binney */
00036 
00037 #ifndef MOVEIT_OCCUPANCY_MAP_MONITOR_OCCUPANCY_MAP_UPDATER_
00038 #define MOVEIT_OCCUPANCY_MAP_MONITOR_OCCUPANCY_MAP_UPDATER_
00039 
00040 #include <moveit/macros/class_forward.h>
00041 #include <moveit/occupancy_map_monitor/occupancy_map.h>
00042 #include <geometric_shapes/shapes.h>
00043 #include <boost/shared_ptr.hpp>
00044 #include <Eigen/Core>
00045 #include <Eigen/Geometry>
00046 
00047 namespace occupancy_map_monitor
00048 {
00049 typedef unsigned int ShapeHandle;
00050 typedef std::map<ShapeHandle, Eigen::Affine3d, std::less<ShapeHandle>,
00051                  Eigen::aligned_allocator<std::pair<const ShapeHandle, Eigen::Affine3d> > >
00052     ShapeTransformCache;
00053 typedef boost::function<bool(const std::string& target_frame, const ros::Time& target_time, ShapeTransformCache& cache)>
00054     TransformCacheProvider;
00055 
00056 class OccupancyMapMonitor;
00057 
00058 MOVEIT_CLASS_FORWARD(OccupancyMapUpdater);
00059 
00062 class OccupancyMapUpdater
00063 {
00064 public:
00065   OccupancyMapUpdater(const std::string& type);
00066   virtual ~OccupancyMapUpdater();
00067 
00069   void setMonitor(OccupancyMapMonitor* monitor);
00070 
00073   virtual bool setParams(XmlRpc::XmlRpcValue& params) = 0;
00074 
00077   virtual bool initialize() = 0;
00078 
00079   virtual void start() = 0;
00080 
00081   virtual void stop() = 0;
00082 
00083   virtual ShapeHandle excludeShape(const shapes::ShapeConstPtr& shape) = 0;
00084 
00085   virtual void forgetShape(ShapeHandle handle) = 0;
00086 
00087   const std::string& getType() const
00088   {
00089     return type_;
00090   }
00091 
00092   void setTransformCacheCallback(const TransformCacheProvider& transform_callback)
00093   {
00094     transform_provider_callback_ = transform_callback;
00095   }
00096 
00097   void publishDebugInformation(bool flag)
00098   {
00099     debug_info_ = flag;
00100   }
00101 
00102 protected:
00103   OccupancyMapMonitor* monitor_;
00104   std::string type_;
00105   OccMapTreePtr tree_;
00106   TransformCacheProvider transform_provider_callback_;
00107   ShapeTransformCache transform_cache_;
00108   bool debug_info_;
00109 
00110   bool updateTransformCache(const std::string& target_frame, const ros::Time& target_time);
00111 
00112   static void readXmlParam(XmlRpc::XmlRpcValue& params, const std::string& param_name, double* value);
00113   static void readXmlParam(XmlRpc::XmlRpcValue& params, const std::string& param_name, unsigned int* value);
00114 };
00115 }
00116 
00117 #endif


perception
Author(s): Ioan Sucan , Jon Binney , Suat Gedikli
autogenerated on Mon Jul 24 2017 02:21:13