When using the Robot Operating System (ROS), it’s fairly common to want to shut down a launched system if a specific node (or set of nodes) exits. This is pretty easy in ROS1, because launch files support the required attribute on each node. As a result, crafting a two-node system where one of the nodes is required is straightforward:

<launch>
   <node name = "talker" pkg = "talker" type = "talker_node" />
   <node name = "listener" pkg = "listener" type = "talker_node" required = "true" />
</launch>

This launch file creates a talker/listener system where, if the talker exits the system continues trucking along, but if the listener exits the entire launched system is shut down.

In ROS 2 Crystal’s launch system, getting similar functionality involves a lot more boilerplate:

import launch
import launch_ros.actions

def generate_launch_description():
   talker = launch_ros.actions.Node(
       package="demo_nodes_py",
       node_executable="talker",
       node_name="talker",
       output="screen")

   listener = launch_ros.actions.Node(
       package="demo_nodes_py",
       node_executable="listener_qos",
       node_name="listener",
       output="screen",
       arguments=["--number_of_cycles", "1"])

   return launch.LaunchDescription([
       talker,
       listener,
       launch.actions.RegisterEventHandler(
           event_handler=launch.event_handlers.OnProcessExit(
               target_action=listener,
               on_exit=[
                   launch.actions.LogInfo(
                       msg="Listener exited; tearing down entire system."),
                   launch.actions.EmitEvent(event=launch.events.Shutdown())]))
   ])

This also creates a talker/listener system where, if the talker exits the system continues, but if the listener exits the launched system is shut down. However, you can see that, unlike the ROS 1 example, there are a few steps required to get there. Specifically, it requires the LaunchDescription to include an event handler to listen for an exit event for every required node which then emits a Shutdown event, which then FINALLY causes the launched system to shut down. That doesn’t scale particularly well to a real system where a large number of nodes may be required to run successfully.

We went through a few design iterations for how to best solve this, and decided that both the scaling and the boilerplate issues could be solved if the Node definitions could specify somehow that they were required. Rather than carry over that language from ROS 1, though, we decided to keep some commonality with OnProcessExit and simply add an on_exit action list directly to the Node definition. We also added a new action called Shutdown. Using these two new features together allows one to very simply specify that, if a given node exits, it should shut the entire launched system down. This greatly reduces boilerplate and scales far better than adding an event handler for each node. Take a look:

import launch
import launch_ros.actions

def generate_launch_description():
   return launch.LaunchDescription([
       launch_ros.actions.Node(
           package="demo_nodes_py",
           node_executable="talker",
           node_name="talker",
           output="screen"),

       launch_ros.actions.Node(
           package="demo_nodes_py",
           node_executable="listener_qos",
           node_name="listener",
           output="screen",
           arguments=["--number_of_cycles", "1"],
           on_exit=launch.actions.Shutdown())
   ])

This functionality is already available in master, and will of course be included in Dashing (scheduled for June).