Project
Loading...
Searching...
No Matches
qconfig.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
14
15#include <cstdio>
16#include <cstdlib>
17#include <memory.h>
18#include <utility>
19#include <vector>
20#include <functional>
21#include <iostream>
22#include <tuple>
23#include "qconfig.h"
24#include "qconfig_helpers.h"
25
26// Create config instances
27#define QCONFIG_PARSER_CXX
28#define QCONFIG_INSTANCE
29#include "qconfig.h"
30#undef QCONFIG_INSTANCE
31
32namespace qConfig
33{
34#define QCONFIG_SETTING(name, type) \
35 struct qon_mxcat3(q, name, _t) { \
36 type v; \
37 constexpr qon_mxcat3(q, name, _t)(type s) : v(s) {} \
38 }; \
39 constexpr qon_mxcat3(q, name, _t) name(type v) { return (qon_mxcat3(q, name, _t)(v)); }
40
41#define QCONFIG_SETTING_TEMPLATE(name) \
42 template <typename T> \
43 struct qon_mxcat3(q, name, _t) { \
44 T v; \
45 constexpr qon_mxcat3(q, name, _t)(const T& s) : v(s) {} \
46 }; \
47 template <typename T> \
48 constexpr qon_mxcat3(q, name, _t)<T> name(T v) \
49 { \
50 return (qon_mxcat3(q, name, _t) < T > (v)); \
51 }
52
53QCONFIG_SETTING(message, const char*)
58
59static inline const char* getOptName(const char** argv, int32_t i)
60{
61 while (i > 1 && argv[i][0] != '-') {
62 i--;
63 }
64 return (argv[i]);
65}
66
67template <typename T>
69 qConfigSettings() : checkMin(false), checkMax(false), doSet(false), doDefault(false), min(), max(), set(), message(nullptr), allowEmpty(false) {};
70 template <typename S>
74 T min, max;
75 T set;
76 const char* message;
78};
79
80template <typename T>
81static int32_t qAddOptionType(qConfigSettings<T>& settings, T& ref, int32_t& i, const char** argv, const int argc, T def);
82template <typename T>
83static void qAddOptionMessage(qConfigSettings<T>& settings, T& ref);
84template <typename T>
85static int32_t qAddOptionMinMax(qConfigSettings<T>& settings, T& ref, const char* arg);
86
87template <typename T>
89 typedef T settingsType;
90};
91template <typename... X>
92struct qSettingsType<std::tuple<X...>> {
93 typedef int32_t settingsType;
94};
95
96template <typename T>
98 static inline int32_t qAddOptionMain(qConfigSettings<T>& settings, T& ref, int32_t& i, const char** argv, const int argc, T def);
99};
100template <typename... X>
101struct qConfigTypeSpecialized<std::tuple<X...>> {
102 static inline int32_t qAddOptionMain(qConfigSettings<typename qSettingsType<std::tuple<X...>>::settingsType>& settings, std::tuple<X...>& ref, int32_t& i, const char** argv, const int argc, std::tuple<X...>& def);
103};
104
105// Main processing function for arguments
106template <class T>
107inline int32_t qConfigTypeSpecialized<T>::qAddOptionMain(qConfigSettings<T>& settings, T& ref, int32_t& i, const char** argv, const int argc, T def)
108{
109 int32_t retVal = 0;
110 int32_t iOrg = i;
111 if (settings.doSet) {
112 ref = settings.set;
113 } else if ((retVal = qAddOptionType<T>(settings, ref, i, argv, argc, def))) {
114 return (retVal);
115 }
116 if ((retVal = qAddOptionMinMax<T>(settings, ref, iOrg < argc ? argv[iOrg] : ""))) {
117 return (retVal);
118 }
119 qAddOptionMessage<T>(settings, ref);
120 return (0);
121}
122template <typename T>
123static inline int32_t qAddOptionMainTupleElem(qConfigSettings<typename qSettingsType<T>::settingsType> settingsTup, T& ref, int32_t& i, const char** argv, const int argc)
124{
125 T def = T();
126 qConfigSettings<T> settings = settingsTup;
127 return (qAddOptionType<T>(settings, ref, i, argv, argc, def));
128}
129template <typename T, int32_t index = 0, int32_t left = std::tuple_size<T>::value>
131 static inline int32_t qAddOptionMainTuple(qConfigSettings<typename qSettingsType<T>::settingsType> settings, T& tup, int32_t& i, const char** argv, const int argc)
132 {
133 auto& ref = std::get<index>(tup);
134 int32_t retVal = qAddOptionMainTupleElem(settings, ref, i, argv, argc);
135 if (retVal) {
136 if (retVal == qcrArgMissing && index != 0) {
137 printf("Invalid number of arguments for option %s\n", getOptName(argv, i));
139 }
140 return (retVal);
141 }
143 }
144};
145template <typename T, int32_t index>
147 static inline int32_t qAddOptionMainTuple(qConfigSettings<typename qSettingsType<T>::settingsType> /*settings*/, T& /*tup*/, int32_t& /*i*/, const char** /*argv*/, const int32_t /*argc*/) { return 0; }
148};
149template <typename... X>
150inline int32_t qConfigTypeSpecialized<std::tuple<X...>>::qAddOptionMain(qConfigSettings<typename qSettingsType<std::tuple<X...>>::settingsType>& settings, std::tuple<X...>& ref, int32_t& i, const char** argv, const int argc, std::tuple<X...>& /*def*/)
151{
152 return (qAddOptionMainTupleStruct<std::tuple<X...>>::qAddOptionMainTuple(settings, ref, i, argv, argc));
153}
154
155template <typename T>
157 // Recursive handling of additional settings
158 static inline void qProcessSetting(qConfigSettings<T>& settings, qmin_t<T> minval)
159 {
160 static_assert(!std::is_same<T, bool>::value, "min option not supported for boolean settings");
161 settings.checkMin = true;
162 settings.min = minval.v;
163 }
164 static inline void qProcessSetting(qConfigSettings<T>& settings, qmax_t<T> maxval)
165 {
166 static_assert(!std::is_same<T, bool>::value, "max option not supported for boolean settings");
167 settings.checkMax = true;
168 settings.max = maxval.v;
169 }
170 static inline void qProcessSetting(qConfigSettings<T>& settings, qmessage_t msg) { settings.message = msg.v; }
171 template <typename S>
172 static inline void qProcessSetting(qConfigSettings<T>& settings, qset_t<S> set)
173 {
174 settings.doSet = true;
175 settings.set = set.v;
176 }
177 template <typename S>
178 static inline void qProcessSetting(qConfigSettings<T>& settings, qdef_t<S> set)
179 {
180 settings.doDefault = true;
181 settings.set = set.v;
182 }
183
184 static inline void qAddOptionSettings(qConfigSettings<T>& /*settings*/) {}
185 template <typename Arg1, typename... Args>
186 static inline void qAddOptionSettings(qConfigSettings<T>& settings, Arg1&& arg1, Args&&... args)
187 {
188 qProcessSetting(settings, arg1);
189 qAddOptionSettings(settings, args...);
190 }
191
192 template <typename... Args>
193 static inline int32_t qAddOption(T& ref, int32_t& i, const char** argv, const int argc, T def, const char* /*help*/, Args&&... args)
194 {
195 auto settings = qConfigGetSettings(args...);
196 return qConfigTypeSpecialized<T>::qAddOptionMain(settings, ref, i, argv, argc, def);
197 }
198
199 template <typename... Args>
200 static inline int32_t qAddOptionVec(std::vector<T>& ref, int32_t& i, const char** argv, const int argc, const char* /*help*/, Args&&... args)
201 {
202 auto settings = qConfigGetSettings(args...);
203 int32_t iFirst = i, iLast;
204 do {
205 iLast = i;
206 T tmp = T(), def = T();
207 settings.allowEmpty = (i != iFirst);
208 int32_t retVal = qConfigTypeSpecialized<T>::qAddOptionMain(settings, tmp, i, argv, argc, def);
209 if (retVal) {
210 return (retVal != qcrArgMissing || i == iFirst ? retVal : 0);
211 }
212 if (i == iFirst || i != iLast) {
213 ref.push_back(tmp);
214 }
215 } while (i != iLast);
216 return (0);
217 }
218
219 template <typename... Args>
220 static inline int32_t qAddOptionArray(T* ref, int32_t count, int32_t& i, const char** argv, const int argc, const char* /*help*/, Args&&... args)
221 {
222 auto settings = qConfigGetSettings(args...);
223 int32_t iFirst = i, iLast;
224 do {
225 iLast = i;
226 T tmp = T(), def = T();
227 settings.allowEmpty = (i != iFirst);
228 int32_t retVal = qConfigTypeSpecialized<T>::qAddOptionMain(settings, tmp, i, argv, argc, def);
229 if (retVal) {
230 return (retVal != qcrArgMissing || i == iFirst ? retVal : 0);
231 }
232 if (i - iFirst >= count) {
233 printf("Too many values provided for option %s\n", getOptName(argv, i));
234 return (qcrArrayOverflow);
235 }
236 if (i == iFirst || i != iLast) {
237 ref[i - iFirst] = tmp;
238 }
239 } while (i != iLast);
240 return (0);
241 }
242
243 template <typename... Args>
244 static inline void qConfigHelpOption(const char* name, const char* type, const char* def, const char* optname, char optnameshort, const char* preopt, char preoptshort, int32_t optionType, const char* help, Args&&... args)
245 {
246 auto settings = qConfigGetSettings(args...);
247 const bool boolType = optionType != 1 && std::is_same<T, bool>::value;
248 const char* arguments = settings.doSet ? " (" : (settings.doDefault || optionType == 1 || boolType) ? " [arg] (" : optionType == 2 ? " [...] (" : " arg (";
249 char argBuffer[4] = {0};
250 uint32_t argBufferPos = 0;
251 if (optnameshort && preoptshort) {
252 argBuffer[argBufferPos++] = '-';
253 }
254 if (optnameshort) {
255 argBuffer[argBufferPos++] = preoptshort == 0 ? '-' : preoptshort;
256 argBuffer[argBufferPos++] = optnameshort;
257 }
258 std::cout << "\t" << name << ": " << argBuffer << (optnameshort == 0 ? "" : arguments) << "--";
259 if (optname[0] == 0) {
260 std::cout << preopt << name;
261 } else {
262 std::cout << optname;
263 }
264 std::cout << (optnameshort == 0 ? arguments : ", ") << "type: " << type;
265 if (optionType == 0) {
266 std::cout << ", default: " << def;
267 }
268 if (optionType == 1) {
269 std::cout << ", sets " << name << " to " << def;
270 }
271 if (settings.checkMin) {
272 std::cout << ", minimum: " << settings.min;
273 }
274 if (settings.checkMax) {
275 std::cout << ", maximum: " << settings.max;
276 }
277 std::cout << ")\n\t\t" << help << ".\n";
278 if (settings.doSet) {
279 std::cout << "\t\tSets " << name << " to " << settings.set << ".\n";
280 } else if (settings.doDefault) {
281 std::cout << "\t\tIf no argument is supplied, " << name << " is set to " << settings.set << ".\n";
282 } else if (boolType) {
283 std::cout << "\t\tIf no argument is supplied, " << name << " is set to true.\n";
284 }
285 if (optionType == 2) {
286 std::cout << "\t\tCan be set multiple times, accepts multiple arguments.\n";
287 }
288 std::cout << "\n";
289 }
290
291 template <typename... Args>
292 static inline auto qConfigGetSettings(Args&... args)
293 {
296 return (settings);
297 }
298};
299
300static inline const char* getArg(int32_t& i, const char** argv, const int argc, bool allowOption = false)
301{
302 if (i + 1 < argc && argv[i + 1][0] && ((allowOption && argv[i + 1][0] == '-' && argv[i + 1][1] != '-') || argv[i + 1][0] != '-')) {
303 return (argv[++i]);
304 }
305 return (nullptr);
306}
307
308template <class T>
309static inline int32_t qAddOptionGeneric(qConfigSettings<T>& settings, T& ref, int32_t& i, const char** argv, const int argc, T def, std::function<T(const char*)> func, bool allowDefault = false)
310{
311 const char* arg = getArg(i, argv, argc, !allowDefault);
312 if (arg) {
313 ref = func(arg);
314 return (0);
315 } else if (allowDefault) {
316 ref = def;
317 return (0);
318 }
319 if (!settings.allowEmpty) {
320 printf("Argument missing for option %s!\n", getOptName(argv, i));
321 }
322 return (qcrArgMissing);
323}
324
325// Handling of all supported types
326template <>
327inline int32_t qAddOptionType<bool>(qConfigSettings<bool>& settings, bool& ref, int32_t& i, const char** argv, const int argc, bool /*def*/)
328{
329 return qAddOptionGeneric<bool>(
330 settings, ref, i, argv, argc, settings.doDefault ? settings.set : true, [](const char* a) -> bool {
331 return atoi(a);
332 },
333 true);
334}
335template <>
336inline int32_t qAddOptionType<int8_t>(qConfigSettings<int8_t>& settings, int8_t& ref, int32_t& i, const char** argv, const int argc, int8_t /*def*/)
337{
338 return qAddOptionGeneric<int8_t>(
339 settings, ref, i, argv, argc, settings.set, [](const char* a) -> int8_t {
340 return atoi(a);
341 },
342 settings.doDefault);
343}
344template <>
345inline int32_t qAddOptionType<uint8_t>(qConfigSettings<uint8_t>& settings, uint8_t& ref, int32_t& i, const char** argv, const int argc, uint8_t /*def*/)
346{
347 return qAddOptionGeneric<uint8_t>(
348 settings, ref, i, argv, argc, settings.set, [](const char* a) -> uint8_t {
349 return atoi(a);
350 },
351 settings.doDefault);
352}
353template <>
354inline int32_t qAddOptionType<int32_t>(qConfigSettings<int32_t>& settings, int32_t& ref, int32_t& i, const char** argv, const int argc, int32_t /*def*/)
355{
356 return qAddOptionGeneric<int32_t>(
357 settings, ref, i, argv, argc, settings.set, [](const char* a) -> int32_t {
358 return atoi(a);
359 },
360 settings.doDefault);
361}
362template <>
363inline int32_t qAddOptionType<uint32_t>(qConfigSettings<uint32_t>& settings, uint32_t& ref, int32_t& i, const char** argv, const int argc, uint32_t /*def*/)
364{
365 return qAddOptionGeneric<uint32_t>(
366 settings, ref, i, argv, argc, settings.set, [](const char* a) -> uint32_t {
367 return strtoul(a, nullptr, 0);
368 },
369 settings.doDefault);
370}
371template <>
372inline int32_t qAddOptionType<int16_t>(qConfigSettings<int16_t>& settings, int16_t& ref, int32_t& i, const char** argv, const int argc, int16_t /*def*/)
373{
374 return qAddOptionGeneric<int16_t>(
375 settings, ref, i, argv, argc, settings.set, [](const char* a) -> int16_t {
376 return atoi(a);
377 },
378 settings.doDefault);
379}
380template <>
381inline int32_t qAddOptionType<uint16_t>(qConfigSettings<uint16_t>& settings, uint16_t& ref, int32_t& i, const char** argv, const int argc, uint16_t /*def*/)
382{
383 return qAddOptionGeneric<uint16_t>(
384 settings, ref, i, argv, argc, settings.set, [](const char* a) -> uint16_t {
385 return strtoul(a, nullptr, 0);
386 },
387 settings.doDefault);
388}
389template <>
390inline int32_t qAddOptionType<int64_t>(qConfigSettings<int64_t>& settings, int64_t& ref, int32_t& i, const char** argv, const int argc, int64_t /*def*/)
391{
392 return qAddOptionGeneric<int64_t>(
393 settings, ref, i, argv, argc, settings.set, [](const char* a) -> int64_t {
394 return strtoll(a, nullptr, 0);
395 },
396 settings.doDefault);
397}
398template <>
399inline int32_t qAddOptionType<uint64_t>(qConfigSettings<uint64_t>& settings, uint64_t& ref, int32_t& i, const char** argv, const int argc, uint64_t /*def*/)
400{
401 return qAddOptionGeneric<uint64_t>(
402 settings, ref, i, argv, argc, settings.set, [](const char* a) -> uint64_t {
403 return strtoull(a, nullptr, 0);
404 },
405 settings.doDefault);
406}
407template <>
408inline int32_t qAddOptionType<float>(qConfigSettings<float>& settings, float& ref, int32_t& i, const char** argv, const int argc, float /*def*/)
409{
410 return qAddOptionGeneric<float>(
411 settings, ref, i, argv, argc, settings.set, [](const char* a) -> float {
412 return (float)atof(a);
413 },
414 settings.doDefault);
415}
416template <>
417inline int32_t qAddOptionType<double>(qConfigSettings<double>& settings, double& ref, int32_t& i, const char** argv, const int argc, double /*def*/)
418{
419 return qAddOptionGeneric<double>(
420 settings, ref, i, argv, argc, settings.set, [](const char* a) -> double {
421 return atof(a);
422 },
423 settings.doDefault);
424}
425template <>
426inline int32_t qAddOptionType<const char*>(qConfigSettings<const char*>& settings, const char*& ref, int32_t& i, const char** argv, const int argc, const char* /*def*/)
427{
428 return qAddOptionGeneric<const char*>(
429 settings, ref, i, argv, argc, settings.set, [](const char* a) -> const char* {
430 return a;
431 },
432 settings.doDefault);
433}
434template <>
435inline int32_t qAddOptionType<std::string>(qConfigSettings<std::string>& settings, std::string& ref, int32_t& i, const char** argv, const int argc, std::string /*def*/)
436{
437 return qAddOptionGeneric<std::string>(
438 settings, ref, i, argv, argc, settings.set, [](const char* a) -> std::string {
439 return a;
440 },
441 settings.doDefault);
442}
443
444// Checks and messages for additional settings
445template <typename T>
446static inline int32_t qAddOptionMinMax(qConfigSettings<T>& settings, T& ref, const char* arg)
447{
448 if (settings.checkMin && ref < settings.min) {
449 std::cout << "Invalid setting for " << arg << ": minimum threshold exceeded (" << ref << " < " << settings.min << ")!\n";
450 return (qcrMinFailure);
451 }
452 if (settings.checkMax && ref > settings.max) {
453 std::cout << "Invalid setting for " << arg << ": maximum threshold exceeded (" << ref << " > " << settings.max << ")!\n";
454 return (qcrMaxFailure);
455 }
456 return (0);
457}
458template <>
459inline int32_t qAddOptionMinMax<bool>(qConfigSettings<bool>& /*settings*/, bool& /*ref*/, const char* /*arg*/)
460{
461 return (0);
462}
463
464template <typename T>
465inline void qAddOptionMessage(qConfigSettings<T>& settings, T& ref)
466{
467 if (settings.message) {
468 std::string tmp = print_type(ref);
469 std::string msg = std::string(settings.message) + "\n";
470 printf(msg.c_str(), tmp.c_str());
471 }
472}
473
474static inline void qConfigHelp(const char* subConfig = nullptr, int32_t followSub = 0)
475{
476 if (followSub < 2) {
477 printf("Usage Info:");
478 }
479#define QCONFIG_HELP
480#include "qconfig.h"
481#undef QCONFIG_HELP
482 if (followSub < 2) {
483 printf("\n");
484 }
485}
486
487// Create parser for configuration
488static inline int32_t qConfigParse(int argc, const char** argv, const char* /*filename*/)
489{
490 for (int32_t i = 1; i < argc; i++) {
491 const char* thisoption = argv[i];
492 repeat:
493 bool found = false;
494#define QCONFIG_PARSE
495#include "qconfig.h"
496#undef QCONFIG_PARSE
497 if (found == false) {
498 printf("Invalid argument: %s\n", argv[i]);
499 return (1);
500 goto repeat; // Suppress GCC warnings, this is never executed, label might be accessed from qconfig.h
501 }
502 }
503 return (0);
504}
505
506std::vector<std::function<void()>> qprint_global;
507#define QCONFIG_PRINT
508#include "qconfig.h"
509#undef QCONFIG_PRINT
510} // end namespace qConfig
511
512// Main parse function called from outside
513int32_t qConfigParse(int argc, const char** argv, const char* filename) { return (qConfig::qConfigParse(argc, argv, filename)); }
514
516{
517 for (auto& f : qConfig::qprint_global) {
518 f();
519 }
520}
int32_t i
int32_t retVal
GLenum func
Definition glcorearb.h:778
GLint GLsizei count
Definition glcorearb.h:399
const GLdouble * v
Definition glcorearb.h:832
GLuint index
Definition glcorearb.h:781
GLuint const GLchar * name
Definition glcorearb.h:781
GLdouble f
Definition glcorearb.h:310
GLint GLint GLsizei GLint GLenum GLenum type
Definition glcorearb.h:275
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLuint GLsizei const GLchar * message
Definition glcorearb.h:2517
GLboolean GLboolean GLboolean GLboolean a
Definition glcorearb.h:1233
bpo::variables_map arguments
int32_t qAddOptionType< float >(qConfigSettings< float > &settings, float &ref, int32_t &i, const char **argv, const int argc, float)
Definition qconfig.cxx:408
int32_t qAddOptionType< int8_t >(qConfigSettings< int8_t > &settings, int8_t &ref, int32_t &i, const char **argv, const int argc, int8_t)
Definition qconfig.cxx:336
std::vector< std::function< void()> > qprint_global
Definition qconfig.cxx:506
int32_t qAddOptionType< uint32_t >(qConfigSettings< uint32_t > &settings, uint32_t &ref, int32_t &i, const char **argv, const int argc, uint32_t)
Definition qconfig.cxx:363
int32_t qAddOptionType< std::string >(qConfigSettings< std::string > &settings, std::string &ref, int32_t &i, const char **argv, const int argc, std::string)
Definition qconfig.cxx:435
int32_t qAddOptionType< int64_t >(qConfigSettings< int64_t > &settings, int64_t &ref, int32_t &i, const char **argv, const int argc, int64_t)
Definition qconfig.cxx:390
int32_t qAddOptionType< uint16_t >(qConfigSettings< uint16_t > &settings, uint16_t &ref, int32_t &i, const char **argv, const int argc, uint16_t)
Definition qconfig.cxx:381
int32_t qAddOptionType< int16_t >(qConfigSettings< int16_t > &settings, int16_t &ref, int32_t &i, const char **argv, const int argc, int16_t)
Definition qconfig.cxx:372
int32_t qAddOptionType< uint8_t >(qConfigSettings< uint8_t > &settings, uint8_t &ref, int32_t &i, const char **argv, const int argc, uint8_t)
Definition qconfig.cxx:345
int32_t qAddOptionType< uint64_t >(qConfigSettings< uint64_t > &settings, uint64_t &ref, int32_t &i, const char **argv, const int argc, uint64_t)
Definition qconfig.cxx:399
int32_t qAddOptionType< bool >(qConfigSettings< bool > &settings, bool &ref, int32_t &i, const char **argv, const int argc, bool)
Definition qconfig.cxx:327
int32_t qAddOptionType< double >(qConfigSettings< double > &settings, double &ref, int32_t &i, const char **argv, const int argc, double)
Definition qconfig.cxx:417
int32_t qAddOptionType< const char * >(qConfigSettings< const char * > &settings, const char *&ref, int32_t &i, const char **argv, const int argc, const char *)
Definition qconfig.cxx:426
@ qcrArgMissing
Definition qconfig.h:31
@ qcrMinFailure
Definition qconfig.h:27
@ qcrArrayOverflow
Definition qconfig.h:33
@ qcrMaxFailure
Definition qconfig.h:28
@ qcrArgIncomplete
Definition qconfig.h:32
int32_t qAddOptionType< int32_t >(qConfigSettings< int32_t > &settings, int32_t &ref, int32_t &i, const char **argv, const int argc, int32_t)
Definition qconfig.cxx:354
std::string print_type(T val, bool precise=false)
int32_t qAddOptionMinMax< bool >(qConfigSettings< bool > &, bool &, const char *)
Definition qconfig.cxx:459
Defining DataPointCompositeObject explicitly as copiable.
std::string filename()
#define QCONFIG_SETTING(name, type)
Definition qconfig.cxx:34
void qConfigPrint()
Definition qconfig.cxx:515
#define QCONFIG_SETTING_TEMPLATE(name)
Definition qconfig.cxx:41
int32_t qConfigParse(int argc, const char **argv, const char *filename)
Definition qconfig.cxx:513
static int32_t qAddOptionMainTuple(qConfigSettings< typename qSettingsType< T >::settingsType >, T &, int32_t &, const char **, const int32_t)
Definition qconfig.cxx:147
static int32_t qAddOptionMainTuple(qConfigSettings< typename qSettingsType< T >::settingsType > settings, T &tup, int32_t &i, const char **argv, const int argc)
Definition qconfig.cxx:131
qConfigSettings(const qConfigSettings< S > v)
Definition qconfig.cxx:71
static int32_t qAddOptionMain(qConfigSettings< T > &settings, T &ref, int32_t &i, const char **argv, const int argc, T def)
Definition qconfig.cxx:107
static int32_t qAddOption(T &ref, int32_t &i, const char **argv, const int argc, T def, const char *, Args &&... args)
Definition qconfig.cxx:193
static int32_t qAddOptionArray(T *ref, int32_t count, int32_t &i, const char **argv, const int argc, const char *, Args &&... args)
Definition qconfig.cxx:220
static void qProcessSetting(qConfigSettings< T > &settings, qmin_t< T > minval)
Definition qconfig.cxx:158
static void qAddOptionSettings(qConfigSettings< T > &settings, Arg1 &&arg1, Args &&... args)
Definition qconfig.cxx:186
static int32_t qAddOptionVec(std::vector< T > &ref, int32_t &i, const char **argv, const int argc, const char *, Args &&... args)
Definition qconfig.cxx:200
static void qProcessSetting(qConfigSettings< T > &settings, qset_t< S > set)
Definition qconfig.cxx:172
static void qProcessSetting(qConfigSettings< T > &settings, qmessage_t msg)
Definition qconfig.cxx:170
static void qProcessSetting(qConfigSettings< T > &settings, qmax_t< T > maxval)
Definition qconfig.cxx:164
static void qConfigHelpOption(const char *name, const char *type, const char *def, const char *optname, char optnameshort, const char *preopt, char preoptshort, int32_t optionType, const char *help, Args &&... args)
Definition qconfig.cxx:244
static auto qConfigGetSettings(Args &... args)
Definition qconfig.cxx:292
static void qProcessSetting(qConfigSettings< T > &settings, qdef_t< S > set)
Definition qconfig.cxx:178
static void qAddOptionSettings(qConfigSettings< T > &)
Definition qconfig.cxx:184
constexpr size_t min
constexpr size_t max
uint64_t const void const *restrict const msg
Definition x9.h:153