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

Add option in ros2 topic pub to wait for N matching subscriptions, use N=1 by default when combined with --times #642

Merged
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions ros2topic/ros2topic/verb/pub.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ def add_arguments(self, parser, cli_name):
group.add_argument(
'-t', '--times', type=nonnegative_int, default=0,
help='Publish this number of times and then exit')
parser.add_argument(
'-m', '--wait-matching-subscriptions', type=nonnegative_int, default=1,
ivanpauno marked this conversation as resolved.
Show resolved Hide resolved
help='Wait until finding the specified number of matching subscriptions')
parser.add_argument(
'--keep-alive', metavar='N', type=positive_float, default=0.1,
help='Keep publishing node alive for N seconds after the last msg '
Expand Down Expand Up @@ -146,6 +149,7 @@ def main(args):
1. / args.rate,
args.print,
times,
args.wait_matching_subscriptions,
qos_profile,
args.keep_alive)

Expand All @@ -158,6 +162,7 @@ def publisher(
period: float,
print_nth: int,
times: int,
wait_matching_subscriptions: int,
qos_profile: QoSProfile,
keep_alive: float,
) -> Optional[str]:
Expand All @@ -172,6 +177,15 @@ def publisher(

pub = node.create_publisher(msg_module, topic_name, qos_profile)

times_since_last_log = 0
while pub.get_subscription_count() < wait_matching_subscriptions:
# Print a message reporting we're waiting each 1s, check condition each 100ms.
if not times_since_last_log:
print(
f'Waiting for at least {wait_matching_subscriptions} matching subscription(s)...')
times_since_last_log = (times_since_last_log + 1) % 10
time.sleep(0.1)

msg = msg_module()
try:
set_message_fields(msg, values_dictionary)
Expand All @@ -188,8 +202,6 @@ def timer_callback():
print('publishing #%d: %r\n' % (count, msg))
pub.publish(msg)

# give some time for discovery process
time.sleep(0.1)
timer_callback()
if times != 1:
timer = node.create_timer(period, timer_callback)
Expand Down
51 changes: 48 additions & 3 deletions ros2topic/test/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ def test_topic_pub(self):
'publisher: beginning loop',
"publishing #1: std_msgs.msg.String(data='foo')",
''
], strict=True
]
), timeout=10)
assert self.listener_node.wait_for_output(functools.partial(
launch_testing.tools.expect_output, expected_lines=[
Expand All @@ -686,7 +686,7 @@ def test_topic_pub_once(self):
'publisher: beginning loop',
"publishing #1: std_msgs.msg.String(data='bar')",
''
], strict=True
]
), timeout=10)
assert topic_command.wait_for_shutdown(timeout=10)
assert self.listener_node.wait_for_output(functools.partial(
Expand All @@ -696,6 +696,51 @@ def test_topic_pub_once(self):
), timeout=10)
assert topic_command.exit_code == launch_testing.asserts.EXIT_OK

def test_topic_pub_once_matching_two_listeners(
self, launch_service, proc_info, proc_output, path_to_listener_node_script, additional_env
):
second_listener_node_action = Node(
executable=sys.executable,
arguments=[path_to_listener_node_script],
remappings=[('chatter', 'chit_chatter')],
additional_env=additional_env,
name='second_listener',
)
with launch_testing.tools.launch_process(
launch_service, second_listener_node_action, proc_info, proc_output
) as second_listener_node, \
self.launch_topic_command(
arguments=[
'pub', '--once',
'--keep-alive', '3', # seconds
'-m', '2',
'--qos-durability', 'transient_local',
'--qos-reliability', 'reliable',
'/chit_chatter',
'std_msgs/msg/String',
'{data: bar}'
]
) as topic_command:
assert topic_command.wait_for_output(functools.partial(
launch_testing.tools.expect_output, expected_lines=[
'publisher: beginning loop',
"publishing #1: std_msgs.msg.String(data='bar')",
''
]
), timeout=10)
assert topic_command.wait_for_shutdown(timeout=10)
assert self.listener_node.wait_for_output(functools.partial(
launch_testing.tools.expect_output, expected_lines=[
re.compile(r'\[INFO\] \[\d+\.\d*\] \[listener\]: I heard: \[bar\]')
]
), timeout=10)
assert second_listener_node.wait_for_output(functools.partial(
launch_testing.tools.expect_output, expected_lines=[
re.compile(r'\[INFO\] \[\d+\.\d*\] \[second_listener\]: I heard: \[bar\]')
]
), timeout=10)
assert topic_command.exit_code == launch_testing.asserts.EXIT_OK

def test_topic_pub_print_every_two(self):
with self.launch_topic_command(
arguments=[
Expand All @@ -716,7 +761,7 @@ def test_topic_pub_print_every_two(self):
'',
"publishing #4: std_msgs.msg.String(data='fizz')",
''
], strict=True
]
), timeout=10), 'Output does not match: ' + topic_command.output
assert self.listener_node.wait_for_output(functools.partial(
launch_testing.tools.expect_output, expected_lines=[
Expand Down
4 changes: 3 additions & 1 deletion ros2topic/test/test_echo_pub.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ def message_callback(msg):
with launch_testing.tools.launch_process(
launch_service, command_action, proc_info, proc_output,
output_filter=launch_testing_ros.tools.basic_output_filter(
filtered_patterns=[
r'Waiting for \{[0-7]+\} matching subscription\(s\)\.\.\.'],
ivanpauno marked this conversation as resolved.
Show resolved Hide resolved
filtered_rmw_implementation=get_rmw_implementation_identifier()
)
) as command:
Expand All @@ -180,7 +182,7 @@ def message_callback(msg):
@launch_testing.markers.retry_on_failure(times=5)
def test_pub_times(self, launch_service, proc_info, proc_output):
command_action = ExecuteProcess(
cmd=(['ros2', 'topic', 'pub', '-t', '5', '/clitest/topic/pub_times',
cmd=(['ros2', 'topic', 'pub', '-t', '5', '-m', '0', '/clitest/topic/pub_times',
'std_msgs/String', 'data: hello']),
additional_env={
'PYTHONUNBUFFERED': '1'
Expand Down