generate_nerian_config_cpp.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 # Copyright (c) 2022 Nerian Vision GmbH
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a copy
6 # of this software and associated documentation files (the "Software"), to deal
7 # in the Software without restriction, including without limitation the rights
8 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 # copies of the Software, and to permit persons to whom the Software is
10 # furnished to do so, subject to the following conditions:
11 #
12 # The above copyright notice and this permission notice shall be included in
13 # all copies or substantial portions of the Software.
14 
15 
21 
22 import sys
23 
24 CODE_TEMPLATE = '''// This file is AUTOGENERATED CODE produced by generate_nerian_config_cpp.py
25 
26 #include <ros/ros.h>
27 #include <dynamic_reconfigure/server.h>
28 #include <nerian_stereo/NerianStereoConfig.h>
29 #include <visiontransfer/deviceparameters.h>
30 #include <visiontransfer/parameterset.h>
31 
32 #include "nerian_stereo_node_base.h"
33 
34 using namespace visiontransfer;
35 
36 namespace nerian_stereo {
37 
38 // Callback that receives an updated config from ROS
39 void StereoNodeBase::autogen_dynamicReconfigureCallback(nerian_stereo::NerianStereoConfig &config, uint32_t level) {
40  std::stringstream ss;
41  // == START of autogenerated parameter blocks ==
42 %s
43  // == END of autogenerated parameter blocks ==
44 }
45 
46 // Obtain current parameter values from device and copy them to parameter server
47 void StereoNodeBase::autogen_updateParameterServerFromDevice(param::ParameterSet& cfg) {
48  ROS_INFO("Setting initial parameters in the parameter server");
49  std::string node_name = ros::this_node::getName();
50  // Publish reboot flag to definitely be set to false in the parameter server
51  getNH().setParam(node_name + "/reboot", false);
52  // Publish the current config to the parameter server
53  // == START of autogenerated parameter blocks ==
54 %s
55  // == END of autogenerated parameter blocks ==
56 }
57 
58 // Override the default parameter bounds with current (run-time) config
59 void StereoNodeBase::autogen_updateDynamicReconfigureFromDevice(param::ParameterSet& cfg) {
60  nerian_stereo::NerianStereoConfig config_default, config_min, config_max;
61  ROS_INFO("Updating dynamic_reconfigure defaults and limits");
62  // Set defaults and min/max values according to Nerian stereo device API
63  // == START of autogenerated parameter blocks ==
64 %s
65 
66  // == END of autogenerated parameter blocks ==
67  // Publish them
68  dynReconfServer->setConfigMin(config_min);
69  dynReconfServer->setConfigMax(config_max);
70  dynReconfServer->setConfigDefault(config_default);
71 }
72 
73 } // namespace
74 '''
75 
76 TEMPLATE_PARAMETER_CHANGE = ''' if (config.{varname} != lastKnownConfig.{varname}) {{
77  ROS_INFO("Request to set {varname} = %s", std::to_string(config.{varname}).c_str());
78  deviceParameters->setParameter("{varname}", config.{varname});
79  }}'''
80 
81 TEMPLATE_SETPARAM = ''' getNH().setParam(node_name + "/{varname}", cfg.get("{varname}").getCurrent<{typ}>());'''
82 
83 TEMPLATE_SETDEFAULTS = '''
84  config_default.{varname} = cfg.get("{varname}").getCurrent<{typ}>();
85  config_min.{varname} = cfg.get("{varname}").getMin<{typ}>();
86  config_max.{varname} = cfg.get("{varname}").getMax<{typ}>();'''
87 
88 
89 if __name__ == '__main__':
90  # Default to filter
91  infile = sys.stdin
92  outfile = sys.stdout
93  if len(sys.argv) >= 3:
94  infile = open(sys.argv[1], 'r')
95  outfile = open(sys.argv[2], 'w')
96 
97  # Parse cfg file contents and extract the parameter lines (name + type)
98  varnames_and_types = []
99  for line in infile.readlines():
100  if line.startswith('gen.add('):
101  varname = line.split('"')[1]
102  typ = line.split(',')[1].strip().split('_')[0]
103  varnames_and_types.append([varname, typ])
104 
105  # Dump code for each parameter. 'reboot' is handled specially (must not be True initially)
106  paramchange = '\n'.join(TEMPLATE_PARAMETER_CHANGE.format(varname=vt[0]) for vt in varnames_and_types)
107  setparam = '\n'.join(TEMPLATE_SETPARAM.format(varname=vt[0], typ=vt[1]) for vt in varnames_and_types if vt[0] != 'reboot')
108  setdefaults = '\n'.join(TEMPLATE_SETDEFAULTS.format(varname=vt[0], typ=vt[1]) for vt in varnames_and_types if vt[0] != 'reboot')
109  outfile.write(CODE_TEMPLATE % (paramchange, setparam, setdefaults))
110 


nerian_stereo
Author(s): Nerian Vision Technologies
autogenerated on Wed Jan 24 2024 04:06:47