No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/alsora/ros2-code-examples.git
VCS Type git
VCS Version master
Last Updated 2020-09-13
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Examples of sending backward compatible messages to an old subscriber

Additional Links

No additional links.

Maintainers

  • Alberto Soragna

Authors

  • Alberto Soragna

Simple Backward Compatibility

This package is meant to be used to demonstrate how to create messages with optional fields and how to exploit them for achieving backward compatibility.

Long story short, usually when you add a new field to a message interface and then you try to send these updated messages to a subscriber which has been compiled against an old version of the message library (i.e. without the new field) a memory error will arise.

ROS2 introduces optional fields which are dynamically allocated by the subscriber.

How to use it

Let’s start by creating a workspace and compile two simple publisher and subscriber nodes.

mkdir -p ws_v1/src
cd ws_v1/src
ln -s <PATH_TO_THIS_REPO>/simple_backward_compatible .
cd ..
colcon build

The nodes created in this workspace will communicate using this message interface which we will call v1.

You can immediately run the subscriber node.

source install/local_setup.sh
ros2 run simple_backward_compatible subscriber_main

Now, while the subscriber is still running, open a new terminal and create a second workspace.

mkdir -p ws_v2/src
cd ws_v2/src
ln -s <PATH_TO_THIS_REPO>/simple_backward_compatible .
cd ..

However this time, before compiling, let’s make a quick change. Open with a text editor CMakeLists.txt and uncomment line #5 (the one saying #set(BUILD_V2 true)). Then build.

colcon build

You have just told the compiler to use a different version of the message interface, which you can find here and we will call it v2.

As you can see, the new messages have some additional fields characterized by variable length arrays. You can note from the publisher code that the fields of the updated message are being properly filled with values.

Now run a publisher node from this second workspace.

source install/local_setup.sh
ros2 run simple_backward_compatible publisher_main

You will note that the two nodes are communicating properly, even if compiled against two different versions of the message interfaces.

NOTE: if you try to run a v2 subscriber and a v1 publisher you will still get a memory error.

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Services

No service files found

Plugins

No plugins found.

Recent questions tagged simple_backward_compatible at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.