// -*- c++ -*- // Distributed under the BSD 2-Clause License. // See accompanying file LICENSE for details. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "ctor.h" #include "configure.h" #include "rebuild.h" #include "tasks.h" #include "build.h" #include "unittest.h" #include "argparser.h" int main(int argc, char* argv[]) { auto args = std::span(argv, static_cast(argc)); ctor::settings settings{}; const auto& c = ctor::get_configuration(); settings.builddir = c.get(ctor::cfg::builddir, settings.builddir); settings.parallel_processes = std::max(1u, std::thread::hardware_concurrency()) * 2 - 1; if(args.size() > 1 && std::string(args[1]) == "configure") { return configure(settings, argc, argv); } if(args.size() > 1 && std::string(args[1]) == "reconfigure") { return reconfigure(settings, argc, argv); } bool write_compilation_database{false}; std::string compilation_database; bool print_configure_cmd{false}; bool print_configure_db{false}; std::vector add_files; std::vector remove_files; bool no_default_build{false}; // set to true to prevent empty arg list building 'all' target. bool list_files{false}; bool list_targets{false}; bool no_relaunch{false}; // true means no re-launch after rebuild. bool run_unittests{false}; std::vector arguments; arg::Parser opt(argc, argv); opt.set_pos_cb( [&](std::string_view arg) { arguments.emplace_back(std::string(arg)); return 0; }); opt.add('j', "--jobs", std::function([&](int jobs) { settings.parallel_processes = static_cast(jobs); return 0; }), "Number of parallel jobs. (default: cpucount * 2 - 1)"); opt.add('b', "--build-dir", std::function([&](std::string builddir) { settings.builddir = builddir; return 0; }), "Overload output directory for build files (default: '" + settings.builddir + "')."); opt.add('v', "--verbose", std::function([&]() { settings.verbose++; return 0; }), "Be verbose. Add multiple times for more verbosity."); opt.add('q', "--quiet", std::function([&]() { settings.verbose = -1; return 0; }), "Be completely silent."); opt.add('a', "--add", std::function([&](std::string filename) { no_relaunch = true; add_files.emplace_back(filename); return 0; }), "Add specified file to the build configurations."); opt.add('r', "--remove", std::function([&](std::string filename) { no_relaunch = true; remove_files.emplace_back(filename); return 0; }), "Remove specified file from the build configurations."); opt.add('L', "--list-files", std::function([&]() { no_relaunch = true; list_files = true; return 0; }), "List files in the build configurations."); opt.add('l', "--list-targets", std::function([&]() { no_relaunch = true; list_targets = true; return 0; }), "List targets."); opt.add('n', "--dry-run", std::function([&]() { settings.dry_run = true; return 0; }), "Print the commands to be executed, but do not execute them."); opt.add({}, "--configure-cmd", std::function([&]() { no_relaunch = true; print_configure_cmd = true; return 0; }), "Print commandline for last configure."); opt.add({}, "--configure-db", std::function([&]() { no_relaunch = true; print_configure_db = true; return 0; }), "Print entire configure parameter database."); opt.add('d', "--database", std::function([&](std::string database) { no_relaunch = true; write_compilation_database = true; compilation_database = database; return 0; }), "Write compilation database json file."); opt.add('h', "--help", std::function([&]() -> int { std::cout << "Usage: " << args[0] << " [options] [target] ...\n"; std::cout << R"_( where target can be either: configure - run configuration step (cannot be used with other targets). reconfigure - rerun configuration step with the same arguments as last (cannot be used with other targets). clean - clean all generated files. all - build all targets (default) or the name of a target which will be built along with its dependencies. Use '-l' to see a list of possible target names. Options: )_"; opt.help(); exit(0); }), "Print this help text."); opt.set_err_cb( [&](arg::error err, std::string_view arg) { switch(err) { case arg::error::invalid_arg: std::cerr << opt.prog_name() << ": invalid argument for option '" << arg << "'\n"; std::cerr << "Type '" << opt.prog_name() << " -h' for more information.\n"; break; case arg::error::missing_arg: std::cerr << opt.prog_name() << ": option requires and argument '" << arg << "'\n"; std::cerr << "Type '" << opt.prog_name() << " -h' for more information.\n"; break; case arg::error::invalid_opt: std::cerr << opt.prog_name() << ": invalid option '" << arg << "'\n"; std::cerr << "Type '" << opt.prog_name() << " -h' for more information.\n"; break; } }); auto res = opt.parse(); if(res != 0) { return res; } auto verbose_env = std::getenv("V"); if(verbose_env) { settings.verbose = std::atoi(verbose_env); } if(list_files) { no_default_build = true; std::vector files; const auto& configFiles = getConfigFileList(); for(const auto& configFile : configFiles) { files.emplace_back(configFile.file); } const auto& externalConfigFiles = getExternalConfigFileList(); for(const auto& externalConfigFile : externalConfigFiles) { files.emplace_back(externalConfigFile.file); } std::sort(files.begin(), files.end()); for(const auto& file : files) { std::cout << file << "\n"; } } if(!add_files.empty() || !remove_files.empty()) { no_default_build = true; for(const auto& add_file : add_files) { reg(add_file.data()); } for(const auto& remove_file : remove_files) { unreg(remove_file.data()); } // Force rebuild if files were added recompileCheck(settings, 1, argv, no_relaunch == false); } recompileCheck(settings, argc, argv); std::filesystem::path builddir(settings.builddir); std::filesystem::create_directories(builddir); auto all_tasks = getTasks(settings); if(list_targets) { no_default_build = true; auto& targets = getTargets(settings); for(const auto& target : targets) { std::cout << target.config.target << "\n"; } } if(write_compilation_database) { std::ofstream istr(compilation_database); istr << "["; bool first{true}; for(auto task : all_tasks) { auto s = task->toJSON(); if(!s.empty()) { if(!first) { istr << ",\n"; } else { istr << "\n"; } first = false; istr << s; } } istr << "\n]\n"; } if(print_configure_cmd) { no_default_build = true; std::cout << c.get("cmd") << "\n"; } if(print_configure_db) { no_default_build = true; for(const auto& config : c.tools) { std::cout << config.first << ": " << config.second << "\n"; } } for(auto task : all_tasks) { if(task->registerDepTasks(all_tasks)) { return 1; } } bool build_all{!no_default_build}; for(const auto& arg : arguments) { if(arg == "configure") { std::cerr << "The 'configure' target must be the first argument.\n"; return 1; } if(arg == "clean") { build_all = false; std::cout << "Cleaning\n"; for(auto& task : all_tasks) { if(task->clean() != 0) { return 1; } } } else if(arg == "check") { build_all = false; run_unittests = true; std::vector unittest_targets; auto& targets = getTargets(settings); for(const auto& target : targets) { if(target.config.type == ctor::target_type::unit_test || target.config.type == ctor::target_type::unit_test_library) { unittest_targets.push_back(target); } } auto ret = build(settings, "check", unittest_targets, all_tasks); if(ret != 0) { return ret; } } else { build_all = false; if(arg == "all") { std::vector non_unittest_targets; auto& targets = getTargets(settings); for(const auto& target : targets) { if(target.config.type != ctor::target_type::unit_test && target.config.type != ctor::target_type::unit_test_library) { non_unittest_targets.push_back(target); } } auto ret = build(settings, "all", non_unittest_targets, all_tasks); if(ret != 0) { return ret; } } else { auto ret = build(settings, arg, all_tasks); if(ret != 0) { return ret; } } } } if(build_all) { std::vector non_unittest_targets; auto& targets = getTargets(settings); for(const auto& target : targets) { if(target.config.type != ctor::target_type::unit_test && target.config.type != ctor::target_type::unit_test_library) { non_unittest_targets.push_back(target); } } auto ret = build(settings, "all", non_unittest_targets, all_tasks); if(ret != 0) { return ret; } } if(run_unittests) { return runUnitTests(all_tasks, settings); } return 0; }