Backport of #673 ("Adding static transform listener") to jazzy with ABI compatibility preserved#927
Open
araitaiga wants to merge 3 commits intoros2:jazzyfrom
Open
Backport of #673 ("Adding static transform listener") to jazzy with ABI compatibility preserved#927araitaiga wants to merge 3 commits intoros2:jazzyfrom
araitaiga wants to merge 3 commits intoros2:jazzyfrom
Conversation
Signed-off-by: Taiga Arai <araitaiga2020.service@gmail.com>
Signed-off-by: Taiga Arai <araitaiga2020.service@gmail.com>
0b31100 to
7d0e576
Compare
ahcorde
requested changes
Apr 20, 2026
Comment on lines
+234
to
+235
| const rclcpp::SubscriptionOptionsWithAllocator<AllocatorT> & static_options, | ||
| bool static_only = false) |
Author
There was a problem hiding this comment.
Thanks @ahcorde. Refactored in 0ae7cca to preserve the existing init() signature and put static_only on a new overload.
Verified with abidiff (jazzy vs this branch):
Functions changes summary: 0 Removed, 0 Changed, 6 Added functions
Variables changes summary: 0 Removed, 0 Changed, 0 Added variable
Function symbols changes summary: 0 Removed, 3 Added function symbols not referenced by debug info
Variable symbols changes summary: 0 Removed, 3 Added variable symbols not referenced by debug info
Signed-off-by: Taiga Arai <araitaiga2020.service@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This backport adds support for a static-only transform listener in
jazzywithout changing the existing ABI surface.ABI note:
the new
static_onlybehavior is exposed via an added overload(rather than a new default parameter on the existing ctor as in #673), so
the jazzy ABI is preserved for existing binaries.
Minor deviations from #673:
Test cleanups: fixed an empty-body test, renamed
tfl→stfl, switched staticlookupTransformcalls totf2::TimePointZero.Is this user-facing behavior change?
Existing code using TransformListener is unaffected. New
StaticTransformListeneris available as in #673.Did you use Generative AI?
Yes — Claude (Opus 4.7)
Additional Information
See #673 for the original motivation (#662).
CC: @ahcorde