aboutsummaryrefslogtreecommitdiff
path: root/bdep
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-09-20 21:05:04 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-09-22 17:41:12 +0300
commit7cf3492e05e304fa4fdb17763a2bec9363dfcef5 (patch)
treef83db215283d70a91fef3a0869fc381727733356 /bdep
parentaeaa89ac75ac83e3953817de74bb901260b6ac81 (diff)
Allow options and arguments in any order inside argument groups in sync
Also optimize options/arguments parsing in bdep.cxx.
Diffstat (limited to 'bdep')
-rw-r--r--bdep/bdep.cxx14
-rw-r--r--bdep/sync.cxx29
2 files changed, 30 insertions, 13 deletions
diff --git a/bdep/bdep.cxx b/bdep/bdep.cxx
index 3e762e8..7bc747d 100644
--- a/bdep/bdep.cxx
+++ b/bdep/bdep.cxx
@@ -181,6 +181,12 @@ init (const common_options& co,
{
if (opt)
{
+ // Parse the next chunk of options until we reach an argument (or eos).
+ // Stop (rather than fail) on unknown option to handle -@<cfg-name>.
+ //
+ if (o.parse (scan, cli::unknown_mode::stop) && !scan.more ())
+ break;
+
const char* a (scan.peek ());
// If we see first "--", then we are done parsing options.
@@ -194,7 +200,7 @@ init (const common_options& co,
continue;
}
- // @<cfg-name> & -@<cfg-name>
+ // Handle @<cfg-name> & -@<cfg-name>
//
if (*a == '@' || (*a == '-' && a[1] == '@'))
{
@@ -203,10 +209,10 @@ init (const common_options& co,
continue;
}
- // Parse the next chunk of options until we reach an argument (or eos).
+ // Handle unknown option.
//
- if (o.parse (scan))
- continue;
+ if (a[0] == '-' && a[1] != '\0')
+ throw cli::unknown_option (a);
// Fall through.
}
diff --git a/bdep/sync.cxx b/bdep/sync.cxx
index ea76b17..d03f18a 100644
--- a/bdep/sync.cxx
+++ b/bdep/sync.cxx
@@ -4,7 +4,7 @@
#include <bdep/sync.hxx>
#include <list>
-#include <cstring> // strchr()
+#include <cstring> // strchr(), strcmp()
#include <libbpkg/manifest.hxx>
@@ -1305,6 +1305,12 @@ namespace bdep
{
while (gs.more ())
{
+ // Stop (rather than fail) on unknown option to handle
+ // -@<cfg-name>.
+ //
+ if (po.parse (gs, cli::unknown_mode::stop) && !gs.more ())
+ break;
+
const char* a (gs.peek ());
// Handle @<cfg-name> & -@<cfg-name>.
@@ -1316,15 +1322,24 @@ namespace bdep
if (n.empty ())
fail << "missing configuration name in '" << a << "'";
- po.config_name ().emplace_back (move (n), gs.position ());
+ po.config_name ().emplace_back (move (n));
po.config_name_specified (true);
gs.next ();
- continue;
}
+ //
+ // Handle unknown option and argument.
+ //
+ else
+ {
+ // Don't report '-' and '--' as unknown options and let bpkg
+ // deal with arguments other than configuration variables.
+ //
+ if (a[0] == '-' && a[1] != '\0' && strcmp (a, "--") != 0)
+ throw cli::unknown_option (a);
- if (!po.parse (gs))
- break;
+ args.push_back (gs.next ());
+ }
}
}
catch (const cli::exception& e)
@@ -1440,10 +1455,6 @@ namespace bdep
}
}
- // Add the rest of group arguments (e.g., configuration variables).
- //
- for (; gs.more (); args.push_back (gs.next ())) ;
-
args.push_back ("}+");
}