ROS 2 rclcpp + rcl - rolling  rolling-20536064
ROS 2 C++ Client Library with ROS Client Library
node.cpp
1 // Copyright 2015 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 #include <algorithm>
16 #include <array>
17 #include <limits>
18 #include <map>
19 #include <memory>
20 #include <string>
21 #include <vector>
22 
23 #include "rcl/arguments.h"
24 
25 #include "rclcpp/create_generic_client.hpp"
26 #include "rclcpp/detail/qos_parameters.hpp"
27 #include "rclcpp/exceptions.hpp"
28 #include "rclcpp/graph_listener.hpp"
29 #include "rclcpp/node.hpp"
30 #include "rclcpp/node_interfaces/node_base.hpp"
31 #include "rclcpp/node_interfaces/node_clock.hpp"
32 #include "rclcpp/node_interfaces/node_graph.hpp"
33 #include "rclcpp/node_interfaces/node_logging.hpp"
34 #include "rclcpp/node_interfaces/node_parameters.hpp"
35 #include "rclcpp/node_interfaces/node_services.hpp"
36 #include "rclcpp/node_interfaces/node_time_source.hpp"
37 #include "rclcpp/node_interfaces/node_timers.hpp"
38 #include "rclcpp/node_interfaces/node_topics.hpp"
39 #include "rclcpp/node_interfaces/node_type_descriptions.hpp"
40 #include "rclcpp/node_interfaces/node_waitables.hpp"
41 #include "rclcpp/qos_overriding_options.hpp"
42 
43 #include "rmw/validate_namespace.h"
44 
45 #include "./detail/resolve_parameter_overrides.hpp"
46 
47 using rclcpp::Node;
49 using rclcpp::exceptions::throw_from_rcl_error;
50 
51 namespace
52 {
53 
54 RCLCPP_LOCAL
55 std::string
56 extend_sub_namespace(const std::string & existing_sub_namespace, const std::string & extension)
57 {
58  // Assumption is that the existing_sub_namespace does not need checking
59  // because it would be checked already when it was set with this function.
60 
61  if (extension.empty()) {
63  "sub_namespace",
64  extension.c_str(),
65  "sub-nodes should not extend nodes by an empty sub-namespace",
66  0);
67  } else if (extension.front() == '/') {
68  // check if the new sub-namespace extension is absolute
70  "sub_namespace",
71  extension.c_str(),
72  "a sub-namespace should not have a leading /",
73  0);
74  }
75 
76  std::string new_sub_namespace;
77  if (existing_sub_namespace.empty()) {
78  new_sub_namespace = extension;
79  } else {
80  new_sub_namespace = existing_sub_namespace + "/" + extension;
81  }
82 
83  // remove any trailing `/` so that new extensions do not result in `//`
84  if (new_sub_namespace.back() == '/') {
85  new_sub_namespace = new_sub_namespace.substr(0, new_sub_namespace.size() - 1);
86  }
87 
88  return new_sub_namespace;
89 }
90 
91 RCLCPP_LOCAL
92 std::string
93 create_effective_namespace(const std::string & node_namespace, const std::string & sub_namespace)
94 {
95  // Assumption is that both the node_namespace and sub_namespace are conforming
96  // and do not need trimming of `/` and other things, as they were validated
97  // in other functions already.
98 
99  // A node may not have a sub_namespace if it is no sub_node. In this case,
100  // just return the original namespace
101  if (sub_namespace.empty()) {
102  return node_namespace;
103  } else if (node_namespace.back() == '/') {
104  // this is the special case where node_namespace is just `/`
105  return node_namespace + sub_namespace;
106  } else {
107  return node_namespace + "/" + sub_namespace;
108  }
109 }
110 
111 } // namespace
112 
114 
123 {
124 public:
125  NodeImpl() = default;
126  ~NodeImpl() = default;
127 };
128 
129 Node::Node(
130  const std::string & node_name,
131  const NodeOptions & options)
132 : Node(node_name, "", options)
133 {
134 }
135 
136 static
138 get_parameter_events_qos(
140  const rclcpp::NodeOptions & options)
141 {
142  auto final_qos = options.parameter_event_qos();
143  const rcl_arguments_t * global_args = nullptr;
144  auto * rcl_options = options.get_rcl_node_options();
145  if (rcl_options->use_global_arguments) {
146  auto context_ptr = node_base.get_context()->get_rcl_context();
147  global_args = &(context_ptr->global_arguments);
148  }
149 
150  auto parameter_overrides = rclcpp::detail::resolve_parameter_overrides(
151  node_base.get_fully_qualified_name(),
152  options.parameter_overrides(),
153  &rcl_options->arguments,
154  global_args);
155 
156  auto final_topic_name = node_base.resolve_topic_or_service_name("/parameter_events", false);
157  auto prefix = "qos_overrides." + final_topic_name + ".";
158  std::array<rclcpp::QosPolicyKind, 4> policies = {
159  rclcpp::QosPolicyKind::Depth,
160  rclcpp::QosPolicyKind::Durability,
161  rclcpp::QosPolicyKind::History,
162  rclcpp::QosPolicyKind::Reliability,
163  };
164  for (const auto & policy : policies) {
165  auto param_name = prefix + rclcpp::qos_policy_kind_to_cstr(policy);
166  auto it = parameter_overrides.find(param_name);
167  auto value = it != parameter_overrides.end() ?
168  it->second :
169  rclcpp::detail::get_default_qos_param_value(policy, options.parameter_event_qos());
170  rclcpp::detail::apply_qos_override(policy, value, final_qos);
171  }
172  return final_qos;
173 }
174 
176  const std::string & node_name,
177  const std::string & namespace_,
178  const NodeOptions & options)
179 : node_base_(new rclcpp::node_interfaces::NodeBase(
180  node_name,
181  namespace_,
182  options.context(),
183  *(options.get_rcl_node_options()),
184  options.use_intra_process_comms(),
185  options.enable_topic_statistics())),
186  node_graph_(new rclcpp::node_interfaces::NodeGraph(node_base_.get())),
187  node_logging_(new rclcpp::node_interfaces::NodeLogging(node_base_)),
188  node_timers_(new rclcpp::node_interfaces::NodeTimers(node_base_.get())),
189  node_topics_(new rclcpp::node_interfaces::NodeTopics(node_base_.get(), node_timers_.get())),
190  node_services_(new rclcpp::node_interfaces::NodeServices(node_base_.get())),
191  node_clock_(new rclcpp::node_interfaces::NodeClock(
192  node_base_,
193  node_topics_,
194  node_graph_,
195  node_services_,
196  node_logging_,
197  options.clock_type()
198  )),
199  node_parameters_(new rclcpp::node_interfaces::NodeParameters(
200  node_base_,
201  node_logging_,
202  node_topics_,
203  node_services_,
204  node_clock_,
205  options.parameter_overrides(),
206  options.start_parameter_services(),
207  options.start_parameter_event_publisher(),
208  // This is needed in order to apply parameter overrides to the qos profile provided in
209  // options.
210  get_parameter_events_qos(*node_base_, options),
211  options.parameter_event_publisher_options(),
212  options.allow_undeclared_parameters(),
213  options.automatically_declare_parameters_from_overrides()
214  )),
215  node_time_source_(new rclcpp::node_interfaces::NodeTimeSource(
216  node_base_,
217  node_topics_,
218  node_graph_,
219  node_services_,
220  node_logging_,
221  node_clock_,
222  node_parameters_,
223  options.clock_qos(),
224  options.use_clock_thread()
225  )),
226  node_type_descriptions_(new rclcpp::node_interfaces::NodeTypeDescriptions(
227  node_base_,
228  node_logging_,
229  node_parameters_,
230  node_services_
231  )),
232  node_waitables_(new rclcpp::node_interfaces::NodeWaitables(node_base_.get())),
233  node_options_(options),
234  sub_namespace_(""),
235  effective_namespace_(create_effective_namespace(this->get_namespace(), sub_namespace_))
236 {
237  // we have got what we wanted directly from the overrides,
238  // but declare the parameters anyway so they are visible.
239  rclcpp::detail::declare_qos_parameters(
241  {
242  QosPolicyKind::Depth,
243  QosPolicyKind::Durability,
244  QosPolicyKind::History,
245  QosPolicyKind::Reliability,
246  },
247  node_parameters_,
248  node_topics_->resolve_topic_name("/parameter_events"),
249  options.parameter_event_qos(),
251 
252  if (options.log_level() != rclcpp::Logger::Level::Unset) {
253  node_logging_->get_logger().set_level(options.log_level());
254  }
255  if (options.enable_logger_service()) {
256  node_logging_->create_logger_services(node_services_);
257  }
258 }
259 
261  const Node & other,
262  const std::string & sub_namespace)
263 : node_base_(other.node_base_),
264  node_graph_(other.node_graph_),
265  node_logging_(other.node_logging_),
266  node_timers_(other.node_timers_),
267  node_topics_(other.node_topics_),
268  node_services_(other.node_services_),
269  node_clock_(other.node_clock_),
270  node_parameters_(other.node_parameters_),
271  node_time_source_(other.node_time_source_),
272  node_waitables_(other.node_waitables_),
273  node_options_(other.node_options_),
274  sub_namespace_(extend_sub_namespace(other.get_sub_namespace(), sub_namespace)),
275  effective_namespace_(create_effective_namespace(other.get_namespace(), sub_namespace_)),
276  hidden_impl_(other.hidden_impl_)
277 {
278  // Validate new effective namespace.
279  int validation_result;
280  size_t invalid_index;
281  rmw_ret_t rmw_ret =
282  rmw_validate_namespace(effective_namespace_.c_str(), &validation_result, &invalid_index);
283 
284  if (rmw_ret != RMW_RET_OK) {
285  if (rmw_ret == RMW_RET_INVALID_ARGUMENT) {
286  throw_from_rcl_error(RCL_RET_INVALID_ARGUMENT, "failed to validate subnode namespace");
287  }
288  throw_from_rcl_error(RCL_RET_ERROR, "failed to validate subnode namespace");
289  }
290 
291  if (validation_result != RMW_NAMESPACE_VALID) {
293  effective_namespace_.c_str(),
294  rmw_namespace_validation_result_string(validation_result),
295  invalid_index);
296  }
297 }
298 
299 Node::~Node()
300 {
301  // release sub-interfaces in an order that allows them to consult with node_base during tear-down
302  node_waitables_.reset();
303  node_time_source_.reset();
304  node_parameters_.reset();
305  node_clock_.reset();
306  node_services_.reset();
307  node_topics_.reset();
308  node_timers_.reset();
309  node_logging_.reset();
310  node_graph_.reset();
311 }
312 
313 const char *
315 {
316  return node_base_->get_name();
317 }
318 
319 const char *
321 {
322  return node_base_->get_namespace();
323 }
324 
325 const char *
327 {
328  return node_base_->get_fully_qualified_name();
329 }
330 
333 {
334  return node_logging_->get_logger();
335 }
336 
337 rclcpp::CallbackGroup::SharedPtr
339  rclcpp::CallbackGroupType group_type,
340  bool automatically_add_to_executor_with_node)
341 {
342  return node_base_->create_callback_group(group_type, automatically_add_to_executor_with_node);
343 }
344 
347  const std::string & name,
348  const rclcpp::ParameterValue & default_value,
349  const rcl_interfaces::msg::ParameterDescriptor & parameter_descriptor,
350  bool ignore_override)
351 {
352  return this->node_parameters_->declare_parameter(
353  name,
354  default_value,
355  parameter_descriptor,
356  ignore_override);
357 }
358 
361  const std::string & name,
362  rclcpp::ParameterType type,
363  const rcl_interfaces::msg::ParameterDescriptor & parameter_descriptor,
364  bool ignore_override)
365 {
366  return this->node_parameters_->declare_parameter(
367  name,
368  type,
369  parameter_descriptor,
370  ignore_override);
371 }
372 
373 void
374 Node::undeclare_parameter(const std::string & name)
375 {
376  this->node_parameters_->undeclare_parameter(name);
377 }
378 
379 bool
380 Node::has_parameter(const std::string & name) const
381 {
382  return this->node_parameters_->has_parameter(name);
383 }
384 
385 rcl_interfaces::msg::SetParametersResult
387 {
388  return node_parameters_->set_parameters_atomically({parameter});
389 }
390 
391 std::vector<rcl_interfaces::msg::SetParametersResult>
392 Node::set_parameters(const std::vector<rclcpp::Parameter> & parameters)
393 {
394  return node_parameters_->set_parameters(parameters);
395 }
396 
397 rcl_interfaces::msg::SetParametersResult
398 Node::set_parameters_atomically(const std::vector<rclcpp::Parameter> & parameters)
399 {
400  return node_parameters_->set_parameters_atomically(parameters);
401 }
402 
404 Node::get_parameter(const std::string & name) const
405 {
406  return node_parameters_->get_parameter(name);
407 }
408 
409 bool
410 Node::get_parameter(const std::string & name, rclcpp::Parameter & parameter) const
411 {
412  return node_parameters_->get_parameter(name, parameter);
413 }
414 
415 std::vector<rclcpp::Parameter>
417  const std::vector<std::string> & names) const
418 {
419  return node_parameters_->get_parameters(names);
420 }
421 
422 rcl_interfaces::msg::ParameterDescriptor
423 Node::describe_parameter(const std::string & name) const
424 {
425  auto result = node_parameters_->describe_parameters({name});
426  if (0 == result.size()) {
428  }
429  if (result.size() > 1) {
430  throw std::runtime_error("number of described parameters unexpectedly more than one");
431  }
432  return result.front();
433 }
434 
435 std::vector<rcl_interfaces::msg::ParameterDescriptor>
436 Node::describe_parameters(const std::vector<std::string> & names) const
437 {
438  return node_parameters_->describe_parameters(names);
439 }
440 
441 std::vector<uint8_t>
442 Node::get_parameter_types(const std::vector<std::string> & names) const
443 {
444  return node_parameters_->get_parameter_types(names);
445 }
446 
447 rcl_interfaces::msg::ListParametersResult
448 Node::list_parameters(const std::vector<std::string> & prefixes, uint64_t depth) const
449 {
450  return node_parameters_->list_parameters(prefixes, depth);
451 }
452 
453 rclcpp::Node::PreSetParametersCallbackHandle::SharedPtr
454 Node::add_pre_set_parameters_callback(PreSetParametersCallbackType callback)
455 {
456  return node_parameters_->add_pre_set_parameters_callback(callback);
457 }
458 
459 rclcpp::Node::OnSetParametersCallbackHandle::SharedPtr
460 Node::add_on_set_parameters_callback(OnSetParametersCallbackType callback)
461 {
462  return node_parameters_->add_on_set_parameters_callback(callback);
463 }
464 
465 rclcpp::Node::PostSetParametersCallbackHandle::SharedPtr
466 Node::add_post_set_parameters_callback(PostSetParametersCallbackType callback)
467 {
468  return node_parameters_->add_post_set_parameters_callback(callback);
469 }
470 
471 void
473 {
474  node_parameters_->remove_pre_set_parameters_callback(handler);
475 }
476 
477 void
479 {
480  node_parameters_->remove_on_set_parameters_callback(handler);
481 }
482 
483 void
485 {
486  node_parameters_->remove_post_set_parameters_callback(handler);
487 }
488 
489 std::vector<std::string>
491 {
492  return node_graph_->get_node_names();
493 }
494 
495 std::map<std::string, std::vector<std::string>>
497 {
498  return node_graph_->get_topic_names_and_types();
499 }
500 
501 std::map<std::string, std::vector<std::string>>
503 {
504  return node_graph_->get_service_names_and_types();
505 }
506 
507 std::map<std::string, std::vector<std::string>>
509  const std::string & node_name,
510  const std::string & namespace_) const
511 {
512  return node_graph_->get_service_names_and_types_by_node(
513  node_name, namespace_);
514 }
515 
516 size_t
517 Node::count_publishers(const std::string & topic_name) const
518 {
519  return node_graph_->count_publishers(topic_name);
520 }
521 
522 size_t
523 Node::count_subscribers(const std::string & topic_name) const
524 {
525  return node_graph_->count_subscribers(topic_name);
526 }
527 
528 size_t
529 Node::count_clients(const std::string & service_name) const
530 {
531  return node_graph_->count_clients(service_name);
532 }
533 
534 size_t
535 Node::count_services(const std::string & service_name) const
536 {
537  return node_graph_->count_services(service_name);
538 }
539 
540 std::vector<rclcpp::TopicEndpointInfo>
541 Node::get_publishers_info_by_topic(const std::string & topic_name, bool no_mangle) const
542 {
543  return node_graph_->get_publishers_info_by_topic(topic_name, no_mangle);
544 }
545 
546 std::vector<rclcpp::TopicEndpointInfo>
547 Node::get_subscriptions_info_by_topic(const std::string & topic_name, bool no_mangle) const
548 {
549  return node_graph_->get_subscriptions_info_by_topic(topic_name, no_mangle);
550 }
551 
552 std::vector<rclcpp::ServiceEndpointInfo>
553 Node::get_clients_info_by_service(const std::string & service_name, bool no_mangle) const
554 {
555  return node_graph_->get_clients_info_by_service(service_name, no_mangle);
556 }
557 
558 std::vector<rclcpp::ServiceEndpointInfo>
559 Node::get_servers_info_by_service(const std::string & service_name, bool no_mangle) const
560 {
561  return node_graph_->get_servers_info_by_service(service_name, no_mangle);
562 }
563 
564 void
566  const node_interfaces::NodeBaseInterface::CallbackGroupFunction & func)
567 {
568  node_base_->for_each_callback_group(func);
569 }
570 
571 rclcpp::Event::SharedPtr
573 {
574  return node_graph_->get_graph_event();
575 }
576 
577 void
579  const rclcpp::Event::SharedPtr & event,
580  std::chrono::nanoseconds timeout)
581 {
582  node_graph_->wait_for_graph_change(event, timeout);
583 }
584 
585 rclcpp::Clock::SharedPtr
587 {
588  return node_clock_->get_clock();
589 }
590 
591 rclcpp::Clock::ConstSharedPtr
593 {
594  return node_clock_->get_clock();
595 }
596 
598 Node::now() const
599 {
600  return node_clock_->get_clock()->now();
601 }
602 
603 rclcpp::node_interfaces::NodeBaseInterface::SharedPtr
605 {
606  return node_base_;
607 }
608 
609 rclcpp::node_interfaces::NodeClockInterface::SharedPtr
611 {
612  return node_clock_;
613 }
614 
615 rclcpp::node_interfaces::NodeGraphInterface::SharedPtr
617 {
618  return node_graph_;
619 }
620 
621 rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr
623 {
624  return node_logging_;
625 }
626 
627 rclcpp::node_interfaces::NodeTimeSourceInterface::SharedPtr
629 {
630  return node_time_source_;
631 }
632 
633 rclcpp::node_interfaces::NodeTimersInterface::SharedPtr
635 {
636  return node_timers_;
637 }
638 
639 rclcpp::node_interfaces::NodeTopicsInterface::SharedPtr
641 {
642  return node_topics_;
643 }
644 
645 rclcpp::node_interfaces::NodeTypeDescriptionsInterface::SharedPtr
647 {
648  return node_type_descriptions_;
649 }
650 
651 rclcpp::node_interfaces::NodeServicesInterface::SharedPtr
653 {
654  return node_services_;
655 }
656 
657 rclcpp::node_interfaces::NodeParametersInterface::SharedPtr
659 {
660  return node_parameters_;
661 }
662 
663 rclcpp::node_interfaces::NodeWaitablesInterface::SharedPtr
665 {
666  return node_waitables_;
667 }
668 
669 const std::string &
671 {
672  return this->sub_namespace_;
673 }
674 
675 const std::string &
677 {
678  return this->effective_namespace_;
679 }
680 
681 Node::SharedPtr
682 Node::create_sub_node(const std::string & sub_namespace)
683 {
684  // Cannot use make_shared<Node>() here as it requires the constructor to be
685  // public, and this constructor is intentionally protected instead.
686  return std::shared_ptr<Node>(new Node(*this, sub_namespace));
687 }
688 
689 const NodeOptions &
691 {
692  return this->node_options_;
693 }
694 
695 rclcpp::GenericClient::SharedPtr
697  const std::string & service_name,
698  const std::string & service_type,
699  const rclcpp::QoS & qos,
700  const rclcpp::CallbackGroup::SharedPtr & group)
701 {
703  node_base_,
704  node_graph_,
705  node_services_,
706  extend_name_with_sub_namespace(service_name, this->get_sub_namespace()),
707  service_type,
708  qos,
709  group);
710 }
Internal implementation to provide hidden and API/ABI stable changes to the Node.
Definition: node.cpp:123
@ Unset
The unset log level.
Encapsulation of options for node initialization.
RCLCPP_PUBLIC rclcpp::Logger::Level log_level() const
Return the log_level option.
RCLCPP_PUBLIC const rclcpp::QoS & parameter_event_qos() const
Return a reference to the parameter_event_qos QoS.
RCLCPP_PUBLIC bool enable_logger_service() const
Return the enable_logger_service flag.
RCLCPP_PUBLIC std::vector< rclcpp::Parameter > & parameter_overrides()
Return a reference to the list of parameter overrides.
RCLCPP_PUBLIC const rcl_node_options_t * get_rcl_node_options() const
Return the rcl_node_options used by the node.
Node is the single point of entry for creating publishers and subscribers.
Definition: node.hpp:79
RCLCPP_PUBLIC rclcpp::Logger get_logger() const
Get the logger of the node.
Definition: node.cpp:332
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeWaitablesInterface::SharedPtr get_node_waitables_interface()
Return the Node's internal NodeWaitablesInterface implementation.
Definition: node.cpp:664
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeTopicsInterface::SharedPtr get_node_topics_interface()
Return the Node's internal NodeTopicsInterface implementation.
Definition: node.cpp:640
RCLCPP_PUBLIC std::vector< rclcpp::ServiceEndpointInfo > get_clients_info_by_service(const std::string &service_name, bool no_mangle=false) const
Return the service endpoint information about clients on a given service.
Definition: node.cpp:553
RCLCPP_PUBLIC std::vector< rclcpp::Parameter > get_parameters(const std::vector< std::string > &names) const
Return the parameters by the given parameter names.
Definition: node.cpp:416
RCLCPP_PUBLIC RCUTILS_WARN_UNUSED OnSetParametersCallbackHandle::SharedPtr add_on_set_parameters_callback(OnSetParametersCallbackType callback)
Add a callback to validate parameters before they are set.
Definition: node.cpp:460
RCLCPP_PUBLIC bool has_parameter(const std::string &name) const
Return true if a given parameter is declared.
Definition: node.cpp:380
RCLCPP_PUBLIC rclcpp::Node::SharedPtr create_sub_node(const std::string &sub_namespace)
Create a sub-node, which will extend the namespace of all entities created with it.
Definition: node.cpp:682
RCLCPP_PUBLIC rcl_interfaces::msg::SetParametersResult set_parameter(const rclcpp::Parameter &parameter)
Set a single parameter.
Definition: node.cpp:386
RCLCPP_PUBLIC rclcpp::Clock::SharedPtr get_clock()
Get a clock as a non-const shared pointer which is managed by the node.
Definition: node.cpp:586
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeTimersInterface::SharedPtr get_node_timers_interface()
Return the Node's internal NodeTimersInterface implementation.
Definition: node.cpp:634
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeParametersInterface::SharedPtr get_node_parameters_interface()
Return the Node's internal NodeParametersInterface implementation.
Definition: node.cpp:658
RCLCPP_PUBLIC std::vector< rclcpp::TopicEndpointInfo > get_publishers_info_by_topic(const std::string &topic_name, bool no_mangle=false) const
Return the topic endpoint information about publishers on a given topic.
Definition: node.cpp:541
RCLCPP_PUBLIC const rclcpp::ParameterValue & declare_parameter(const std::string &name, const rclcpp::ParameterValue &default_value, const rcl_interfaces::msg::ParameterDescriptor &parameter_descriptor=rcl_interfaces::msg::ParameterDescriptor(), bool ignore_override=false)
Declare and initialize a parameter, return the effective value.
Definition: node.cpp:346
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr get_node_logging_interface()
Return the Node's internal NodeLoggingInterface implementation.
Definition: node.cpp:622
RCLCPP_PUBLIC const std::string & get_effective_namespace() const
Return the effective namespace that is used when creating entities.
Definition: node.cpp:676
RCLCPP_PUBLIC size_t count_publishers(const std::string &topic_name) const
Return the number of publishers created for a given topic.
Definition: node.cpp:517
RCLCPP_PUBLIC std::map< std::string, std::vector< std::string > > get_service_names_and_types() const
Return a map of existing service names to list of service types.
Definition: node.cpp:502
RCLCPP_PUBLIC size_t count_subscribers(const std::string &topic_name) const
Return the number of subscribers created for a given topic.
Definition: node.cpp:523
RCLCPP_PUBLIC std::vector< rcl_interfaces::msg::ParameterDescriptor > describe_parameters(const std::vector< std::string > &names) const
Return a vector of parameter descriptors, one for each of the given names.
Definition: node.cpp:436
RCLCPP_PUBLIC Time now() const
Returns current time from the node clock.
Definition: node.cpp:598
RCLCPP_PUBLIC rclcpp::Event::SharedPtr get_graph_event()
Return a graph event, which will be set anytime a graph change occurs.
Definition: node.cpp:572
RCLCPP_PUBLIC void for_each_callback_group(const node_interfaces::NodeBaseInterface::CallbackGroupFunction &func)
Iterate over the callback groups in the node, calling the given function on each valid one.
Definition: node.cpp:565
RCLCPP_PUBLIC rcl_interfaces::msg::ParameterDescriptor describe_parameter(const std::string &name) const
Return the parameter descriptor for the given parameter name.
Definition: node.cpp:423
RCLCPP_PUBLIC std::vector< rclcpp::ServiceEndpointInfo > get_servers_info_by_service(const std::string &service_name, bool no_mangle=false) const
Return the service endpoint information about servers on a given service.
Definition: node.cpp:559
RCLCPP_PUBLIC void remove_on_set_parameters_callback(const OnSetParametersCallbackHandle *const handler)
Remove a callback registered with add_on_set_parameters_callback.
Definition: node.cpp:478
RCLCPP_PUBLIC std::map< std::string, std::vector< std::string > > get_topic_names_and_types() const
Return a map of existing topic names to list of topic types.
Definition: node.cpp:496
RCLCPP_PUBLIC rclcpp::Parameter get_parameter(const std::string &name) const
Return the parameter by the given name.
Definition: node.cpp:404
RCLCPP_PUBLIC Node(const std::string &node_name, const NodeOptions &options=NodeOptions())
Create a new node with the specified name.
Definition: node.cpp:129
RCLCPP_PUBLIC size_t count_services(const std::string &service_name) const
Return the number of services created for a given service.
Definition: node.cpp:535
RCLCPP_PUBLIC const rclcpp::NodeOptions & get_node_options() const
Return the NodeOptions used when creating this node.
Definition: node.cpp:690
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeBaseInterface::SharedPtr get_node_base_interface()
Return the Node's internal NodeBaseInterface implementation.
Definition: node.cpp:604
RCLCPP_PUBLIC rcl_interfaces::msg::SetParametersResult set_parameters_atomically(const std::vector< rclcpp::Parameter > &parameters)
Set one or more parameters, all at once.
Definition: node.cpp:398
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeClockInterface::SharedPtr get_node_clock_interface()
Return the Node's internal NodeClockInterface implementation.
Definition: node.cpp:610
RCLCPP_PUBLIC void remove_pre_set_parameters_callback(const PreSetParametersCallbackHandle *const handler)
Remove a callback registered with add_pre_set_parameters_callback.
Definition: node.cpp:472
RCLCPP_PUBLIC const char * get_name() const
Get the name of the node.
Definition: node.cpp:314
RCLCPP_PUBLIC std::vector< rcl_interfaces::msg::SetParametersResult > set_parameters(const std::vector< rclcpp::Parameter > &parameters)
Set one or more parameters, one at a time.
Definition: node.cpp:392
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeTypeDescriptionsInterface::SharedPtr get_node_type_descriptions_interface()
Return the Node's internal NodeTypeDescriptionsInterface implementation.
Definition: node.cpp:646
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeServicesInterface::SharedPtr get_node_services_interface()
Return the Node's internal NodeServicesInterface implementation.
Definition: node.cpp:652
RCLCPP_PUBLIC std::map< std::string, std::vector< std::string > > get_service_names_and_types_by_node(const std::string &node_name, const std::string &namespace_) const
Return a map of existing service names to list of service types for a specific node.
Definition: node.cpp:508
RCLCPP_PUBLIC void undeclare_parameter(const std::string &name)
Undeclare a previously declared parameter.
Definition: node.cpp:374
RCLCPP_PUBLIC std::vector< uint8_t > get_parameter_types(const std::vector< std::string > &names) const
Return a vector of parameter types, one for each of the given names.
Definition: node.cpp:442
RCLCPP_PUBLIC std::vector< rclcpp::TopicEndpointInfo > get_subscriptions_info_by_topic(const std::string &topic_name, bool no_mangle=false) const
Return the topic endpoint information about subscriptions on a given topic.
Definition: node.cpp:547
RCLCPP_PUBLIC rclcpp::CallbackGroup::SharedPtr create_callback_group(rclcpp::CallbackGroupType group_type, bool automatically_add_to_executor_with_node=true)
Create and return a callback group.
Definition: node.cpp:338
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeTimeSourceInterface::SharedPtr get_node_time_source_interface()
Return the Node's internal NodeTimeSourceInterface implementation.
Definition: node.cpp:628
RCLCPP_PUBLIC RCUTILS_WARN_UNUSED PreSetParametersCallbackHandle::SharedPtr add_pre_set_parameters_callback(PreSetParametersCallbackType callback)
Add a callback that gets triggered before parameters are validated.
Definition: node.cpp:454
RCLCPP_PUBLIC rcl_interfaces::msg::ListParametersResult list_parameters(const std::vector< std::string > &prefixes, uint64_t depth) const
Return a list of parameters with any of the given prefixes, up to the given depth.
Definition: node.cpp:448
RCLCPP_PUBLIC size_t count_clients(const std::string &service_name) const
Return the number of clients created for a given service.
Definition: node.cpp:529
RCLCPP_PUBLIC const char * get_fully_qualified_name() const
Get the fully-qualified name of the node.
Definition: node.cpp:326
RCLCPP_PUBLIC const std::string & get_sub_namespace() const
Return the sub-namespace, if this is a sub-node, otherwise an empty string.
Definition: node.cpp:670
RCLCPP_PUBLIC std::vector< std::string > get_node_names() const
Get the fully-qualified names of all available nodes.
Definition: node.cpp:490
RCLCPP_PUBLIC void wait_for_graph_change(const rclcpp::Event::SharedPtr &event, std::chrono::nanoseconds timeout)
Wait for a graph event to occur by waiting on an Event to become set.
Definition: node.cpp:578
RCLCPP_PUBLIC const char * get_namespace() const
Get the namespace of the node.
Definition: node.cpp:320
RCLCPP_PUBLIC RCUTILS_WARN_UNUSED PostSetParametersCallbackHandle::SharedPtr add_post_set_parameters_callback(PostSetParametersCallbackType callback)
Add a callback that gets triggered after parameters are set successfully.
Definition: node.cpp:466
RCLCPP_PUBLIC rclcpp::node_interfaces::NodeGraphInterface::SharedPtr get_node_graph_interface()
Return the Node's internal NodeGraphInterface implementation.
Definition: node.cpp:616
RCLCPP_PUBLIC void remove_post_set_parameters_callback(const PostSetParametersCallbackHandle *const handler)
Remove a callback registered with add_post_set_parameters_callback.
Definition: node.cpp:484
RCLCPP_PUBLIC rclcpp::GenericClient::SharedPtr create_generic_client(const std::string &service_name, const std::string &service_type, const rclcpp::QoS &qos=rclcpp::ServicesQoS(), const rclcpp::CallbackGroup::SharedPtr &group=nullptr)
Create and return a GenericClient.
Definition: node.cpp:696
Store the type and value of a parameter.
Structure to store an arbitrary parameter with templated get/set methods.
Definition: parameter.hpp:53
Encapsulation of Quality of Service settings.
Definition: qos.hpp:114
Options that are passed in subscription/publisher constructor to specify QoSConfigurability.
Thrown when a node namespace is invalid.
Definition: exceptions.hpp:78
Thrown when a any kind of name (node, namespace, topic, etc.) is invalid.
Definition: exceptions.hpp:43
Thrown if parameter is not declared, e.g. either set or get was called without first declaring.
Definition: exceptions.hpp:310
Pure virtual interface class for the NodeBase part of the Node API.
virtual RCLCPP_PUBLIC std::string resolve_topic_or_service_name(const std::string &name, bool is_service, bool only_expand=false) const =0
Expand and remap a given topic or service name.
virtual RCLCPP_PUBLIC const char * get_fully_qualified_name() const =0
Return the fully qualified name of the node.
virtual RCLCPP_PUBLIC rclcpp::Context::SharedPtr get_context()=0
Return the context of the node.
Versions of rosidl_typesupport_cpp::get_message_type_support_handle that handle adapted types.
RCLCPP_PUBLIC rclcpp::GenericClient::SharedPtr create_generic_client(const std::shared_ptr< node_interfaces::NodeBaseInterface > &node_base, const std::shared_ptr< node_interfaces::NodeGraphInterface > &node_graph, const std::shared_ptr< node_interfaces::NodeServicesInterface > &node_services, const std::string &service_name, const std::string &service_type, const rclcpp::QoS &qos=rclcpp::ServicesQoS(), const rclcpp::CallbackGroup::SharedPtr &group=rclcpp::CallbackGroup::SharedPtr())
Create a generic service client with a name of given type.
Hold output of parsing command line arguments.
Definition: arguments.h:36
#define RCL_RET_INVALID_ARGUMENT
Invalid argument return code.
Definition: types.h:35
#define RCL_RET_ERROR
Unspecified error return code.
Definition: types.h:29