Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef ROS_SUBSCRIBER_H_
00036 #define ROS_SUBSCRIBER_H_
00037
00038 #include "rosserial_msgs/TopicInfo.h"
00039
00040 namespace ros {
00041
00042
00043 class Subscriber_
00044 {
00045 public:
00046 virtual void callback(unsigned char *data)=0;
00047 virtual int getEndpointType()=0;
00048
00049
00050 int id_;
00051
00052 virtual const char * getMsgType()=0;
00053 virtual const char * getMsgMD5()=0;
00054 const char * topic_;
00055 };
00056
00057
00058 template<typename MsgT, typename ObjT=void>
00059 class Subscriber: public Subscriber_
00060 {
00061 public:
00062 typedef void(ObjT::*CallbackT)(const MsgT&);
00063 MsgT msg;
00064
00065 Subscriber(const char * topic_name, CallbackT cb, ObjT* obj, int endpoint=rosserial_msgs::TopicInfo::ID_SUBSCRIBER) :
00066 cb_(cb),
00067 obj_(obj),
00068 endpoint_(endpoint)
00069 {
00070 topic_ = topic_name;
00071 };
00072
00073 virtual void callback(unsigned char* data)
00074 {
00075 msg.deserialize(data);
00076 (obj_->*cb_)(msg);
00077 }
00078
00079 virtual const char * getMsgType() { return this->msg.getType(); }
00080 virtual const char * getMsgMD5() { return this->msg.getMD5(); }
00081 virtual int getEndpointType() { return endpoint_; }
00082
00083 private:
00084 CallbackT cb_;
00085 ObjT* obj_;
00086 int endpoint_;
00087 };
00088
00089
00090 template<typename MsgT>
00091 class Subscriber<MsgT, void>: public Subscriber_
00092 {
00093 public:
00094 typedef void(*CallbackT)(const MsgT&);
00095 MsgT msg;
00096
00097 Subscriber(const char * topic_name, CallbackT cb, int endpoint=rosserial_msgs::TopicInfo::ID_SUBSCRIBER) :
00098 cb_(cb),
00099 endpoint_(endpoint)
00100 {
00101 topic_ = topic_name;
00102 };
00103
00104 virtual void callback(unsigned char* data)
00105 {
00106 msg.deserialize(data);
00107 this->cb_(msg);
00108 }
00109
00110 virtual const char * getMsgType() { return this->msg.getType(); }
00111 virtual const char * getMsgMD5() { return this->msg.getMD5(); }
00112 virtual int getEndpointType() { return endpoint_; }
00113
00114 private:
00115 CallbackT cb_;
00116 int endpoint_;
00117 };
00118
00119 }
00120
00121 #endif