YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
Battery_nws_yarp_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: Thu May 22 11:32:41 2025
12
13
15#include <yarp/os/LogStream.h>
16#include <yarp/os/Value.h>
17
18namespace {
19 YARP_LOG_COMPONENT(Battery_nws_yarpParamsCOMPONENT, "yarp.device.Battery_nws_yarp")
20}
21
22
26
27
28std::vector<std::string> Battery_nws_yarp_ParamsParser::getListOfParams() const
29{
30 std::vector<std::string> params;
31 params.push_back("name");
32 params.push_back("period");
33 params.push_back("enable_shutdown");
34 params.push_back("enable_log");
35 params.push_back("quitPortName");
36 return params;
37}
38
39
40bool Battery_nws_yarp_ParamsParser::getParamValue(const std::string& paramName, std::string& paramValue) const
41{
42 if (paramName =="name")
43 {
44 paramValue = m_name;
45 return true;
46 }
47 if (paramName =="period")
48 {
49 paramValue = std::to_string(m_period);
50 return true;
51 }
52 if (paramName =="enable_shutdown")
53 {
54 if (m_enable_shutdown==true) paramValue = "true";
55 else paramValue = "false";
56 return true;
57 }
58 if (paramName =="enable_log")
59 {
60 if (m_enable_log==true) paramValue = "true";
61 else paramValue = "false";
62 return true;
63 }
64 if (paramName =="quitPortName")
65 {
66 paramValue = m_quitPortName;
67 return true;
68 }
69
70 yError() <<"parameter '" << paramName << "' was not found";
71 return false;
72
73}
74
75
77{
78 //This is a sub-optimal solution.
79 //Ideally getConfiguration() should return all parameters but it is currently
80 //returning only user provided parameters (excluding default values)
81 //This behaviour will be fixed in the near future.
82 std::string s_cfg = m_provided_configuration;
83 return s_cfg;
84}
85
87{
88 //Check for --help option
89 if (config.check("help"))
90 {
91 yCInfo(Battery_nws_yarpParamsCOMPONENT) << getDocumentationOfDeviceParams();
92 }
93
96 //Parser of parameter name
97 {
98 if (config.check("name"))
99 {
100 m_name = config.find("name").asString();
101 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'name' using value:" << m_name;
102 }
103 else
104 {
105 yCError(Battery_nws_yarpParamsCOMPONENT) << "Mandatory parameter 'name' not found!";
106 yCError(Battery_nws_yarpParamsCOMPONENT) << "Description of the parameter: prefix of the ports opened by the device";
107 return false;
108 }
109 prop_check.unput("name");
110 }
111
112 //Parser of parameter period
113 {
114 if (config.check("period"))
115 {
116 m_period = config.find("period").asFloat64();
117 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'period' using value:" << m_period;
118 }
119 else
120 {
121 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'period' using DEFAULT value:" << m_period;
122 }
123 prop_check.unput("period");
124 }
125
126 //Parser of parameter enable_shutdown
127 {
128 if (config.check("enable_shutdown"))
129 {
130 m_enable_shutdown = config.find("enable_shutdown").asBool();
131 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'enable_shutdown' using value:" << m_enable_shutdown;
132 }
133 else
134 {
135 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'enable_shutdown' using DEFAULT value:" << m_enable_shutdown;
136 }
137 prop_check.unput("enable_shutdown");
138 }
139
140 //Parser of parameter enable_log
141 {
142 if (config.check("enable_log"))
143 {
144 m_enable_log = config.find("enable_log").asBool();
145 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'enable_log' using value:" << m_enable_log;
146 }
147 else
148 {
149 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'enable_log' using DEFAULT value:" << m_enable_log;
150 }
151 prop_check.unput("enable_log");
152 }
153
154 //Parser of parameter quitPortName
155 {
156 if (config.check("quitPortName"))
157 {
158 m_quitPortName = config.find("quitPortName").asString();
159 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'quitPortName' using value:" << m_quitPortName;
160 }
161 else
162 {
163 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'quitPortName' using DEFAULT value:" << m_quitPortName;
164 }
165 prop_check.unput("quitPortName");
166 }
167
168 /*
169 //This code check if the user set some parameter which are not check by the parser
170 //If the parser is set in strict mode, this will generate an error
171 if (prop_check.size() > 0)
172 {
173 bool extra_params_found = false;
174 for (auto it=prop_check.begin(); it!=prop_check.end(); it++)
175 {
176 if (m_parser_is_strict)
177 {
178 yCError(Battery_nws_yarpParamsCOMPONENT) << "User asking for parameter: "<<it->name <<" which is unknown to this parser!";
179 extra_params_found = true;
180 }
181 else
182 {
183 yCWarning(Battery_nws_yarpParamsCOMPONENT) << "User asking for parameter: "<< it->name <<" which is unknown to this parser!";
184 }
185 }
186
187 if (m_parser_is_strict && extra_params_found)
188 {
189 return false;
190 }
191 }
192 */
193 return true;
194}
195
196
198{
199 std::string doc;
200 doc = doc + std::string("\n=============================================\n");
201 doc = doc + std::string("This is the help for device: Battery_nws_yarp\n");
202 doc = doc + std::string("\n");
203 doc = doc + std::string("This is the list of the parameters accepted by the device:\n");
204 doc = doc + std::string("'name': prefix of the ports opened by the device\n");
205 doc = doc + std::string("'period': refresh period of the broadcasted values in seconds\n");
206 doc = doc + std::string("'enable_shutdown': if enabled, batteryWrapper will start a system shutdown when charge is below 5%\n");
207 doc = doc + std::string("'enable_log': if enabled, stores a log of battery usage on disk\n");
208 doc = doc + std::string("'quitPortName': if present, this yarp port will be opened and used to send a sthutdown command to other processes\n");
209 doc = doc + std::string("\n");
210 doc = doc + std::string("Here are some examples of invocation command with yarpdev, with all params:\n");
211 doc = doc + " yarpdev --device battery_nws_yarp --name /robotName/battery1 --period 1.0 --enable_shutdown false --enable_log false --quitPortName <optional_value>\n";
212 doc = doc + std::string("Using only mandatory params:\n");
213 doc = doc + " yarpdev --device battery_nws_yarp --name /robotName/battery1\n";
214 doc = doc + std::string("=============================================\n\n"); return doc;
215}
#define yError(...)
Definition Log.h:361
std::string getConfiguration() const override
Return the configuration of the device.
bool getParamValue(const std::string &paramName, std::string &paramValue) const override
Return the value (represented as a string) of the requested parameter.
std::string getDocumentationOfDeviceParams() const override
Get the documentation of the DeviceDriver's parameters.
bool parseParams(const yarp::os::Searchable &config) override
Parse the DeviceDriver parameters.
std::vector< std::string > getListOfParams() const override
Return a list of all params used by the device.
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 yCError(component,...)
#define YARP_LOG_COMPONENT(name,...)