rclcpp  master
C++ ROS Client Library API
publisher_options.hpp
Go to the documentation of this file.
1 // Copyright 2019 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__PUBLISHER_OPTIONS_HPP_
16 #define RCLCPP__PUBLISHER_OPTIONS_HPP_
17 
18 #include <memory>
19 #include <string>
20 #include <vector>
21 
22 #include "rcl/publisher.h"
23 
27 #include "rclcpp/qos.hpp"
28 #include "rclcpp/qos_event.hpp"
29 
30 namespace rclcpp
31 {
32 
33 namespace callback_group
34 {
35 class CallbackGroup;
36 } // namespace callback_group
37 
40 {
43 
46 
49 
52  rmw_implementation_payload = nullptr;
53 };
54 
56 template<typename Allocator>
58 {
60  std::shared_ptr<Allocator> allocator = nullptr;
61 
63 
65  explicit PublisherOptionsWithAllocator(const PublisherOptionsBase & publisher_options_base)
66  : PublisherOptionsBase(publisher_options_base)
67  {}
68 
70  template<typename MessageT>
73  {
75  using AllocatorTraits = std::allocator_traits<Allocator>;
76  using MessageAllocatorT = typename AllocatorTraits::template rebind_alloc<MessageT>;
77  auto message_alloc = std::make_shared<MessageAllocatorT>(*this->get_allocator().get());
78  result.allocator = rclcpp::allocator::get_rcl_allocator<MessageT>(*message_alloc);
79  result.qos = qos.get_rmw_qos_profile();
80 
81  // Apply payload to rcl_publisher_options if necessary.
82  if (rmw_implementation_payload && rmw_implementation_payload->has_been_customized()) {
83  rmw_implementation_payload->modify_rmw_publisher_options(result.rmw_publisher_options);
84  }
85 
86  return result;
87  }
88 
89 
92  get_allocator() const
93  {
94  if (!this->allocator) {
95  // TODO(wjwwood): I would like to use the commented line instead, but
96  // cppcheck 1.89 fails with:
97  // Syntax Error: AST broken, binary operator '>' doesn't have two operands.
98  // return std::make_shared<Allocator>();
99  std::shared_ptr<Allocator> tmp(new Allocator());
100  return tmp;
101  }
102  return this->allocator;
103  }
104 };
105 
107 
108 } // namespace rclcpp
109 
110 #endif // RCLCPP__PUBLISHER_OPTIONS_HPP_
PublisherOptionsWithAllocator(const PublisherOptionsBase &publisher_options_base)
Constructor using base class as input.
Definition: publisher_options.hpp:65
Non-templated part of PublisherOptionsWithAllocator<Allocator>.
Definition: publisher_options.hpp:39
Encapsulation of Quality of Service settings.
Definition: qos.hpp:55
Contains callbacks for various types of events a Publisher can receive from the middleware.
Definition: qos_event.hpp:42
PublisherEventCallbacks event_callbacks
Callbacks for various events related to publishers.
Definition: publisher_options.hpp:45
rmw_qos_profile_t qos
IntraProcessSetting
Used as argument in create_publisher and create_subscriber.
Definition: intra_process_setting.hpp:22
rmw_qos_profile_t & get_rmw_qos_profile()
Return the rmw qos profile.
This header provides the get_node_base_interface() template function.
Definition: allocator_common.hpp:24
std::shared_ptr< rclcpp::callback_group::CallbackGroup > callback_group
Callback group in which the waitable items from the publisher should be placed.
Definition: publisher_options.hpp:48
std::shared_ptr< Allocator > get_allocator() const
Get the allocator, creating one if needed.
Definition: publisher_options.hpp:92
rcl_allocator_t allocator
Structure containing optional configuration for Publishers.
Definition: publisher_options.hpp:57
rmw_publisher_options_t rmw_publisher_options
rcl_publisher_options_t to_rcl_publisher_options(const rclcpp::QoS &qos) const
Convert this class, and a rclcpp::QoS, into an rcl_publisher_options_t.
Definition: publisher_options.hpp:72
Take intraprocess configuration from the node.