Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]
Messages
Services
Plugins
Recent questions tagged autoware_agnocast_wrapper at Robotics Stack Exchange
Package Summary
| Version | 1.8.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-06-02 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Takahiro Ishikawa-Aso
- Koichi Imai
- Atsushi Yano
- Yutaro Kobayashi
- Takumi Jin
- Tetsuhiro Kawaguchi
Authors
autoware_agnocast_wrapper
The purpose of this package is to integrate Agnocast, a zero-copy middleware, into each topic in Autoware with minimal side effects. Agnocast is a library designed to work alongside ROS 2, enabling true zero-copy publish/subscribe communication for all ROS 2 message types, including unsized message types.
- Agnocast Repository: https://github.com/tier4/agnocast
- Discussion on Agnocast Integration into Autoware: https://github.com/orgs/autowarefoundation/discussions/5835
- Review Guide for Agnocast Wrapper PRs
This package provides macros that wrap functions for publish/subscribe operations and smart pointer types for handling ROS 2 messages. When Autoware is built using the default build command, Agnocast is not enabled. However, setting the environment variable ENABLE_AGNOCAST=1 enables Agnocast and results in a build that includes its integration. This design ensures backward compatibility for users who are unaware of Agnocast, minimizing disruption.
Two Integration Approaches
This package provides two approaches for integrating Agnocast. Both will coexist for the foreseeable future.
1. Node Wrapper (agnocast_wrapper::Node)
Use this when you want the entire node to transparently switch between rclcpp::Node and agnocast::Node at runtime. The node wrapper automatically selects the correct underlying implementation based on the ENABLE_AGNOCAST environment variable.
Currently supported APIs:
- Publisher / Subscription / PollingSubscriber
- Timer (
create_wall_timer, freecreate_timer(), freeset_period()) - Parameters
- Logger, Clock
- Callback groups
- Node interfaces (partial:
get_node_base_interface(),get_node_topics_interface(),get_node_parameters_interface())
#include <autoware/agnocast_wrapper/node.hpp>
class MyNode : public autoware::agnocast_wrapper::Node
{
public:
explicit MyNode(const rclcpp::NodeOptions & options)
: Node("my_node", options)
{
pub_ = create_publisher<std_msgs::msg::String>("output", 10);
sub_ = create_subscription<std_msgs::msg::String>(
"input", 10, [this](std::unique_ptr<const std_msgs::msg::String> msg) { /* ... */ });
timer_ = create_wall_timer(
std::chrono::milliseconds(100), [this]() { /* ... */ });
}
private:
autoware::agnocast_wrapper::Publisher<std_msgs::msg::String>::SharedPtr pub_;
autoware::agnocast_wrapper::Subscription<std_msgs::msg::String>::SharedPtr sub_;
autoware::agnocast_wrapper::Timer::SharedPtr timer_;
};
Timer notes
create_timer() is provided as a free function (not a member) because rclcpp::Node::create_timer was added in Jazzy and does not exist on Humble. The free form is portable across both:
timer_ = autoware::agnocast_wrapper::create_timer(
this, this->get_clock(), rclcpp::Duration::from_seconds(0.1), [this]() { /* ... */ });
set_period() is likewise a free function. rclcpp::TimerBase has no set_period member, so the free form is the only portable spelling across both builds:
autoware::agnocast_wrapper::set_period(timer_, std::chrono::milliseconds(200));
To use the Node wrapper in your package, add the following to your CMakeLists.txt:
find_package(autoware_agnocast_wrapper REQUIRED)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
Registering a Node with autoware_agnocast_wrapper_register_node
Instead of calling rclcpp_components_register_node directly, use the autoware_agnocast_wrapper_register_node macro to register your component node. This macro:
- Registers the component with
rclcpp_components(for component container support) - Creates a standalone executable that can switch between
rclcpp::Nodeandagnocast::Nodeat runtime based on theENABLE_AGNOCASTenvironment variable
When ENABLE_AGNOCAST is not set or set to 0, this macro falls back to standard rclcpp_components_register_node behavior.
find_package(autoware_agnocast_wrapper REQUIRED)
ament_auto_add_library(my_node_component SHARED src/my_node.cpp)
ament_target_dependencies(my_node_component autoware_agnocast_wrapper)
autoware_agnocast_wrapper_register_node(my_node_component
PLUGIN "my_package::MyNode"
EXECUTABLE my_node
)
Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
PLUGIN |
Yes | - | Fully qualified class name of the component |
EXECUTABLE |
Yes | - | Executable name for the node |
File truncated at 100 lines see the full file
Changelog for package autoware_agnocast_wrapper
1.8.0 (2026-05-01)
-
chore: align package versions to 1.7.0 and reset changelogs
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
docs(autoware_agnocast_wrapper): use FindPackageShare and PathJoinSubstitution in Python launch examples (#999)
-
fix(autoware_agnocast_wrapper): support jazzy (rclcpp 28~) (#980) fix(autoware_agnocast_wrapper): fix Jazzy build by using version-conditional callback type alias
-
fix(autoware_agnocast_wrapper): fix false positive LD_PRELOAD warning in agnocast_env.launch.py (#973)
-
refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation (#970)
- refactor(autoware_agnocast_wrapper): remove executor threading model consistency validation
- docs(autoware_agnocast_wrapper): clarify behavior reference tables in README
- Reword introductory sentence to clarify that only ROS2_EXECUTOR matters when ENABLE_AGNOCAST=0
- Use full CMake option strings (e.g. SingleThreadedExecutor) instead of abbreviations in both behavior reference tables
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): fix forbidden word ROS2 to ROS 2 in README ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
feat(autoware_agnocast_wrapper): support message filter in agnocast wrapper (#951)
* feat(autoware_agnocast_wrapper): add register_node macro for runtime rclcpp/agnocast switching Add [autoware_agnocast_wrapper_register_node]{.title-ref} CMake macro as a drop-in replacement for [rclcpp_components_register_node]{.title-ref}. When ENABLE_AGNOCAST=1, it generates a standalone executable that can switch between rclcpp::Node and agnocast::Node at runtime based on the ENABLE_AGNOCAST environment variable. When ENABLE_AGNOCAST is not set, it falls back to standard rclcpp_components_register_node behavior with zero overhead. Key features:
- Configurable ROS2 and Agnocast executor types
- Two-pass template generation (configure_file + file(GENERATE))
- Support for both rclcpp::Node and agnocast_wrapper::Node plugins
- Target existence validation at configure time
- ABI consistency enforcement via autoware_agnocast_wrapper_setup()
- Change agnocastlib from build_depend to depend
- fix(autoware_agnocast_wrapper): add static_assert to enforce PLUGIN base class at compile time
* fix(autoware_agnocast_wrapper): add runtime ROS2 fallback for AgnocastOnly executors When agnocast_only=true but ENABLE_AGNOCAST=0 at runtime, the node now falls back to the ROS2 executor instead of unconditionally using the AgnocastOnly executor.
* fix(autoware_agnocast_wrapper): warn on mismatched executor threading models Emit a CMake WARNING when ROS2_EXECUTOR and AGNOCAST_EXECUTOR have different threading models (e.g., SingleThreadedExecutor with MultiThreadedAgnocastExecutor), as this silently changes behavior depending on the runtime ENABLE_AGNOCAST value.
- docs(autoware_agnocast_wrapper): add executor behavior reference table to README
- style(pre-commit): autofix
- fix(autoware_agnocast_wrapper): replace forbidden word ROS2 with ROS 2
- style(pre-commit): autofix
* fix(autoware_agnocast_wrapper): remove static_assert that fails in non-template main() The static_assert inside if constexpr (agnocast_only) is always evaluated because main() is not a template function. Additionally, the component type header is not included in the generated source (loaded via class_loader at runtime), so the type cannot be resolved at compile time.
- delete deprecated mark from publish(const MessageT&) API
- support message_filter in agnocast_wrapper
- style(pre-commit): autofix
- fix cpplint
- fix cpplint
- add comments
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
Launch files
- launch/agnocast_env.launch.xml
-
- agnocast_heaphook_path [default: /opt/ros/$(env ROS_DISTRO humble)/lib/libagnocast_heaphook.so]
- use_multithread [default: false]