forked from ros-controls/ros2_controllers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1b1865
commit e7bab63
Showing
6 changed files
with
139 additions
and
1 deletion.
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
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
78 changes: 78 additions & 0 deletions
78
ros2controlcli/ros2controlcli/verb/list_hardware_components.py
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,78 @@ | ||
# Copyright 2023 ROS2-Control Development Team | ||
# | ||
# 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. | ||
|
||
from controller_manager import list_hardware_components | ||
from controller_manager.spawner import bcolors | ||
|
||
from ros2cli.node.direct import add_arguments | ||
from ros2cli.node.strategy import NodeStrategy | ||
from ros2cli.verb import VerbExtension | ||
from ros2controlcli.api import add_controller_mgr_parsers | ||
|
||
|
||
class ListHardwareComponentsVerb(VerbExtension): | ||
"""Output the list of available hardware components.""" | ||
|
||
def add_arguments(self, parser, cli_name): | ||
add_arguments(parser) | ||
parser.add_argument( | ||
'--verbose', '-v', | ||
action='store_true', | ||
help='List hardware components with command and state interfaces', | ||
) | ||
add_controller_mgr_parsers(parser) | ||
|
||
def main(self, *, args): | ||
with NodeStrategy(args) as node: | ||
hardware_components = list_hardware_components(node, args.controller_manager) | ||
|
||
for idx, component in enumerate(hardware_components.component): | ||
print(f'Hardware Component {idx}\n\tname: {component.name}\n\ttype: {component.type}') | ||
if hasattr(component, 'plugin_name'): | ||
plugin_name = component.plugin_name | ||
else: | ||
plugin_name = f'{bcolors.WARNING}plugin name missing!{bcolors.ENDC}' | ||
|
||
print(f'\tplugin name: {plugin_name}\n\tstate: id={component.state.id} label={component.state.label}\n\tcommand interfaces') | ||
for cmd_interface in component.command_interfaces: | ||
|
||
if cmd_interface.is_available: | ||
available_str = f'{bcolors.OKBLUE}[available]{bcolors.ENDC}' | ||
else: | ||
available_str = f'{bcolors.WARNING}[unavailable]{bcolors.ENDC}' | ||
|
||
if cmd_interface.is_claimed: | ||
claimed_str = f'{bcolors.OKBLUE}[claimed]{bcolors.ENDC}' | ||
else: | ||
claimed_str = '[unclaimed]' | ||
|
||
print(f'\t\t{cmd_interface.name} {available_str} {claimed_str}') | ||
|
||
if args.verbose: | ||
print('\tstate interfaces') | ||
for state_interface in component.command_interfaces: | ||
|
||
if state_interface.is_available: | ||
available_str = f'{bcolors.OKBLUE}[available]{bcolors.ENDC}' | ||
else: | ||
available_str = f'{bcolors.WARNING}[unavailable]{bcolors.ENDC}' | ||
|
||
if state_interface.is_claimed: | ||
claimed_str = f'{bcolors.OKBLUE}[claimed]{bcolors.ENDC}' | ||
else: | ||
claimed_str = '[unclaimed]' | ||
|
||
print(f'\t\t{state_interface.name} {available_str} {claimed_str}') | ||
|
||
return 0 |
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