All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Transport.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2012 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_TRANSPORT_HH_
18 #define _GAZEBO_TRANSPORT_HH_
19 
20 #include <boost/bind.hpp>
21 #include <string>
22 #include <list>
23 #include <map>
24 
28 
29 namespace gazebo
30 {
31  namespace transport
32  {
36 
43  bool get_master_uri(std::string &_master_host, unsigned int &_master_port);
44 
51  bool init(const std::string &_master_host ="",
52  unsigned int _master_port = 0);
53 
57  void run();
58 
61  void get_topic_namespaces(std::list<std::string> &_namespaces);
62 
65  bool is_stopped();
66 
68  void stop();
69 
71  void fini();
72 
74  void clear_buffers();
75 
79  void pause_incoming(bool _pause);
80 
88  boost::shared_ptr<msgs::Response> request(const std::string &_worldName,
89  const std::string &_request,
90  const std::string &_data = "");
91 
98  void requestNoReply(const std::string &_worldName,
99  const std::string &_request,
100  const std::string &_data = "");
101 
107  void requestNoReply(NodePtr _node, const std::string &_request,
108  const std::string &_data = "");
109 
113  std::map<std::string, std::list<std::string> > getAdvertisedTopics();
114 
120  std::list<std::string> getAdvertisedTopics(const std::string &_msgType);
121 
125  std::string getTopicMsgType(const std::string &_topicName);
126 
128  }
129 }
130 #endif