-
Notifications
You must be signed in to change notification settings - Fork 330
/
talker_loaned_message.cpp
104 lines (91 loc) · 4.61 KB
/
talker_loaned_message.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright 2019 Open Source Robotics Foundation, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <chrono>
#include <cstdio>
#include <memory>
#include <utility>
#include "rclcpp/rclcpp.hpp"
#include "rclcpp_components/register_node_macro.hpp"
#include "std_msgs/msg/float64.hpp"
#include "std_msgs/msg/string.hpp"
#include "demo_nodes_cpp/visibility_control.h"
using namespace std::chrono_literals;
namespace demo_nodes_cpp
{
// Create a Talker class that subclasses the generic rclcpp::Node base class.
// The main function below will instantiate the class as a ROS node.
class LoanedMessageTalker : public rclcpp::Node
{
public:
DEMO_NODES_CPP_PUBLIC
explicit LoanedMessageTalker(const rclcpp::NodeOptions & options)
: Node("loaned_message_talker", options)
{
// Create a function for when messages are to be sent.
setvbuf(stdout, NULL, _IONBF, BUFSIZ);
// We differentiate in this demo between two fundamental message types - POD and non-POD
// PODs are plain old data types, meaning all the data of its type is encapsulated within
// the structure and does not require any heap allocation or dynamic resizing.
// non-PODs are essentially the opposite where the data size changes during runtime.
// All containers (including Strings) are such non-PODs.
// Most middlewares won't be able to loan non-POD datatypes.
// We thus feature two publishers in this demo where both, a POD and non-POD message
// will be used to publish data.
// The take-away for this is that the rclcpp API for message loaning can cope with
// either POD and non-POD transparently.
auto publish_message =
[this]() -> void
{
// We loan a message here and don't allocate the memory on the stack.
// For middlewares which support message loaning, this means the middleware
// completely owns the memory for this message.
// This enables a zero-copy message transport for middlewares with shared memory
// capabilities.
// If the middleware doesn't support this, the loaned message will be allocated
// with the allocator instance provided by the publisher.
auto pod_loaned_msg = pod_pub_->borrow_loaned_message();
auto pod_msg_data = static_cast<double>(count_);
pod_loaned_msg.get().data = pod_msg_data;
RCLCPP_INFO(this->get_logger(), "Publishing: '%f'", pod_msg_data);
// As the middleware might own the memory allocated for this message,
// a call to publish explicitly transfers ownership back to the middleware.
// The loaned message instance is thus no longer valid after a call to publish.
pod_pub_->publish(std::move(pod_loaned_msg));
// Similar as in the above case, we ask the middleware to loan a message.
// As most likely the middleware won't be able to loan a message for a non-POD
// data type, the memory for the message will be allocated on the heap within
// the scope of the `LoanedMessage` instance.
// After the call to `publish()`, the message will be correctly allocated.
auto non_pod_loaned_msg = non_pod_pub_->borrow_loaned_message();
auto non_pod_msg_data = "Hello World: " + std::to_string(count_);
non_pod_loaned_msg.get().data = non_pod_msg_data;
RCLCPP_INFO(this->get_logger(), "Publishing: '%s'", non_pod_msg_data.c_str());
non_pod_pub_->publish(std::move(non_pod_loaned_msg));
count_++;
};
// Create a publisher with a custom Quality of Service profile.
rclcpp::QoS qos(rclcpp::KeepLast(7));
pod_pub_ = this->create_publisher<std_msgs::msg::Float64>("chatter_pod", qos);
non_pod_pub_ = this->create_publisher<std_msgs::msg::String>("chatter", qos);
// Use a timer to schedule periodic message publishing.
timer_ = this->create_wall_timer(1s, publish_message);
}
private:
size_t count_ = 1;
rclcpp::Publisher<std_msgs::msg::Float64>::SharedPtr pod_pub_;
rclcpp::Publisher<std_msgs::msg::String>::SharedPtr non_pod_pub_;
rclcpp::TimerBase::SharedPtr timer_;
};
} // namespace demo_nodes_cpp
RCLCPP_COMPONENTS_REGISTER_NODE(demo_nodes_cpp::LoanedMessageTalker)