YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
AudioFromFileDevice_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:45 2025
12
13
15#include <yarp/os/LogStream.h>
16#include <yarp/os/Value.h>
17
18namespace {
19 YARP_LOG_COMPONENT(AudioFromFileDeviceParamsCOMPONENT, "yarp.device.AudioFromFileDevice")
20}
21
22
26
27
29{
30 std::vector<std::string> params;
31 params.push_back("use_params_from_file");
32 params.push_back("file_name");
33 params.push_back("period");
34 params.push_back("driver_frame_size");
35 params.push_back("reset_on_stop");
36 return params;
37}
38
39
40bool AudioFromFileDevice_ParamsParser::getParamValue(const std::string& paramName, std::string& paramValue) const
41{
42 if (paramName =="use_params_from_file")
43 {
44 if (m_use_params_from_file==true) paramValue = "true";
45 else paramValue = "false";
46 return true;
47 }
48 if (paramName =="file_name")
49 {
50 paramValue = m_file_name;
51 return true;
52 }
53 if (paramName =="period")
54 {
55 paramValue = std::to_string(m_period);
56 return true;
57 }
58 if (paramName =="driver_frame_size")
59 {
60 paramValue = std::to_string(m_driver_frame_size);
61 return true;
62 }
63 if (paramName =="reset_on_stop")
64 {
65 if (m_reset_on_stop==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(AudioFromFileDeviceParamsCOMPONENT) << getDocumentationOfDeviceParams();
92 }
93
96 //Parser of parameter use_params_from_file
97 {
98 if (config.check("use_params_from_file"))
99 {
100 m_use_params_from_file = config.find("use_params_from_file").asBool();
101 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'use_params_from_file' using value:" << m_use_params_from_file;
102 }
103 else
104 {
105 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'use_params_from_file' using DEFAULT value:" << m_use_params_from_file;
106 }
107 prop_check.unput("use_params_from_file");
108 }
109
110 //Parser of parameter file_name
111 {
112 if (config.check("file_name"))
113 {
114 m_file_name = config.find("file_name").asString();
115 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'file_name' using value:" << m_file_name;
116 }
117 else
118 {
119 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'file_name' using DEFAULT value:" << m_file_name;
120 }
121 prop_check.unput("file_name");
122 }
123
124 //Parser of parameter period
125 {
126 if (config.check("period"))
127 {
128 m_period = config.find("period").asFloat64();
129 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'period' using value:" << m_period;
130 }
131 else
132 {
133 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'period' using DEFAULT value:" << m_period;
134 }
135 prop_check.unput("period");
136 }
137
138 //Parser of parameter driver_frame_size
139 {
140 if (config.check("driver_frame_size"))
141 {
142 m_driver_frame_size = config.find("driver_frame_size").asInt64();
143 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'driver_frame_size' using value:" << m_driver_frame_size;
144 }
145 else
146 {
147 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'driver_frame_size' using DEFAULT value:" << m_driver_frame_size;
148 }
149 prop_check.unput("driver_frame_size");
150 }
151
152 //Parser of parameter reset_on_stop
153 {
154 if (config.check("reset_on_stop"))
155 {
156 m_reset_on_stop = config.find("reset_on_stop").asBool();
157 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'reset_on_stop' using value:" << m_reset_on_stop;
158 }
159 else
160 {
161 yCInfo(AudioFromFileDeviceParamsCOMPONENT) << "Parameter 'reset_on_stop' using DEFAULT value:" << m_reset_on_stop;
162 }
163 prop_check.unput("reset_on_stop");
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(AudioFromFileDeviceParamsCOMPONENT) << "User asking for parameter: "<<it->name <<" which is unknown to this parser!";
177 extra_params_found = true;
178 }
179 else
180 {
181 yCWarning(AudioFromFileDeviceParamsCOMPONENT) << "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: AudioFromFileDevice\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("'use_params_from_file': If set to true, recording params (e.g. channels, freq etc. are taken from file. Otherwise are AUDIO_BASE parameters are used and the file is converted to the specified format\n");
203 doc = doc + std::string("'file_name': The name of the file opened by the module\n");
204 doc = doc + std::string("'period': the period of thread which processes the file\n");
205 doc = doc + std::string("'driver_frame_size': the number of samples to process on each iteration of the thread\n");
206 doc = doc + std::string("'reset_on_stop': if enabled, the file is played back from the beginning every stop. Otherwise on start the previous position is resumed\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 audioFromFileDevice --use_params_from_file true --file_name audio.wav --period 0.010 --driver_frame_size 512 --reset_on_stop false\n";
210 doc = doc + std::string("Using only mandatory params:\n");
211 doc = doc + " yarpdev --device audioFromFileDevice\n";
212 doc = doc + std::string("=============================================\n\n"); return doc;
213}
#define yError(...)
Definition Log.h:361
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.
std::string getConfiguration() const override
Return the configuration of 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,...)