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 (1.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 Mar 7 17:59:44 2024
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
41{
42 //Check for --help option
43 if (config.check("help"))
44 {
45 yCInfo(Battery_nws_yarpParamsCOMPONENT) << getDocumentationOfDeviceParams();
46 }
47
48 std::string config_string = config.toString();
49 yarp::os::Property prop_check(config_string.c_str());
50 //Parser of parameter name
51 {
52 if (config.check("name"))
53 {
54 m_name = config.find("name").asString();
55 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'name' using value:" << m_name;
56 }
57 else
58 {
59 yCError(Battery_nws_yarpParamsCOMPONENT) << "Mandatory parameter 'name' not found!";
60 yCError(Battery_nws_yarpParamsCOMPONENT) << "Description of the parameter: prefix of the ports opened by the device";
61 return false;
62 }
63 prop_check.unput("name");
64 }
65
66 //Parser of parameter period
67 {
68 if (config.check("period"))
69 {
70 m_period = config.find("period").asFloat64();
71 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'period' using value:" << m_period;
72 }
73 else
74 {
75 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'period' using DEFAULT value:" << m_period;
76 }
77 prop_check.unput("period");
78 }
79
80 //Parser of parameter enable_shutdown
81 {
82 if (config.check("enable_shutdown"))
83 {
84 m_enable_shutdown = config.find("enable_shutdown").asBool();
85 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'enable_shutdown' using value:" << m_enable_shutdown;
86 }
87 else
88 {
89 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'enable_shutdown' using DEFAULT value:" << m_enable_shutdown;
90 }
91 prop_check.unput("enable_shutdown");
92 }
93
94 //Parser of parameter enable_log
95 {
96 if (config.check("enable_log"))
97 {
98 m_enable_log = config.find("enable_log").asBool();
99 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'enable_log' using value:" << m_enable_log;
100 }
101 else
102 {
103 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'enable_log' using DEFAULT value:" << m_enable_log;
104 }
105 prop_check.unput("enable_log");
106 }
107
108 //Parser of parameter quitPortName
109 {
110 if (config.check("quitPortName"))
111 {
112 m_quitPortName = config.find("quitPortName").asString();
113 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'quitPortName' using value:" << m_quitPortName;
114 }
115 else
116 {
117 yCInfo(Battery_nws_yarpParamsCOMPONENT) << "Parameter 'quitPortName' using DEFAULT value:" << m_quitPortName;
118 }
119 prop_check.unput("quitPortName");
120 }
121
122 /*
123 //This code check if the user set some parameter which are not check by the parser
124 //If the parser is set in strict mode, this will generate an error
125 if (prop_check.size() > 0)
126 {
127 bool extra_params_found = false;
128 for (auto it=prop_check.begin(); it!=prop_check.end(); it++)
129 {
130 if (m_parser_is_strict)
131 {
132 yCError(Battery_nws_yarpParamsCOMPONENT) << "User asking for parameter: "<<it->name <<" which is unknown to this parser!";
133 extra_params_found = true;
134 }
135 else
136 {
137 yCWarning(Battery_nws_yarpParamsCOMPONENT) << "User asking for parameter: "<< it->name <<" which is unknown to this parser!";
138 }
139 }
140
141 if (m_parser_is_strict && extra_params_found)
142 {
143 return false;
144 }
145 }
146 */
147 return true;
148}
149
150
152{
153 std::string doc;
154 doc = doc + std::string("\n=============================================\n");
155 doc = doc + std::string("This is the help for device: Battery_nws_yarp\n");
156 doc = doc + std::string("\n");
157 doc = doc + std::string("This is the list of the parameters accepted by the device:\n");
158 doc = doc + std::string("'name': prefix of the ports opened by the device\n");
159 doc = doc + std::string("'period': refresh period of the broadcasted values in seconds\n");
160 doc = doc + std::string("'enable_shutdown': if enabled, batteryWrapper will start a system shutdown when charge is below 5%\n");
161 doc = doc + std::string("'enable_log': if enabled, stores a log of battery usage on disk\n");
162 doc = doc + std::string("'quitPortName': if present, this yarp port will be opened and used to send a sthutdown command to other processes\n");
163 doc = doc + std::string("\n");
164 doc = doc + std::string("Here are some examples of invocation command with yarpdev, with all params:\n");
165 doc = doc + " yarpdev --device battery_nws_yarp --name /robotName/battery1 --period 1.0 --enable_shutdown false --enable_log false --quitPortName <optional_value>\n";
166 doc = doc + std::string("Using only mandatory params:\n");
167 doc = doc + " yarpdev --device battery_nws_yarp --name /robotName/battery1\n";
168 doc = doc + std::string("=============================================\n\n"); return doc;
169}
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,...)