X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=include%2Foption.h;h=426942bf41cb7cd4616af64ab655a99cee41a8d3;hb=e8dc8567d9b42bc67298e8b9c3249848a74926a2;hp=a77d8f446d19f179b9799ae5f7393d23c4240042;hpb=c85d60a873e21052a470c172df4ba56a1c0d59c6;p=command.git diff --git a/include/option.h b/include/option.h index a77d8f4..426942b 100644 --- a/include/option.h +++ b/include/option.h @@ -26,7 +26,7 @@ namespace command { /** * Current Option name */ - OptionName name; + const OptionName name; /** * Current Option value @@ -44,7 +44,7 @@ namespace command { * @param description Description of current Option * @param function Function used to handle current Option. */ - Option(std::string name, const std::string & description, void (*function)(OptionType)) + Option(const std::string & name, const std::string & description, void (*function)(OptionType)) : Parameter(description), Callable(function), name(name) { } @@ -87,18 +87,21 @@ namespace command { * @throw std::invalid_argument when OptionValue part failed conversion * to OptionType */ - virtual bool understand(const std::string & argv) { - if ((!used) && - (argv.find(name) == 0)) { + virtual bool understand(const std::string & argv) + throw(std::invalid_argument) { + + if ((!used) && (argv.find(name) == 0)) { std::size_t pos = argv.find("="); + if (pos != name.size()) { throw std::invalid_argument("Option: " + name + " requires value but no one has been provided"); } std::stringstream ss; - ss << argv.substr(pos + 1); - ss >> value; + ss >> value;// memory leak? when uncommented and exception is + // thrown, valgrind shows e.g.: + // possibly lost: 380 bytes in 7 blocks if (ss.fail()) { throw std::invalid_argument("Value for option: " + name + " failed conversion to the required type"); @@ -132,7 +135,7 @@ namespace command { /** * Current Option name */ - OptionName name; + const OptionName name; /** Variable indicating if current Option was already used or not */ bool used = false; @@ -145,15 +148,10 @@ namespace command { * @param description Description of current Option * @param function Function used to handle current Option. */ - Option(std::string name, const std::string & description, void (*function)(void)) + Option(const std::string & name, const std::string & description, void (*function)(void)) : Parameter(description), Callable(function), name(name) { } - /** - * - */ - virtual ~Option() { } - /** * */