28#ifndef app_appConfigurator_hpp
29#define app_appConfigurator_hpp
34#include "../mxError.hpp"
88 typedef std::unordered_map<std::string, configTarget>::iterator
targetIterator;
94 std::unordered_map<std::string, configTarget>
m_targets;
124 void add(
const std::string &n,
125 const std::string &so,
126 const std::string &lo,
129 const std::string &s,
130 const std::string &kw,
132 const std::string &ht =
"",
133 const std::string &he =
""
141 const std::string &oneTarget =
""
149 bool reportFileNotFound =
true
157 bool isSet(
const std::string &name,
158 std::unordered_map<std::string, configTarget> &targets
168 bool isSet(
const std::string &name );
174 int count(
const std::string &name,
175 std::unordered_map<std::string, configTarget> &targets
184 int count(
const std::string &name );
193 std::unordered_map<std::string, configTarget> &targets
204 int verbosity(
const std::string &name );
213 template <
typename typeT>
215 const std::string &name,
217 std::unordered_map<std::string, configTarget> &targets
229 template <
typename typeT>
231 const std::string &name,
244 template <
typename typeT>
246 const std::string &name,
247 std::unordered_map<std::string, configTarget> &targets
259 template <
typename typeT>
261 const std::string &name
272 template <
typename typeT>
273 int get( std::vector<typeT> &v,
274 const std::string &name,
276 std::unordered_map<std::string, configTarget> &targets
287 template <
typename typeT>
288 int get( std::vector<typeT> &v,
289 const std::string &name,
301 template <
typename typeT>
302 int get( std::vector<typeT> &v,
303 const std::string &name,
304 std::unordered_map<std::string, configTarget> &targets
315 template <
typename typeT>
316 int get( std::vector<typeT> &v,
317 const std::string &name
325 template <
typename typeT>
328 const std::string &name
336 template <
typename typeT>
339 const std::string &key
347 template <
typename typeT>
350 const std::string §ion,
351 const std::string &keyword
372 const std::string &name,
374 const std::string &valueStr,
375 const std::string &source
382template <
typename typeT>
384 const std::string &name,
386 std::unordered_map<std::string, configTarget> &targets )
388 targets[name].used =
true;
390 if( !
isSet( name, targets ) )
400 if( targets[name].values.size() <= i )
405 v = ioutils::convertFromString<typeT>( targets[name].values[i] );
423extern template int appConfigurator::get<char>(
char &v,
424 const std::string &name,
426 std::unordered_map<std::string, configTarget> &targets );
428extern template int appConfigurator::get<signed char>(
signed char &v,
429 const std::string &name,
431 std::unordered_map<std::string, configTarget> &targets );
433extern template int appConfigurator::get<short>(
short &v,
434 const std::string &name,
436 std::unordered_map<std::string, configTarget> &targets );
438extern template int appConfigurator::get<int>(
int &v,
439 const std::string &name,
441 std::unordered_map<std::string, configTarget> &targets );
443extern template int appConfigurator::get<long>(
long &v,
444 const std::string &name,
446 std::unordered_map<std::string, configTarget> &targets );
448extern template int appConfigurator::get<long long>(
long long &v,
449 const std::string &name,
451 std::unordered_map<std::string, configTarget> &targets );
453extern template int appConfigurator::get<unsigned char>(
unsigned char &v,
454 const std::string &name,
456 std::unordered_map<std::string, configTarget> &targets );
458extern template int appConfigurator::get<unsigned short>(
unsigned short &v,
459 const std::string &name,
461 std::unordered_map<std::string, configTarget> &targets );
463extern template int appConfigurator::get<unsigned int>(
unsigned int &v,
464 const std::string &name,
466 std::unordered_map<std::string, configTarget> &targets );
468extern template int appConfigurator::get<unsigned long>(
unsigned long &v,
469 const std::string &name,
471 std::unordered_map<std::string, configTarget> &targets );
473extern template int appConfigurator::get<unsigned long long>(
unsigned long long &v,
474 const std::string &name,
476 std::unordered_map<std::string, configTarget> &targets );
478extern template int appConfigurator::get<float>(
float &v,
479 const std::string &name,
481 std::unordered_map<std::string, configTarget> &targets );
483extern template int appConfigurator::get<double>(
double &v,
484 const std::string &name,
486 std::unordered_map<std::string, configTarget> &targets );
488extern template int appConfigurator::get<long double>(
long double &v,
489 const std::string &name,
491 std::unordered_map<std::string, configTarget> &targets );
494extern template int appConfigurator::get<__float128>( __float128 &v,
495 const std::string &name,
497 std::unordered_map<std::string, configTarget> &targets );
500extern template int appConfigurator::get<bool>(
bool &v,
501 const std::string &name,
503 std::unordered_map<std::string, configTarget> &targets );
505extern template int appConfigurator::get<std::string>( std::string &v,
506 const std::string &name,
508 std::unordered_map<std::string, configTarget> &targets );
512template <
typename typeT>
519extern template int appConfigurator::get<char>(
char &v,
const std::string &name,
size_t i );
521extern template int appConfigurator::get<signed char>(
signed char &v,
const std::string &name,
size_t i );
523extern template int appConfigurator::get<short>(
short &v,
const std::string &name,
size_t i );
525extern template int appConfigurator::get<int>(
int &v,
const std::string &name,
size_t i );
527extern template int appConfigurator::get<long>(
long &v,
const std::string &name,
size_t i );
529extern template int appConfigurator::get<long long>(
long long &v,
const std::string &name,
size_t i );
531extern template int appConfigurator::get<unsigned char>(
unsigned char &v,
const std::string &name,
size_t i );
533extern template int appConfigurator::get<unsigned short>(
unsigned short &v,
const std::string &name,
size_t i );
535extern template int appConfigurator::get<unsigned int>(
unsigned int &v,
const std::string &name,
size_t i );
537extern template int appConfigurator::get<unsigned long>(
unsigned long &v,
const std::string &name,
size_t i );
540appConfigurator::get<unsigned long long>(
unsigned long long &v,
const std::string &name,
size_t i );
542extern template int appConfigurator::get<float>(
float &v,
const std::string &name,
size_t i );
544extern template int appConfigurator::get<double>(
double &v,
const std::string &name,
size_t i );
546extern template int appConfigurator::get<long double>(
long double &v,
const std::string &name,
size_t i );
549extern template int appConfigurator::get<__float128>( __float128 &v,
const std::string &name,
size_t i );
552extern template int appConfigurator::get<bool>(
bool &v,
const std::string &name,
size_t i );
554extern template int appConfigurator::get<std::string>( std::string &v,
const std::string &name,
size_t i );
558template <
typename typeT>
559int appConfigurator::get( typeT &v,
const std::string &name, std::unordered_map<std::string, configTarget> &targets )
561 targets[name].used =
true;
563 if( !
isSet( name, targets ) )
573 int i = targets[name].values.size() - 1;
578 return get( v, name, i, targets );
583appConfigurator::get<char>(
char &v,
const std::string &name, std::unordered_map<std::string, configTarget> &targets );
585extern template int appConfigurator::get<signed char>(
signed char &v,
586 const std::string &name,
587 std::unordered_map<std::string, configTarget> &targets );
589extern template int appConfigurator::get<short>(
short &v,
590 const std::string &name,
591 std::unordered_map<std::string, configTarget> &targets );
594appConfigurator::get<int>(
int &v,
const std::string &name, std::unordered_map<std::string, configTarget> &targets );
597appConfigurator::get<long>(
long &v,
const std::string &name, std::unordered_map<std::string, configTarget> &targets );
599extern template int appConfigurator::get<long long>(
long long &v,
600 const std::string &name,
601 std::unordered_map<std::string, configTarget> &targets );
603extern template int appConfigurator::get<unsigned char>(
unsigned char &v,
604 const std::string &name,
605 std::unordered_map<std::string, configTarget> &targets );
607extern template int appConfigurator::get<unsigned short>(
unsigned short &v,
608 const std::string &name,
609 std::unordered_map<std::string, configTarget> &targets );
611extern template int appConfigurator::get<unsigned int>(
unsigned int &v,
612 const std::string &name,
613 std::unordered_map<std::string, configTarget> &targets );
615extern template int appConfigurator::get<unsigned long>(
unsigned long &v,
616 const std::string &name,
617 std::unordered_map<std::string, configTarget> &targets );
619extern template int appConfigurator::get<unsigned long long>(
unsigned long long &v,
620 const std::string &name,
621 std::unordered_map<std::string, configTarget> &targets );
623extern template int appConfigurator::get<float>(
float &v,
624 const std::string &name,
625 std::unordered_map<std::string, configTarget> &targets );
627extern template int appConfigurator::get<double>(
double &v,
628 const std::string &name,
629 std::unordered_map<std::string, configTarget> &targets );
631extern template int appConfigurator::get<long double>(
long double &v,
632 const std::string &name,
633 std::unordered_map<std::string, configTarget> &targets );
636extern template int appConfigurator::get<__float128>( __float128 &v,
637 const std::string &name,
638 std::unordered_map<std::string, configTarget> &targets );
642appConfigurator::get<bool>(
bool &v,
const std::string &name, std::unordered_map<std::string, configTarget> &targets );
644extern template int appConfigurator::get<std::string>( std::string &v,
645 const std::string &name,
646 std::unordered_map<std::string, configTarget> &targets );
650template <
typename typeT>
657extern template int appConfigurator::get<char>(
char &v,
const std::string &name );
659extern template int appConfigurator::get<signed char>(
signed char &v,
const std::string &name );
661extern template int appConfigurator::get<short>(
short &v,
const std::string &name );
663extern template int appConfigurator::get<int>(
int &v,
const std::string &name );
665extern template int appConfigurator::get<long>(
long &v,
const std::string &name );
667extern template int appConfigurator::get<long long>(
long long &v,
const std::string &name );
669extern template int appConfigurator::get<unsigned char>(
unsigned char &v,
const std::string &name );
671extern template int appConfigurator::get<unsigned short>(
unsigned short &v,
const std::string &name );
673extern template int appConfigurator::get<unsigned int>(
unsigned int &v,
const std::string &name );
675extern template int appConfigurator::get<unsigned long>(
unsigned long &v,
const std::string &name );
677extern template int appConfigurator::get<unsigned long long>(
unsigned long long &v,
const std::string &name );
679extern template int appConfigurator::get<float>(
float &v,
const std::string &name );
681extern template int appConfigurator::get<double>(
double &v,
const std::string &name );
683extern template int appConfigurator::get<long double>(
long double &v,
const std::string &name );
686extern template int appConfigurator::get<__float128>( __float128 &v,
const std::string &name );
689extern template int appConfigurator::get<bool>(
bool &v,
const std::string &name );
691extern template int appConfigurator::get<std::string>( std::string &v,
const std::string &name );
694template <
typename typeT>
696 const std::string &name,
698 std::unordered_map<std::string, configTarget> &targets )
700 targets[name].used =
true;
702 if( !
isSet( name, targets ) )
712 if( targets[name].values.size() <= i )
717 s = ioutils::convertFromString<std::string>( targets[name].values[i] );
745 while( ::isspace( s[st] ) && st < s.size() - 1 )
748 com = s.find(
',', st );
752 while( com != std::string::npos )
754 v.push_back( ioutils::convertFromString<typeT>( s.substr( st, com - st ) ) );
756 while( ::isspace( s[st] ) && st < s.size() - 1 )
759 com = s.find(
',', st );
761 v.push_back( ioutils::convertFromString<typeT>( s.substr( st, s.size() - st ) ) );
780extern template int appConfigurator::get<char>( std::vector<char> &v,
781 const std::string &name,
783 std::unordered_map<std::string, configTarget> &targets );
785extern template int appConfigurator::get<signed char>( std::vector<signed char> &v,
786 const std::string &name,
788 std::unordered_map<std::string, configTarget> &targets );
790extern template int appConfigurator::get<short>( std::vector<short> &v,
791 const std::string &name,
793 std::unordered_map<std::string, configTarget> &targets );
795extern template int appConfigurator::get<int>( std::vector<int> &v,
796 const std::string &name,
798 std::unordered_map<std::string, configTarget> &targets );
800extern template int appConfigurator::get<long>( std::vector<long> &v,
801 const std::string &name,
803 std::unordered_map<std::string, configTarget> &targets );
805extern template int appConfigurator::get<long long>( std::vector<long long> &v,
806 const std::string &name,
808 std::unordered_map<std::string, configTarget> &targets );
810extern template int appConfigurator::get<unsigned char>( std::vector<unsigned char> &v,
811 const std::string &name,
813 std::unordered_map<std::string, configTarget> &targets );
815extern template int appConfigurator::get<unsigned short>( std::vector<unsigned short> &v,
816 const std::string &name,
818 std::unordered_map<std::string, configTarget> &targets );
820extern template int appConfigurator::get<unsigned int>( std::vector<unsigned int> &v,
821 const std::string &name,
823 std::unordered_map<std::string, configTarget> &targets );
825extern template int appConfigurator::get<unsigned long>( std::vector<unsigned long> &v,
826 const std::string &name,
828 std::unordered_map<std::string, configTarget> &targets );
830extern template int appConfigurator::get<unsigned long long>( std::vector<unsigned long long> &v,
831 const std::string &name,
833 std::unordered_map<std::string, configTarget> &targets );
835extern template int appConfigurator::get<float>( std::vector<float> &v,
836 const std::string &name,
838 std::unordered_map<std::string, configTarget> &targets );
840extern template int appConfigurator::get<double>( std::vector<double> &v,
841 const std::string &name,
843 std::unordered_map<std::string, configTarget> &targets );
845extern template int appConfigurator::get<long double>( std::vector<long double> &v,
846 const std::string &name,
848 std::unordered_map<std::string, configTarget> &targets );
851extern template int appConfigurator::get<__float128>( std::vector<__float128> &v,
852 const std::string &name,
854 std::unordered_map<std::string, configTarget> &targets );
857extern template int appConfigurator::get<bool>( std::vector<bool> &v,
858 const std::string &name,
860 std::unordered_map<std::string, configTarget> &targets );
862extern template int appConfigurator::get<std::string>( std::vector<std::string> &v,
863 const std::string &name,
865 std::unordered_map<std::string, configTarget> &targets );
869template <
typename typeT>
877extern template int appConfigurator::get<char>( std::vector<char> &v,
const std::string &name,
size_t i );
879extern template int appConfigurator::get<signed char>( std::vector<signed char> &v,
const std::string &name,
size_t i );
881extern template int appConfigurator::get<short>( std::vector<short> &v,
const std::string &name,
size_t i );
883extern template int appConfigurator::get<int>( std::vector<int> &v,
const std::string &name,
size_t i );
885extern template int appConfigurator::get<long>( std::vector<long> &v,
const std::string &name,
size_t i );
887extern template int appConfigurator::get<long long>( std::vector<long long> &v,
const std::string &name,
size_t i );
890appConfigurator::get<unsigned char>( std::vector<unsigned char> &v,
const std::string &name,
size_t i );
893appConfigurator::get<unsigned short>( std::vector<unsigned short> &v,
const std::string &name,
size_t i );
896appConfigurator::get<unsigned int>( std::vector<unsigned int> &v,
const std::string &name,
size_t i );
899appConfigurator::get<unsigned long>( std::vector<unsigned long> &v,
const std::string &name,
size_t i );
902appConfigurator::get<unsigned long long>( std::vector<unsigned long long> &v,
const std::string &name,
size_t i );
904extern template int appConfigurator::get<float>( std::vector<float> &v,
const std::string &name,
size_t i );
906extern template int appConfigurator::get<double>( std::vector<double> &v,
const std::string &name,
size_t i );
908extern template int appConfigurator::get<long double>( std::vector<long double> &v,
const std::string &name,
size_t i );
911extern template int appConfigurator::get<__float128>( std::vector<__float128> &v,
const std::string &name,
size_t i );
914extern template int appConfigurator::get<bool>( std::vector<bool> &v,
const std::string &name,
size_t i );
916extern template int appConfigurator::get<std::string>( std::vector<std::string> &v,
const std::string &name,
size_t i );
919template <
typename typeT>
921 const std::string &name,
922 std::unordered_map<std::string, configTarget> &targets )
924 targets[name].used =
true;
926 if( !
isSet( name, targets ) )
934 int i = targets[name].values.size() - 1;
939 return get( v, name, i, targets );
943extern template int appConfigurator::get<char>( std::vector<char> &v,
944 const std::string &name,
945 std::unordered_map<std::string, configTarget> &targets );
947extern template int appConfigurator::get<signed char>( std::vector<signed char> &v,
948 const std::string &name,
949 std::unordered_map<std::string, configTarget> &targets );
951extern template int appConfigurator::get<short>( std::vector<short> &v,
952 const std::string &name,
953 std::unordered_map<std::string, configTarget> &targets );
955extern template int appConfigurator::get<int>( std::vector<int> &v,
956 const std::string &name,
957 std::unordered_map<std::string, configTarget> &targets );
959extern template int appConfigurator::get<long>( std::vector<long> &v,
960 const std::string &name,
961 std::unordered_map<std::string, configTarget> &targets );
963extern template int appConfigurator::get<long long>( std::vector<long long> &v,
964 const std::string &name,
965 std::unordered_map<std::string, configTarget> &targets );
967extern template int appConfigurator::get<unsigned char>( std::vector<unsigned char> &v,
968 const std::string &name,
969 std::unordered_map<std::string, configTarget> &targets );
971extern template int appConfigurator::get<unsigned short>( std::vector<unsigned short> &v,
972 const std::string &name,
973 std::unordered_map<std::string, configTarget> &targets );
975extern template int appConfigurator::get<unsigned int>( std::vector<unsigned int> &v,
976 const std::string &name,
977 std::unordered_map<std::string, configTarget> &targets );
979extern template int appConfigurator::get<unsigned long>( std::vector<unsigned long> &v,
980 const std::string &name,
981 std::unordered_map<std::string, configTarget> &targets );
983extern template int appConfigurator::get<unsigned long long>( std::vector<unsigned long long> &v,
984 const std::string &name,
985 std::unordered_map<std::string, configTarget> &targets );
987extern template int appConfigurator::get<float>( std::vector<float> &v,
988 const std::string &name,
989 std::unordered_map<std::string, configTarget> &targets );
991extern template int appConfigurator::get<double>( std::vector<double> &v,
992 const std::string &name,
993 std::unordered_map<std::string, configTarget> &targets );
995extern template int appConfigurator::get<long double>( std::vector<long double> &v,
996 const std::string &name,
997 std::unordered_map<std::string, configTarget> &targets );
1000extern template int appConfigurator::get<__float128>( std::vector<__float128> &v,
1001 const std::string &name,
1002 std::unordered_map<std::string, configTarget> &targets );
1005extern template int appConfigurator::get<bool>( std::vector<bool> &v,
1006 const std::string &name,
1007 std::unordered_map<std::string, configTarget> &targets );
1009extern template int appConfigurator::get<std::string>( std::vector<std::string> &v,
1010 const std::string &name,
1011 std::unordered_map<std::string, configTarget> &targets );
1015template <
typename typeT>
1022extern template int appConfigurator::get<char>( std::vector<char> &v,
const std::string &name );
1024extern template int appConfigurator::get<signed char>( std::vector<signed char> &v,
const std::string &name );
1026extern template int appConfigurator::get<short>( std::vector<short> &v,
const std::string &name );
1028extern template int appConfigurator::get<int>( std::vector<int> &v,
const std::string &name );
1030extern template int appConfigurator::get<long>( std::vector<long> &v,
const std::string &name );
1032extern template int appConfigurator::get<long long>( std::vector<long long> &v,
const std::string &name );
1034extern template int appConfigurator::get<unsigned char>( std::vector<unsigned char> &v,
const std::string &name );
1036extern template int appConfigurator::get<unsigned short>( std::vector<unsigned short> &v,
const std::string &name );
1038extern template int appConfigurator::get<unsigned int>( std::vector<unsigned int> &v,
const std::string &name );
1040extern template int appConfigurator::get<unsigned long>( std::vector<unsigned long> &v,
const std::string &name );
1042extern template int appConfigurator::get<unsigned long long>( std::vector<unsigned long long> &v,
1043 const std::string &name );
1045extern template int appConfigurator::get<float>( std::vector<float> &v,
const std::string &name );
1047extern template int appConfigurator::get<double>( std::vector<double> &v,
const std::string &name );
1049extern template int appConfigurator::get<long double>( std::vector<long double> &v,
const std::string &name );
1052extern template int appConfigurator::get<__float128>( std::vector<__float128> &v,
const std::string &name );
1055extern template int appConfigurator::get<bool>( std::vector<bool> &v,
const std::string &name );
1057extern template int appConfigurator::get<std::string>( std::vector<std::string> &v,
const std::string &name );
1061template <
typename typeT>
1069extern template int appConfigurator::operator()<
char>(
char &v,
const std::string &name );
1071extern template int appConfigurator::operator()<
signed char>(
signed char &v,
const std::string &name );
1073extern template int appConfigurator::operator()<
short>(
short &v,
const std::string &name );
1075extern template int appConfigurator::operator()<
int>(
int &v,
const std::string &name );
1077extern template int appConfigurator::operator()<
long>(
long &v,
const std::string &name );
1079extern template int appConfigurator::operator()<
long long>(
long long &v,
const std::string &name );
1081extern template int appConfigurator::operator()<
unsigned char>(
unsigned char &v,
const std::string &name );
1083extern template int appConfigurator::operator()<
unsigned short>(
unsigned short &v,
const std::string &name );
1085extern template int appConfigurator::operator()<
unsigned int>(
unsigned int &v,
const std::string &name );
1087extern template int appConfigurator::operator()<
unsigned long>(
unsigned long &v,
const std::string &name );
1089extern template int appConfigurator::operator()<
unsigned long long>(
unsigned long long &v,
const std::string &name );
1091extern template int appConfigurator::operator()<
float>(
float &v,
const std::string &name );
1093extern template int appConfigurator::operator()<
double>(
double &v,
const std::string &name );
1095extern template int appConfigurator::operator()<
long double>(
long double &v,
const std::string &name );
1098extern template int appConfigurator::operator()<__float128>( __float128 &v,
const std::string &name );
1101extern template int appConfigurator::operator()<
bool>(
bool &v,
const std::string &name );
1103extern template int appConfigurator::operator()<std::string>( std::string &v,
const std::string &name );
1107template <
typename typeT>
1113extern template int appConfigurator::configUnused<char>(
char &v,
const std::string &key );
1115extern template int appConfigurator::configUnused<signed char>(
signed char &v,
const std::string &key );
1117extern template int appConfigurator::configUnused<short>(
short &v,
const std::string &key );
1119extern template int appConfigurator::configUnused<int>(
int &v,
const std::string &key );
1121extern template int appConfigurator::configUnused<long>(
long &v,
const std::string &key );
1123extern template int appConfigurator::configUnused<long long>(
long long &v,
const std::string &key );
1125extern template int appConfigurator::configUnused<unsigned char>(
unsigned char &v,
const std::string &key );
1127extern template int appConfigurator::configUnused<unsigned short>(
unsigned short &v,
const std::string &key );
1129extern template int appConfigurator::configUnused<unsigned int>(
unsigned int &v,
const std::string &key );
1131extern template int appConfigurator::configUnused<unsigned long>(
unsigned long &v,
const std::string &key );
1133extern template int appConfigurator::configUnused<unsigned long long>(
unsigned long long &v,
const std::string &key );
1135extern template int appConfigurator::configUnused<float>(
float &v,
const std::string &key );
1137extern template int appConfigurator::configUnused<double>(
double &v,
const std::string &key );
1139extern template int appConfigurator::configUnused<long double>(
long double &v,
const std::string &key );
1142extern template int appConfigurator::configUnused<__float128>( __float128 &v,
const std::string &key );
1145extern template int appConfigurator::configUnused<bool>(
bool &v,
const std::string &key );
1147extern template int appConfigurator::configUnused<std::string>( std::string &v,
const std::string &key );
1150template <
typename typeT>
1157appConfigurator::configUnused<char>(
char &v,
const std::string §ion,
const std::string &keyword );
1160appConfigurator::configUnused<signed char>(
signed char &v,
const std::string §ion,
const std::string &keyword );
1163appConfigurator::configUnused<short>(
short &v,
const std::string §ion,
const std::string &keyword );
1166appConfigurator::configUnused<int>(
int &v,
const std::string §ion,
const std::string &keyword );
1169appConfigurator::configUnused<long>(
long &v,
const std::string §ion,
const std::string &keyword );
1172appConfigurator::configUnused<long long>(
long long &v,
const std::string §ion,
const std::string &keyword );
1174extern template int appConfigurator::configUnused<unsigned char>(
unsigned char &v,
1175 const std::string §ion,
1176 const std::string &keyword );
1178extern template int appConfigurator::configUnused<unsigned short>(
unsigned short &v,
1179 const std::string §ion,
1180 const std::string &keyword );
1183appConfigurator::configUnused<unsigned int>(
unsigned int &v,
const std::string §ion,
const std::string &keyword );
1185extern template int appConfigurator::configUnused<unsigned long>(
unsigned long &v,
1186 const std::string §ion,
1187 const std::string &keyword );
1189extern template int appConfigurator::configUnused<unsigned long long>(
unsigned long long &v,
1190 const std::string §ion,
1191 const std::string &keyword );
1194appConfigurator::configUnused<float>(
float &v,
const std::string §ion,
const std::string &keyword );
1197appConfigurator::configUnused<double>(
double &v,
const std::string §ion,
const std::string &keyword );
1200appConfigurator::configUnused<long double>(
long double &v,
const std::string §ion,
const std::string &keyword );
1204appConfigurator::configUnused<__float128>( __float128 &v,
const std::string §ion,
const std::string &keyword );
1208appConfigurator::configUnused<bool>(
bool &v,
const std::string §ion,
const std::string &keyword );
1211appConfigurator::configUnused<std::string>( std::string &v,
const std::string §ion,
const std::string &keyword );
1244 const std::vector<std::string> §ions,
1245 const std::vector<std::string> &keywords,
1246 const std::vector<std::string> &values
void writeConfigFile(const std::string &fname, const std::vector< std::string > §ions, const std::vector< std::string > &keywords, const std::vector< std::string > &values)
A simple config file writing function, useful for testing.
Targets for the configuration manager, and utiltities.
std::string convertToString(const typeT &value, int precision=0)
Convert a numerical value to a string.
Declares and defines an ini-style (toml) file parser.
Class to manage a set of configurable values, and read their values from config/ini files and the com...
std::unordered_map< std::string, configTarget > m_targets
The targets are stored in an unordered_map for fast access by key.
int readConfig(const std::string &fname, bool reportFileNotFound=true)
Read and parse a config/ini file, updating the targets.
int operator()(typeT &v, const std::string &name)
Access operator, configures a value by calling get.
void add(const configTarget &tgt)
Add a configTarget.
bool m_sources
Flag controlling whether or not to record config sources.
int get(typeT &v, const std::string &name, size_t i, std::unordered_map< std::string, configTarget > &targets)
Get the i-th value of the target, converted to the specified type.
std::vector< std::string > nonOptions
Non-option arguments from the command line.
int configUnused(typeT &v, const std::string &key)
Configure a value from the unused map, using the iniFile key.
void(* configLog)(const std::string &name, const int &code, const std::string &valueStr, const std::string &source)
Call an external logging function whenever a config value is accessed by get or operator().
int verbosity(const std::string &name, std::unordered_map< std::string, configTarget > &targets)
Get the command line verbosity count for this option.
std::unordered_map< std::string, configTarget >::iterator targetIterator
Iterator for the targets unordered_map.
int isSetUnused(const std::string &name)
Check if a target has been set in the unused configuration.
bool isSet(const std::string &name, std::unordered_map< std::string, configTarget > &targets)
Check if a target has been set by the configuration.
void clear()
Clear the containers and free up the associated memory.
int unusedSections(std::vector< std::string > §ions)
Get the unique sections in the unused config targets.
int numUnknownOptions()
Get the number of unknown options found during config processing.
std::list< configTarget > clOnlyTargets
Targets which are only for the command line are stored separately in a list.
int count(const std::string &name, std::unordered_map< std::string, configTarget > &targets)
Get the number of different values set for the specified config target.
void parseCommandLine(int argc, char **argv, const std::string &oneTarget="")
Parse the command line, updating the targets.
int nAdded
Running count of options added, used to track order.
std::unordered_map< std::string, configTarget > m_unusedConfigs
std::list< configTarget >::iterator clOnlyTargetIterator
Iterator for the clOnlyTargets list.
static std::string makeKey(const std::string §ion, const std::string &name)
Return a key generated from the section and name.