aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor C. Richberger <tcr@absolute-performance.com>2016-05-07 12:23:58 -0600
committerTaylor C. Richberger <tcr@absolute-performance.com>2016-05-07 12:23:58 -0600
commit5ebc21cc2f6c762073317d5e18e944b778908728 (patch)
treee32527a324140ef3b64c438a0d8a680833009887
parentfix ADL. Add unified initializer list (diff)
downloadargs.hxx-5ebc21cc2f6c762073317d5e18e944b778908728.tar.xz
Improve use and documentation
-rw-r--r--README.md33
-rw-r--r--args.hxx71
-rw-r--r--test.cxx26
3 files changed, 75 insertions, 55 deletions
diff --git a/README.md b/README.md
index 3a68dc3..6e1c9a1 100644
--- a/README.md
+++ b/README.md
@@ -73,7 +73,7 @@ There are tons of things this library does not do!
assigning them, rather than what we currently do, which is assiging them as
we go for better simplicity and speed.
-# How do I use it?
+# How do I install it?
```shell
sudo make install
@@ -96,6 +96,19 @@ sudo make installman
This requires Doxygen
+# How do I use it?
+
+Create an ArgumentParser, modify its attributes to fit your needs, add
+arguments through regular argument objects (or create your own), and match them
+with an args::Matcher object (check its construction details in the doxygen
+documentation.
+
+Then you can either call it with args::ArgumentParser::ParseCLI for the full
+command line with program name, or args::ArgumentParser::ParseArguments with
+just the arguments to be parsed. The argument and group variables can then be
+interpreted as a boolean to see if they've been matched, and their arguments
+can be pulled from their value and values attributes, if applicable.
+
# How fast is it?
This should not really be a question you ask when you are looking for an
@@ -150,8 +163,8 @@ int main()
{
std::vector<std::string> arguments(carguments);
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
- args::ArgFlag<int> integer(parser, "integer", "The integer flag", args::Matcher({'i'}, {"int"}));
- args::ArgFlagList<char> characters(parser, "characters", "The character flag", args::Matcher({'c'}, {"char"}));
+ args::ArgFlag<int> integer(parser, "integer", "The integer flag", args::Matcher{'i', "int"});
+ args::ArgFlagList<char> characters(parser, "characters", "The character flag", args::Matcher{'c', "char"});
args::PosArgList<double> numbers(parser, "numbers", "The numbers position list");
parser.ParseArgs(arguments);
const int i = integer.value;
@@ -263,7 +276,7 @@ All the code examples here will be complete code examples, with some output.
int main(int argc, char **argv)
{
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
- args::HelpFlag help(parser, "help", "Display this help menu", args::Matcher({'h'}, {"help"}));
+ args::HelpFlag help(parser, "help", "Display this help menu", args::Matcher{'h', "help"});
try
{
parser.ParseCLI(argc, argv);
@@ -307,7 +320,7 @@ int main(int argc, char **argv)
{
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
args::Group group(parser, "This group is all exclusive:", args::Group::Validators::Xor);
- args::Flag foo(group, "foo", "The foo flag", args::Matcher({'f'}, {"foo"}));
+ args::Flag foo(group, "foo", "The foo flag", args::Matcher{'f', "foo"});
args::Flag bar(group, "bar", "The bar flag", args::Matcher({'b'}));
args::Flag baz(group, "baz", "The baz flag", args::Matcher({"baz"}));
try
@@ -384,7 +397,7 @@ Group validation failed somewhere!
int main(int argc, char **argv)
{
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
- args::HelpFlag help(parser, "help", "Display this help menu", args::Matcher({'h'}, {"help"}));
+ args::HelpFlag help(parser, "help", "Display this help menu", args::Matcher{'h', "help"});
args::ArgFlag<int> integer(parser, "integer", "The integer flag", args::Matcher({'i'}));
args::ArgFlagList<char> characters(parser, "characters", "The character flag", args::Matcher({'c'}));
args::PosArg<std::string> foo(parser, "foo", "The foo position");
@@ -564,9 +577,9 @@ there are unextracted characters left in the stream.
int main(int argc, char **argv)
{
args::ArgumentParser parser("This is a test program with a really long description that is probably going to have to be wrapped across multiple different lines. This is a test to see how the line wrapping works", "This goes after the options. This epilog is also long enough that it will have to be properly wrapped to display correctly on the screen");
- args::HelpFlag help(parser, "HELP", "Show this help menu.", args::Matcher({'h'}, {"help"}));
- args::ArgFlag<std::string> foo(parser, "FOO", "The foo flag.", args::Matcher({'a', 'b', 'c'}, {"a", "b", "c", "the-foo-flag"}));
- args::ArgFlag<std::string> bar(parser, "BAR", "The bar flag. This one has a lot of options, and will need wrapping in the description, along with its long flag list.", args::Matcher({'d', 'e', 'f'}, {"d", "e", "f"}));
+ args::HelpFlag help(parser, "HELP", "Show this help menu.", args::Matcher{'h', "help"});
+ args::ArgFlag<std::string> foo(parser, "FOO", "The foo flag.", args::Matcher{'a', 'b', 'c', "a", "b", "c", "the-foo-flag"});
+ args::ArgFlag<std::string> bar(parser, "BAR", "The bar flag. This one has a lot of options, and will need wrapping in the description, along with its long flag list.", args::Matcher{'d', 'e', 'f', "d", "e", "f"});
args::ArgFlag<std::string> baz(parser, "FOO", "The baz flag. This one has a lot of options, and will need wrapping in the description, even with its short flag list.", args::Matcher({"baz"}));
args::PosArg<std::string> pos1(parser, "POS1", "The pos1 argument.");
args::PosArgList<std::string> poslist1(parser, "POSLIST1", "The poslist1 argument.");
@@ -783,7 +796,7 @@ int main(int argc, char **argv)
args::Group atleastone(xorgroup, "this group provides at-least-one validation:", args::Group::Validators::AtLeastOne);
args::Flag g(atleastone, "g", "test flag", args::Matcher({'g'}));
args::Flag o(atleastone, "o", "test flag", args::Matcher({'o'}));
- args::HelpFlag help(parser, "help", "Show this help menu", args::Matcher({'h'}, {"help"}));
+ args::HelpFlag help(parser, "help", "Show this help menu", args::Matcher{'h', "help"});
try
{
parser.ParseCLI(argc, argv);
diff --git a/args.hxx b/args.hxx
index f079f29..e388aa6 100644
--- a/args.hxx
+++ b/args.hxx
@@ -151,41 +151,49 @@ namespace args
}
};
+ /** A simple unified option type for unified initializer lists
+ */
struct EitherOpt
{
- bool isShort;
- char shortOpt;
- std::string longOpt;
- EitherOpt(const std::string &opt) : isShort(false), longOpt(opt) {}
- EitherOpt(const char *opt) : isShort(false), longOpt(opt) {}
- EitherOpt(const char opt) : isShort(true), shortOpt(opt) {}
- };
-
- std::unordered_set<std::string> GetLong(std::initializer_list<EitherOpt> opts)
- {
- std::unordered_set<std::string> longOpts;
- for (const EitherOpt &opt: opts)
+ const bool isShort;
+ const char shortOpt;
+ const std::string longOpt;
+ EitherOpt(const std::string &opt) : isShort(false), shortOpt(), longOpt(opt) {}
+ EitherOpt(const char *opt) : isShort(false), shortOpt(), longOpt(opt) {}
+ EitherOpt(const char opt) : isShort(true), shortOpt(opt), longOpt() {}
+
+ /** Get just the long options from an initializer list of EitherOpts
+ */
+ static std::unordered_set<std::string> GetLong(std::initializer_list<EitherOpt> opts)
{
- if (!opt.isShort)
+ std::unordered_set<std::string> longOpts;
+ for (const EitherOpt &opt: opts)
{
- longOpts.insert(opt.longOpt);
+ if (!opt.isShort)
+ {
+ longOpts.insert(opt.longOpt);
+ }
}
+ return longOpts;
}
- return longOpts;
- }
- std::unordered_set<char> GetShort(std::initializer_list<EitherOpt> opts)
- {
- std::unordered_set<char> shortOpts;
- for (const EitherOpt &opt: opts)
+ /** Get just the short options from an initializer list of EitherOpts
+ */
+ static std::unordered_set<char> GetShort(std::initializer_list<EitherOpt> opts)
{
- if (opt.isShort)
+ std::unordered_set<char> shortOpts;
+ for (const EitherOpt &opt: opts)
{
- shortOpts.insert(opt.shortOpt);
+ if (opt.isShort)
+ {
+ shortOpts.insert(opt.shortOpt);
+ }
}
+ return shortOpts;
}
- return shortOpts;
- }
+ };
+
+
/** A class of "matchers", specifying short and long options that can possibly be matched
*
@@ -199,6 +207,8 @@ namespace args
public:
/** Specify short and long opts separately as iterators
+ *
+ * ex: `args::Matcher(shortOpts.begin(), shortOpts.end(), longOpts.begin(), longOpts.end())`
*/
template <typename ShortIt, typename LongIt>
Matcher(ShortIt shortOptsStart, ShortIt shortOptsEnd, LongIt longOptsStart, LongIt longOptsEnd) :
@@ -207,23 +217,20 @@ namespace args
{}
/** Specify short and long opts separately as iterables
+ *
+ * ex: `args::Matcher(shortOpts, longOpts)`
*/
template <typename Short, typename Long>
Matcher(Short &&shortIn, Long &&longIn) :
shortOpts(std::begin(shortIn), std::end(shortIn)), longOpts(std::begin(longIn), std::end(longIn))
{}
- /** Specify short and long opts as initializer lists
- */
- Matcher(std::initializer_list<char> shortIn, std::initializer_list<std::string> longIn) :
- shortOpts(std::begin(shortIn), std::end(shortIn)), longOpts(std::begin(longIn), std::end(longIn))
- {}
-
/** Specify a mixed single initializer-list of both short and long opts
+ *
+ * This is the fancy one: `args::Matcher{'a'}`, or `args::Matcher{"foo"}`, or `args::Matcher{"foo", 'f', 'F', "FoO"}`
*/
Matcher(std::initializer_list<EitherOpt> in) :
- shortOpts(GetShort(in)), longOpts(GetLong(in))
- {}
+ shortOpts(EitherOpt::GetShort(in)), longOpts(EitherOpt::GetLong(in)) {}
Matcher(Matcher &&other) : shortOpts(std::move(other.shortOpts)), longOpts(std::move(other.longOpts))
{}
diff --git a/test.cxx b/test.cxx
index 84cd6ce..f94f928 100644
--- a/test.cxx
+++ b/test.cxx
@@ -20,7 +20,7 @@ std::istream& operator>>(std::istream& is, std::tuple<int, int>& ints)
TEST_CASE("Help flag throws Help exception", "[args]")
{
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
- args::HelpFlag help(parser, "help", "Display this help menu", args::Matcher({'h'}, {"help"}));
+ args::HelpFlag help(parser, "help", "Display this help menu", args::Matcher{'h', "help"});
REQUIRE_NOTHROW(parser.ParseArgs(std::vector<std::string>{}));
REQUIRE_THROWS_AS(parser.ParseArgs(std::vector<std::string>{"--help"}), args::Help);
}
@@ -28,7 +28,7 @@ TEST_CASE("Help flag throws Help exception", "[args]")
TEST_CASE("Unknown flags throw exceptions", "[args]")
{
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
- args::HelpFlag help(parser, "help", "Display this help menu", args::Matcher({'h'}, {"help"}));
+ args::HelpFlag help(parser, "help", "Display this help menu", args::Matcher{'h', "help"});
REQUIRE_NOTHROW(parser.ParseArgs(std::vector<std::string>{}));
REQUIRE_THROWS_AS(parser.ParseArgs(std::vector<std::string>{"--Help"}), args::ParseError);
REQUIRE_THROWS_AS(parser.ParseArgs(std::vector<std::string>{"-H"}), args::ParseError);
@@ -37,10 +37,10 @@ TEST_CASE("Unknown flags throw exceptions", "[args]")
TEST_CASE("Boolean flags work as expected, with clustering", "[args]")
{
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
- args::Flag foo(parser, "FOO", "test flag", args::Matcher({'f'}, {"foo"}));
- args::Flag bar(parser, "BAR", "test flag", args::Matcher({'b'}, {"bar"}));
- args::Flag baz(parser, "BAZ", "test flag", args::Matcher({'a'}, {"baz"}));
- args::Flag bix(parser, "BAZ", "test flag", args::Matcher({'x'}, {"bix"}));
+ args::Flag foo(parser, "FOO", "test flag", args::Matcher{'f', "foo"});
+ args::Flag bar(parser, "BAR", "test flag", args::Matcher{'b', "bar"});
+ args::Flag baz(parser, "BAZ", "test flag", args::Matcher{'a', "baz"});
+ args::Flag bix(parser, "BAZ", "test flag", args::Matcher{'x', "bix"});
parser.ParseArgs(std::vector<std::string>{"--baz", "-fb"});
REQUIRE(foo);
REQUIRE(bar);
@@ -51,11 +51,11 @@ TEST_CASE("Boolean flags work as expected, with clustering", "[args]")
TEST_CASE("Argument flags work as expected, with clustering", "[args]")
{
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
- args::ArgFlag<std::string> foo(parser, "FOO", "test flag", args::Matcher({'f'}, {"foo"}));
- args::Flag bar(parser, "BAR", "test flag", args::Matcher({'b'}, {"bar"}));
- args::ArgFlag<double> baz(parser, "BAZ", "test flag", args::Matcher({'a'}, {"baz"}));
- args::ArgFlag<char> bim(parser, "BAZ", "test flag", args::Matcher({'B'}, {"bim"}));
- args::Flag bix(parser, "BAZ", "test flag", args::Matcher({'x'}, {"bix"}));
+ args::ArgFlag<std::string> foo(parser, "FOO", "test flag", args::Matcher{'f', "foo"});
+ args::Flag bar(parser, "BAR", "test flag", args::Matcher{'b', "bar"});
+ args::ArgFlag<double> baz(parser, "BAZ", "test flag", args::Matcher{'a', "baz"});
+ args::ArgFlag<char> bim(parser, "BAZ", "test flag", args::Matcher{'B', "bim"});
+ args::Flag bix(parser, "BAZ", "test flag", args::Matcher{'x', "bix"});
parser.ParseArgs(std::vector<std::string>{"-bftest", "--baz=7.555e2", "--bim", "c"});
REQUIRE(foo);
REQUIRE(foo.value == "test");
@@ -89,7 +89,7 @@ TEST_CASE("Unified argument lists for match work", "[args]")
TEST_CASE("Invalid argument parsing throws parsing exceptions", "[args]")
{
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
- args::ArgFlag<int> foo(parser, "FOO", "test flag", args::Matcher({'f'}, {"foo"}));
+ args::ArgFlag<int> foo(parser, "FOO", "test flag", args::Matcher{'f', "foo"});
REQUIRE_THROWS_AS(parser.ParseArgs(std::vector<std::string>{"--foo=7.5"}), args::ParseError);
REQUIRE_THROWS_AS(parser.ParseArgs(std::vector<std::string>{"--foo", "7a"}), args::ParseError);
REQUIRE_THROWS_AS(parser.ParseArgs(std::vector<std::string>{"--foo", "7e4"}), args::ParseError);
@@ -98,7 +98,7 @@ TEST_CASE("Invalid argument parsing throws parsing exceptions", "[args]")
TEST_CASE("Argument flag lists work as expected", "[args]")
{
args::ArgumentParser parser("This is a test program.", "This goes after the options.");
- args::ArgFlagList<int> foo(parser, "FOO", "test flag", args::Matcher({'f'}, {"foo"}));
+ args::ArgFlagList<int> foo(parser, "FOO", "test flag", args::Matcher{'f', "foo"});
parser.ParseArgs(std::vector<std::string>{"--foo=7", "-f2", "-f", "9", "--foo", "42"});
REQUIRE((foo.values == std::vector<int>{7, 2, 9, 42}));
}