node_handle.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  * Copyright (C) 2009, Willow Garage, Inc.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright notice,
8  * this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the names of Stanford University or Willow Garage, Inc. nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef ROSCPP_NODE_HANDLE_H
30 #define ROSCPP_NODE_HANDLE_H
31 
32 #include "ros/forwards.h"
33 #include "ros/publisher.h"
34 #include "ros/subscriber.h"
35 #include "ros/service_server.h"
36 #include "ros/service_client.h"
37 #include "ros/timer.h"
38 #include "ros/rate.h"
39 #include "ros/wall_timer.h"
40 #include "ros/advertise_options.h"
41 #include "ros/advertise_service_options.h"
42 #include "ros/subscribe_options.h"
43 #include "ros/service_client_options.h"
44 #include "ros/timer_options.h"
45 #include "ros/wall_timer_options.h"
46 #include "ros/spinner.h"
47 #include "ros/init.h"
48 #include "common.h"
49 
50 //#include <boost/bind.hpp>
51 
52 #include <xmlrpcpp/XmlRpcValue.h>
53 
54 namespace roswrap
55 {
56 
57  class NodeHandleBackingCollection;
58 
88  {
89  public:
104  NodeHandle(const std::string& ns = std::string(), const M_string& remappings = M_string());
112  NodeHandle(const NodeHandle& rhs);
134  NodeHandle(const NodeHandle& parent, const std::string& ns);
156  NodeHandle(const NodeHandle& parent, const std::string& ns, const M_string& remappings);
164  ~NodeHandle();
165 
166  NodeHandle& operator=(const NodeHandle& rhs);
167 
176  void setCallbackQueue(CallbackQueueInterface* queue);
177 
184  {
185  return callback_queue_ ? callback_queue_ : (CallbackQueueInterface*)getGlobalCallbackQueue();
186  }
187 
191  const std::string& getNamespace() const { return namespace_; }
192 
197  const std::string& getUnresolvedNamespace() const { return unresolved_namespace_; }
198 
215  std::string resolveName(const std::string& name, bool remap = true) const;
216 
218  // Versions of advertise()
220 
248  template <class M>
249  Publisher advertise(const std::string& topic, uint32_t queue_size, bool latch = false)
250  {
251  AdvertiseOptions ops;
252  ops.template init<M>(topic, queue_size);
253  ops.latch = latch;
254  return advertise(ops);
255  }
256 
314  template <class M>
315  Publisher advertise(const std::string& topic, uint32_t queue_size,
316  const SubscriberStatusCallback& connect_cb,
317  const SubscriberStatusCallback& disconnect_cb = SubscriberStatusCallback(),
318  const VoidConstPtr& tracked_object = VoidConstPtr(),
319  bool latch = false)
320  {
321  AdvertiseOptions ops;
322  ops.template init<M>(topic, queue_size, connect_cb, disconnect_cb);
323  ops.tracked_object = tracked_object;
324  ops.latch = latch;
325  return advertise(ops);
326  }
327 
353  Publisher advertise(AdvertiseOptions& ops);
354 
355 
357  // Versions of subscribe()
359 
401  template<class M, class T>
402  Subscriber subscribe(const std::string& topic, uint32_t queue_size, void(T::*fp)(M), T* obj,
403  const TransportHints& transport_hints = TransportHints())
404  {
405  SubscribeOptions ops;
406  ops.template initByFullCallbackType<M>(topic, queue_size, std::bind(fp, obj, std::placeholders::_1));
407  ops.transport_hints = transport_hints;
408  return subscribe(ops);
409  }
410 
412  template<class M, class T>
413  Subscriber subscribe(const std::string& topic, uint32_t queue_size, void(T::*fp)(M) const, T* obj,
414  const TransportHints& transport_hints = TransportHints())
415  {
416  SubscribeOptions ops;
417  ops.template initByFullCallbackType<M>(topic, queue_size, std::bind(fp, obj, std::placeholders::_1));
418  ops.transport_hints = transport_hints;
419  return subscribe(ops);
420  }
421 
464  template<class M, class T>
465  Subscriber subscribe(const std::string& topic, uint32_t queue_size,
466  void(T::*fp)(const std::shared_ptr<M const>&), T* obj,
467  const TransportHints& transport_hints = TransportHints())
468  {
469  SubscribeOptions ops;
470  ops.template init<M>(topic, queue_size, std::bind(fp, obj, std::placeholders::_1));
471  ops.transport_hints = transport_hints;
472  return subscribe(ops);
473  }
474  template<class M, class T>
475  Subscriber subscribe(const std::string& topic, uint32_t queue_size,
476  void(T::*fp)(const std::shared_ptr<M const>&) const, T* obj,
477  const TransportHints& transport_hints = TransportHints())
478  {
479  SubscribeOptions ops;
480  ops.template init<M>(topic, queue_size, std::bind(fp, obj, std::placeholders::_1));
481  ops.transport_hints = transport_hints;
482  return subscribe(ops);
483  }
484 
528  template<class M, class T>
529  Subscriber subscribe(const std::string& topic, uint32_t queue_size, void(T::*fp)(M),
530  const std::shared_ptr<T>& obj, const TransportHints& transport_hints = TransportHints())
531  {
532  SubscribeOptions ops;
533  ops.template initByFullCallbackType<M>(topic, queue_size, std::bind(fp, obj.get(), std::placeholders::_1));
534  ops.tracked_object = obj;
535  ops.transport_hints = transport_hints;
536  return subscribe(ops);
537  }
538 
539  template<class M, class T>
540  Subscriber subscribe(const std::string& topic, uint32_t queue_size, void(T::*fp)(M) const,
541  const std::shared_ptr<T>& obj, const TransportHints& transport_hints = TransportHints())
542  {
543  SubscribeOptions ops;
544  ops.template initByFullCallbackType<M>(topic, queue_size, std::bind(fp, obj.get(), std::placeholders::_1));
545  ops.tracked_object = obj;
546  ops.transport_hints = transport_hints;
547  return subscribe(ops);
548  }
549 
593  template<class M, class T>
594  Subscriber subscribe(const std::string& topic, uint32_t queue_size,
595  void(T::*fp)(const std::shared_ptr<M const>&),
596  const std::shared_ptr<T>& obj, const TransportHints& transport_hints = TransportHints())
597  {
598  SubscribeOptions ops;
599  ops.template init<M>(topic, queue_size, std::bind(fp, obj.get(), std::placeholders::_1));
600  ops.tracked_object = obj;
601  ops.transport_hints = transport_hints;
602  return subscribe(ops);
603  }
604  template<class M, class T>
605  Subscriber subscribe(const std::string& topic, uint32_t queue_size,
606  void(T::*fp)(const std::shared_ptr<M const>&) const,
607  const std::shared_ptr<T>& obj, const TransportHints& transport_hints = TransportHints())
608  {
609  SubscribeOptions ops;
610  ops.template init<M>(topic, queue_size, std::bind(fp, obj.get(), std::placeholders::_1));
611  ops.tracked_object = obj;
612  ops.transport_hints = transport_hints;
613  return subscribe(ops);
614  }
615 
655  template<class M>
656  Subscriber subscribe(const std::string& topic, uint32_t queue_size, void(*fp)(M), const TransportHints& transport_hints = TransportHints())
657  {
658  SubscribeOptions ops;
659  ops.template initByFullCallbackType<M>(topic, queue_size, fp);
660  ops.transport_hints = transport_hints;
661  return subscribe(ops);
662  }
663 
703  template<class M>
704  Subscriber subscribe(const std::string& topic, uint32_t queue_size, void(*fp)(const std::shared_ptr<M const>&), const TransportHints& transport_hints = TransportHints())
705  {
706  SubscribeOptions ops;
707  ops.template init<M>(topic, queue_size, fp);
708  ops.transport_hints = transport_hints;
709  return subscribe(ops);
710  }
711 
749  template<class M>
750  Subscriber subscribe(const std::string& topic, uint32_t queue_size, const std::function<void (const std::shared_ptr<M const>&)>& callback,
751  const VoidConstPtr& tracked_object = VoidConstPtr(), const TransportHints& transport_hints = TransportHints())
752  {
753  SubscribeOptions ops;
754  ops.template init<M>(topic, queue_size, callback);
755  ops.tracked_object = tracked_object;
756  ops.transport_hints = transport_hints;
757  return subscribe(ops);
758  }
759 
798  template<class M, class C>
799  Subscriber subscribe(const std::string& topic, uint32_t queue_size, const std::function<void (C)>& callback,
800  const VoidConstPtr& tracked_object = VoidConstPtr(), const TransportHints& transport_hints = TransportHints())
801  {
802  SubscribeOptions ops;
803  ops.template initByFullCallbackType<C>(topic, queue_size, callback);
804  ops.tracked_object = tracked_object;
805  ops.transport_hints = transport_hints;
806  return subscribe(ops);
807  }
808 
837 
839  // Versions of advertiseService()
841 
878  template<class T, class MReq, class MRes>
879  ServiceServer advertiseService(const std::string& service, bool(T::*srv_func)(MReq &, MRes &), T *obj)
880  {
882  ops.template init<MReq, MRes>(service, std::bind(srv_func, obj, std::placeholders::_1, std::placeholders::_2));
883  return advertiseService(ops);
884  }
885 
923  template<class T, class MReq, class MRes>
924  ServiceServer advertiseService(const std::string& service, bool(T::*srv_func)(ServiceEvent<MReq, MRes>&), T *obj)
925  {
927  ops.template initBySpecType<ServiceEvent<MReq, MRes> >(service, std::bind(srv_func, obj, std::placeholders::_1));
928  return advertiseService(ops);
929  }
930 
969  template<class T, class MReq, class MRes>
970  ServiceServer advertiseService(const std::string& service, bool(T::*srv_func)(MReq &, MRes &), const std::shared_ptr<T>& obj)
971  {
973  ops.template init<MReq, MRes>(service, std::bind(srv_func, obj.get(), std::placeholders::_1, std::placeholders::_2));
974  ops.tracked_object = obj;
975  return advertiseService(ops);
976  }
977 
1016  template<class T, class MReq, class MRes>
1017  ServiceServer advertiseService(const std::string& service, bool(T::*srv_func)(ServiceEvent<MReq, MRes>&), const std::shared_ptr<T>& obj)
1018  {
1020  ops.template initBySpecType<ServiceEvent<MReq, MRes> >(service, std::bind(srv_func, obj.get(), std::placeholders::_1));
1021  ops.tracked_object = obj;
1022  return advertiseService(ops);
1023  }
1024 
1060  template<class MReq, class MRes>
1061  ServiceServer advertiseService(const std::string& service, bool(*srv_func)(MReq&, MRes&))
1062  {
1064  ops.template init<MReq, MRes>(service, srv_func);
1065  return advertiseService(ops);
1066  }
1067 
1103  template<class MReq, class MRes>
1104  ServiceServer advertiseService(const std::string& service, bool(*srv_func)(ServiceEvent<MReq, MRes>&))
1105  {
1107  ops.template initBySpecType<ServiceEvent<MReq, MRes> >(service, srv_func);
1108  return advertiseService(ops);
1109  }
1110 
1144  template<class MReq, class MRes>
1145  ServiceServer advertiseService(const std::string& service, const std::function<bool(MReq&, MRes&)>& callback,
1146  const VoidConstPtr& tracked_object = VoidConstPtr())
1147  {
1149  ops.template init<MReq, MRes>(service, callback);
1150  ops.tracked_object = tracked_object;
1151  return advertiseService(ops);
1152  }
1153 
1189  template<class S>
1190  ServiceServer advertiseService(const std::string& service, const std::function<bool(S&)>& callback,
1191  const VoidConstPtr& tracked_object = VoidConstPtr())
1192  {
1194  ops.template initBySpecType<S>(service, callback);
1195  ops.tracked_object = tracked_object;
1196  return advertiseService(ops);
1197  }
1198 
1223 
1225  // Versions of serviceClient()
1227 
1239  template<class MReq, class MRes>
1240  ServiceClient serviceClient(const std::string& service_name, bool persistent = false,
1241  const M_string& header_values = M_string())
1242  {
1244  ops.template init<MReq, MRes>(service_name, persistent, header_values);
1245  return serviceClient(ops);
1246  }
1247 
1259  template<class Service>
1260  ServiceClient serviceClient(const std::string& service_name, bool persistent = false,
1261  const M_string& header_values = M_string())
1262  {
1264  ops.template init<Service>(service_name, persistent, header_values);
1265  return serviceClient(ops);
1266  }
1267 
1276 
1278  // Versions of createTimer()
1280 
1293  template<class Handler, class Obj>
1294  Timer createTimer(Rate r, Handler h, Obj o, bool oneshot = false, bool autostart = true) const
1295  {
1296  return createTimer(r.expectedCycleTime(), h, o, oneshot, autostart);
1297  }
1298 
1312  template<class T>
1313  Timer createTimer(Duration period, void(T::*callback)(const TimerEvent&) const, T* obj,
1314  bool oneshot = false, bool autostart = true) const
1315  {
1316  return createTimer(period, std::bind(callback, obj, std::placeholders::_1), oneshot, autostart);
1317  }
1318 
1332  template<class T>
1333  Timer createTimer(Duration period, void(T::*callback)(const TimerEvent&), T* obj,
1334  bool oneshot = false, bool autostart = true) const
1335  {
1336  return createTimer(period, std::bind(callback, obj, std::placeholders::_1), oneshot, autostart);
1337  }
1338 
1354  template<class T>
1355  Timer createTimer(Duration period, void(T::*callback)(const TimerEvent&), const std::shared_ptr<T>& obj,
1356  bool oneshot = false, bool autostart = true) const
1357  {
1358  TimerOptions ops(period, std::bind(callback, obj.get(), std::placeholders::_1), 0);
1359  ops.tracked_object = obj;
1360  ops.oneshot = oneshot;
1361  ops.autostart = autostart;
1362  return createTimer(ops);
1363  }
1364 
1377  Timer createTimer(Duration period, const TimerCallback& callback, bool oneshot = false,
1378  bool autostart = true) const;
1379 
1389  Timer createTimer(TimerOptions& ops) const;
1390 
1392  // Versions of createWallTimer()
1394 
1409  template<class T>
1410  WallTimer createWallTimer(WallDuration period, void(T::*callback)(const WallTimerEvent&), T* obj,
1411  bool oneshot = false, bool autostart = true) const
1412  {
1413  return createWallTimer(period, std::bind(callback, obj, std::placeholders::_1), oneshot, autostart);
1414  }
1415 
1431  template<class T>
1433  const std::shared_ptr<T>& obj,
1434  bool oneshot = false, bool autostart = true) const
1435  {
1436  WallTimerOptions ops(period, std::bind(callback, obj.get(), std::placeholders::_1), 0);
1437  ops.tracked_object = obj;
1438  ops.oneshot = oneshot;
1439  ops.autostart = autostart;
1440  return createWallTimer(ops);
1441  }
1442 
1455  WallTimer createWallTimer(WallDuration period, const WallTimerCallback& callback,
1456  bool oneshot = false, bool autostart = true) const;
1457 
1468  WallTimer createWallTimer(WallTimerOptions& ops) const;
1469 
1476  void setParam(const std::string& key, const XmlRpc::XmlRpcValue& v) const;
1483  void setParam(const std::string& key, const std::string& s) const;
1490  void setParam(const std::string& key, const char* s) const;
1497  void setParam(const std::string& key, double d) const;
1504  void setParam(const std::string& key, int i) const;
1511  void setParam(const std::string& key, bool b) const;
1512 
1519  void setParam(const std::string& key, const std::vector<std::string>& vec) const;
1526  void setParam(const std::string& key, const std::vector<double>& vec) const;
1533  void setParam(const std::string& key, const std::vector<float>& vec) const;
1540  void setParam(const std::string& key, const std::vector<int>& vec) const;
1547  void setParam(const std::string& key, const std::vector<bool>& vec) const;
1548 
1555  void setParam(const std::string& key, const std::map<std::string, std::string>& map) const;
1562  void setParam(const std::string& key, const std::map<std::string, double>& map) const;
1569  void setParam(const std::string& key, const std::map<std::string, float>& map) const;
1576  void setParam(const std::string& key, const std::map<std::string, int>& map) const;
1583  void setParam(const std::string& key, const std::map<std::string, bool>& map) const;
1584 
1593  bool getParam(const std::string& key, std::string& s) const;
1604  bool getParam(const std::string& key, double& d) const;
1615  bool getParam(const std::string& key, float& f) const;
1626  bool getParam(const std::string& key, int& i) const;
1637  bool getParam(const std::string& key, bool& b) const;
1648  bool getParam(const std::string& key, XmlRpc::XmlRpcValue& v) const;
1649 
1660  bool getParam(const std::string& key, std::vector<std::string>& vec) const;
1671  bool getParam(const std::string& key, std::vector<double>& vec) const;
1682  bool getParam(const std::string& key, std::vector<float>& vec) const;
1693  bool getParam(const std::string& key, std::vector<int>& vec) const;
1704  bool getParam(const std::string& key, std::vector<bool>& vec) const;
1705 
1716  bool getParam(const std::string& key, std::map<std::string, std::string>& map) const;
1727  bool getParam(const std::string& key, std::map<std::string, double>& map) const;
1738  bool getParam(const std::string& key, std::map<std::string, float>& map) const;
1749  bool getParam(const std::string& key, std::map<std::string, int>& map) const;
1760  bool getParam(const std::string& key, std::map<std::string, bool>& map) const;
1761 
1777  bool getParamCached(const std::string& key, std::string& s) const;
1791  bool getParamCached(const std::string& key, double& d) const;
1805  bool getParamCached(const std::string& key, float& f) const;
1819  bool getParamCached(const std::string& key, int& i) const;
1833  bool getParamCached(const std::string& key, bool& b) const;
1847  bool getParamCached(const std::string& key, XmlRpc::XmlRpcValue& v) const;
1848 
1862  bool getParamCached(const std::string& key, std::vector<std::string>& vec) const;
1876  bool getParamCached(const std::string& key, std::vector<double>& vec) const;
1890  bool getParamCached(const std::string& key, std::vector<float>& vec) const;
1904  bool getParamCached(const std::string& key, std::vector<int>& vec) const;
1918  bool getParamCached(const std::string& key, std::vector<bool>& vec) const;
1919 
1933  bool getParamCached(const std::string& key, std::map<std::string, std::string>& map) const;
1947  bool getParamCached(const std::string& key, std::map<std::string, double>& map) const;
1961  bool getParamCached(const std::string& key, std::map<std::string, float>& map) const;
1975  bool getParamCached(const std::string& key, std::map<std::string, int>& map) const;
1989  bool getParamCached(const std::string& key, std::map<std::string, bool>& map) const;
1990 
1998  bool hasParam(const std::string& key) const;
2011  bool searchParam(const std::string& key, std::string& result) const;
2019  bool deleteParam(const std::string& key) const;
2020 
2025  bool getParamNames(std::vector<std::string>& keys) const;
2026 
2040  template<typename T>
2041  bool param(const std::string& param_name, T& param_val, const T& default_val) const
2042  {
2043  if (hasParam(param_name))
2044  {
2045  if (getParam(param_name, param_val))
2046  {
2047  return true;
2048  }
2049  }
2050 
2051  param_val = default_val;
2052  return false;
2053  }
2054 
2073  template<typename T>
2074  T param(const std::string& param_name, const T& default_val)
2075  {
2076  T param_val;
2077  param(param_name, param_val, default_val);
2078  return param_val;
2079  }
2080 
2087  void shutdown();
2088 
2096  bool ok() const;
2097 
2098 private:
2099  struct no_validate { };
2100  // this is pretty awful, but required to preserve public interface (and make minimum possible changes)
2101  std::string resolveName(const std::string& name, bool remap, no_validate) const;
2102 
2103  void construct(const std::string& ns, bool validate_name);
2104  void destruct();
2105 
2106  void initRemappings(const M_string& remappings);
2107 
2108  std::string remapName(const std::string& name) const;
2109 
2110  std::string namespace_;
2114 
2116 
2117  NodeHandleBackingCollection* collection_;
2118 
2119  bool ok_;
2120 };
2121 
2122 }
2123 
2124 #endif // ROSCPP_NODE_HANDLE_H
roswrap::TimerOptions
Encapsulates all options available for starting a timer.
Definition: timer_options.h:41
roswrap::WallTimerEvent
Structure passed as a parameter to the callback invoked by a ros::WallTimer.
Definition: forwards.h:151
roswrap::TimerOptions::autostart
bool autostart
Definition: timer_options.h:79
roswrap::NodeHandle::remappings_
M_string remappings_
Definition: node_handle.h:2112
roswrap::ServiceClientOptions
Encapsulates all options available for creating a ServiceClient.
Definition: service_client_options.h:42
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(T::*fp)(M) const, T *obj, const TransportHints &transport_hints=TransportHints())
and the const version
Definition: node_handle.h:413
roswrap::WallTimerOptions::oneshot
bool oneshot
Definition: wall_timer_options.h:79
roswrap::NodeHandle::advertiseService
ServiceServer advertiseService(const std::string &service, const std::function< bool(MReq &, MRes &)> &callback, const VoidConstPtr &tracked_object=VoidConstPtr())
Definition: node_handle.h:1145
roswrap::WallTimerCallback
std::function< void(const WallTimerEvent &)> WallTimerCallback
Definition: forwards.h:164
roswrap::ServiceServer
Manages an service advertisement.
Definition: service_server.h:46
roswrap::AdvertiseServiceOptions
Encapsulates all options available for creating a ServiceServer.
Definition: advertise_service_options.h:44
roswrap::Publisher
Manages an advertisement on a specific topic.
Definition: ros/publisher.h:48
roswrap::SubscribeOptions::transport_hints
TransportHints transport_hints
Hints for transport type and options.
Definition: subscribe_options.h:142
roswrap::NodeHandle::createTimer
Timer createTimer(Duration period, void(T::*callback)(const TimerEvent &), const std::shared_ptr< T > &obj, bool oneshot=false, bool autostart=true) const
Create a timer which will call a callback at the specified rate. This variant takes a class member fu...
Definition: node_handle.h:1355
roswrap::Subscriber
Manages an subscription callback on a specific topic.
Definition: subscriber.h:47
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(T::*fp)(M) const, const std::shared_ptr< T > &obj, const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:540
roswrap::Rate
Class to help run loops at a desired frequency.
Definition: rate.h:52
roswrap::NodeHandle::advertiseService
ServiceServer advertiseService(const std::string &service, bool(T::*srv_func)(ServiceEvent< MReq, MRes > &), T *obj)
Definition: node_handle.h:924
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(*fp)(const std::shared_ptr< M const > &), const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:704
sick_ldmrs_driver::param
bool param(rosNodePtr node, const std::string &param_name, T &value, const T &default_value)
Definition: sick_ldmrs_config.hpp:71
serviceClient
ServiceClient serviceClient(ros::NodeHandle n, std::string name)
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(*fp)(M), const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:656
roswrap::NodeHandle::serviceClient
ServiceClient serviceClient(const std::string &service_name, bool persistent=false, const M_string &header_values=M_string())
Create a client for a service, version templated on service type.
Definition: node_handle.h:1260
roswrap::M_string
std::map< std::string, std::string > M_string
Definition: datatypes.h:46
roswrap::shutdown
ROSCPP_DECL void shutdown()
Disconnects everything and unregisters from the master. It is generally not necessary to call this fu...
Definition: rossimu.cpp:269
roswrap::NodeHandle::createWallTimer
WallTimer createWallTimer(WallDuration period, void(T::*callback)(const WallTimerEvent &), const std::shared_ptr< T > &obj, bool oneshot=false, bool autostart=true) const
Create a timer which will call a callback at the specified rate, using wall time to determine when to...
Definition: node_handle.h:1432
roswrap::WallTimerOptions
Encapsulates all options available for starting a timer.
Definition: wall_timer_options.h:41
roswrap::AdvertiseServiceOptions::tracked_object
VoidConstPtr tracked_object
An object whose destruction will prevent the callback associated with this service from being called.
Definition: advertise_service_options.h:139
roswrap::NodeHandle::advertiseService
ServiceServer advertiseService(const std::string &service, bool(*srv_func)(ServiceEvent< MReq, MRes > &))
Definition: node_handle.h:1104
roswrap::AdvertiseOptions
Encapsulates all options available for creating a Publisher.
Definition: advertise_options.h:42
roswrap::NodeHandle::getNamespace
const std::string & getNamespace() const
Returns the namespace associated with this NodeHandle.
Definition: node_handle.h:191
roswrap::NodeHandle::advertise
Publisher advertise(const std::string &topic, uint32_t queue_size, const SubscriberStatusCallback &connect_cb, const SubscriberStatusCallback &disconnect_cb=SubscriberStatusCallback(), const VoidConstPtr &tracked_object=VoidConstPtr(), bool latch=false)
Definition: node_handle.h:315
roswrap::WallTimerOptions::tracked_object
VoidConstPtr tracked_object
Definition: wall_timer_options.h:77
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(T::*fp)(const std::shared_ptr< M const > &), const std::shared_ptr< T > &obj, const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:594
roswrap::ServiceEvent
Event type for services, ros::ServiceEvent<MReq, MRes>& can be used in your callback instead of MReq&...
Definition: service_callback_helper.h:71
roswrap::NodeHandle::serviceClient
ServiceClient serviceClient(const std::string &service_name, bool persistent=false, const M_string &header_values=M_string())
Create a client for a service, version templated on two message types.
Definition: node_handle.h:1240
roswrap::TimerOptions::oneshot
bool oneshot
Definition: timer_options.h:78
roswrap::NodeHandle::unresolved_remappings_
M_string unresolved_remappings_
Definition: node_handle.h:2113
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, const std::function< void(const std::shared_ptr< M const > &)> &callback, const VoidConstPtr &tracked_object=VoidConstPtr(), const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:750
roswrap::Rate::expectedCycleTime
Duration expectedCycleTime() const
Get the expected cycle time – one over the frequency passed in to the constructor.
Definition: rate.h:82
roswrap::AdvertiseOptions::latch
bool latch
Whether or not this publication should "latch". A latching publication will automatically send out th...
Definition: advertise_options.h:127
roswrap::Timer
Manages a timer callback.
Definition: timer.h:47
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(T::*fp)(const std::shared_ptr< M const > &) const, T *obj, const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:475
roswrap::getGlobalCallbackQueue
ROSCPP_DECL CallbackQueue * getGlobalCallbackQueue()
Returns a pointer to the global default callback queue.
roswrap::NodeHandle::collection_
NodeHandleBackingCollection * collection_
Definition: node_handle.h:2117
roswrap::ServiceClient
Provides a handle-based interface to service client connections.
Definition: service_client.h:43
roswrap::TimerOptions::tracked_object
VoidConstPtr tracked_object
Definition: timer_options.h:76
roswrap::AdvertiseOptions::tracked_object
VoidConstPtr tracked_object
An object whose destruction will prevent the callbacks associated with this advertisement from being ...
Definition: advertise_options.h:121
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, const std::function< void(C)> &callback, const VoidConstPtr &tracked_object=VoidConstPtr(), const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:799
api.setup.name
name
Definition: python/api/setup.py:12
advertiseService
ServiceServer advertiseService(ros::NodeHandle n, std::string name, boost::function< bool(const typename ActionSpec::_action_goal_type::_goal_type &, typename ActionSpec::_action_result_type::_result_type &result)> service_cb)
roswrap::NodeHandle::no_validate
Definition: node_handle.h:2099
sick_scan_xd_api_test.queue_size
queue_size
Definition: sick_scan_xd_api_test.py:353
roswrap::Duration
Duration representation for use with the Time class.
Definition: duration.h:109
roswrap::NodeHandle::ok_
bool ok_
Definition: node_handle.h:2119
roswrap::NodeHandle::advertiseService
ServiceServer advertiseService(const std::string &service, bool(T::*srv_func)(ServiceEvent< MReq, MRes > &), const std::shared_ptr< T > &obj)
Definition: node_handle.h:1017
roswrap::NodeHandle::getUnresolvedNamespace
const std::string & getUnresolvedNamespace() const
Returns the namespace associated with this NodeHandle as it was passed in (before it was resolved)
Definition: node_handle.h:197
roswrap::NodeHandle::param
T param(const std::string &param_name, const T &default_val)
Return value from parameter server, or default if unavailable.
Definition: node_handle.h:2074
roswrap::CallbackQueueInterface
Abstract interface for a queue used to handle all callbacks within roscpp.
Definition: callback_queue_interface.h:83
subscribe
void subscribe()
roswrap::NodeHandle::advertiseService
ServiceServer advertiseService(const std::string &service, bool(*srv_func)(MReq &, MRes &))
Definition: node_handle.h:1061
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(T::*fp)(const std::shared_ptr< M const > &) const, const std::shared_ptr< T > &obj, const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:605
roswrap
Definition: param_modi.cpp:41
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(T::*fp)(const std::shared_ptr< M const > &), T *obj, const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:465
roswrap::WallDuration
Duration representation for use with the WallTime class.
Definition: duration.h:137
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(T::*fp)(M), const std::shared_ptr< T > &obj, const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:529
roswrap::names::remap
ROSCPP_DECL std::string remap(const std::string &name)
Apply remappings to a name.
roswrap::NodeHandle
roscpp's interface for creating subscribers, publishers, etc.
Definition: node_handle.h:87
roswrap::NodeHandle::getCallbackQueue
CallbackQueueInterface * getCallbackQueue() const
Returns the callback queue associated with this NodeHandle. If none has been explicitly set,...
Definition: node_handle.h:183
roswrap::NodeHandle::namespace_
std::string namespace_
Definition: node_handle.h:2110
common.h
roswrap::NodeHandle::advertiseService
ServiceServer advertiseService(const std::string &service, const std::function< bool(S &)> &callback, const VoidConstPtr &tracked_object=VoidConstPtr())
Definition: node_handle.h:1190
roswrap::NodeHandle::createTimer
Timer createTimer(Duration period, void(T::*callback)(const TimerEvent &), T *obj, bool oneshot=false, bool autostart=true) const
Create a timer which will call a callback at the specified rate. This variant takes a class member fu...
Definition: node_handle.h:1333
roswrap::NodeHandle::subscribe
Subscriber subscribe(const std::string &topic, uint32_t queue_size, void(T::*fp)(M), T *obj, const TransportHints &transport_hints=TransportHints())
Definition: node_handle.h:402
roswrap::NodeHandle::createTimer
Timer createTimer(Duration period, void(T::*callback)(const TimerEvent &) const, T *obj, bool oneshot=false, bool autostart=true) const
Create a timer which will call a callback at the specified rate. This variant takes a class member fu...
Definition: node_handle.h:1313
roswrap::WallTimerOptions::autostart
bool autostart
Definition: wall_timer_options.h:80
roswrap::NodeHandle::param
bool param(const std::string &param_name, T &param_val, const T &default_val) const
Assign value from parameter server, with default.
Definition: node_handle.h:2041
roswrap::NodeHandle::unresolved_namespace_
std::string unresolved_namespace_
Definition: node_handle.h:2111
roswrap::TransportHints
Provides a way of specifying network transport hints to ros::NodeHandle::subscribe() and someday ros:...
Definition: transport_hints.h:55
sick_scan_base.h
roswrap::NodeHandle::callback_queue_
CallbackQueueInterface * callback_queue_
Definition: node_handle.h:2115
roswrap::NodeHandle::createWallTimer
WallTimer createWallTimer(WallDuration period, void(T::*callback)(const WallTimerEvent &), T *obj, bool oneshot=false, bool autostart=true) const
Create a timer which will call a callback at the specified rate, using wall time to determine when to...
Definition: node_handle.h:1410
roswrap::param::getParamNames
bool getParamNames(std::vector< std::string > &keys)
Get the list of all the parameters in the server.
Definition: param_modi.cpp:722
roswrap::NodeHandle::createTimer
Timer createTimer(Rate r, Handler h, Obj o, bool oneshot=false, bool autostart=true) const
Create a timer which will call a callback at the specified rate. This variant takes a class member fu...
Definition: node_handle.h:1294
roswrap::TimerCallback
std::function< void(const TimerEvent &)> TimerCallback
Definition: forwards.h:146
roswrap::TimerEvent
Structure passed as a parameter to the callback invoked by a ros::Timer.
Definition: forwards.h:133
ROSCPP_DECL
#define ROSCPP_DECL
Definition: roswrap/src/cfgsimu/sick_scan/ros/common.h:63
roswrap::ok
ROSCPP_DECL bool ok()
Check whether it's time to exit.
Definition: rossimu.cpp:273
roswrap::NodeHandle::advertise
Publisher advertise(const std::string &topic, uint32_t queue_size, bool latch=false)
Advertise a topic, simple version.
Definition: node_handle.h:249
roswrap::SubscriberStatusCallback
std::function< void(const SingleSubscriberPublisher &)> SubscriberStatusCallback
Definition: forwards.h:96
roswrap::NodeHandle::advertiseService
ServiceServer advertiseService(const std::string &service, bool(T::*srv_func)(MReq &, MRes &), const std::shared_ptr< T > &obj)
Definition: node_handle.h:970
roswrap::SubscribeOptions
Encapsulates all options available for creating a Subscriber.
Definition: subscribe_options.h:44
roswrap::SubscribeOptions::tracked_object
VoidConstPtr tracked_object
An object whose destruction will prevent the callback associated with this subscription.
Definition: subscribe_options.h:140
roswrap::VoidConstPtr
std::shared_ptr< void const > VoidConstPtr
Definition: forwards.h:54
roswrap::NodeHandle::advertiseService
ServiceServer advertiseService(const std::string &service, bool(T::*srv_func)(MReq &, MRes &), T *obj)
Definition: node_handle.h:879
roswrap::WallTimer
Manages a wall-clock timer callback.
Definition: wall_timer.h:47
XmlRpc::XmlRpcValue
RPC method arguments and results are represented by Values.
Definition: XmlRpcValue.h:25
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:09