27#define QCONFIG_PARSER_CXX
28#define QCONFIG_INSTANCE
30#undef QCONFIG_INSTANCE
34#define QCONFIG_SETTING(name, type) \
35 struct qon_mxcat3(q, name, _t) { \
37 constexpr qon_mxcat3(q, name, _t)(type s) : v(s) {} \
39 constexpr qon_mxcat3(q, name, _t) name(type v) { return (qon_mxcat3(q, name, _t)(v)); }
41#define QCONFIG_SETTING_TEMPLATE(name) \
42 template <typename T> \
43 struct qon_mxcat3(q, name, _t) { \
45 constexpr qon_mxcat3(q, name, _t)(const T& s) : v(s) {} \
47 template <typename T> \
48 constexpr qon_mxcat3(q, name, _t)<T> name(T v) \
50 return (qon_mxcat3(q, name, _t) < T > (v)); \
59static inline const char* getOptName(
const char** argv, int32_t
i)
61 while (
i > 1 && argv[
i][0] !=
'-') {
81static int32_t qAddOptionType(
qConfigSettings<T>& settings, T&
ref, int32_t&
i,
const char** argv,
const int argc, T def);
91template <
typename... X>
100template <
typename... X>
111 if (settings.
doSet) {
113 }
else if ((
retVal = qAddOptionType<T>(settings,
ref,
i, argv, argc, def))) {
116 if ((
retVal = qAddOptionMinMax<T>(settings,
ref, iOrg < argc ? argv[iOrg] :
""))) {
119 qAddOptionMessage<T>(settings,
ref);
127 return (qAddOptionType<T>(settings,
ref,
i, argv, argc, def));
129template <typename T, int32_t index = 0, int32_t left = std::tuple_size<T>::value>
133 auto&
ref = std::get<index>(tup);
134 int32_t
retVal = qAddOptionMainTupleElem(settings,
ref,
i, argv, argc);
137 printf(
"Invalid number of arguments for option %s\n", getOptName(argv,
i));
145template <
typename T,
int32_t index>
149template <
typename... X>
160 static_assert(!std::is_same<T, bool>::value,
"min option not supported for boolean settings");
162 settings.
min = minval.v;
166 static_assert(!std::is_same<T, bool>::value,
"max option not supported for boolean settings");
168 settings.
max = maxval.v;
171 template <
typename S>
174 settings.
doSet =
true;
175 settings.
set = set.v;
177 template <
typename S>
181 settings.
set = set.v;
185 template <
typename Arg1,
typename... Args>
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* , Args&&... args)
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* , Args&&... args)
203 int32_t iFirst =
i, iLast;
206 T tmp = T(), def = T();
212 if (
i == iFirst ||
i != iLast) {
215 }
while (
i != iLast);
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* , Args&&... args)
223 int32_t iFirst =
i, iLast;
226 T tmp = T(), def = T();
232 if (
i - iFirst >=
count) {
233 printf(
"Too many values provided for option %s\n", getOptName(argv,
i));
236 if (
i == iFirst ||
i != iLast) {
237 ref[
i - iFirst] = tmp;
239 }
while (
i != iLast);
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)
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++] =
'-';
255 argBuffer[argBufferPos++] = preoptshort == 0 ?
'-' : preoptshort;
256 argBuffer[argBufferPos++] = optnameshort;
258 std::cout <<
"\t" <<
name <<
": " << argBuffer << (optnameshort == 0 ?
"" :
arguments) <<
"--";
259 if (optname[0] == 0) {
260 std::cout << preopt <<
name;
262 std::cout << optname;
264 std::cout << (optnameshort == 0 ?
arguments :
", ") <<
"type: " <<
type;
265 if (optionType == 0) {
266 std::cout <<
", default: " << def;
268 if (optionType == 1) {
269 std::cout <<
", sets " <<
name <<
" to " << def;
272 std::cout <<
", minimum: " << settings.
min;
275 std::cout <<
", maximum: " << settings.
max;
277 std::cout <<
")\n\t\t" << help <<
".\n";
278 if (settings.
doSet) {
279 std::cout <<
"\t\tSets " <<
name <<
" to " << settings.
set <<
".\n";
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";
285 if (optionType == 2) {
286 std::cout <<
"\t\tCan be set multiple times, accepts multiple arguments.\n";
291 template <
typename... Args>
300static inline const char* getArg(int32_t&
i,
const char** argv,
const int argc,
bool allowOption =
false)
302 if (
i + 1 < argc && argv[
i + 1][0] && ((allowOption && argv[
i + 1][0] ==
'-' && argv[
i + 1][1] !=
'-') || argv[
i + 1][0] !=
'-')) {
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)
311 const char* arg = getArg(
i, argv, argc, !allowDefault);
315 }
else if (allowDefault) {
319 if (!settings.allowEmpty) {
320 printf(
"Argument missing for option %s!\n", getOptName(argv,
i));
329 return qAddOptionGeneric<bool>(
330 settings,
ref,
i, argv, argc, settings.
doDefault ? settings.
set :
true, [](
const char*
a) ->
bool {
338 return qAddOptionGeneric<int8_t>(
339 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) -> int8_t {
347 return qAddOptionGeneric<uint8_t>(
348 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) -> uint8_t {
356 return qAddOptionGeneric<int32_t>(
357 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) -> int32_t {
365 return qAddOptionGeneric<uint32_t>(
366 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) -> uint32_t {
367 return strtoul(a, nullptr, 0);
374 return qAddOptionGeneric<int16_t>(
375 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) -> int16_t {
383 return qAddOptionGeneric<uint16_t>(
384 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) -> uint16_t {
385 return strtoul(a, nullptr, 0);
392 return qAddOptionGeneric<int64_t>(
393 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) -> int64_t {
394 return strtoll(a, nullptr, 0);
401 return qAddOptionGeneric<uint64_t>(
402 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) -> uint64_t {
403 return strtoull(a, nullptr, 0);
410 return qAddOptionGeneric<float>(
411 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) ->
float {
412 return (float)atof(a);
419 return qAddOptionGeneric<double>(
420 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) ->
double {
428 return qAddOptionGeneric<const char*>(
429 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) ->
const char* {
437 return qAddOptionGeneric<std::string>(
438 settings,
ref,
i, argv, argc, settings.
set, [](
const char*
a) -> std::string {
446static inline int32_t qAddOptionMinMax(qConfigSettings<T>& settings, T&
ref,
const char* arg)
448 if (settings.checkMin &&
ref < settings.min) {
449 std::cout <<
"Invalid setting for " << arg <<
": minimum threshold exceeded (" <<
ref <<
" < " << settings.min <<
")!\n";
452 if (settings.checkMax &&
ref > settings.max) {
453 std::cout <<
"Invalid setting for " << arg <<
": maximum threshold exceeded (" <<
ref <<
" > " << settings.max <<
")!\n";
469 std::string
msg = std::string(settings.
message) +
"\n";
470 printf(
msg.c_str(), tmp.c_str());
474static inline void qConfigHelp(
const char* subConfig =
nullptr, int32_t followSub = 0)
477 printf(
"Usage Info:");
488static inline int32_t qConfigParse(
int argc,
const char** argv,
const char* )
490 for (int32_t
i = 1;
i < argc;
i++) {
491 const char* thisoption = argv[
i];
497 if (found ==
false) {
498 printf(
"Invalid argument: %s\n", argv[
i]);
GLuint const GLchar * name
GLint GLint GLsizei GLint GLenum GLenum type
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLuint GLsizei const GLchar * message
GLboolean GLboolean GLboolean GLboolean a
bpo::variables_map arguments
int32_t qAddOptionType< float >(qConfigSettings< float > &settings, float &ref, int32_t &i, const char **argv, const int argc, float)
int32_t qAddOptionType< int8_t >(qConfigSettings< int8_t > &settings, int8_t &ref, int32_t &i, const char **argv, const int argc, int8_t)
std::vector< std::function< void()> > qprint_global
int32_t qAddOptionType< uint32_t >(qConfigSettings< uint32_t > &settings, uint32_t &ref, int32_t &i, const char **argv, const int argc, uint32_t)
int32_t qAddOptionType< std::string >(qConfigSettings< std::string > &settings, std::string &ref, int32_t &i, const char **argv, const int argc, std::string)
int32_t qAddOptionType< int64_t >(qConfigSettings< int64_t > &settings, int64_t &ref, int32_t &i, const char **argv, const int argc, int64_t)
int32_t qAddOptionType< uint16_t >(qConfigSettings< uint16_t > &settings, uint16_t &ref, int32_t &i, const char **argv, const int argc, uint16_t)
int32_t qAddOptionType< int16_t >(qConfigSettings< int16_t > &settings, int16_t &ref, int32_t &i, const char **argv, const int argc, int16_t)
int32_t qAddOptionType< uint8_t >(qConfigSettings< uint8_t > &settings, uint8_t &ref, int32_t &i, const char **argv, const int argc, uint8_t)
int32_t qAddOptionType< uint64_t >(qConfigSettings< uint64_t > &settings, uint64_t &ref, int32_t &i, const char **argv, const int argc, uint64_t)
int32_t qAddOptionType< bool >(qConfigSettings< bool > &settings, bool &ref, int32_t &i, const char **argv, const int argc, bool)
int32_t qAddOptionType< double >(qConfigSettings< double > &settings, double &ref, int32_t &i, const char **argv, const int argc, double)
int32_t qAddOptionType< const char * >(qConfigSettings< const char * > &settings, const char *&ref, int32_t &i, const char **argv, const int argc, const char *)
int32_t qAddOptionType< int32_t >(qConfigSettings< int32_t > &settings, int32_t &ref, int32_t &i, const char **argv, const int argc, int32_t)
std::string print_type(T val, bool precise=false)
int32_t qAddOptionMinMax< bool >(qConfigSettings< bool > &, bool &, const char *)
Defining DataPointCompositeObject explicitly as copiable.
#define QCONFIG_SETTING(name, type)
#define QCONFIG_SETTING_TEMPLATE(name)
int32_t qConfigParse(int argc, const char **argv, const char *filename)
static int32_t qAddOptionMainTuple(qConfigSettings< typename qSettingsType< T >::settingsType >, T &, int32_t &, const char **, const int32_t)
static int32_t qAddOptionMainTuple(qConfigSettings< typename qSettingsType< T >::settingsType > settings, T &tup, int32_t &i, const char **argv, const int argc)
qConfigSettings(const qConfigSettings< S > v)
static int32_t qAddOptionMain(qConfigSettings< T > &settings, T &ref, int32_t &i, const char **argv, const int argc, T def)
static int32_t qAddOption(T &ref, int32_t &i, const char **argv, const int argc, T def, const char *, Args &&... args)
static int32_t qAddOptionArray(T *ref, int32_t count, int32_t &i, const char **argv, const int argc, const char *, Args &&... args)
static void qProcessSetting(qConfigSettings< T > &settings, qmin_t< T > minval)
static void qAddOptionSettings(qConfigSettings< T > &settings, Arg1 &&arg1, Args &&... args)
static int32_t qAddOptionVec(std::vector< T > &ref, int32_t &i, const char **argv, const int argc, const char *, Args &&... args)
static void qProcessSetting(qConfigSettings< T > &settings, qset_t< S > set)
static void qProcessSetting(qConfigSettings< T > &settings, qmessage_t msg)
static void qProcessSetting(qConfigSettings< T > &settings, qmax_t< T > maxval)
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)
static auto qConfigGetSettings(Args &... args)
static void qProcessSetting(qConfigSettings< T > &settings, qdef_t< S > set)
static void qAddOptionSettings(qConfigSettings< T > &)
uint64_t const void const *restrict const msg