-
Notifications
You must be signed in to change notification settings - Fork 165
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: leeminju531 <dlalswn531@naver.com>
- Loading branch information
1 parent
fa10b75
commit 41b5073
Showing
4 changed files
with
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright 2022 CLOBOT Co., Ltd. | ||
# | ||
# 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 ros2cli.node.strategy import add_arguments as add_strategy_node_arguments | ||
from ros2cli.node.strategy import NodeStrategy | ||
from ros2service.api import get_service_names_and_types | ||
from ros2service.api import ServiceNameCompleter | ||
from ros2topic.verb import VerbExtension | ||
|
||
|
||
class InfoVerb(VerbExtension): | ||
"""Print information about a service.""" | ||
|
||
def add_arguments(self, parser, cli_name): | ||
add_strategy_node_arguments(parser) | ||
arg = parser.add_argument( | ||
'service_name', | ||
help="Name of the ROS service to get info (e.g. '/add_two_ints')") | ||
arg.completer = ServiceNameCompleter( | ||
include_hidden_services_key='include_hidden_services') | ||
|
||
def main(self, *, args): | ||
with NodeStrategy(args) as node: | ||
service_names_and_types = get_service_names_and_types( | ||
node=node, | ||
include_hidden_services=args.include_hidden_services) | ||
service_name = args.service_name | ||
|
||
for (s_name, s_types) in service_names_and_types: | ||
if s_name == service_name: | ||
service_types = s_types | ||
break | ||
else: | ||
return "Unknown service '%s'" % service_name | ||
|
||
type_str = service_types[0] if len(service_types) == 1 else service_types | ||
print('Type: %s' % type_str, end='\n') | ||
|
||
print('Clients count: %d' % | ||
node.count_clients(service_name), end='\n') | ||
|
||
print('Services count: %d' % | ||
node.count_services(service_name), end='\n') |
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