You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
6.1 KiB
160 lines
6.1 KiB
#!/usr/bin/env python3 |
|
""" |
|
Script to read an yaml file containing the microRTPS topics and update the naming convention to PascalCase |
|
""" |
|
|
|
import argparse |
|
import errno |
|
from pathlib import Path |
|
import os |
|
import six |
|
import yaml |
|
|
|
__author__ = 'PX4 Development Team' |
|
__copyright__ = \ |
|
''' |
|
' |
|
' Copyright (c) 2018-2021 PX4 Development Team. All rights reserved. |
|
' |
|
' Redistribution and use in source and binary forms, or without |
|
' modification, permitted provided that the following conditions |
|
' are met: |
|
' |
|
' 1. Redistributions of source code must retain the above copyright |
|
' notice, list of conditions and the following disclaimer. |
|
' 2. Redistributions in binary form must reproduce the above copyright |
|
' notice, list of conditions and the following disclaimer in |
|
' the documentation and/or other materials provided with the |
|
' distribution. |
|
' 3. Neither the name PX4 nor the names of its contributors may be |
|
' used to endorse or promote products derived from self software |
|
' without specific prior written permission. |
|
' |
|
' THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
' "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, NOT |
|
' LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
|
' FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
|
' COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
|
' INCIDENTAL, SPECIAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, |
|
' BUT NOT LIMITED TO, OF SUBSTITUTE GOODS OR SERVICES; LOSS |
|
' OF USE, DATA, PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
|
' AND ON ANY THEORY OF LIABILITY, IN CONTRACT, STRICT |
|
' LIABILITY, TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
|
' ANY WAY OUT OF THE USE OF THIS SOFTWARE, IF ADVISED OF THE |
|
' POSSIBILITY OF SUCH DAMAGE. |
|
' |
|
''' |
|
__credits__ = ['Nuno Marques <nuno.marques@dronesolution.io>'] |
|
__license__ = 'BSD-3-Clause' |
|
__version__ = '0.1.0' |
|
__maintainer__ = 'Nuno Marques' |
|
__email__ = 'nuno.marques@dronesolution.io' |
|
__status__ = 'Development' |
|
|
|
verbose = False |
|
|
|
|
|
class IndenterDumper(yaml.Dumper): |
|
""" Custom dumper for yaml files that apply the correct indentation """ |
|
|
|
def increase_indent(self, flow=False, indentless=False): |
|
return super(IndenterDumper, self).increase_indent(flow, False) |
|
|
|
|
|
def load_yaml_file(file): |
|
""" |
|
Open yaml file and parse the data into a list of dict |
|
|
|
:param file: the yaml file to load |
|
:returns: the list of dictionaries that represent the topics to send and receive |
|
:raises IOError: raises and error when the file is not found |
|
""" |
|
try: |
|
with open(file, 'r') as f: |
|
if verbose: |
|
print(("--\t\t- '%s' file loaded" % file)) |
|
return yaml.safe_load(f) |
|
except OSError as e: |
|
if e.errno == errno.ENOENT: |
|
raise IOError(errno.ENOENT, os.strerror(errno.ENOENT), file) |
|
else: |
|
raise |
|
|
|
|
|
def update_dict(list): |
|
""" |
|
Update the message naming on the dictionary to fit the PascalCase convention |
|
|
|
:param file: the list of dicts to be updated |
|
""" |
|
if verbose: |
|
num_of_msgs = 0 |
|
for i, dictionary in enumerate(list["rtps"]): |
|
list["rtps"][i] = {k: v.title().replace('_', '') if isinstance( |
|
v, six.string_types) else v for k, v in six.iteritems(dictionary)} |
|
if verbose: |
|
num_of_msgs += 1 |
|
if verbose: |
|
print(("--\t\t- %d ROS message file names updated" % num_of_msgs)) |
|
|
|
|
|
def update_yaml_file(list, in_file, out_file): |
|
""" |
|
Open the yaml file to dump the new list of dict toself. |
|
|
|
:param list: the list of updated dicts |
|
:param file: the yaml file to load and write the new data |
|
:raises IOError: raises and error when the file is not found |
|
""" |
|
try: |
|
with open(out_file, 'w') as f: |
|
f.write("# AUTOGENERATED-FILE! DO NOT MODIFY IT DIRECTLY.\n#" |
|
" Edit instead the same file under PX4-Autopilot/msg/tools and" |
|
" use the \n# PX4-Autopilot/msg/tools/uorb_to_ros_urtps_topics.py" |
|
" to regenerate this file.\n") |
|
yaml.dump(list, f, Dumper=IndenterDumper, default_flow_style=False) |
|
if verbose: |
|
if in_file == out_file: |
|
print(("--\t\t- '%s' updated" % in_file)) |
|
else: |
|
print(("--\t\t- '%s' created" % out_file)) |
|
|
|
except OSError as err: |
|
if err.errno == errno.ENOENT: |
|
raise IOError(errno.ENOENT, os.strerror(errno.ENOENT), out_file) |
|
raise |
|
|
|
|
|
def main(): |
|
parser = argparse.ArgumentParser( |
|
description='Read an yaml file containing the microRTPS topics and update the naming convention to PascalCase') |
|
optional = parser._action_groups.pop() |
|
required = parser.add_argument_group('Required') |
|
required.add_argument("-i", "--input-file", dest="input_file", |
|
help="Yaml file to read", metavar="INFILE") |
|
optional.add_argument("-o", "--output-file", dest="output_file", |
|
help="Yaml file to dump. If not set, it is the same as the input", |
|
metavar="OUTFILE", default="") |
|
optional.add_argument("-q", "--quiet", action="store_false", dest="verbose", |
|
default=True, help="Don't print status messages to stdout") |
|
|
|
args = parser.parse_args() |
|
global verbose |
|
verbose = args.verbose |
|
in_file = Path(args.input_file) |
|
out_file = Path(args.output_file) if ( |
|
Path(args.output_file) != in_file and Path(args.output_file) != "") else in_file |
|
|
|
if verbose: |
|
print("---------------------- \033[1mmicroRTPS bridge yaml PX4 to ROS topics\033[0m ----------------------") |
|
print("-------------------------------------------------------------------------------------------------------") |
|
|
|
list = load_yaml_file(in_file) |
|
update_dict(list) |
|
update_yaml_file(list, in_file, out_file) |
|
if verbose: |
|
print("-------------------------------------------------------------------------------------------------------") |
|
|
|
|
|
if __name__ == "__main__": |
|
main()
|
|
|