rclcpp  master
C++ ROS Client Library API
client.hpp
Go to the documentation of this file.
1 // Copyright 2014 Open Source Robotics Foundation, Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef RCLCPP__CLIENT_HPP_
16 #define RCLCPP__CLIENT_HPP_
17 
18 #include <future>
19 #include <map>
20 #include <memory>
21 #include <sstream>
22 #include <string>
23 #include <tuple>
24 #include <utility>
25 
26 #include "rcl/client.h"
27 #include "rcl/error_handling.h"
28 #include "rcl/wait.h"
29 
30 #include "rclcpp/exceptions.hpp"
32 #include "rclcpp/macros.hpp"
35 #include "rclcpp/utilities.hpp"
38 
39 #include "rmw/error_handling.h"
40 #include "rmw/rmw.h"
41 
42 namespace rclcpp
43 {
44 
45 namespace node_interfaces
46 {
47 class NodeBaseInterface;
48 } // namespace node_interfaces
49 
50 namespace client
51 {
52 
54 {
55 public:
57 
59  ClientBase(
61  rclcpp::node_interfaces::NodeGraphInterface::SharedPtr node_graph,
62  const std::string & service_name);
63 
65  virtual ~ClientBase();
66 
68  const std::string &
69  get_service_name() const;
70 
72  rcl_client_t *
73  get_client_handle();
74 
76  const rcl_client_t *
77  get_client_handle() const;
78 
80  bool
81  service_is_ready() const;
82 
83  template<typename RatioT = std::milli>
84  bool
87  {
88  return wait_for_service_nanoseconds(
89  std::chrono::duration_cast<std::chrono::nanoseconds>(timeout)
90  );
91  }
92 
93  virtual std::shared_ptr<void> create_response() = 0;
94  virtual std::shared_ptr<rmw_request_id_t> create_request_header() = 0;
95  virtual void handle_response(
96  std::shared_ptr<rmw_request_id_t> request_header, std::shared_ptr<void> response) = 0;
97 
98 protected:
99  RCLCPP_DISABLE_COPY(ClientBase)
100 
102  bool
103  wait_for_service_nanoseconds(std::chrono::nanoseconds timeout);
104 
106  rcl_node_t *
107  get_rcl_node_handle();
108 
110  const rcl_node_t *
111  get_rcl_node_handle() const;
112 
113  rclcpp::node_interfaces::NodeGraphInterface::WeakPtr node_graph_;
115 
118 };
119 
120 template<typename ServiceT>
121 class Client : public ClientBase
122 {
123 public:
124  using SharedRequest = typename ServiceT::Request::SharedPtr;
125  using SharedResponse = typename ServiceT::Response::SharedPtr;
126 
129 
132 
135 
138 
140 
142  rclcpp::node_interfaces::NodeBaseInterface * node_base,
143  rclcpp::node_interfaces::NodeGraphInterface::SharedPtr node_graph,
144  const std::string & service_name,
145  rcl_client_options_t & client_options)
146  : ClientBase(node_base, node_graph, service_name)
147  {
148  using rosidl_typesupport_cpp::get_service_type_support_handle;
149  auto service_type_support_handle =
150  get_service_type_support_handle<ServiceT>();
152  &client_handle_,
153  this->get_rcl_node_handle(),
154  service_type_support_handle,
155  service_name.c_str(),
156  &client_options);
157  if (ret != RCL_RET_OK) {
158  if (ret == RCL_RET_SERVICE_NAME_INVALID) {
159  auto rcl_node_handle = this->get_rcl_node_handle();
160  // this will throw on any validation problem
161  rcl_reset_error();
163  service_name,
164  rcl_node_get_name(rcl_node_handle),
165  rcl_node_get_namespace(rcl_node_handle),
166  true);
167  }
168  rclcpp::exceptions::throw_from_rcl_error(ret, "could not create client");
169  }
170  }
171 
172  virtual ~Client()
173  {
174  if (rcl_client_fini(&client_handle_, this->get_rcl_node_handle()) != RCL_RET_OK) {
175  fprintf(stderr,
176  "Error in destruction of rcl client handle: %s\n", rcl_get_error_string_safe());
177  rcl_reset_error();
178  }
179  }
180 
183  {
184  return std::shared_ptr<void>(new typename ServiceT::Response());
185  }
186 
189  {
190  // TODO(wjwwood): This should probably use rmw_request_id's allocator.
191  // (since it is a C type)
193  }
194 
195  void
197  std::shared_ptr<void> response)
198  {
199  std::lock_guard<std::mutex> lock(pending_requests_mutex_);
200  auto typed_response = std::static_pointer_cast<typename ServiceT::Response>(response);
201  int64_t sequence_number = request_header->sequence_number;
202  // TODO(esteve) this should throw instead since it is not expected to happen in the first place
203  if (this->pending_requests_.count(sequence_number) == 0) {
204  fprintf(stderr, "Received invalid sequence number. Ignoring...\n");
205  return;
206  }
207  auto tuple = this->pending_requests_[sequence_number];
208  auto call_promise = std::get<0>(tuple);
209  auto callback = std::get<1>(tuple);
210  auto future = std::get<2>(tuple);
211  this->pending_requests_.erase(sequence_number);
212  call_promise->set_value(typed_response);
213  callback(future);
214  }
215 
218  {
219  return async_send_request(request, [](SharedFuture) {});
220  }
221 
222  template<
223  typename CallbackT,
224  typename std::enable_if<
226  CallbackT,
228  >::value
229  >::type * = nullptr
230  >
232  async_send_request(SharedRequest request, CallbackT && cb)
233  {
234  std::lock_guard<std::mutex> lock(pending_requests_mutex_);
235  int64_t sequence_number;
236  rcl_ret_t ret = rcl_send_request(get_client_handle(), request.get(), &sequence_number);
237  if (RCL_RET_OK != ret) {
238  rclcpp::exceptions::throw_from_rcl_error(ret, "failed to send request");
239  }
240 
241  SharedPromise call_promise = std::make_shared<Promise>();
242  SharedFuture f(call_promise->get_future());
243  pending_requests_[sequence_number] =
244  std::make_tuple(call_promise, std::forward<CallbackType>(cb), f);
245  return f;
246  }
247 
248  template<
249  typename CallbackT,
250  typename std::enable_if<
252  CallbackT,
254  >::value
255  >::type * = nullptr
256  >
258  async_send_request(SharedRequest request, CallbackT && cb)
259  {
260  SharedPromiseWithRequest promise = std::make_shared<PromiseWithRequest>();
261  SharedFutureWithRequest future_with_request(promise->get_future());
262 
263  auto wrapping_cb = [future_with_request, promise, request, &cb](SharedFuture future) {
264  auto response = future.get();
265  promise->set_value(std::make_pair(request, response));
266  cb(future_with_request);
267  };
268 
269  async_send_request(request, wrapping_cb);
270 
271  return future_with_request;
272  }
273 
274 private:
276 
278  std::mutex pending_requests_mutex_;
279 };
280 
281 } // namespace client
282 } // namespace rclcpp
283 
284 #endif // RCLCPP__CLIENT_HPP_
std::shared_ptr< rmw_request_id_t > create_request_header()
Definition: client.hpp:188
SharedFutureWithRequest async_send_request(SharedRequest request, CallbackT &&cb)
Definition: client.hpp:258
std::shared_ptr< rcl_node_t > node_handle_
Definition: client.hpp:114
#define RCLCPP_DISABLE_COPY(...)
Definition: macros.hpp:26
#define rcl_reset_error
rmw_ret_t rcl_ret_t
Definition: allocator_common.hpp:24
T make_tuple(T... args)
rcl_ret_t rcl_send_request(const rcl_client_t *client, const void *ros_request, int64_t *sequence_number)
std::string expand_topic_or_service_name(const std::string &name, const std::string &node_name, const std::string &namespace_, bool is_service=false)
Expand a topic or service name and throw if it is not valid.
#define RCL_RET_OK
virtual ~Client()
Definition: client.hpp:172
void throw_from_rcl_error(rcl_ret_t ret, const std::string &prefix="", const rcl_error_state_t *error_state=nullptr, void(*reset_error)()=rcl_reset_error)
Throw a C++ std::exception which was created based on an rcl error.
rcl_ret_t rcl_client_init(rcl_client_t *client, const rcl_node_t *node, const rosidl_service_type_support_t *type_support, const char *service_name, const rcl_client_options_t *options)
#define RCLCPP_SMART_PTR_DEFINITIONS(...)
Definition: macros.hpp:36
SharedFuture async_send_request(SharedRequest request, CallbackT &&cb)
Definition: client.hpp:232
Definition: function_traits.hpp:143
Pure virtual interface class for the NodeBase part of the Node API.
Definition: node_base_interface.hpp:36
T make_pair(T... args)
typename rcl_interfaces::srv::GetParameters ::Response::SharedPtr SharedResponse
Definition: client.hpp:125
T static_pointer_cast(T... args)
#define rcl_get_error_string_safe
std::string service_name_
Definition: client.hpp:117
typename rcl_interfaces::srv::GetParameters ::Request::SharedPtr SharedRequest
Definition: client.hpp:124
#define RCLCPP_SMART_PTR_DEFINITIONS_NOT_COPYABLE(...)
Definition: macros.hpp:51
T get(T... args)
#define RCLCPP_PUBLIC
Definition: visibility_control.hpp:50
Definition: client.hpp:53
std::shared_ptr< void > create_response()
Definition: client.hpp:182
#define RCL_RET_SERVICE_NAME_INVALID
const char * rcl_node_get_name(const rcl_node_t *node)
SharedFuture async_send_request(SharedRequest request)
Definition: client.hpp:217
const char * rcl_node_get_namespace(const rcl_node_t *node)
void handle_response(std::shared_ptr< rmw_request_id_t > request_header, std::shared_ptr< void > response)
Definition: client.hpp:196
rcl_client_t rcl_get_zero_initialized_client(void)
rcl_ret_t rcl_client_fini(rcl_client_t *client, rcl_node_t *node)
Definition: client.hpp:121
rclcpp::node_interfaces::NodeGraphInterface::WeakPtr node_graph_
Definition: client.hpp:113
bool wait_for_service(std::chrono::duration< int64_t, RatioT > timeout=std::chrono::duration< int64_t, RatioT >(-1))
Definition: client.hpp:85