callback_queue.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 /*
3  * Software License Agreement (BSD License)
4  *
5  * Copyright (c) 2009, Willow Garage, Inc.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/or other materials provided
17  * with the distribution.
18  * * Neither the name of Willow Garage, Inc. nor the names of its
19  * contributors may be used to endorse or promote products derived
20  * from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  */
35 
36 #ifndef ROSCPP_CALLBACK_QUEUE_H
37 #define ROSCPP_CALLBACK_QUEUE_H
38 
39 #include "ros/callback_queue_interface.h"
40 #include "ros/time.h"
41 #include "common.h"
42 
43 #include <memory>
44 #include <mutex>
45 //#include <boost/thread/shared_mutex.hpp>
46 //#include <boost/thread/condition_variable.hpp>
47 //#include <boost/thread/tss.hpp>
48 
49 #include <list>
50 #include <deque>
51 
52 namespace roswrap
53 {
54 
59 {
60 public:
61  CallbackQueue(bool enabled = true);
62  virtual ~CallbackQueue();
63 
64  virtual void addCallback(const CallbackInterfacePtr& callback, uint64_t removal_id = 0);
65  virtual void removeByID(uint64_t removal_id);
66 
68  {
73  };
74 
80  {
81  return callOne(ros::WallDuration());
82  }
83 
92  CallOneResult callOne(ros::WallDuration timeout);
93 
98  {
99  callAvailable(ros::WallDuration());
100  }
108  void callAvailable(ros::WallDuration timeout);
109 
113  bool empty() { return isEmpty(); }
117  bool isEmpty();
121  void clear();
122 
126  void enable();
130  void disable();
134  bool isEnabled();
135 
136 protected:
137  void setupTLS();
138 
139  struct TLS;
140  CallOneResult callOneCB(TLS* tls);
141 
142  struct IDInfo
143  {
144  uint64_t id;
145  boost::shared_mutex calling_rw_mutex;
146  };
147  typedef std::shared_ptr<IDInfo> IDInfoPtr;
148  typedef std::map<uint64_t, IDInfoPtr> M_IDInfo;
149 
150  IDInfoPtr getIDInfo(uint64_t id);
151 
153  {
155  : removal_id(0)
156  , marked_for_removal(false)
157  {}
159  uint64_t removal_id;
161  };
162  typedef std::list<CallbackInfo> L_CallbackInfo;
163  typedef std::deque<CallbackInfo> D_CallbackInfo;
165  size_t calling_;
166  std::mutex mutex_;
167  std::condition_variable condition_;
168 
169  std::mutex id_info_mutex_;
171 
172  struct TLS
173  {
174  TLS()
175  : calling_in_this_thread(0xffffffffffffffffULL)
176  , cb_it(callbacks.end())
177  {}
180  D_CallbackInfo::iterator cb_it;
181  };
182  boost::thread_specific_ptr<TLS> tls_;
183 
184  bool enabled_;
185 };
186 typedef std::shared_ptr<CallbackQueue> CallbackQueuePtr;
187 
188 }
189 
190 #endif
roswrap::CallbackQueue::callAvailable
void callAvailable()
Invoke all callbacks currently in the queue. If a callback was not ready to be called,...
Definition: callback_queue.h:97
roswrap::CallbackQueue::calling_
size_t calling_
Definition: callback_queue.h:165
roswrap::CallbackQueue::callbacks_
D_CallbackInfo callbacks_
Definition: callback_queue.h:164
roswrap::CallbackQueue::callOne
CallOneResult callOne()
Pop a single callback off the front of the queue and invoke it. If the callback was not ready to be c...
Definition: callback_queue.h:79
roswrap::CallbackQueue::CallbackInfo
Definition: callback_queue.h:152
roswrap::CallbackQueue::TLS
Definition: callback_queue.h:172
roswrap::CallbackQueue::mutex_
std::mutex mutex_
Definition: callback_queue.h:166
roswrap::CallbackQueue::IDInfo::calling_rw_mutex
boost::shared_mutex calling_rw_mutex
Definition: callback_queue.h:145
roswrap::CallbackQueue::CallOneResult
CallOneResult
Definition: callback_queue.h:67
roswrap::CallbackQueue::TLS::calling_in_this_thread
uint64_t calling_in_this_thread
Definition: callback_queue.h:178
roswrap::CallbackQueue::CallbackInfo::marked_for_removal
bool marked_for_removal
Definition: callback_queue.h:160
roswrap::CallbackQueue::IDInfo::id
uint64_t id
Definition: callback_queue.h:144
roswrap::CallbackQueue::TryAgain
@ TryAgain
Definition: callback_queue.h:70
roswrap::CallbackQueue::TLS::cb_it
D_CallbackInfo::iterator cb_it
Definition: callback_queue.h:180
roswrap::CallbackQueue::TLS::callbacks
D_CallbackInfo callbacks
Definition: callback_queue.h:179
roswrap::CallbackQueue::Called
@ Called
Definition: callback_queue.h:69
roswrap::CallbackQueue::id_info_mutex_
std::mutex id_info_mutex_
Definition: callback_queue.h:169
roswrap::CallbackQueue::IDInfoPtr
std::shared_ptr< IDInfo > IDInfoPtr
Definition: callback_queue.h:147
roswrap::CallbackQueue::IDInfo
Definition: callback_queue.h:142
roswrap::CallbackQueue::M_IDInfo
std::map< uint64_t, IDInfoPtr > M_IDInfo
Definition: callback_queue.h:148
roswrap::CallbackQueue::TLS::TLS
TLS()
Definition: callback_queue.h:174
roswrap::CallbackQueue
This is the default implementation of the ros::CallbackQueueInterface.
Definition: callback_queue.h:58
roswrap::CallbackQueue::CallbackInfo::CallbackInfo
CallbackInfo()
Definition: callback_queue.h:154
roswrap::CallbackQueueInterface
Abstract interface for a queue used to handle all callbacks within roscpp.
Definition: callback_queue_interface.h:83
roswrap::CallbackQueuePtr
std::shared_ptr< CallbackQueue > CallbackQueuePtr
Definition: callback_queue.h:186
roswrap::CallbackQueue::CallbackInfo::removal_id
uint64_t removal_id
Definition: callback_queue.h:159
roswrap
Definition: param_modi.cpp:41
roswrap::CallbackQueue::enabled_
bool enabled_
Definition: callback_queue.h:184
roswrap::CallbackQueue::tls_
boost::thread_specific_ptr< TLS > tls_
Definition: callback_queue.h:182
roswrap::CallbackQueue::D_CallbackInfo
std::deque< CallbackInfo > D_CallbackInfo
Definition: callback_queue.h:163
roswrap::CallbackQueue::CallbackInfo::callback
CallbackInterfacePtr callback
Definition: callback_queue.h:158
common.h
roswrap::CallbackQueue::condition_
std::condition_variable condition_
Definition: callback_queue.h:167
roswrap::CallbackQueue::id_info_
M_IDInfo id_info_
Definition: callback_queue.h:170
roswrap::CallbackQueue::empty
bool empty()
returns whether or not the queue is empty
Definition: callback_queue.h:113
sick_scan_base.h
sick_generic_device_finder.timeout
timeout
Definition: sick_generic_device_finder.py:113
roswrap::CallbackQueue::Empty
@ Empty
Definition: callback_queue.h:72
ros::WallDuration
ROSCPP_DECL
#define ROSCPP_DECL
Definition: roswrap/src/cfgsimu/sick_scan/ros/common.h:63
roswrap::CallbackInterfacePtr
std::shared_ptr< CallbackInterface > CallbackInterfacePtr
Definition: callback_queue_interface.h:75
roswrap::CallbackQueue::L_CallbackInfo
std::list< CallbackInfo > L_CallbackInfo
Definition: callback_queue.h:162
roswrap::CallbackQueue::Disabled
@ Disabled
Definition: callback_queue.h:71
callback
void callback(const sick_scan_xd::RadarScan::ConstPtr &oa)
Definition: radar_object_marker.cpp:157


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:07