// file : bpkg/bpkg.cxx -*- C++ -*- // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef _WIN32 # include // signal() #endif #include #include // set_terminate(), terminate_handler #include // enable_if, is_base_of #include // backtrace() #include #include #include #include // Commands. // #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using namespace butl; using namespace bpkg; namespace bpkg { // Deduce the default options files and the directory to start searching // from based on the command line options and arguments. // // default_options_files // options_files (const char* cmd, const xxx_options&, const strings& args); // Return the default options files and the configuration directory as a // search start directory for commands that operate on a configuration (and // thus have their options derived from configuration_options). // // Note that we don't support package-level default options files. // static inline default_options_files options_files (const char* cmd, const configuration_options& o, const strings&) { // bpkg.options // bpkg-.options return default_options_files { {path ("bpkg.options"), path (string ("bpkg-") + cmd + ".options")}, normalize (o.directory (), "configuration")}; } // Return the default options files without search start directory for // commands that don't operate on a configuration (and thus their options // are not derived from configuration_options). // template static inline typename enable_if::value, default_options_files>::type options_files (const char* cmd, const O&, const strings&) { // bpkg.options // bpkg-.options return default_options_files { {path ("bpkg.options"), path (string ("bpkg-") + cmd + ".options")}, nullopt /* start */}; } // Merge the default options and the command line options. Fail if options // used to deduce the default options files or the start directory appear in // an options file (or for other good reasons). // // xxx_options // merge_options (const default_options&, const xxx_options&); // Merge the default options and the command line options for commands // that operate on configuration. Fail if --directory|-d appears in the // options file to avoid the chicken and egg problem. // template static inline typename enable_if::value, O>::type merge_options (const default_options& defs, const O& cmd) { return merge_default_options ( defs, cmd, [] (const default_options_entry& e, const O&) { if (e.options.directory_specified ()) fail (e.file) << "--directory|-d in default options file"; }); } // Merge the default options and the command line options for commands that // allow any option in the options files (and thus their options are not // derived from configuration_options). // template static inline typename enable_if::value, O>::type merge_options (const default_options& defs, const O& cmd) { return merge_default_options (defs, cmd); } int main (int argc, char* argv[]); } // Get -d|--directory value if the option class O has it and empty path // otherwise. Note that for some commands (like rep-info) that allow // specifying empty path, the returned value is a string, not a dir_path. // template static inline auto cfg_dir (const O* o) -> decltype(o->directory ()) {return o->directory ();} static inline auto cfg_dir (...) -> const dir_path& {return empty_dir_path;} // 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 // global initializations (verbosity level, etc). // template static O init (const common_options& co, cli::group_scanner& scan, strings& args, const char* cmd, bool keep_sep, bool tmp) { tracer trace ("init"); O o; static_cast (o) = co; // We want to be able to specify options and arguments in any order (it is // really handy to just add -v at the end of the command line). // for (bool opt (true); scan.more (); ) { if (opt) { // If we see first "--", then we are done parsing options. // if (strcmp (scan.peek (), "--") == 0) { if (!keep_sep) scan.next (); opt = false; continue; } // Parse the next chunk of options until we reach an argument (or eos). // if (o.parse (scan)) continue; // Fall through. } // Copy over the argument including the group. // using scanner = cli::scanner; using group_scanner = cli::group_scanner; args.push_back (group_scanner::escape (scan.next ())); scanner& gscan (scan.group ()); if (gscan.more ()) { args.push_back ("+{"); while (gscan.more ()) args.push_back (group_scanner::escape (gscan.next ())); args.push_back ("}"); } } // Note that the diagnostics verbosity level can only be calculated after // default options are loaded and merged (see below). Thus, to trace the // default options files search, we refer to the verbosity level specified // on the command line. // auto verbosity = [&o] () { return o.verbose_specified () ? o.verbose () : o.V () ? 3 : o.v () ? 2 : o.quiet () ? 0 : 1; }; // Handle default options files. // // Note: don't need to use group_scaner (no arguments in options files). // if (!o.no_default_options ()) // Command line option. try { bpkg::optional extra; if (o.default_options_specified ()) extra = o.default_options (); o = merge_options ( load_default_options ( nullopt /* sys_dir */, path::home_directory (), extra, options_files (cmd, o, args), [&trace, &verbosity] (const path& f, bool r, bool o) { if (verbosity () >= 3) { if (o) trace << "treating " << f << " as " << (r ? "remote" : "local"); else trace << "loading " << (r ? "remote " : "local ") << f; } }), o); } catch (const pair& e) { fail << "unable to load default options files: " << e.first << ": " << e.second; } catch (const system_error& e) { fail << "unable to obtain home directory: " << e; } // Global initializations. // // Diagnostics verbosity. // verb = verbosity (); // Temporary directory. // if (tmp) init_tmp (dir_path (cfg_dir (&o))); return o; } // Print backtrace if terminating due to an unhandled exception. Note that // custom_terminate is non-static and not a lambda to reduce the noise. // static terminate_handler default_terminate; void custom_terminate () { *diag_stream << backtrace (); if (default_terminate != nullptr) default_terminate (); } int bpkg:: main (int argc, char* argv[]) try { using namespace cli; default_terminate = set_terminate (custom_terminate); stderr_term = fdterm (stderr_fd ()); exec_dir = path (argv[0]).directory (); // This is a little hack to make our baseutils for Windows work when called // with absolute path. In a nutshell, MSYS2's exec*p() doesn't search in the // parent's executable directory, only in PATH. And since we are running // without a shell (that would read /etc/profile which sets PATH to some // sensible values), we are only getting Win32 PATH values. And MSYS2 /bin // is not one of them. So what we are going to do is add /bin at the end of // PATH (which will be passed as is by the MSYS2 machinery). This will make // MSYS2 search in /bin (where our baseutils live). And for everyone else // this should be harmless since it is not a valid Win32 path. // #ifdef _WIN32 { string mp; if (optional p = getenv ("PATH")) { mp = move (*p); mp += ';'; } mp += "/bin"; setenv ("PATH", mp); } #endif // On POSIX ignore SIGPIPE which is signaled to a pipe-writing process if // the pipe reading end is closed. Note that by default this signal // terminates a process. Also note that there is no way to disable this // behavior on a file descriptor basis or for the write() function call. // #ifndef _WIN32 if (signal (SIGPIPE, SIG_IGN) == SIG_ERR) fail << "unable to ignore broken pipe (SIGPIPE) signal: " << system_error (errno, generic_category ()); // Sanitize. #endif argv_file_scanner argv_scan (argc, argv, "--options-file"); group_scanner scan (argv_scan); // First parse common options and --version/--help. // options o; o.parse (scan, unknown_mode::stop); if (o.version ()) { cout << "bpkg " << BPKG_VERSION_ID << endl << "libbpkg " << LIBBPKG_VERSION_ID << endl << "libbutl " << LIBBUTL_VERSION_ID << endl << "Copyright (c) 2014-2019 Code Synthesis Ltd" << endl << "This is free software released under the MIT license." << endl; return 0; } strings argsv; // To be filled by parse() above. vector_scanner vect_args (argsv); group_scanner args (vect_args); const common_options& co (o); if (o.help ()) return help (init (co, scan, argsv, "help", false /* keep_sep */, false /* tmp */), "", nullptr); // The next argument should be a command. // if (!scan.more ()) fail << "bpkg command expected" << info << "run 'bpkg help' for more information"; int cmd_argc (2); char* cmd_argv[] {argv[0], const_cast (scan.next ())}; commands cmd; cmd.parse (cmd_argc, cmd_argv, true, unknown_mode::stop); if (cmd_argc != 1) fail << "unknown bpkg command/option '" << cmd_argv[1] << "'" << info << "run 'bpkg help' for more information"; // If the command is 'help', then what's coming next is another // command. Parse it into cmd so that we only need to check for // each command in one place. // bool h (cmd.help ()); help_options ho; if (h) { ho = init (co, scan, argsv, "help", false /* keep_sep */, false /* tmp */); if (args.more ()) { cmd_argc = 2; cmd_argv[1] = const_cast (args.next ()); // First see if this is a command. // cmd = commands (); // Clear the help option. cmd.parse (cmd_argc, cmd_argv, true, unknown_mode::stop); // If not, then it got to be a help topic. // if (cmd_argc != 1) return help (ho, cmd_argv[1], nullptr); } else return help (ho, "", nullptr); } // Handle commands. // int r (1); for (;;) // Breakout loop. try { // help // if (cmd.help ()) { assert (h); r = help (ho, "help", print_bpkg_help_usage); break; } // Commands. // // if (cmd.pkg_verify ()) // { // if (h) // r = help (ho, "pkg-verify", print_bpkg_pkg_verify_usage); // else // r = pkg_verify (init (co, // scan, // argsv, // "pkg-verify", // false /* keep_sep */, // true /* tmp */), // args); // // break; // } // #define COMMAND_IMPL(NP, SP, CMD, SEP, TMP) \ if (cmd.NP##CMD ()) \ { \ if (h) \ r = help (ho, SP#CMD, print_bpkg_##NP##CMD##_usage); \ else \ r = NP##CMD (init (co, \ scan, \ argsv, \ SP#CMD, \ SEP, \ TMP), \ args); \ \ break; \ } // cfg-* commands // #define CFG_COMMAND(CMD, TMP) COMMAND_IMPL(cfg_, "cfg-", CMD, false, TMP) CFG_COMMAND (create, false); // Temp dir initialized manually. // pkg-* commands // #define PKG_COMMAND(CMD, SEP) COMMAND_IMPL(pkg_, "pkg-", CMD, SEP, true) // These commands need the '--' separator to be kept in args. // PKG_COMMAND (build, true); PKG_COMMAND (clean, true); PKG_COMMAND (configure, true); PKG_COMMAND (install, true); PKG_COMMAND (test, true); PKG_COMMAND (uninstall, true); PKG_COMMAND (update, true); PKG_COMMAND (checkout, false); PKG_COMMAND (disfigure, false); PKG_COMMAND (drop, false); PKG_COMMAND (fetch, false); PKG_COMMAND (purge, false); PKG_COMMAND (status, false); PKG_COMMAND (unpack, false); PKG_COMMAND (verify, false); // rep-* commands // #define REP_COMMAND(CMD) COMMAND_IMPL(rep_, "rep-", CMD, false, true) REP_COMMAND (add); REP_COMMAND (create); REP_COMMAND (fetch); REP_COMMAND (info); REP_COMMAND (list); REP_COMMAND (remove); assert (false); fail << "unhandled command"; } catch (const failed&) { r = 1; break; } clean_tmp (true /* ignore_error */); if (r != 0) return r; // Warn if args contain some leftover junk. We already successfully // performed the command so failing would probably be misleading. // if (args.more ()) { diag_record dr; dr << warn << "ignoring unexpected argument(s)"; while (args.more ()) dr << " '" << args.next () << "'"; } return 0; } catch (const failed&) { return 1; // Diagnostics has already been issued. } catch (const cli::exception& e) { error << e; return 1; } /* catch (const std::exception& e) { error << e; return 1; } */ int main (int argc, char* argv[]) { return bpkg::main (argc, argv); }