YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
AudioPlayerWrapper_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:40 2025
12
13
15#include <yarp/os/LogStream.h>
16#include <yarp/os/Value.h>
17
18namespace {
19 YARP_LOG_COMPONENT(AudioPlayerWrapperParamsCOMPONENT, "yarp.device.AudioPlayerWrapper")
20}
21
22
26
27
29{
30 std::vector<std::string> params;
31 params.push_back("name");
32 params.push_back("period");
33 params.push_back("debug");
34 params.push_back("playback_network_buffer_size");
35 params.push_back("start");
36 return params;
37}
38
39
40bool AudioPlayerWrapper_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 =="debug")
53 {
54 if (m_debug==true) paramValue = "true";
55 else paramValue = "false";
56 return true;
57 }
58 if (paramName =="playback_network_buffer_size")
59 {
60 paramValue = std::to_string(m_playback_network_buffer_size);
61 return true;
62 }
63 if (paramName =="start")
64 {
65 if (m_start==true) paramValue = "true";
66 else paramValue = "false";
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(AudioPlayerWrapperParamsCOMPONENT) << getDocumentationOfDeviceParams();
92 }
93
96 //Parser of parameter name
97 {
98 if (config.check("name"))
99 {
100 m_name = config.find("name").asString();
101 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'name' using value:" << m_name;
102 }
103 else
104 {
105 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'name' using DEFAULT value:" << m_name;
106 }
107 prop_check.unput("name");
108 }
109
110 //Parser of parameter period
111 {
112 if (config.check("period"))
113 {
114 m_period = config.find("period").asFloat32();
115 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'period' using value:" << m_period;
116 }
117 else
118 {
119 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'period' using DEFAULT value:" << m_period;
120 }
121 prop_check.unput("period");
122 }
123
124 //Parser of parameter debug
125 {
126 if (config.check("debug"))
127 {
128 m_debug = config.find("debug").asBool();
129 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'debug' using value:" << m_debug;
130 }
131 else
132 {
133 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'debug' using DEFAULT value:" << m_debug;
134 }
135 prop_check.unput("debug");
136 }
137
138 //Parser of parameter playback_network_buffer_size
139 {
140 if (config.check("playback_network_buffer_size"))
141 {
142 m_playback_network_buffer_size = config.find("playback_network_buffer_size").asFloat64();
143 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'playback_network_buffer_size' using value:" << m_playback_network_buffer_size;
144 }
145 else
146 {
147 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'playback_network_buffer_size' using DEFAULT value:" << m_playback_network_buffer_size;
148 }
149 prop_check.unput("playback_network_buffer_size");
150 }
151
152 //Parser of parameter start
153 {
154 if (config.check("start"))
155 {
156 m_start = config.find("start").asBool();
157 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'start' using value:" << m_start;
158 }
159 else
160 {
161 yCInfo(AudioPlayerWrapperParamsCOMPONENT) << "Parameter 'start' using DEFAULT value:" << m_start;
162 }
163 prop_check.unput("start");
164 }
165
166 /*
167 //This code check if the user set some parameter which are not check by the parser
168 //If the parser is set in strict mode, this will generate an error
169 if (prop_check.size() > 0)
170 {
171 bool extra_params_found = false;
172 for (auto it=prop_check.begin(); it!=prop_check.end(); it++)
173 {
174 if (m_parser_is_strict)
175 {
176 yCError(AudioPlayerWrapperParamsCOMPONENT) << "User asking for parameter: "<<it->name <<" which is unknown to this parser!";
177 extra_params_found = true;
178 }
179 else
180 {
181 yCWarning(AudioPlayerWrapperParamsCOMPONENT) << "User asking for parameter: "<< it->name <<" which is unknown to this parser!";
182 }
183 }
184
185 if (m_parser_is_strict && extra_params_found)
186 {
187 return false;
188 }
189 }
190 */
191 return true;
192}
193
194
196{
197 std::string doc;
198 doc = doc + std::string("\n=============================================\n");
199 doc = doc + std::string("This is the help for device: AudioPlayerWrapper\n");
200 doc = doc + std::string("\n");
201 doc = doc + std::string("This is the list of the parameters accepted by the device:\n");
202 doc = doc + std::string("'name': prefix of the ports opened by the device\n");
203 doc = doc + std::string("'period': period of the internal thread, in s\n");
204 doc = doc + std::string("'debug': developers use only\n");
205 doc = doc + std::string("'playback_network_buffer_size': size of the audio buffer in seconds, increasing this value to robustify the real-time audio stream (it will increase latency too)\n");
206 doc = doc + std::string("'start': automatically activates the playback when the device is started\n");
207 doc = doc + std::string("\n");
208 doc = doc + std::string("Here are some examples of invocation command with yarpdev, with all params:\n");
209 doc = doc + " yarpdev --device AudioPlayerWrapper --name /audioPlayerWrapper --period 0.02 --debug false --playback_network_buffer_size 5.0 --start false\n";
210 doc = doc + std::string("Using only mandatory params:\n");
211 doc = doc + " yarpdev --device AudioPlayerWrapper\n";
212 doc = doc + std::string("=============================================\n\n"); return doc;
213}
#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.
std::vector< std::string > getListOfParams() const override
Return a list of all params used by the device.
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,...)