28 #include "ros/xmlrpc_manager.h"
29 #include "ros/network.h"
30 #include "ros/param.h"
31 #include "ros/assert.h"
32 #include "ros/common.h"
33 #include "ros/file_log.h"
76 , name_(function_name)
82 func_(params, result);
114 XMLRPCManager::XMLRPCManager()
116 , shutting_down_(false)
117 , unbind_requested_(false)
138 std::stringstream ss;
161 for (V_CachedXmlRpcClient::iterator i =
clients_.begin();
178 for (
int wait_count = 0; !
clients_.empty() && wait_count < 10; wait_count++)
188 S_ASyncXMLRPCConnection::iterator it =
connections_.begin();
189 S_ASyncXMLRPCConnection::iterator end =
connections_.end();
190 for (; it != end; ++it)
212 if (
response.getType() != XmlRpcValue::TypeArray)
224 if (
response[0].getType() != XmlRpcValue::TypeInt)
226 ROSCPP_LOG_DEBUG(
"XML-RPC call [%s] didn't return a int as the 1st element",
231 if (
response[1].getType() != XmlRpcValue::TypeString)
233 ROSCPP_LOG_DEBUG(
"XML-RPC call [%s] didn't return a string as the 2nd element",
237 std::string status_string =
response[1];
238 if (status_code != 1)
241 method.c_str(), status_code, status_string.c_str());
250 std::string empty_array =
"<value><array><data></data></array></value>";
267 for (; it != end; ++it)
293 S_ASyncXMLRPCConnection::iterator it =
connections_.begin();
294 S_ASyncXMLRPCConnection::iterator end =
connections_.end();
295 for (; it != end; ++it)
308 for (; it != end; ++it)
326 for (V_CachedXmlRpcClient::iterator i =
clients_.begin();
332 if (i->client_->getHost() == host &&
333 i->client_->getPort() == port &&
334 i->client_->getUri() == uri)
378 for (V_CachedXmlRpcClient::iterator i =
clients_.begin();
420 info.
name = function_name;