lazy_free_space_updater.h
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 */
36 
37 #pragma once
38 
40 #include <boost/thread.hpp>
41 #include <deque>
42 #include <unordered_map>
43 
44 namespace occupancy_map_monitor
45 {
46 class LazyFreeSpaceUpdater
47 {
48 public:
49  LazyFreeSpaceUpdater(const collision_detection::OccMapTreePtr& tree, unsigned int max_batch_size = 10);
51 
52  void pushLazyUpdate(octomap::KeySet* occupied_cells, octomap::KeySet* model_cells,
53  const octomap::point3d& sensor_origin);
54 
55 private:
56 #ifdef __APPLE__
57  typedef std::unordered_map<octomap::OcTreeKey, unsigned int, octomap::OcTreeKey::KeyHash> OcTreeKeyCountMap;
58 #elif __cplusplus >= 201103L
59  typedef std::unordered_map<octomap::OcTreeKey, unsigned int, octomap::OcTreeKey::KeyHash> OcTreeKeyCountMap;
60 #else
61  typedef std::tr1::unordered_map<octomap::OcTreeKey, unsigned int, octomap::OcTreeKey::KeyHash> OcTreeKeyCountMap;
62 #endif
63 
64  void pushBatchToProcess(OcTreeKeyCountMap* occupied_cells, octomap::KeySet* model_cells,
65  const octomap::point3d& sensor_origin);
66 
67  void lazyUpdateThread();
68  void processThread();
69 
71  bool running_;
72  std::size_t max_batch_size_;
73  double max_sensor_delta_;
74 
75  std::deque<octomap::KeySet*> occupied_cells_sets_;
76  std::deque<octomap::KeySet*> model_cells_sets_;
77  std::deque<octomap::point3d> sensor_origins_;
78  boost::condition_variable update_condition_;
79  boost::mutex update_cell_sets_lock_;
80 
84  boost::condition_variable process_condition_;
85  boost::mutex cell_process_lock_;
86 
87  boost::thread update_thread_;
88  boost::thread process_thread_;
89 };
90 } // namespace occupancy_map_monitor
occupancy_map_monitor::LazyFreeSpaceUpdater::OcTreeKeyCountMap
std::tr1::unordered_map< octomap::OcTreeKey, unsigned int, octomap::OcTreeKey::KeyHash > OcTreeKeyCountMap
Definition: lazy_free_space_updater.h:125
occupancy_map_monitor::LazyFreeSpaceUpdater::update_thread_
boost::thread update_thread_
Definition: lazy_free_space_updater.h:151
occupancy_map_monitor::LazyFreeSpaceUpdater::pushLazyUpdate
void pushLazyUpdate(octomap::KeySet *occupied_cells, octomap::KeySet *model_cells, const octomap::point3d &sensor_origin)
Definition: lazy_free_space_updater.cpp:103
occupancy_map_monitor::LazyFreeSpaceUpdater::lazyUpdateThread
void lazyUpdateThread()
Definition: lazy_free_space_updater.cpp:232
occupancy_map_monitor::LazyFreeSpaceUpdater::update_condition_
boost::condition_variable update_condition_
Definition: lazy_free_space_updater.h:142
occupancy_map_monitor::LazyFreeSpaceUpdater::cell_process_lock_
boost::mutex cell_process_lock_
Definition: lazy_free_space_updater.h:149
octomath::Vector3
occupancy_map_monitor::LazyFreeSpaceUpdater::~LazyFreeSpaceUpdater
~LazyFreeSpaceUpdater()
Definition: lazy_free_space_updater.cpp:88
occupancy_map_monitor::LazyFreeSpaceUpdater::process_model_cells_set_
octomap::KeySet * process_model_cells_set_
Definition: lazy_free_space_updater.h:146
occupancy_map_monitor::LazyFreeSpaceUpdater::process_sensor_origin_
octomap::point3d process_sensor_origin_
Definition: lazy_free_space_updater.h:147
occupancy_map_monitor::LazyFreeSpaceUpdater::update_cell_sets_lock_
boost::mutex update_cell_sets_lock_
Definition: lazy_free_space_updater.h:143
octomap::KeySet
unordered_ns::unordered_set< OcTreeKey, OcTreeKey::KeyHash > KeySet
occupancy_map_monitor::LazyFreeSpaceUpdater::pushBatchToProcess
void pushBatchToProcess(OcTreeKeyCountMap *occupied_cells, octomap::KeySet *model_cells, const octomap::point3d &sensor_origin)
Definition: lazy_free_space_updater.cpp:115
occupancy_map_monitor::LazyFreeSpaceUpdater::max_batch_size_
std::size_t max_batch_size_
Definition: lazy_free_space_updater.h:136
occupancy_map_monitor::LazyFreeSpaceUpdater::process_condition_
boost::condition_variable process_condition_
Definition: lazy_free_space_updater.h:148
occupancy_map_monitor::LazyFreeSpaceUpdater::running_
bool running_
Definition: lazy_free_space_updater.h:135
occupancy_map_monitor::LazyFreeSpaceUpdater::tree_
collision_detection::OccMapTreePtr tree_
Definition: lazy_free_space_updater.h:134
occupancy_map_monitor::LazyFreeSpaceUpdater::model_cells_sets_
std::deque< octomap::KeySet * > model_cells_sets_
Definition: lazy_free_space_updater.h:140
occupancy_map_monitor::LazyFreeSpaceUpdater::processThread
void processThread()
Definition: lazy_free_space_updater.cpp:137
occupancy_map_monitor::LazyFreeSpaceUpdater::process_thread_
boost::thread process_thread_
Definition: lazy_free_space_updater.h:152
occupancy_map_monitor::LazyFreeSpaceUpdater::occupied_cells_sets_
std::deque< octomap::KeySet * > occupied_cells_sets_
Definition: lazy_free_space_updater.h:139
occupancy_map_monitor::LazyFreeSpaceUpdater::sensor_origins_
std::deque< octomap::point3d > sensor_origins_
Definition: lazy_free_space_updater.h:141
occupancy_map_monitor
occupancy_map_monitor::LazyFreeSpaceUpdater::LazyFreeSpaceUpdater
LazyFreeSpaceUpdater(const collision_detection::OccMapTreePtr &tree, unsigned int max_batch_size=10)
Definition: lazy_free_space_updater.cpp:76
occupancy_map_monitor::LazyFreeSpaceUpdater::process_occupied_cells_set_
OcTreeKeyCountMap * process_occupied_cells_set_
Definition: lazy_free_space_updater.h:145
collision_detection::OccMapTreePtr
std::shared_ptr< OccMapTree > OccMapTreePtr
occupancy_map_monitor::LazyFreeSpaceUpdater::max_sensor_delta_
double max_sensor_delta_
Definition: lazy_free_space_updater.h:137
occupancy_map.h


perception
Author(s): Ioan Sucan , Jon Binney , Suat Gedikli
autogenerated on Fri Jun 21 2024 02:26:30