/* vim:set ts=2 sw=2 sts=2 et: */ /** * \author Marcus Holland-Moritz (github@mhxnet.de) * \copyright Copyright (c) Marcus Holland-Moritz * * This file is part of dwarfs. * * dwarfs is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * dwarfs is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with dwarfs. If not, see . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace { using namespace dwarfs::tool; using namespace std::string_view_literals; constexpr dwarfs::sorted_array_map functions{ #ifdef DWARFS_UNIVERSAL_FUSE_DRIVER std::pair{"dwarfs"sv, &dwarfs_main}, #endif #ifdef DWARFS_UNIVERSAL_MKDWARFS std::pair{"mkdwarfs"sv, &mkdwarfs_main}, #endif #ifdef DWARFS_UNIVERSAL_DWARFSCK std::pair{"dwarfsck"sv, &dwarfsck_main}, #endif #ifdef DWARFS_UNIVERSAL_DWARFSEXTRACT std::pair{"dwarfsextract"sv, &dwarfsextract_main}, #endif }; bool looks_like_executable(std::filesystem::path const& path) { auto const ext = path.extension().string(); return ext.empty() #ifdef _WIN32 || ext == ".exe" #endif ; } } // namespace int SYS_MAIN(int argc, sys_char** argv) { auto path = std::filesystem::path(argv[0]); // first, see if we are called as a copy/hardlink/symlink if (looks_like_executable(path)) { auto stem = path.stem().string(); if (auto it = functions.find(stem); it != functions.end()) { return main_adapter(it->second).safe(argc, argv); } // see if the stem has an appended version and try removing that if (auto pos = stem.find_first_of('-'); pos != std::string::npos && pos + 1 < stem.size() && std::isdigit(stem[pos + 1])) { if (auto it = functions.find(stem.substr(0, pos)); it != functions.end()) { std::cerr << "running " << stem << " as " << stem.substr(0, pos) << "\n"; return main_adapter(it->second).safe(argc, argv); } } } // if not, see if we can find a --tool=... argument if (argc > 1) { auto tool_arg = sys_string_to_string(argv[1]); if (tool_arg.starts_with("--tool=")) { if (auto it = functions.find(tool_arg.substr(7)); it != functions.end()) { std::vector argv_copy; argv_copy.reserve(argc - 1); argv_copy.emplace_back(argv[0]); std::copy(argv + 2, argv + argc, std::back_inserter(argv_copy)); return main_adapter(it->second).safe(argc - 1, argv_copy.data()); } } } // nope, just print the help auto tools = ranges::views::keys(functions) | ranges::views::join(", "sv) | ranges::to; // clang-format off std::cout << tool_header_nodeps(DWARFS_UNIVERSAL_NAME) << "Command line options:\n" << " --tool= " "which tool to run; available tools are:\n" << " " << tools << "\n\n"; // clang-format on return 0; }