Skip to content

Commit

Permalink
workaround for rclpy's bug (ros2/rclpy#1355)
Browse files Browse the repository at this point in the history
Signed-off-by: Daisuke Sato <[email protected]>
  • Loading branch information
daisukes committed Nov 13, 2024
1 parent 9c8beb4 commit 18fe933
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions cabot_ui/scripts/cabot_ui_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,25 +614,26 @@ def receiveSignal(signal_num, frame):
act_node = Node("cabot_ui_manager_navigation_actions", start_parameter_services=False)
soc_node = Node("cabot_ui_manager_navigation_social", start_parameter_services=False)
nodes = [node, nav_node, tf_node, srv_node, act_node, soc_node]
executors = [MultiThreadedExecutor(),
MultiThreadedExecutor(),
SingleThreadedExecutor(),
SingleThreadedExecutor(),
MultiThreadedExecutor(),
SingleThreadedExecutor()]
executors = [MultiThreadedExecutor,
MultiThreadedExecutor,
SingleThreadedExecutor,
SingleThreadedExecutor,
MultiThreadedExecutor,
SingleThreadedExecutor]
names = ["node", "tf", "nav", "srv", "act", "soc"]
manager = CabotUIManager(node, nav_node, tf_node, srv_node, act_node, soc_node)

threads = []
for tnode, executor, name in zip(nodes, executors, names):
def run_node(target_node, executor, name):
for tnode, executor_type, name in zip(nodes, executors, names):
def run_node(target_node, executor_type, name):
def _run_node():
# debug code to analyze the bottle neck of nodes
# high frequency spinning node should have smaller number of waits
#
# import time
# count = 0
# start = time.time()
executor = executor_type()
executor.add_node(target_node)
try:
while rclpy.ok():
Expand All @@ -645,13 +646,19 @@ def _run_node():
# f" guards {len(list(target_node.guards))}\n"
# f" waitables {len(list(target_node.waitables))}\n",
# throttle_duration_sec=1.0)
executor.spin_once()
try:
executor.spin_once()
except rclpy._rclpy_pybind11.InvalidHandle:
node.get_logger().error(F"caught rclpy._rclpy_pybind11.InvalidHandle exception for {name} node, so recreate executor")
executor = executor_type()
executor.add_node(target_node)
pass
except: # noqa: 722
pass
target_node.destroy_node()
return _run_node

thread = threading.Thread(target=run_node(tnode, executor, name))
thread = threading.Thread(target=run_node(tnode, executor_type, name))
thread.start()
threads.append(thread)

Expand Down

0 comments on commit 18fe933

Please sign in to comment.