Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | List of all members
ros::TopicManager Class Reference

#include <topic_manager.h>

Public Member Functions

bool advertise (const AdvertiseOptions &ops, const SubscriberCallbacksPtr &callbacks)
 
void getAdvertisedTopics (V_string &topics)
 Get the list of topics advertised by this node. More...
 
size_t getNumPublishers (const std::string &_topic)
 Return the number of publishers connected to this node on a particular topic. More...
 
size_t getNumSubscribers (const std::string &_topic)
 Return the number of subscribers a node has for a particular topic: More...
 
size_t getNumSubscriptions ()
 
void getSubscribedTopics (V_string &topics)
 Get the list of topics subscribed to by this node. More...
 
void incrementSequence (const std::string &_topic)
 
bool isLatched (const std::string &topic)
 
PublicationPtr lookupPublication (const std::string &topic)
 Lookup an advertised topic. More...
 
template<typename M >
void publish (const std::string &topic, const M &message)
 
void publish (const std::string &_topic, const boost::function< SerializedMessage(void)> &serfunc, SerializedMessage &m)
 
void shutdown ()
 
void start ()
 
bool subscribe (const SubscribeOptions &ops)
 
 TopicManager ()
 
bool unadvertise (const std::string &topic, const SubscriberCallbacksPtr &callbacks)
 
bool unsubscribe (const std::string &_topic, const SubscriptionCallbackHelperPtr &helper)
 
 ~TopicManager ()
 

Static Public Member Functions

static const TopicManagerPtrinstance ()
 

Private Member Functions

bool addSubCallback (const SubscribeOptions &ops)
 
void getBusInfo (XmlRpc::XmlRpcValue &info)
 Compute the info for the node's connectivity. More...
 
void getBusInfoCallback (XmlRpc::XmlRpcValue &params, XmlRpc::XmlRpcValue &result)
 
void getBusStats (XmlRpc::XmlRpcValue &stats)
 Compute the statistics for the node's connectivity. More...
 
void getBusStatsCallback (XmlRpc::XmlRpcValue &params, XmlRpc::XmlRpcValue &result)
 
void getPublications (XmlRpc::XmlRpcValue &publications)
 Return the list of advertised topics for the node. More...
 
void getPublicationsCallback (XmlRpc::XmlRpcValue &params, XmlRpc::XmlRpcValue &result)
 
void getSubscriptions (XmlRpc::XmlRpcValue &subscriptions)
 Return the list of subcriptions for the node. More...
 
void getSubscriptionsCallback (XmlRpc::XmlRpcValue &params, XmlRpc::XmlRpcValue &result)
 
bool isShuttingDown ()
 
bool isTopicAdvertised (const std::string &topic)
 
PublicationPtr lookupPublicationWithoutLock (const std::string &topic)
 
void processPublishQueues ()
 
bool pubUpdate (const std::string &topic, const std::vector< std::string > &pubs)
 Update local publisher lists. More...
 
void pubUpdateCallback (XmlRpc::XmlRpcValue &params, XmlRpc::XmlRpcValue &result)
 
bool registerSubscriber (const SubscriptionPtr &s, const std::string &datatype)
 
bool requestTopic (const std::string &topic, XmlRpc::XmlRpcValue &protos, XmlRpc::XmlRpcValue &ret)
 Request a topic. More...
 
void requestTopicCallback (XmlRpc::XmlRpcValue &params, XmlRpc::XmlRpcValue &result)
 
bool unregisterPublisher (const std::string &topic)
 
bool unregisterSubscriber (const std::string &topic)
 

Private Attributes

std::list< std::string > advertised_topic_names_
 
boost::mutex advertised_topic_names_mutex_
 
V_Publication advertised_topics_
 
boost::recursive_mutex advertised_topics_mutex_
 
ConnectionManagerPtr connection_manager_
 
PollManagerPtr poll_manager_
 
volatile bool shutting_down_
 
boost::mutex shutting_down_mutex_
 
boost::mutex subs_mutex_
 
L_Subscription subscriptions_
 
XMLRPCManagerPtr xmlrpc_manager_
 

Detailed Description

Definition at line 63 of file topic_manager.h.

Constructor & Destructor Documentation

ros::TopicManager::TopicManager ( )

Definition at line 62 of file topic_manager.cpp.

ros::TopicManager::~TopicManager ( )

Definition at line 67 of file topic_manager.cpp.

Member Function Documentation

bool ros::TopicManager::addSubCallback ( const SubscribeOptions ops)
private

if it finds a pre-existing subscription to the same topic and of the same message type, it appends the Functor to the callback vector for that subscription. otherwise, it returns false, indicating that a new subscription needs to be created.

Definition at line 197 of file topic_manager.cpp.

bool ros::TopicManager::advertise ( const AdvertiseOptions ops,
const SubscriberCallbacksPtr callbacks 
)

Definition at line 292 of file topic_manager.cpp.

void ros::TopicManager::getAdvertisedTopics ( V_string topics)

Get the list of topics advertised by this node.

Parameters
[out]topicsThe advertised topics

Definition at line 161 of file topic_manager.cpp.

void ros::TopicManager::getBusInfo ( XmlRpc::XmlRpcValue info)
private

Compute the info for the node's connectivity.

This is the implementation of the xml-rpc getBusInfo function; it populates the XmlRpcValue object sent to it with various info about the node's connectivity.

Definition at line 936 of file topic_manager.cpp.

void ros::TopicManager::getBusInfoCallback ( XmlRpc::XmlRpcValue params,
XmlRpc::XmlRpcValue result 
)
private

Definition at line 1040 of file topic_manager.cpp.

void ros::TopicManager::getBusStats ( XmlRpc::XmlRpcValue stats)
private

Compute the statistics for the node's connectivity.

This is the implementation of the xml-rpc getBusStats function; it populates the XmlRpcValue object sent to it with various statistics about the node's connectivity, bandwidth utilization, etc.

Definition at line 903 of file topic_manager.cpp.

void ros::TopicManager::getBusStatsCallback ( XmlRpc::XmlRpcValue params,
XmlRpc::XmlRpcValue result 
)
private

Definition at line 1030 of file topic_manager.cpp.

size_t ros::TopicManager::getNumPublishers ( const std::string &  _topic)

Return the number of publishers connected to this node on a particular topic.

Parameters
_topicthe topic name to check
Returns
the number of subscribers

Definition at line 882 of file topic_manager.cpp.

size_t ros::TopicManager::getNumSubscribers ( const std::string &  _topic)

Return the number of subscribers a node has for a particular topic:

Parameters
_topicThe topic name to check
Returns
number of subscribers

Definition at line 858 of file topic_manager.cpp.

size_t ros::TopicManager::getNumSubscriptions ( )

Definition at line 876 of file topic_manager.cpp.

void ros::TopicManager::getPublications ( XmlRpc::XmlRpcValue publications)
private

Return the list of advertised topics for the node.

This is the implementation of the xml-rpc getPublications function; it populates the XmlRpcValue object sent to it with the list of advertised topics and their datatypes.

Definition at line 981 of file topic_manager.cpp.

void ros::TopicManager::getPublicationsCallback ( XmlRpc::XmlRpcValue params,
XmlRpc::XmlRpcValue result 
)
private

Definition at line 1060 of file topic_manager.cpp.

void ros::TopicManager::getSubscribedTopics ( V_string topics)

Get the list of topics subscribed to by this node.

Parameters
[out]Thesubscribed topics

Definition at line 171 of file topic_manager.cpp.

void ros::TopicManager::getSubscriptions ( XmlRpc::XmlRpcValue subscriptions)
private

Return the list of subcriptions for the node.

This is the implementation of the xml-rpc getSubscriptions function; it populates the XmlRpcValue object sent to it with the list of subscribed topics and their datatypes.

Definition at line 961 of file topic_manager.cpp.

void ros::TopicManager::getSubscriptionsCallback ( XmlRpc::XmlRpcValue params,
XmlRpc::XmlRpcValue result 
)
private

Definition at line 1050 of file topic_manager.cpp.

void ros::TopicManager::incrementSequence ( const std::string &  _topic)

Definition at line 761 of file topic_manager.cpp.

const TopicManagerPtr & ros::TopicManager::instance ( )
static

Definition at line 56 of file topic_manager.cpp.

bool ros::TopicManager::isLatched ( const std::string &  topic)

Definition at line 770 of file topic_manager.cpp.

bool ros::TopicManager::isShuttingDown ( )
inlineprivate

Definition at line 219 of file topic_manager.h.

bool ros::TopicManager::isTopicAdvertised ( const std::string &  topic)
private

Definition at line 461 of file topic_manager.cpp.

PublicationPtr ros::TopicManager::lookupPublication ( const std::string &  topic)

Lookup an advertised topic.

This method iterates over advertised_topics, looking for one with name matching the given topic name. The advertised_topics_mutex is locked during this search. This method is only used internally.

Parameters
topicThe topic name to look for.
Returns
Pointer to the matching Publication, NULL if none is found.

Definition at line 185 of file topic_manager.cpp.

PublicationPtr ros::TopicManager::lookupPublicationWithoutLock ( const std::string &  topic)
private

Definition at line 781 of file topic_manager.cpp.

void ros::TopicManager::processPublishQueues ( )
private

Definition at line 148 of file topic_manager.cpp.

template<typename M >
void ros::TopicManager::publish ( const std::string &  topic,
const M &  message 
)
inline

Definition at line 122 of file topic_manager.h.

void ros::TopicManager::publish ( const std::string &  _topic,
const boost::function< SerializedMessage(void)> &  serfunc,
SerializedMessage m 
)

Definition at line 703 of file topic_manager.cpp.

bool ros::TopicManager::pubUpdate ( const std::string &  topic,
const std::vector< std::string > &  pubs 
)
private

Update local publisher lists.

Use this method to update address information for publishers on a given topic.

Parameters
topicThe topic of interest
pubsThe list of publishers to update.
Returns
true on success, false otherwise.

Definition at line 549 of file topic_manager.cpp.

void ros::TopicManager::pubUpdateCallback ( XmlRpc::XmlRpcValue params,
XmlRpc::XmlRpcValue result 
)
private

Definition at line 1005 of file topic_manager.cpp.

bool ros::TopicManager::registerSubscriber ( const SubscriptionPtr s,
const std::string &  datatype 
)
private

Definition at line 474 of file topic_manager.cpp.

bool ros::TopicManager::requestTopic ( const std::string &  topic,
XmlRpc::XmlRpcValue protos,
XmlRpc::XmlRpcValue ret 
)
private

Request a topic.

Negotiate a subscriber connection on a topic.

Parameters
topicThe topic of interest.
protosList of transport protocols, in preference order
retReturn value
Returns
true on success, false otherwise
Todo:
Consider making this private

Definition at line 587 of file topic_manager.cpp.

void ros::TopicManager::requestTopicCallback ( XmlRpc::XmlRpcValue params,
XmlRpc::XmlRpcValue result 
)
private

Definition at line 1022 of file topic_manager.cpp.

void ros::TopicManager::shutdown ( )

Definition at line 91 of file topic_manager.cpp.

void ros::TopicManager::start ( )

Definition at line 72 of file topic_manager.cpp.

bool ros::TopicManager::subscribe ( const SubscribeOptions ops)

Definition at line 245 of file topic_manager.cpp.

bool ros::TopicManager::unadvertise ( const std::string &  topic,
const SubscriberCallbacksPtr callbacks 
)

Definition at line 401 of file topic_manager.cpp.

bool ros::TopicManager::unregisterPublisher ( const std::string &  topic)
private

Definition at line 450 of file topic_manager.cpp.

bool ros::TopicManager::unregisterSubscriber ( const std::string &  topic)
private

Definition at line 537 of file topic_manager.cpp.

bool ros::TopicManager::unsubscribe ( const std::string &  _topic,
const SubscriptionCallbackHelperPtr helper 
)

Definition at line 797 of file topic_manager.cpp.

Member Data Documentation

std::list<std::string> ros::TopicManager::advertised_topic_names_
private

Definition at line 226 of file topic_manager.h.

boost::mutex ros::TopicManager::advertised_topic_names_mutex_
private

Definition at line 227 of file topic_manager.h.

V_Publication ros::TopicManager::advertised_topics_
private

Definition at line 225 of file topic_manager.h.

boost::recursive_mutex ros::TopicManager::advertised_topics_mutex_
private

Definition at line 224 of file topic_manager.h.

ConnectionManagerPtr ros::TopicManager::connection_manager_
private

Definition at line 233 of file topic_manager.h.

PollManagerPtr ros::TopicManager::poll_manager_
private

Definition at line 232 of file topic_manager.h.

volatile bool ros::TopicManager::shutting_down_
private

Definition at line 229 of file topic_manager.h.

boost::mutex ros::TopicManager::shutting_down_mutex_
private

Definition at line 230 of file topic_manager.h.

boost::mutex ros::TopicManager::subs_mutex_
private

Definition at line 221 of file topic_manager.h.

L_Subscription ros::TopicManager::subscriptions_
private

Definition at line 222 of file topic_manager.h.

XMLRPCManagerPtr ros::TopicManager::xmlrpc_manager_
private

Definition at line 234 of file topic_manager.h.


The documentation for this class was generated from the following files:


roscpp
Author(s): Morgan Quigley, Josh Faust, Brian Gerkey, Troy Straszheim
autogenerated on Sun Feb 3 2019 03:29:54