YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
Map2D_nws_ros2_ParamsParser.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2023-2023 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: LGPL-2.1-or-later
4 */
5
6
7// Generated by yarpDeviceParamParserGenerator (2.0)
8// This is an automatically generated file. Please do not edit it.
9// It will be re-generated if the cmake flag ALLOW_DEVICE_PARAM_PARSER_GERNERATION is ON.
10
11// Generated on: Mon May 26 22:00:40 2025
12
13
15#include <yarp/os/LogStream.h>
16#include <yarp/os/Value.h>
17
18namespace {
19 YARP_LOG_COMPONENT(Map2D_nws_ros2ParamsCOMPONENT, "yarp.device.Map2D_nws_ros2")
20}
21
22
26
27
28std::vector<std::string> Map2D_nws_ros2_ParamsParser::getListOfParams() const
29{
30 std::vector<std::string> params;
31 params.push_back("name");
32 params.push_back("getmap");
33 params.push_back("getmapbyname");
34 params.push_back("roscmdparser");
35 params.push_back("markers_pub");
36 params.push_back("node_name");
37 return params;
38}
39
40
41bool Map2D_nws_ros2_ParamsParser::getParamValue(const std::string& paramName, std::string& paramValue) const
42{
43 if (paramName =="name")
44 {
45 paramValue = m_name;
46 return true;
47 }
48 if (paramName =="getmap")
49 {
50 paramValue = m_getmap;
51 return true;
52 }
53 if (paramName =="getmapbyname")
54 {
55 paramValue = m_getmapbyname;
56 return true;
57 }
58 if (paramName =="roscmdparser")
59 {
60 paramValue = m_roscmdparser;
61 return true;
62 }
63 if (paramName =="markers_pub")
64 {
65 paramValue = m_markers_pub;
66 return true;
67 }
68 if (paramName =="node_name")
69 {
70 paramValue = m_node_name;
71 return true;
72 }
73
74 yError() <<"parameter '" << paramName << "' was not found";
75 return false;
76
77}
78
79
81{
82 //This is a sub-optimal solution.
83 //Ideally getConfiguration() should return all parameters but it is currently
84 //returning only user provided parameters (excluding default values)
85 //This behaviour will be fixed in the near future.
86 std::string s_cfg = m_provided_configuration;
87 return s_cfg;
88}
89
91{
92 //Check for --help option
93 if (config.check("help"))
94 {
95 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << getDocumentationOfDeviceParams();
96 }
97
100 //Parser of parameter name
101 {
102 if (config.check("name"))
103 {
104 m_name = config.find("name").asString();
105 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'name' using value:" << m_name;
106 }
107 else
108 {
109 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'name' using DEFAULT value:" << m_name;
110 }
111 prop_check.unput("name");
112 }
113
114 //Parser of parameter getmap
115 {
116 if (config.check("getmap"))
117 {
118 m_getmap = config.find("getmap").asString();
119 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'getmap' using value:" << m_getmap;
120 }
121 else
122 {
123 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'getmap' using DEFAULT value:" << m_getmap;
124 }
125 prop_check.unput("getmap");
126 }
127
128 //Parser of parameter getmapbyname
129 {
130 if (config.check("getmapbyname"))
131 {
132 m_getmapbyname = config.find("getmapbyname").asString();
133 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'getmapbyname' using value:" << m_getmapbyname;
134 }
135 else
136 {
137 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'getmapbyname' using DEFAULT value:" << m_getmapbyname;
138 }
139 prop_check.unput("getmapbyname");
140 }
141
142 //Parser of parameter roscmdparser
143 {
144 if (config.check("roscmdparser"))
145 {
146 m_roscmdparser = config.find("roscmdparser").asString();
147 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'roscmdparser' using value:" << m_roscmdparser;
148 }
149 else
150 {
151 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'roscmdparser' using DEFAULT value:" << m_roscmdparser;
152 }
153 prop_check.unput("roscmdparser");
154 }
155
156 //Parser of parameter markers_pub
157 {
158 if (config.check("markers_pub"))
159 {
160 m_markers_pub = config.find("markers_pub").asString();
161 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'markers_pub' using value:" << m_markers_pub;
162 }
163 else
164 {
165 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'markers_pub' using DEFAULT value:" << m_markers_pub;
166 }
167 prop_check.unput("markers_pub");
168 }
169
170 //Parser of parameter node_name
171 {
172 if (config.check("node_name"))
173 {
174 m_node_name = config.find("node_name").asString();
175 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'node_name' using value:" << m_node_name;
176 }
177 else
178 {
179 yCInfo(Map2D_nws_ros2ParamsCOMPONENT) << "Parameter 'node_name' using DEFAULT value:" << m_node_name;
180 }
181 prop_check.unput("node_name");
182 }
183
184 /*
185 //This code check if the user set some parameter which are not check by the parser
186 //If the parser is set in strict mode, this will generate an error
187 if (prop_check.size() > 0)
188 {
189 bool extra_params_found = false;
190 for (auto it=prop_check.begin(); it!=prop_check.end(); it++)
191 {
192 if (m_parser_is_strict)
193 {
194 yCError(Map2D_nws_ros2ParamsCOMPONENT) << "User asking for parameter: "<<it->name <<" which is unknown to this parser!";
195 extra_params_found = true;
196 }
197 else
198 {
199 yCWarning(Map2D_nws_ros2ParamsCOMPONENT) << "User asking for parameter: "<< it->name <<" which is unknown to this parser!";
200 }
201 }
202
203 if (m_parser_is_strict && extra_params_found)
204 {
205 return false;
206 }
207 }
208 */
209 return true;
210}
211
212
214{
215 std::string doc;
216 doc = doc + std::string("\n=============================================\n");
217 doc = doc + std::string("This is the help for device: Map2D_nws_ros2\n");
218 doc = doc + std::string("\n");
219 doc = doc + std::string("This is the list of the parameters accepted by the device:\n");
220 doc = doc + std::string("'name': Device name prefix\n");
221 doc = doc + std::string("'getmap': The \"GetMap\" ROS service name\n");
222 doc = doc + std::string("'getmapbyname': The \"GetMapByName\" ROS2 custom service name\n");
223 doc = doc + std::string("'roscmdparser': The \"BasicTypes\" ROS service name\n");
224 doc = doc + std::string("'markers_pub': The visual markers array publisher name\n");
225 doc = doc + std::string("'node_name': The ROS2 node name. If absent, the device name will be used\n");
226 doc = doc + std::string("\n");
227 doc = doc + std::string("Here are some examples of invocation command with yarpdev, with all params:\n");
228 doc = doc + " yarpdev --device map2D_nws_ros2 --name map2D_nws_ros2 --getmap getMap --getmapbyname getMapByName --roscmdparser rosCmdParser --markers_pub locationServerMarkers --node_name map2D_nws_ros2\n";
229 doc = doc + std::string("Using only mandatory params:\n");
230 doc = doc + " yarpdev --device map2D_nws_ros2\n";
231 doc = doc + std::string("=============================================\n\n"); return doc;
232}
#define yError(...)
Definition Log.h:361
std::vector< std::string > getListOfParams() const override
Return a list of all params used by the device.
std::string getConfiguration() const override
Return the configuration of the device.
std::string getDocumentationOfDeviceParams() const override
Get the documentation of the DeviceDriver's parameters.
bool getParamValue(const std::string &paramName, std::string &paramValue) const override
Return the value (represented as a string) of the requested parameter.
bool parseParams(const yarp::os::Searchable &config) override
Parse the DeviceDriver parameters.
A class for storing options and configuration information.
Definition Property.h:33
void unput(const std::string &key)
Remove the association from the given key to a value, if present.
A base class for nested structures that can be searched.
Definition Searchable.h:31
virtual bool check(const std::string &key) const =0
Check if there exists a property of the given name.
virtual std::string toString() const =0
Return a standard text representation of the content of the object.
virtual Value & find(const std::string &key) const =0
Gets a value corresponding to a given keyword.
#define yCInfo(component,...)
#define YARP_LOG_COMPONENT(name,...)