All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TransportIface.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012-2014 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef _GAZEBO_TRANSPORTIFACE_HH_
18 #define _GAZEBO_TRANSPORTIFACE_HH_
19 
20 #include <boost/bind.hpp>
21 #include <string>
22 #include <list>
23 #include <map>
24 
27 #include "gazebo/transport/Node.hh"
29 
30 namespace gazebo
31 {
32  namespace transport
33  {
37 
45  bool get_master_uri(std::string &_master_host, unsigned int &_master_port);
46 
56  bool init(const std::string &_masterHost = "",
57  unsigned int _masterPort = 0,
58  uint32_t _timeoutIterations = 30);
59 
64  void run();
65 
69  void get_topic_namespaces(std::list<std::string> &_namespaces);
70 
74  bool is_stopped();
75 
78  void stop();
79 
82  void fini();
83 
86  void clear_buffers();
87 
92  void pause_incoming(bool _pause);
93 
102  boost::shared_ptr<msgs::Response> request(const std::string &_worldName,
103  const std::string &_request,
104  const std::string &_data = "");
105 
113  void requestNoReply(const std::string &_worldName,
114  const std::string &_request,
115  const std::string &_data = "");
116 
123  void requestNoReply(NodePtr _node, const std::string &_request,
124  const std::string &_data = "");
125 
132  template<typename M>
134  void publish(const std::string &_topic,
135  const google::protobuf::Message &_message)
136  {
138  node->Init();
139  node->Publish<M>(_topic, _message);
140  }
141 
146  std::map<std::string, std::list<std::string> > getAdvertisedTopics();
147 
154  std::list<std::string> getAdvertisedTopics(const std::string &_msgType);
155 
160  std::string getTopicMsgType(const std::string &_topicName);
161 
165  void setMinimalComms(bool _enabled);
166 
170  bool getMinimalComms();
171 
176 
181  bool waitForNamespaces(const gazebo::common::Time &_maxWait);
183  }
184 }
185 #endif