-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Carlos Agüero <[email protected]>
- Loading branch information
Showing
5 changed files
with
182 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
# Copyright 2024 Open Source Robotics Foundation, Inc. | ||
# | ||
# 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. | ||
|
||
"""Module for the ros_gz bridge action.""" | ||
|
||
from typing import List | ||
from typing import Optional | ||
|
||
from launch.action import Action | ||
from launch.actions import IncludeLaunchDescription | ||
from launch.frontend import expose_action, Entity, Parser | ||
from launch.launch_context import LaunchContext | ||
from launch.launch_description_sources import PythonLaunchDescriptionSource | ||
from launch.some_substitutions_type import SomeSubstitutionsType | ||
from launch.substitutions import PathJoinSubstitution | ||
from launch_ros.substitutions import FindPackageShare | ||
|
||
@expose_action('ros_gz_bridge') | ||
class RosGzBridge(Action): | ||
"""Action that executes a ros_gz bridge ROS [composable] node.""" | ||
|
||
def __init__( | ||
self, | ||
*, | ||
config_file: SomeSubstitutionsType, | ||
container_name: SomeSubstitutionsType, | ||
namespace: SomeSubstitutionsType, | ||
use_composition: SomeSubstitutionsType, | ||
use_respawn: SomeSubstitutionsType, | ||
log_level: SomeSubstitutionsType, | ||
**kwargs | ||
) -> None: | ||
""" | ||
Construct a ros_gz bridge action. | ||
All arguments are forwarded to `ros_gz_bridge.launch.ros_gz_bridge.launch.py`, so see the documentation | ||
of that class for further details. | ||
:param: config_file YAML config file. | ||
:param: container_name Name of container that nodes will load in if use composition. | ||
:param: namespace Top-level namespace. | ||
:param: use_composition Use composed bringup if True. | ||
:param: use_respawn Whether to respawn if a node crashes. Applied when composition is disabled.. | ||
:param: log_level Log level. | ||
""" | ||
|
||
super().__init__(**kwargs) | ||
self.__config_file = config_file | ||
self.__container_name = container_name | ||
self.__namespace = namespace | ||
self.__use_composition = use_composition | ||
self.__use_respawn = use_respawn | ||
self.__log_level = log_level | ||
|
||
@classmethod | ||
def parse(cls, entity: Entity, parser: Parser): | ||
"""Parse ros_gz_bridge.""" | ||
_, kwargs = super().parse(entity, parser) | ||
|
||
config_file = entity.get_attr( | ||
'config_file', data_type=str, | ||
optional=False) | ||
|
||
container_name = entity.get_attr( | ||
'container_name', data_type=str, | ||
optional=True) | ||
|
||
namespace = entity.get_attr( | ||
'namespace', data_type=str, | ||
optional=True) | ||
|
||
use_composition = entity.get_attr( | ||
'use_composition', data_type=str, | ||
optional=True) | ||
|
||
use_respawn = entity.get_attr( | ||
'use_respawn', data_type=str, | ||
optional=True) | ||
|
||
log_level = entity.get_attr( | ||
'log_level', data_type=str, | ||
optional=True) | ||
|
||
if isinstance(config_file, str): | ||
config_file = parser.parse_substitution(config_file) | ||
kwargs['config_file'] = config_file | ||
|
||
if isinstance(container_name, str): | ||
container_name = parser.parse_substitution(container_name) | ||
kwargs['container_name'] = container_name | ||
|
||
if isinstance(namespace, str): | ||
namespace = parser.parse_substitution(namespace) | ||
kwargs['namespace'] = namespace | ||
|
||
if isinstance(use_composition, str): | ||
use_composition = parser.parse_substitution(use_composition) | ||
kwargs['use_composition'] = use_composition | ||
|
||
if isinstance(use_respawn, str): | ||
use_respawn = parser.parse_substitution(use_respawn) | ||
kwargs['use_respawn'] = use_respawn | ||
|
||
if isinstance(log_level, str): | ||
log_level = parser.parse_substitution(log_level) | ||
kwargs['log_level'] = log_level | ||
|
||
return cls, kwargs | ||
|
||
def execute(self, context: LaunchContext) -> Optional[List[Action]]: | ||
""" | ||
Execute the action. | ||
""" | ||
|
||
ros_gz_bridge_description = IncludeLaunchDescription( | ||
PythonLaunchDescriptionSource( | ||
[PathJoinSubstitution([FindPackageShare('ros_gz_bridge'), | ||
'launch', | ||
'ros_gz_bridge.launch.py'])]), | ||
launch_arguments=[('config_file', self.__config_file), | ||
('container_name', self.__container_name), | ||
('namespace', self.__namespace), | ||
('use_composition', self.__use_composition), | ||
('use_respawn', self.__use_respawn), | ||
('log_level', self.__log_level), | ||
]) | ||
|
||
return [gzserver_description] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<launch> | ||
<arg name="config_file" default="" /> | ||
<arg name="container_name" default="ros_gz_container" /> | ||
<arg name="namespace" default="" /> | ||
<arg name="use_composition" default="False" /> | ||
<arg name="use_respawn" default="False" /> | ||
<arg name="log_level" default="info" /> | ||
<ros_gz_bridge | ||
config_file="$(var config_file)" | ||
container_name="$(var container_name)" | ||
namespace="$(var namespace)" | ||
use_composition="$(var use_composition)" | ||
use_respawn="$(var use_respawn)" | ||
log_level="$(var log_level)"> | ||
</ros_gz_bridge> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<launch> | ||
<arg name="config_file" default="" /> | ||
<arg name="container_name" default="ros_gz_container" /> | ||
<arg name="namespace" default="" /> | ||
<arg name="use_composition" default="False" /> | ||
<arg name="use_respawn" default="False" /> | ||
<arg name="log_level" default="info" /> | ||
<arg name="world_sdf_file" default="empty.sdf" /> | ||
<arg name="world_sdf_string" default="" /> | ||
<gzserver | ||
world_sdf_file="$(var world_sdf_file)" | ||
world_sdf_string="$(var world_sdf_string)" | ||
container_name="$(var container_name)" | ||
use_composition="$(var use_composition)"> | ||
</gzserver> | ||
<ros_gz_bridge | ||
config_file="$(var config_file)" | ||
container_name="$(var container_name)" | ||
namespace="$(var namespace)" | ||
use_composition="$(var use_composition)" | ||
use_respawn="$(var use_respawn)" | ||
log_level="$(var log_level)"> | ||
</ros_gz_bridge> | ||
</launch> |