Skip to content
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

comply with new node representation #149

Merged
merged 3 commits into from
Sep 12, 2018

Conversation

Karsten1987
Copy link
Contributor

I think the ros2lifecycle is currently not working currently since #146 got merged.

@Karsten1987 Karsten1987 added the in review Waiting for review (Kanban column) label Sep 12, 2018
@Karsten1987 Karsten1987 self-assigned this Sep 12, 2018
@mjcarroll
Copy link
Member

Yes, I was supposed to follow up on that, I didn't realize that #146 got merged. Sorry for the inconvenience.

if args.node_name in node_name.full_name:
node_found = True
break
if not node_found:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could be much shorter: if args.node_name not in {n.full_name for n in node_names}:

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

of course there is a one-liner for python :) thanks!

@@ -27,14 +27,14 @@ def get_node_names(*, node, include_hidden_nodes=False):
node=node, include_hidden_nodes=include_hidden_nodes)
service_names_and_types = get_service_names_and_types(node=node)
return [
n for n in node_names
if _has_lifecycle(n, service_names_and_types)]
n.full_name for n in node_names
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it be more consistent with the same function make in ros2node to return the "full" n here and let the callers pick thefull_name from it?

Copy link
Contributor Author

@Karsten1987 Karsten1987 Sep 12, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can change it if you want. But given that this function anyway only really serves for the lifecycle implementation i didn't do it at first.
Also I feel that get_node_names is then a bit misleading, because it really is a struct with more than just the name of the node.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found it already confusing that within this patch the usage is different, e.g. ros2lifecycle/verb/set.py uses the API from ros2node.

Copy link
Member

@dirk-thomas dirk-thomas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@Karsten1987 Karsten1987 merged commit 54749d2 into master Sep 12, 2018
@Karsten1987 Karsten1987 deleted the use_full_node_name_for_lifecycle branch September 12, 2018 03:30
@Karsten1987 Karsten1987 removed the in review Waiting for review (Kanban column) label Sep 12, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants