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

[behaviours] wait_for_server_timeout in action clients #152

Merged
merged 2 commits into from
Mar 4, 2020
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog

Forthcoming
-----------
* [behaviours] wait_for_server_timeout_sec in action clients, `#152 <https://github.com/splintered-reality/py_trees_ros/pull/152>`_
* [trees] avoid irregular snapshot streams by avoiding timing jitter, `#151 <https://github.com/splintered-reality/py_trees_ros/pull/151>`_

2.0.7 (2020-02-10)
Expand Down
12 changes: 10 additions & 2 deletions py_trees_ros/action_clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
##############################################################################
# Documentation
##############################################################################
from asyncio.tasks import wait_for

"""
Behaviours for ROS actions.
Expand Down Expand Up @@ -83,17 +84,20 @@ class FromBlackboard(py_trees.behaviour.Behaviour):
name: name of the behaviour (default: lowercase class name)
generate_feedback_message: formatter for feedback messages, takes action_type.Feedback
messages and returns strings (default: None)
wait_for_server_timeout_sec: how long to wait in setup for a server connection
"""
def __init__(self,
action_type: typing.Any,
action_name: str,
key: str,
name: str=py_trees.common.Name.AUTO_GENERATED,
generate_feedback_message: typing.Callable[[typing.Any], str]=None,
wait_for_server_timeout_sec: float=2.0
):
super().__init__(name)
self.action_type = action_type
self.action_name = action_name
self.wait_for_server_timeout_sec = wait_for_server_timeout_sec
self.blackboard = self.attach_blackboard_client(name=self.name)
self.blackboard.register_key(
key="goal",
Expand Down Expand Up @@ -145,7 +149,7 @@ def setup(self, **kwargs):
self.action_name, self.qualified_name
)
)
result = self.action_client.wait_for_server(timeout_sec=2.0)
result = self.action_client.wait_for_server(timeout_sec=self.wait_for_server_timeout_sec)
if not result:
self.feedback_message = "timed out waiting for the server [{}]".format(self.action_name)
self.node.get_logger().error("{}[{}]".format(self.feedback_message, self.qualified_name))
Expand Down Expand Up @@ -355,13 +359,16 @@ class FromConstant(FromBlackboard):
name: name of the behaviour (default: lowercase class name)
generate_feedback_message: formatter for feedback messages, takes action_type.Feedback
messages and returns strings (default: None)
wait_for_server_timeout_sec: how long to wait in setup for a server connection
wait_for_server_timeout_sec: float=2.0
"""
def __init__(self,
action_type: typing.Any,
action_name: str,
action_goal: typing.Any,
name: str=py_trees.common.Name.AUTO_GENERATED,
generate_feedback_message: typing.Callable[[typing.Any], str]=None,
wait_for_server_timeout_sec: float=2.0
):
unique_id = uuid.uuid4()
key = "/goal_" + str(unique_id)
Expand All @@ -370,7 +377,8 @@ def __init__(self,
action_name=action_name,
key=key,
name=name,
generate_feedback_message=generate_feedback_message
generate_feedback_message=generate_feedback_message,
wait_for_server_timeout_sec=wait_for_server_timeout_sec
)
# parent already instantiated a blackboard client
self.blackboard.register_key(
Expand Down
32 changes: 28 additions & 4 deletions tests/test_action_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import rclpy
import rclpy.action
import rclpy.executors
import time

##############################################################################
# Helpers
Expand All @@ -34,22 +35,24 @@ def assert_details(text, expected, result):
console.reset)


def create_action_client(from_blackboard=False):
def create_action_client(from_blackboard=False, wait_for_server_timeout_sec=2.0):
if from_blackboard:
behaviour = py_trees_ros.action_clients.FromBlackboard(
name="dock",
action_type=py_trees_actions.Dock,
action_name="dock",
key="goal",
generate_feedback_message=lambda msg: "{:.2f}%%".format(msg.feedback.percentage_completed)
generate_feedback_message=lambda msg: "{:.2f}%%".format(msg.feedback.percentage_completed),
wait_for_server_timeout_sec=wait_for_server_timeout_sec
)
else:
behaviour = py_trees_ros.action_clients.FromConstant(
name="dock",
action_type=py_trees_actions.Dock,
action_name="dock",
action_goal=py_trees_actions.Dock.Goal(dock=True), # noqa
generate_feedback_message=lambda msg: "{:.2f}%%".format(msg.feedback.percentage_completed)
generate_feedback_message=lambda msg: "{:.2f}%%".format(msg.feedback.percentage_completed),
wait_for_server_timeout_sec=wait_for_server_timeout_sec
)
return behaviour

Expand Down Expand Up @@ -290,7 +293,7 @@ def test_aborted():
executor.shutdown()

########################################
# Aborted
# From Blackboard
########################################


Expand Down Expand Up @@ -332,3 +335,24 @@ def test_from_blackboard():
server.shutdown()
executor.shutdown()

########################################
# Timeouts
########################################


def test_timeouts():
console.banner("Timeouts")

timeout = 0.1
root = create_action_client(from_blackboard=True, wait_for_server_timeout_sec=timeout)
tree = py_trees_ros.trees.BehaviourTree(root=root)

start_time = time.monotonic()
try:
tree.setup()
except py_trees_ros.exceptions.TimedOutError:
duration = time.monotonic() - start_time
assert_details("Tree Setup Timeout", "delta+{}".format(timeout), duration)
assert(duration < 10*timeout)

tree.shutdown()