-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbringup_launch.py
More file actions
292 lines (257 loc) · 11.1 KB
/
bringup_launch.py
File metadata and controls
292 lines (257 loc) · 11.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
# Copyright (c) 2018 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription
from launch.actions import (DeclareLaunchArgument, GroupAction, IncludeLaunchDescription,
SetEnvironmentVariable)
from launch.conditions import IfCondition
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch.substitutions import LaunchConfiguration, PythonExpression
from launch_ros.actions import Node
from launch_ros.descriptions import ParameterFile
from nav2_common.launch import LaunchConfigAsBool, RewrittenYaml
def generate_launch_description() -> LaunchDescription:
# Get the launch directory
bringup_dir = get_package_share_directory('nav2_bringup')
launch_dir = os.path.join(bringup_dir, 'launch')
# Create the launch configuration variables
namespace = LaunchConfiguration('namespace')
slam = LaunchConfigAsBool('slam')
map_yaml_file = LaunchConfiguration('map')
keepout_mask_yaml_file = LaunchConfiguration('keepout_mask')
speed_mask_yaml_file = LaunchConfiguration('speed_mask')
graph_filepath = LaunchConfiguration('graph')
use_sim_time = LaunchConfigAsBool('use_sim_time')
params_file = LaunchConfiguration('params_file')
autostart = LaunchConfigAsBool('autostart')
use_composition = LaunchConfigAsBool('use_composition')
use_intra_process_comms = LaunchConfigAsBool('use_intra_process_comms')
container_name = LaunchConfiguration('container_name')
use_respawn = LaunchConfigAsBool('use_respawn')
log_level = LaunchConfiguration('log_level')
use_localization = LaunchConfigAsBool('use_localization')
use_keepout_zones = LaunchConfigAsBool('use_keepout_zones')
use_speed_zones = LaunchConfigAsBool('use_speed_zones')
# Map fully qualified names to relative ones so the node's namespace can be prepended.
remappings = [('/tf', 'tf'), ('/tf_static', 'tf_static')]
yaml_substitutions = {
'KEEPOUT_ZONE_ENABLED': use_keepout_zones,
'SPEED_ZONE_ENABLED': use_speed_zones,
}
configured_params = ParameterFile(
RewrittenYaml(
source_file=params_file,
root_key=namespace,
param_rewrites={},
value_rewrites=yaml_substitutions,
convert_types=True,
),
allow_substs=True,
)
stdout_linebuf_envvar = SetEnvironmentVariable(
'RCUTILS_LOGGING_BUFFERED_STREAM', '1'
)
declare_namespace_cmd = DeclareLaunchArgument(
'namespace', default_value='', description='Top-level namespace'
)
declare_slam_cmd = DeclareLaunchArgument(
'slam', default_value='False', description='Whether run a SLAM'
)
declare_map_yaml_cmd = DeclareLaunchArgument(
'map', default_value='', description='Full path to map yaml file to load'
)
declare_keepout_mask_yaml_cmd = DeclareLaunchArgument(
'keepout_mask', default_value='',
description='Full path to keepout mask yaml file to load'
)
declare_speed_mask_yaml_cmd = DeclareLaunchArgument(
'speed_mask', default_value='',
description='Full path to speed mask yaml file to load'
)
declare_graph_file_cmd = DeclareLaunchArgument(
'graph',
default_value='', description='Path to the graph file to load'
)
declare_use_localization_cmd = DeclareLaunchArgument(
'use_localization', default_value='True',
description='Whether to enable localization or not'
)
declare_use_keepout_zones_cmd = DeclareLaunchArgument(
'use_keepout_zones', default_value='True',
description='Whether to enable keepout zones or not'
)
declare_use_speed_zones_cmd = DeclareLaunchArgument(
'use_speed_zones', default_value='True',
description='Whether to enable speed zones or not'
)
declare_use_sim_time_cmd = DeclareLaunchArgument(
'use_sim_time',
default_value='false',
description='Use simulation (Gazebo) clock if true',
)
declare_params_file_cmd = DeclareLaunchArgument(
'params_file',
default_value=os.path.join(bringup_dir, 'params', 'nav2_params.yaml'),
description='Full path to the ROS2 parameters file to use for all launched nodes',
)
declare_autostart_cmd = DeclareLaunchArgument(
'autostart',
default_value='true',
description='Automatically startup the nav2 stack',
)
declare_use_composition_cmd = DeclareLaunchArgument(
'use_composition',
default_value='True',
description='Whether to use composed bringup',
)
declare_use_intra_process_comms_cmd = DeclareLaunchArgument(
'use_intra_process_comms',
default_value='False',
description='Whether to use intra process communications',
)
declare_container_name_cmd = DeclareLaunchArgument(
'container_name',
default_value='nav2_container',
description='the name of container that nodes will load in if use composition',
)
declare_use_respawn_cmd = DeclareLaunchArgument(
'use_respawn',
default_value='False',
description='Whether to respawn if a node crashes. Applied when composition is disabled.',
)
declare_log_level_cmd = DeclareLaunchArgument(
'log_level', default_value='info', description='log level'
)
# Specify the actions
bringup_cmd_group = GroupAction(
[
Node(
condition=IfCondition(use_composition),
name=container_name,
namespace=namespace,
package='rclcpp_components',
executable='component_container_isolated',
parameters=[configured_params, {'autostart': autostart}],
arguments=['--ros-args', '--log-level', log_level],
remappings=remappings,
output='screen',
),
IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(launch_dir, 'slam_launch.py')
),
condition=IfCondition(PythonExpression([slam, ' and ', use_localization])),
launch_arguments={
'namespace': namespace,
'use_sim_time': use_sim_time,
'autostart': autostart,
'use_respawn': use_respawn,
'params_file': params_file,
}.items(),
),
IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(launch_dir, 'localization_launch.py')
),
condition=IfCondition(PythonExpression(['not ', slam, ' and ', use_localization])),
launch_arguments={
'namespace': namespace,
'map': map_yaml_file,
'use_sim_time': use_sim_time,
'autostart': autostart,
'params_file': params_file,
'use_composition': use_composition,
'use_intra_process_comms': use_intra_process_comms,
'use_respawn': use_respawn,
'container_name': container_name,
}.items(),
),
IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(launch_dir, 'keepout_zone_launch.py')
),
condition=IfCondition(use_keepout_zones),
launch_arguments={
'namespace': namespace,
'keepout_mask': keepout_mask_yaml_file,
'use_sim_time': use_sim_time,
'params_file': params_file,
'use_composition': use_composition,
'use_intra_process_comms': use_intra_process_comms,
'use_respawn': use_respawn,
'container_name': container_name,
}.items(),
),
IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(launch_dir, 'speed_zone_launch.py')
),
condition=IfCondition(use_speed_zones),
launch_arguments={
'namespace': namespace,
'speed_mask': speed_mask_yaml_file,
'use_sim_time': use_sim_time,
'params_file': params_file,
'use_composition': use_composition,
'use_intra_process_comms': use_intra_process_comms,
'use_respawn': use_respawn,
'container_name': container_name,
}.items(),
),
IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(launch_dir, 'navigation_launch.py')
),
launch_arguments={
'namespace': namespace,
'use_sim_time': use_sim_time,
'autostart': autostart,
'graph': graph_filepath,
'params_file': params_file,
'use_composition': use_composition,
'use_intra_process_comms': use_intra_process_comms,
'use_respawn': use_respawn,
'use_keepout_zones': use_keepout_zones,
'use_speed_zones': use_speed_zones,
'container_name': container_name,
}.items(),
),
]
)
# Create the launch description and populate
ld = LaunchDescription()
# Set environment variables
ld.add_action(stdout_linebuf_envvar)
# Declare the launch options
ld.add_action(declare_namespace_cmd)
ld.add_action(declare_slam_cmd)
ld.add_action(declare_map_yaml_cmd)
ld.add_action(declare_keepout_mask_yaml_cmd)
ld.add_action(declare_speed_mask_yaml_cmd)
ld.add_action(declare_graph_file_cmd)
ld.add_action(declare_use_sim_time_cmd)
ld.add_action(declare_params_file_cmd)
ld.add_action(declare_autostart_cmd)
ld.add_action(declare_use_composition_cmd)
ld.add_action(declare_use_intra_process_comms_cmd)
ld.add_action(declare_container_name_cmd)
ld.add_action(declare_use_respawn_cmd)
ld.add_action(declare_log_level_cmd)
ld.add_action(declare_use_localization_cmd)
ld.add_action(declare_use_keepout_zones_cmd)
ld.add_action(declare_use_speed_zones_cmd)
# Add the actions to launch all of the navigation nodes
ld.add_action(bringup_cmd_group)
return ld