diff options
-rw-r--r-- | args.hxx | 45 | ||||
-rw-r--r-- | test.cxx | 32 |
2 files changed, 52 insertions, 25 deletions
@@ -2615,16 +2615,18 @@ namespace args /** A default Reader class for argument classes * - * Simply uses a std::istringstream to read into the destination type, and + * If destination type is assignable to std::string it uses an assignment to std::string. + * Otherwise ValueReader simply uses a std::istringstream to read into the destination type, and * raises a ParseError if there are any characters left. */ - template <typename T> struct ValueReader { - bool operator ()(const std::string &name, const std::string &value, T &destination) + template <typename T> + typename std::enable_if<!std::is_assignable<T, std::string>::value, bool>::type + operator ()(const std::string &name, const std::string &value, T &destination) { std::istringstream ss(value); - ss >> destination; + ss >> destination >> std::ws; if (ss.rdbuf()->in_avail() > 0) { @@ -2639,19 +2641,12 @@ namespace args } return true; } - }; - /** std::string specialization for ValueReader - * - * By default, stream extraction into a string splits on white spaces, and - * it is more efficient to ust copy a string into the destination. - */ - template <> - struct ValueReader<std::string> - { - bool operator()(const std::string &, const std::string &value, std::string &destination) + template <typename T> + typename std::enable_if<std::is_assignable<T, std::string>::value, bool>::type + operator()(const std::string &, const std::string &value, T &destination) { - destination.assign(value); + destination = value; return true; } }; @@ -2663,7 +2658,7 @@ namespace args */ template < typename T, - typename Reader = ValueReader<T>> + typename Reader = ValueReader> class ValueFlag : public ValueFlagBase { protected: @@ -2718,7 +2713,7 @@ namespace args */ template < typename T, - typename Reader = ValueReader<T>> + typename Reader = ValueReader> class ImplicitValueFlag : public ValueFlag<T, Reader> { protected: @@ -2777,7 +2772,7 @@ namespace args template < typename T, template <typename...> class List = std::vector, - typename Reader = ValueReader<T>> + typename Reader = ValueReader> class NargsValueFlag : public FlagBase { protected: @@ -2879,7 +2874,7 @@ namespace args template < typename T, template <typename...> class List = std::vector, - typename Reader = ValueReader<T>> + typename Reader = ValueReader> class ValueFlagList : public ValueFlagBase { private: @@ -2984,7 +2979,7 @@ namespace args template < typename K, typename T, - typename Reader = ValueReader<K>, + typename Reader = ValueReader, template <typename...> class Map = std::unordered_map> class MapFlag : public ValueFlagBase { @@ -3059,7 +3054,7 @@ namespace args typename K, typename T, template <typename...> class List = std::vector, - typename Reader = ValueReader<K>, + typename Reader = ValueReader, template <typename...> class Map = std::unordered_map> class MapFlagList : public ValueFlagBase { @@ -3175,7 +3170,7 @@ namespace args */ template < typename T, - typename Reader = ValueReader<T>> + typename Reader = ValueReader> class Positional : public PositionalBase { private: @@ -3224,7 +3219,7 @@ namespace args template < typename T, template <typename...> class List = std::vector, - typename Reader = ValueReader<T>> + typename Reader = ValueReader> class PositionalList : public PositionalBase { private: @@ -3331,7 +3326,7 @@ namespace args template < typename K, typename T, - typename Reader = ValueReader<K>, + typename Reader = ValueReader, template <typename...> class Map = std::unordered_map> class MapPositional : public PositionalBase { @@ -3398,7 +3393,7 @@ namespace args typename K, typename T, template <typename...> class List = std::vector, - typename Reader = ValueReader<K>, + typename Reader = ValueReader, template <typename...> class Map = std::unordered_map> class MapPositionalList : public PositionalBase { @@ -1066,6 +1066,38 @@ TEST_CASE("HelpParams work as expected", "[args]") } +struct StringAssignable +{ +public: + StringAssignable() = default; + StringAssignable(const std::string &p) : path(p) {} + std::string path; + + friend std::istream &operator >> (std::istream &s, StringAssignable &a) + { return s >> a.path; } +}; + +TEST_CASE("ValueParser works as expected", "[args]") +{ + static_assert(std::is_assignable<StringAssignable, std::string>::value, "StringAssignable must be assignable to std::string"); + + args::ArgumentParser p("parser"); + args::ValueFlag<std::string> f(p, "name", "description", {'f'}); + args::ValueFlag<StringAssignable> b(p, "name", "description", {'b'}); + args::ValueFlag<int> i(p, "name", "description", {'i'}); + + REQUIRE_NOTHROW(p.ParseArgs(std::vector<std::string>{"-f", "a b"})); + REQUIRE(args::get(f) == "a b"); + + REQUIRE_NOTHROW(p.ParseArgs(std::vector<std::string>{"-b", "a b"})); + REQUIRE(args::get(b).path == "a b"); + + REQUIRE_NOTHROW(p.ParseArgs(std::vector<std::string>{"-i", "42 "})); + REQUIRE(args::get(i) == 42); + + REQUIRE_NOTHROW(p.ParseArgs(std::vector<std::string>{"-i", " 12"})); + REQUIRE(args::get(i) == 12); + TEST_CASE("ActionFlag works as expected", "[args]") { args::ArgumentParser p("parser"); |