-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable TFListener to get Authority #545
base: rolling
Are you sure you want to change the base?
Conversation
Signed-off-by: Shane Loretz <[email protected]>
Signed-off-by: Shane Loretz <[email protected]>
|
||
TEST(transform_listener, authority_present) | ||
{ | ||
const std::string pub_namespace = "/tflistnertest/ns"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const std::string pub_namespace = "/tflistnertest/ns"; | |
const std::string pub_namespace = "/tflistenertest/ns"; |
auto listener = tf2_ros::TransformListener(buffer, listener_node); | ||
|
||
// Wait for pub/sub to match | ||
while(pub->get_subscription_count() == 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
while(pub->get_subscription_count() == 0) { | |
while (pub->get_subscription_count() == 0) { |
Also, can we put a timeout on this? In case this fails for some reason, I'd prefer this didn't hang forever.
pub->publish(msg); | ||
|
||
// Wait for sub to get message | ||
while(!buffer.canTransform("parent", "child", tf2::TimePointZero)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
while(!buffer.canTransform("parent", "child", tf2::TimePointZero)) { | |
while (!buffer.canTransform("parent", "child", tf2::TimePointZero)) { |
Same comment here about adding a timeout.
const std::string as_yaml = buffer.allFramesAsYAML(); | ||
EXPECT_TRUE(as_yaml.find(pub_node_name) != std::string::npos) << as_yaml; | ||
EXPECT_TRUE(as_yaml.find(pub_namespace) != std::string::npos) << as_yaml; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know that this is the easiest way to do this, but it seems imprecise. That is, we aren't really checking that the authority was set properly; we're just checking whether the node name exists anywhere in that YAML, which could happen for other reasons. Is there a way we could make these checks more precise?
for (const rclcpp::TopicEndpointInfo & pub : endpoints) { | ||
// Compare gid to see if this is the right publisher | ||
bool match = true; | ||
for (decltype(RMW_GID_STORAGE_SIZE) i = 0; i < RMW_GID_STORAGE_SIZE; ++i) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm somewhat concerned about the performance impact of this check, particularly on networks with lots of /tf
publishers. While I know that the inner loop has a fixed number of iterations, it is still the case that we are going to be doing this linear search on every single reception of a tf2
frame, which seems expensive. Should we consider a map
or an unordered_map
here?
_make_authority_str( | ||
const std::vector<rclcpp::TopicEndpointInfo> & endpoints, | ||
const rmw_gid_t & pub_gid, | ||
std::string & authority) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a nit, but instead of an output authority
variable, maybe we can have this function return std::string
, with an empty string meaning "not found"? I'm not sure if that API is better, so feel free to disregard this comment if you don't like it.
@sloretz What is the status of this PR? Do you think you might pick it back up, or should we close it for now? |
This enables the
TFListener
to get the authority, that is the name of the node containing the publisher who published the transform.This doesn't enable
tf2_monitor
to get the authority. I didn't see a good API to get the data there, so I left it unresolved.