54 std::pair<targetIterator, bool> res =
m_targets.insert( { tgt.
name, tgt } );
55 res.first->second.orderAdded =
nAdded;
62 const std::string &so,
63 const std::string &lo,
66 const std::string &kw,
68 const std::string &ht,
69 const std::string &he )
85 if( it->second.shortOpt ==
"" && it->second.longOpt ==
"" )
88 clOpts.
add( it->second.name, it->second.shortOpt.c_str(), it->second.longOpt.c_str(), it->second.clType );
95 if( cloit->shortOpt ==
"" && cloit->longOpt ==
"" )
98 clOpts.
add( cloit->name, cloit->shortOpt.c_str(), cloit->longOpt.c_str(), cloit->clType );
106 std::vector<std::string> unk;
109 for(
size_t n = 0; n < unk.size(); ++n )
120 if( clOpts.
nOpts == 0 )
127 if( oneTarget !=
"" && it->second.name != oneTarget )
130 if( clOpts.
optSet( it->second.name ) )
132 std::vector<std::string> args;
134 clOpts.
getAll( args, it->second.name );
136 it->second.values.insert( it->second.values.end(), args.begin(), args.end() );
139 for(
size_t n = 0; n < args.size(); ++n )
140 it->second.sources.push_back(
"command line" );
143 it->second.verbosity = clOpts.
count( it->second.name );
144 it->second.set =
true;
158 int prv = iF.
parse( fname );
162 if( !reportFileNotFound )
165 mxError(
"appConfigurator: ", MXE_FILENOTFOUND,
"The file " + fname +
" was not found" );
171 mxError(
"appConfigurator: ", MXE_ALLOCERR,
"Memory allocation error in config file parser" );
177 mxError(
"appConfigurator: ", MXE_PARSEERR,
"Parsing error in " + fname +
" at line " + std::to_string( prv ) );
185 if( iF.
count( it->second.section, it->second.keyword ) > 0 )
187 it->second.values.push_back( iF( it->second.section, it->second.keyword ) );
190 it->second.sources.push_back( fname );
192 it->second.set =
true;
194 iF.
erase( it->second.section, it->second.keyword );
199 for(
auto iFit = iF.
names.begin(); iFit != iF.
names.end(); ++iFit )
204 std::string sect, nam;
222 if( targets.count( name ) == 0 )
225 targets[name].used =
true;
227 return targets[name].set;
237 targets[name].used =
true;
238 return targets[name].values.size();
248 targets[name].used =
true;
249 return targets[name].verbosity;
261template int appConfigurator::get<char>(
char &v,
262 const std::string &name,
264 std::unordered_map<std::string, configTarget> &targets );
266template int appConfigurator::get<signed char>(
signed char &v,
267 const std::string &name,
269 std::unordered_map<std::string, configTarget> &targets );
271template int appConfigurator::get<short>(
short &v,
272 const std::string &name,
274 std::unordered_map<std::string, configTarget> &targets );
276template int appConfigurator::get<int>(
int &v,
277 const std::string &name,
279 std::unordered_map<std::string, configTarget> &targets );
281template int appConfigurator::get<long>(
long &v,
282 const std::string &name,
284 std::unordered_map<std::string, configTarget> &targets );
286template int appConfigurator::get<long long>(
long long &v,
287 const std::string &name,
289 std::unordered_map<std::string, configTarget> &targets );
291template int appConfigurator::get<unsigned char>(
unsigned char &v,
292 const std::string &name,
294 std::unordered_map<std::string, configTarget> &targets );
296template int appConfigurator::get<unsigned short>(
unsigned short &v,
297 const std::string &name,
299 std::unordered_map<std::string, configTarget> &targets );
301template int appConfigurator::get<unsigned int>(
unsigned int &v,
302 const std::string &name,
304 std::unordered_map<std::string, configTarget> &targets );
306template int appConfigurator::get<unsigned long>(
unsigned long &v,
307 const std::string &name,
309 std::unordered_map<std::string, configTarget> &targets );
311template int appConfigurator::get<unsigned long long>(
unsigned long long &v,
312 const std::string &name,
314 std::unordered_map<std::string, configTarget> &targets );
316template int appConfigurator::get<float>(
float &v,
317 const std::string &name,
319 std::unordered_map<std::string, configTarget> &targets );
321template int appConfigurator::get<double>(
double &v,
322 const std::string &name,
324 std::unordered_map<std::string, configTarget> &targets );
326template int appConfigurator::get<long double>(
long double &v,
327 const std::string &name,
329 std::unordered_map<std::string, configTarget> &targets );
332template int appConfigurator::get<__float128>( __float128 &v,
333 const std::string &name,
335 std::unordered_map<std::string, configTarget> &targets );
338template int appConfigurator::get<bool>(
bool &v,
339 const std::string &name,
341 std::unordered_map<std::string, configTarget> &targets );
343template int appConfigurator::get<std::string>( std::string &v,
344 const std::string &name,
346 std::unordered_map<std::string, configTarget> &targets );
350template int appConfigurator::get<char>(
char &v,
const std::string &name,
size_t i );
352template int appConfigurator::get<signed char>(
signed char &v,
const std::string &name,
size_t i );
354template int appConfigurator::get<short>(
short &v,
const std::string &name,
size_t i );
356template int appConfigurator::get<int>(
int &v,
const std::string &name,
size_t i );
358template int appConfigurator::get<long>(
long &v,
const std::string &name,
size_t i );
360template int appConfigurator::get<long long>(
long long &v,
const std::string &name,
size_t i );
362template int appConfigurator::get<unsigned char>(
unsigned char &v,
const std::string &name,
size_t i );
364template int appConfigurator::get<unsigned short>(
unsigned short &v,
const std::string &name,
size_t i );
366template int appConfigurator::get<unsigned int>(
unsigned int &v,
const std::string &name,
size_t i );
368template int appConfigurator::get<unsigned long>(
unsigned long &v,
const std::string &name,
size_t i );
370template int appConfigurator::get<unsigned long long>(
unsigned long long &v,
const std::string &name,
size_t i );
372template int appConfigurator::get<float>(
float &v,
const std::string &name,
size_t i );
374template int appConfigurator::get<double>(
double &v,
const std::string &name,
size_t i );
376template int appConfigurator::get<long double>(
long double &v,
const std::string &name,
size_t i );
379template int appConfigurator::get<__float128>( __float128 &v,
const std::string &name,
size_t i );
382template int appConfigurator::get<bool>(
bool &v,
const std::string &name,
size_t i );
384template int appConfigurator::get<std::string>( std::string &v,
const std::string &name,
size_t i );
389appConfigurator::get<char>(
char &v,
const std::string &name, std::unordered_map<std::string, configTarget> &targets );
391template int appConfigurator::get<signed char>(
signed char &v,
392 const std::string &name,
393 std::unordered_map<std::string, configTarget> &targets );
395template int appConfigurator::get<short>(
short &v,
396 const std::string &name,
397 std::unordered_map<std::string, configTarget> &targets );
400appConfigurator::get<int>(
int &v,
const std::string &name, std::unordered_map<std::string, configTarget> &targets );
403appConfigurator::get<long>(
long &v,
const std::string &name, std::unordered_map<std::string, configTarget> &targets );
405template int appConfigurator::get<long long>(
long long &v,
406 const std::string &name,
407 std::unordered_map<std::string, configTarget> &targets );
409template int appConfigurator::get<unsigned char>(
unsigned char &v,
410 const std::string &name,
411 std::unordered_map<std::string, configTarget> &targets );
413template int appConfigurator::get<unsigned short>(
unsigned short &v,
414 const std::string &name,
415 std::unordered_map<std::string, configTarget> &targets );
417template int appConfigurator::get<unsigned int>(
unsigned int &v,
418 const std::string &name,
419 std::unordered_map<std::string, configTarget> &targets );
421template int appConfigurator::get<unsigned long>(
unsigned long &v,
422 const std::string &name,
423 std::unordered_map<std::string, configTarget> &targets );
425template int appConfigurator::get<unsigned long long>(
unsigned long long &v,
426 const std::string &name,
427 std::unordered_map<std::string, configTarget> &targets );
429template int appConfigurator::get<float>(
float &v,
430 const std::string &name,
431 std::unordered_map<std::string, configTarget> &targets );
433template int appConfigurator::get<double>(
double &v,
434 const std::string &name,
435 std::unordered_map<std::string, configTarget> &targets );
437template int appConfigurator::get<long double>(
long double &v,
438 const std::string &name,
439 std::unordered_map<std::string, configTarget> &targets );
442template int appConfigurator::get<__float128>( __float128 &v,
443 const std::string &name,
444 std::unordered_map<std::string, configTarget> &targets );
448appConfigurator::get<bool>(
bool &v,
const std::string &name, std::unordered_map<std::string, configTarget> &targets );
450template int appConfigurator::get<std::string>( std::string &v,
451 const std::string &name,
452 std::unordered_map<std::string, configTarget> &targets );
456template int appConfigurator::get<char>(
char &v,
const std::string &name );
458template int appConfigurator::get<signed char>(
signed char &v,
const std::string &name );
460template int appConfigurator::get<short>(
short &v,
const std::string &name );
462template int appConfigurator::get<int>(
int &v,
const std::string &name );
464template int appConfigurator::get<long>(
long &v,
const std::string &name );
466template int appConfigurator::get<long long>(
long long &v,
const std::string &name );
468template int appConfigurator::get<unsigned char>(
unsigned char &v,
const std::string &name );
470template int appConfigurator::get<unsigned short>(
unsigned short &v,
const std::string &name );
472template int appConfigurator::get<unsigned int>(
unsigned int &v,
const std::string &name );
474template int appConfigurator::get<unsigned long>(
unsigned long &v,
const std::string &name );
476template int appConfigurator::get<unsigned long long>(
unsigned long long &v,
const std::string &name );
478template int appConfigurator::get<float>(
float &v,
const std::string &name );
480template int appConfigurator::get<double>(
double &v,
const std::string &name );
482template int appConfigurator::get<long double>(
long double &v,
const std::string &name );
485template int appConfigurator::get<__float128>( __float128 &v,
const std::string &name );
488template int appConfigurator::get<bool>(
bool &v,
const std::string &name );
490template int appConfigurator::get<std::string>( std::string &v,
const std::string &name );
494template int appConfigurator::get<char>( std::vector<char> &v,
495 const std::string &name,
497 std::unordered_map<std::string, configTarget> &targets );
499template int appConfigurator::get<signed char>( std::vector<signed char> &v,
500 const std::string &name,
502 std::unordered_map<std::string, configTarget> &targets );
504template int appConfigurator::get<short>( std::vector<short> &v,
505 const std::string &name,
507 std::unordered_map<std::string, configTarget> &targets );
509template int appConfigurator::get<int>( std::vector<int> &v,
510 const std::string &name,
512 std::unordered_map<std::string, configTarget> &targets );
514template int appConfigurator::get<long>( std::vector<long> &v,
515 const std::string &name,
517 std::unordered_map<std::string, configTarget> &targets );
519template int appConfigurator::get<long long>( std::vector<long long> &v,
520 const std::string &name,
522 std::unordered_map<std::string, configTarget> &targets );
524template int appConfigurator::get<unsigned char>( std::vector<unsigned char> &v,
525 const std::string &name,
527 std::unordered_map<std::string, configTarget> &targets );
529template int appConfigurator::get<unsigned short>( std::vector<unsigned short> &v,
530 const std::string &name,
532 std::unordered_map<std::string, configTarget> &targets );
534template int appConfigurator::get<unsigned int>( std::vector<unsigned int> &v,
535 const std::string &name,
537 std::unordered_map<std::string, configTarget> &targets );
539template int appConfigurator::get<unsigned long>( std::vector<unsigned long> &v,
540 const std::string &name,
542 std::unordered_map<std::string, configTarget> &targets );
544template int appConfigurator::get<unsigned long long>( std::vector<unsigned long long> &v,
545 const std::string &name,
547 std::unordered_map<std::string, configTarget> &targets );
549template int appConfigurator::get<float>( std::vector<float> &v,
550 const std::string &name,
552 std::unordered_map<std::string, configTarget> &targets );
554template int appConfigurator::get<double>( std::vector<double> &v,
555 const std::string &name,
557 std::unordered_map<std::string, configTarget> &targets );
559template int appConfigurator::get<long double>( std::vector<long double> &v,
560 const std::string &name,
562 std::unordered_map<std::string, configTarget> &targets );
565template int appConfigurator::get<__float128>( std::vector<__float128> &v,
566 const std::string &name,
568 std::unordered_map<std::string, configTarget> &targets );
571template int appConfigurator::get<bool>( std::vector<bool> &v,
572 const std::string &name,
574 std::unordered_map<std::string, configTarget> &targets );
576template int appConfigurator::get<std::string>( std::vector<std::string> &v,
577 const std::string &name,
579 std::unordered_map<std::string, configTarget> &targets );
583template int appConfigurator::get<char>( std::vector<char> &v,
const std::string &name,
size_t i );
585template int appConfigurator::get<signed char>( std::vector<signed char> &v,
const std::string &name,
size_t i );
587template int appConfigurator::get<short>( std::vector<short> &v,
const std::string &name,
size_t i );
589template int appConfigurator::get<int>( std::vector<int> &v,
const std::string &name,
size_t i );
591template int appConfigurator::get<long>( std::vector<long> &v,
const std::string &name,
size_t i );
593template int appConfigurator::get<long long>( std::vector<long long> &v,
const std::string &name,
size_t i );
595template int appConfigurator::get<unsigned char>( std::vector<unsigned char> &v,
const std::string &name,
size_t i );
597template int appConfigurator::get<unsigned short>( std::vector<unsigned short> &v,
const std::string &name,
size_t i );
599template int appConfigurator::get<unsigned int>( std::vector<unsigned int> &v,
const std::string &name,
size_t i );
601template int appConfigurator::get<unsigned long>( std::vector<unsigned long> &v,
const std::string &name,
size_t i );
604appConfigurator::get<unsigned long long>( std::vector<unsigned long long> &v,
const std::string &name,
size_t i );
606template int appConfigurator::get<float>( std::vector<float> &v,
const std::string &name,
size_t i );
608template int appConfigurator::get<double>( std::vector<double> &v,
const std::string &name,
size_t i );
610template int appConfigurator::get<long double>( std::vector<long double> &v,
const std::string &name,
size_t i );
613template int appConfigurator::get<__float128>( std::vector<__float128> &v,
const std::string &name,
size_t i );
616template int appConfigurator::get<bool>( std::vector<bool> &v,
const std::string &name,
size_t i );
618template int appConfigurator::get<std::string>( std::vector<std::string> &v,
const std::string &name,
size_t i );
621template int appConfigurator::get<char>( std::vector<char> &v,
622 const std::string &name,
623 std::unordered_map<std::string, configTarget> &targets );
625template int appConfigurator::get<signed char>( std::vector<signed char> &v,
626 const std::string &name,
627 std::unordered_map<std::string, configTarget> &targets );
629template int appConfigurator::get<short>( std::vector<short> &v,
630 const std::string &name,
631 std::unordered_map<std::string, configTarget> &targets );
633template int appConfigurator::get<int>( std::vector<int> &v,
634 const std::string &name,
635 std::unordered_map<std::string, configTarget> &targets );
637template int appConfigurator::get<long>( std::vector<long> &v,
638 const std::string &name,
639 std::unordered_map<std::string, configTarget> &targets );
641template int appConfigurator::get<long long>( std::vector<long long> &v,
642 const std::string &name,
643 std::unordered_map<std::string, configTarget> &targets );
645template int appConfigurator::get<unsigned char>( std::vector<unsigned char> &v,
646 const std::string &name,
647 std::unordered_map<std::string, configTarget> &targets );
649template int appConfigurator::get<unsigned short>( std::vector<unsigned short> &v,
650 const std::string &name,
651 std::unordered_map<std::string, configTarget> &targets );
653template int appConfigurator::get<unsigned int>( std::vector<unsigned int> &v,
654 const std::string &name,
655 std::unordered_map<std::string, configTarget> &targets );
657template int appConfigurator::get<unsigned long>( std::vector<unsigned long> &v,
658 const std::string &name,
659 std::unordered_map<std::string, configTarget> &targets );
661template int appConfigurator::get<unsigned long long>( std::vector<unsigned long long> &v,
662 const std::string &name,
663 std::unordered_map<std::string, configTarget> &targets );
665template int appConfigurator::get<float>( std::vector<float> &v,
666 const std::string &name,
667 std::unordered_map<std::string, configTarget> &targets );
669template int appConfigurator::get<double>( std::vector<double> &v,
670 const std::string &name,
671 std::unordered_map<std::string, configTarget> &targets );
673template int appConfigurator::get<long double>( std::vector<long double> &v,
674 const std::string &name,
675 std::unordered_map<std::string, configTarget> &targets );
678template int appConfigurator::get<__float128>( std::vector<__float128> &v,
679 const std::string &name,
680 std::unordered_map<std::string, configTarget> &targets );
683template int appConfigurator::get<bool>( std::vector<bool> &v,
684 const std::string &name,
685 std::unordered_map<std::string, configTarget> &targets );
687template int appConfigurator::get<std::string>( std::vector<std::string> &v,
688 const std::string &name,
689 std::unordered_map<std::string, configTarget> &targets );
692template int appConfigurator::get<char>( std::vector<char> &v,
const std::string &name );
694template int appConfigurator::get<signed char>( std::vector<signed char> &v,
const std::string &name );
696template int appConfigurator::get<short>( std::vector<short> &v,
const std::string &name );
698template int appConfigurator::get<int>( std::vector<int> &v,
const std::string &name );
700template int appConfigurator::get<long>( std::vector<long> &v,
const std::string &name );
702template int appConfigurator::get<long long>( std::vector<long long> &v,
const std::string &name );
704template int appConfigurator::get<unsigned char>( std::vector<unsigned char> &v,
const std::string &name );
706template int appConfigurator::get<unsigned short>( std::vector<unsigned short> &v,
const std::string &name );
708template int appConfigurator::get<unsigned int>( std::vector<unsigned int> &v,
const std::string &name );
710template int appConfigurator::get<unsigned long>( std::vector<unsigned long> &v,
const std::string &name );
712template int appConfigurator::get<unsigned long long>( std::vector<unsigned long long> &v,
const std::string &name );
714template int appConfigurator::get<float>( std::vector<float> &v,
const std::string &name );
716template int appConfigurator::get<double>( std::vector<double> &v,
const std::string &name );
718template int appConfigurator::get<long double>( std::vector<long double> &v,
const std::string &name );
721template int appConfigurator::get<__float128>( std::vector<__float128> &v,
const std::string &name );
724template int appConfigurator::get<bool>( std::vector<bool> &v,
const std::string &name );
726template int appConfigurator::get<std::string>( std::vector<std::string> &v,
const std::string &name );
730template int appConfigurator::operator()<
char>(
char &v,
const std::string &name );
732template int appConfigurator::operator()<
signed char>(
signed char &v,
const std::string &name );
734template int appConfigurator::operator()<
short>(
short &v,
const std::string &name );
736template int appConfigurator::operator()<
int>(
int &v,
const std::string &name );
738template int appConfigurator::operator()<
long>(
long &v,
const std::string &name );
740template int appConfigurator::operator()<
long long>(
long long &v,
const std::string &name );
742template int appConfigurator::operator()<
unsigned char>(
unsigned char &v,
const std::string &name );
744template int appConfigurator::operator()<
unsigned short>(
unsigned short &v,
const std::string &name );
746template int appConfigurator::operator()<
unsigned int>(
unsigned int &v,
const std::string &name );
748template int appConfigurator::operator()<
unsigned long>(
unsigned long &v,
const std::string &name );
750template int appConfigurator::operator()<
unsigned long long>(
unsigned long long &v,
const std::string &name );
752template int appConfigurator::operator()<
float>(
float &v,
const std::string &name );
754template int appConfigurator::operator()<
double>(
double &v,
const std::string &name );
756template int appConfigurator::operator()<
long double>(
long double &v,
const std::string &name );
759template int appConfigurator::operator()<__float128>( __float128 &v,
const std::string &name );
762template int appConfigurator::operator()<
bool>(
bool &v,
const std::string &name );
764template int appConfigurator::operator()<std::string>( std::string &v,
const std::string &name );
768template int appConfigurator::configUnused<char>(
char &v,
const std::string &key );
770template int appConfigurator::configUnused<signed char>(
signed char &v,
const std::string &key );
772template int appConfigurator::configUnused<short>(
short &v,
const std::string &key );
774template int appConfigurator::configUnused<int>(
int &v,
const std::string &key );
776template int appConfigurator::configUnused<long>(
long &v,
const std::string &key );
778template int appConfigurator::configUnused<long long>(
long long &v,
const std::string &key );
780template int appConfigurator::configUnused<unsigned char>(
unsigned char &v,
const std::string &key );
782template int appConfigurator::configUnused<unsigned short>(
unsigned short &v,
const std::string &key );
784template int appConfigurator::configUnused<unsigned int>(
unsigned int &v,
const std::string &key );
786template int appConfigurator::configUnused<unsigned long>(
unsigned long &v,
const std::string &key );
788template int appConfigurator::configUnused<unsigned long long>(
unsigned long long &v,
const std::string &key );
790template int appConfigurator::configUnused<float>(
float &v,
const std::string &key );
792template int appConfigurator::configUnused<double>(
double &v,
const std::string &key );
794template int appConfigurator::configUnused<long double>(
long double &v,
const std::string &key );
797template int appConfigurator::configUnused<__float128>( __float128 &v,
const std::string &key );
800template int appConfigurator::configUnused<bool>(
bool &v,
const std::string &key );
802template int appConfigurator::configUnused<std::string>( std::string &v,
const std::string &key );
806template int appConfigurator::configUnused<char>(
char &v,
const std::string §ion,
const std::string &keyword );
809appConfigurator::configUnused<signed char>(
signed char &v,
const std::string §ion,
const std::string &keyword );
811template int appConfigurator::configUnused<short>(
short &v,
const std::string §ion,
const std::string &keyword );
813template int appConfigurator::configUnused<int>(
int &v,
const std::string §ion,
const std::string &keyword );
815template int appConfigurator::configUnused<long>(
long &v,
const std::string §ion,
const std::string &keyword );
818appConfigurator::configUnused<long long>(
long long &v,
const std::string §ion,
const std::string &keyword );
820template int appConfigurator::configUnused<unsigned char>(
unsigned char &v,
821 const std::string §ion,
822 const std::string &keyword );
824template int appConfigurator::configUnused<unsigned short>(
unsigned short &v,
825 const std::string §ion,
826 const std::string &keyword );
829appConfigurator::configUnused<unsigned int>(
unsigned int &v,
const std::string §ion,
const std::string &keyword );
831template int appConfigurator::configUnused<unsigned long>(
unsigned long &v,
832 const std::string §ion,
833 const std::string &keyword );
835template int appConfigurator::configUnused<unsigned long long>(
unsigned long long &v,
836 const std::string §ion,
837 const std::string &keyword );
839template int appConfigurator::configUnused<float>(
float &v,
const std::string §ion,
const std::string &keyword );
841template int appConfigurator::configUnused<double>(
double &v,
const std::string §ion,
const std::string &keyword );
844appConfigurator::configUnused<long double>(
long double &v,
const std::string §ion,
const std::string &keyword );
848appConfigurator::configUnused<__float128>( __float128 &v,
const std::string §ion,
const std::string &keyword );
851template int appConfigurator::configUnused<bool>(
bool &v,
const std::string §ion,
const std::string &keyword );
854appConfigurator::configUnused<std::string>( std::string &v,
const std::string §ion,
const std::string &keyword );
865 std::string sect = it->second.section;
870 for(
size_t i = 0; i < sections.size(); ++i )
872 if( sections[i] == sect )
881 sections.push_back( sect );
893 const std::vector<std::string> §ions,
894 const std::vector<std::string> &keywords,
895 const std::vector<std::string> &values )
901 std::string lastSection;
902 for(
size_t i = 0; i < sections.size(); ++i )
904 std::string currSection = sections[i];
906 if( currSection != lastSection && currSection !=
"" )
908 fout <<
"\n[" << currSection <<
"]\n";
911 if(keywords.size() >= i && values.size() >= i)
913 if(keywords[i] !=
"")
915 fout << keywords[i] <<
"=" << values[i] <<
"\n";
918 lastSection = currSection;
An application configuration manager.
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.
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.
void add(const configTarget &tgt)
Add a configTarget.
bool m_sources
Flag controlling whether or not to record config sources.
std::vector< std::string > nonOptions
Non-option arguments from the command line.
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.
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.
Command line options parser.
void parse(int argc, char **argv, std::vector< std::string > *nonOptions=0)
Parse the command line.
int numUnknown()
Get the number of unknown options found by the parser.
void add(const std::string &optName, const char *const shortOpt, const char *const longOpt, int argT)
Add a command line option target.
int count(const std::string &key)
Get the number of times the option was set on the command line.
unsigned int nOpts
The number of options added.
void getAll(std::vector< std::string > &args, const std::string &key)
Fill a vector of strings with the arguments supplied for key, last to first.
int unknown(std::vector< std::string > &unk)
Get a vector of the unknown options found by the parser.
bool optSet(const std::string &key)
Test whether this option was set.
std::string keyword
The config file keyword, read in a "keyword=value" pair.
std::string section
The config file section name, can be empty "".
std::string name
The name of the target.
A wrapper for the ini functions.
size_t count(const std::string §ion, const std::string &name)
Get the number of entries for the given section and name.
int erase(const std::string §ion, const std::string &name)
Erase the entry for the given section and name.
nameMapT names
The map of section=name keys to values.
static int parseKey(std::string §ion, std::string &name, const std::string &key)
Parse a key into its section and name consituents.
int parse(const std::string &fname)
Calls the inih parse function with this->handler.