From 7cf3492e05e304fa4fdb17763a2bec9363dfcef5 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 20 Sep 2021 21:05:04 +0300 Subject: Allow options and arguments in any order inside argument groups in sync Also optimize options/arguments parsing in bdep.cxx. --- bdep/sync.cxx | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) (limited to 'bdep/sync.cxx') 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 #include -#include // strchr() +#include // strchr(), strcmp() #include @@ -1305,6 +1305,12 @@ namespace bdep { while (gs.more ()) { + // Stop (rather than fail) on unknown option to handle + // -@. + // + if (po.parse (gs, cli::unknown_mode::stop) && !gs.more ()) + break; + const char* a (gs.peek ()); // Handle @ & -@. @@ -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 ("}+"); } -- cgit v1.1