#include <loaned_message.hpp>
◆ LoanedMessage() [1/4]
template<typename MessageT , typename AllocatorT = std::allocator<void>>
Constructor of the LoanedMessage class.
The constructor of this class allocates memory for a given message type and associates this with a given publisher.
Given the publisher instance, a case differentiation is being performaned which decides whether the underlying middleware is able to allocate the appropriate memory for this message type or not. In the case that the middleware can not loan messages, the passed in allocator instance is being used to allocate the message within the scope of this class. Otherwise, the allocator is being ignored and the allocation is solely performaned in the underlying middleware with its appropriate allocation strategy. The need for this arises as the user code can be written explicitly targeting a middleware capable of loaning messages. However, this user code is ought to be usable even when dynamically linked against a middleware which doesn't support message loaning in which case the allocator will be used.
- Parameters
-
[in] | pub | rclcpp::Publisher instance to which the memory belongs |
[in] | allocator | Allocator instance in case middleware can not allocate messages |
- Exceptions
-
◆ LoanedMessage() [2/4]
template<typename MessageT , typename AllocatorT = std::allocator<void>>
Constructor of the LoanedMessage class.
The constructor of this class allocates memory for a given message type and associates this with a given publisher.
Given the publisher instance, a case differentiation is being performaned which decides whether the underlying middleware is able to allocate the appropriate memory for this message type or not. In the case that the middleware can not loan messages, the passed in allocator instance is being used to allocate the message within the scope of this class. Otherwise, the allocator is being ignored and the allocation is solely performaned in the underlying middleware with its appropriate allocation strategy. The need for this arises as the user code can be written explicitly targeting a middleware capable of loaning messages. However, this user code is ought to be usable even when dynamically linked against a middleware which doesn't support message loaning in which case the allocator will be used.
- Parameters
-
[in] | pub | rclcpp::Publisher instance to which the memory belongs |
[in] | allocator | Allocator instance in case middleware can not allocate messages |
- Exceptions
-
◆ LoanedMessage() [3/4]
template<typename MessageT , typename AllocatorT = std::allocator<void>>
◆ ~LoanedMessage()
template<typename MessageT , typename AllocatorT = std::allocator<void>>
Destructor of the LoanedMessage class.
The destructor has the explicit task to return the allocated memory for its message instance. If the message was previously allocated via the middleware, the message is getting returned to the middleware to cleanly destroy the allocation. In the case that the local allocator instance was used, the same instance is then being used to destroy the allocated memory.
The contract here is that the memory for this message is valid as long as this instance of the LoanedMessage class is alive.
◆ LoanedMessage() [4/4]
template<typename MessageT , typename AllocatorT = std::allocator<void>>
Deleted copy constructor to preserve memory integrity.
◆ is_valid()
template<typename MessageT , typename AllocatorT = std::allocator<void>>
Validate if the message was correctly allocated.
The allocated memory might not be always consistent and valid. Reasons why this could fail is that an allocation step was failing, e.g. just like malloc could fail or a maximum amount of previously allocated messages is exceeded in which case the loaned messages have to be returned to the middleware prior to be able to allocate a new one.
◆ get()
template<typename MessageT , typename AllocatorT = std::allocator<void>>
Access the ROS message instance.
A call to get()
will return a mutable reference to the underlying ROS message instance. This allows a user to modify the content of the message prior to publishing it.
If this reference is copied, the memory for this copy is no longer managed by the LoanedMessage instance and has to be cleanup individually.
◆ release()
template<typename MessageT , typename AllocatorT = std::allocator<void>>
Release ownership of the ROS message instance.
A call to release()
will unmanage the memory for the ROS message. That means that the destructor of this class will not free the memory on scope exit.
- Returns
- Raw pointer to the message instance.
◆ pub_
template<typename MessageT , typename AllocatorT = std::allocator<void>>
◆ message_
template<typename MessageT , typename AllocatorT = std::allocator<void>>
◆ message_allocator_
template<typename MessageT , typename AllocatorT = std::allocator<void>>
The documentation for this class was generated from the following file: