rcl/rcl_yaml_param_parser
brawner 728b8b89bd
Quality Declarations for rcl_action, rcl_lifecycle, yaml_parser (#641)
* READMEs and Quality Declarations for rcl_action, rcl_lifecycle, yaml_parser

Signed-off-by: Stephen Brawner <brawner@gmail.com>

* PR Fixup

Signed-off-by: Stephen Brawner <brawner@gmail.com>

* PR Fixup

Signed-off-by: Stephen Brawner <brawner@gmail.com>

* PR Fixup

Signed-off-by: Stephen Brawner <brawner@gmail.com>
2020-05-07 09:35:41 +02:00
..
include/rcl_yaml_param_parser Support parameter overrides and remap rules flags on command line (#483) 2019-08-26 13:32:16 -03:00
src Rcl issues 469 test arguments (#564) 2020-03-12 10:12:30 -04:00
test code style only: wrap after open parenthesis if not in one line (#565) 2020-02-03 09:06:35 -08:00
CHANGELOG.rst 0.9.0 2020-04-29 09:41:48 -07:00
CMakeLists.txt fix usage to not expose underlying yaml (#630) 2020-04-22 15:14:47 -07:00
Doxyfile added rcl yaml param parser doxyfile (#634) 2020-04-29 09:17:30 +02:00
package.xml 0.9.0 2020-04-29 09:41:48 -07:00
QUALITY_DECLARATION.md Quality Declarations for rcl_action, rcl_lifecycle, yaml_parser (#641) 2020-05-07 09:35:41 +02:00
README.md Quality Declarations for rcl_action, rcl_lifecycle, yaml_parser (#641) 2020-05-07 09:35:41 +02:00

ROS2 rcl YAML paramter parser

Parse a YAML parameter file and populate the C data structure

The data structure params_st will then be used during node initialization

YAML parameter file should follow the yaml syntax shown below

NOTE: It only supports canonical int and float types

<node_namespace_string>:  # optional
  <node1_name>:
    ros__parameters:
      <field_name>: <field_value>
      <parameter_namespace_string>:   # optional
        <field1_name>: <field1_value>
        <field2_name>: <field2_value>
  <node2_name>:
    ros__parameters:
      <field_name>: <field_value>
      <parameter_namespace_string>:   # optional
        <field1_name>: <field1_value>
        <field2_name>: <field2_value>

This package depends on C libyaml

Quality Declaration

This package claims to be in the Quality Level 4 category, see the Quality Declaration for more details.