aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-08-05 19:42:04 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-08-06 10:59:20 +0300
commitdc02a15c89993634f7336d5bd54bd9f37746bfbe (patch)
treed2554334458009c124d3e767ca1c5237a62f4a2d
parent9664d2849ee30d63cd10ce5b258f1433a650b488 (diff)
Adapt to support for option positions added to butl::load_default_options()
-rw-r--r--bdep/bdep.cxx32
1 files changed, 23 insertions, 9 deletions
diff --git a/bdep/bdep.cxx b/bdep/bdep.cxx
index 0229776..eba356e 100644
--- a/bdep/bdep.cxx
+++ b/bdep/bdep.cxx
@@ -5,6 +5,7 @@
# include <signal.h> // signal()
#endif
+#include <limits>
#include <cstring> // strcmp()
#include <iostream>
#include <exception> // set_terminate(), terminate_handler
@@ -103,6 +104,20 @@ namespace bdep
main (int argc, char* argv[]);
}
+// Command line arguments starting position.
+//
+// We want the positions of the command line arguments to be after the default
+// options files (parsed in init()). Normally that would be achieved by
+// passing the last position of the previous scanner to the next. The problem
+// is that we parse the command line arguments first (for good reasons). Also
+// the default options files parsing machinery needs the maximum number of
+// arguments to be specified and assigns the positions below this value (see
+// load_default_options() for details). So we are going to "reserve" the first
+// half of the size_t value range for the default options positions and the
+// second half for the command line arguments positions.
+//
+static const size_t args_pos (numeric_limits<size_t>::max () / 2);
+
// Initialize the command option class O with the common options and then
// parse the rest of the command line placing non-option arguments to args.
// Once this is done, use the "final" values of the common options to do
@@ -256,9 +271,15 @@ init (const common_options& co,
trace << "loading " << (r ? "remote " : "local ") << f;
}
},
- "--options-file"),
+ "--options-file",
+ args_pos,
+ 1024),
o);
}
+ catch (const invalid_argument& e)
+ {
+ fail << "unable to load default options files: " << e;
+ }
catch (const pair<path, system_error>& e)
{
fail << "unable to load default options files: " << e.first << ": "
@@ -348,14 +369,7 @@ try
<< system_error (errno, generic_category ()); // Sanitize.
#endif
- // We want the positions of the command line arguments to be after the
- // default options files (parsed in init()). Normally that would be achieved
- // by passing the last position of the previous scanner to the next. The
- // problem is that we parse the command line arguments first (for good
- // reasons). So as a somewhat hackish work around, we are going to "reserve"
- // 256 positions for the default options files.
- //
- argv_file_scanner argv_scan (argc, argv, "--options-file", false, 256);
+ argv_file_scanner argv_scan (argc, argv, "--options-file", false, args_pos);
group_scanner scan (argv_scan);
// First parse common options and --version/--help.