// SPDX-License-Identifier: Apache-2.0 #include "btop_cli.hpp" #include #include #include #include #include #include #include #include #include #include "btop_shared.hpp" #include "config.h" using namespace std::string_view_literals; static constexpr auto BOLD = "\033[1m"sv; static constexpr auto BOLD_UNDERLINE = "\033[1;4m"sv; static constexpr auto BOLD_RED = "\033[1;31m"sv; static constexpr auto YELLOW = "\033[33m"sv; static constexpr auto RESET = "\033[0m"sv; static void version() noexcept { if constexpr (GIT_COMMIT.empty()) { fmt::println("btop version: {}{}{}", BOLD, Global::Version, RESET); } else { fmt::println("btop version: {}{}+{}{}", BOLD, Global::Version, GIT_COMMIT, RESET); } } static void build_info() noexcept { fmt::println("Compiled with: {} ({})", COMPILER, COMPILER_VERSION); fmt::println("Configured with: {}", CONFIGURE_COMMAND); } static void error(std::string_view msg) noexcept { fmt::println("{}error:{} {}\n", BOLD_RED, RESET, msg); } namespace Cli { [[nodiscard]] auto parse(const std::span args) noexcept -> OrRetCode { Cli cli {}; for (auto it = args.begin(); it != args.end(); ++it) { auto arg = *it; if (arg == "-h" || arg == "--help") { usage(); help(); return OrRetCode { 0 }; } if (arg == "-v" || arg == "-V") { version(); return OrRetCode { 0 }; } if (arg == "--version") { version(); build_info(); return OrRetCode { 0 }; } if (arg == "-d" || arg == "--debug") { cli.debug = true; continue; } if (arg == "--force-utf") { cli.force_utf = true; continue; } if (arg == "-l" || arg == "--low-color") { cli.low_color = true; continue; } if (arg == "-t" || arg == "--tty") { if (cli.force_tty.has_value()) { error("tty mode can't be set twice"); return OrRetCode { 1 }; } cli.force_tty = std::make_optional(true); continue; } if (arg == "--no-tty") { if (cli.force_tty.has_value()) { error("tty mode can't be set twice"); return OrRetCode { 1 }; } cli.force_tty = std::make_optional(false); continue; } if (arg == "-c" || arg == "--config") { // This flag requires an argument. if (++it == args.end()) { error("Config requires an argument"); return OrRetCode { 1 }; } auto arg = *it; auto config_file = stdfs::path { arg }; if (stdfs::is_directory(config_file)) { error("Config file can't be a directory"); return OrRetCode { 1 }; } cli.config_file = std::make_optional(config_file); continue; } if (arg == "-p" || arg == "--preset") { // This flag requires an argument. if (++it == args.end()) { error("Preset requires an argument"); return OrRetCode { 1 }; } auto arg = *it; try { auto preset_id = std::clamp(std::stoi(arg.data()), 0, 9); cli.preset = std::make_optional(preset_id); } catch (std::invalid_argument& e) { error("Preset must be a positive number"); return OrRetCode { 1 }; } continue; } if (arg == "-u" || arg == "--update") { // This flag requires an argument. if (++it == args.end()) { error("Update requires an argument"); return OrRetCode { 1 }; } auto arg = *it; try { auto refresh_rate = std::min(std::stoul(arg.data()), 100UL); cli.updates = refresh_rate; } catch (std::invalid_argument& e) { error("Update must be a positive number"); return OrRetCode { 1 }; } continue; } error(fmt::format("Unknown argument '{}{}{}'", YELLOW, arg, RESET)); return OrRetCode { 1 }; } return OrRetCode { cli }; } void usage() noexcept { fmt::println("{0}Usage:{1} {2}btop{1} [OPTIONS]\n", BOLD_UNDERLINE, RESET, BOLD); } void help() noexcept { fmt::print( "{0}Options:{1}\n" " {2}-c, --config {1} Path to a config file\n" " {2}-d, --debug{1} Start in debug mode with additional logs and metrics\n" " {2} --force-utf{1} Override automatic UTF locale detection\n" " {2}-l, --low-color{1} Disable true color, 256 colors only\n" " {2}-p, --preset {1} Start with a preset (0-9)\n" " {2}-t, --tty{1} Force tty mode with ANSI graph symbols and 16 colors only\n" " {2} --no-tty{1} Force disable tty mode\n" " {2}-u, --update {1} Set an initial update rate in milliseconds\n" " {2}-h, --help{1} Show this help message and exit\n" " {2}-V, --version{1} Show a version message and exit (more with --version)\n", BOLD_UNDERLINE, RESET, BOLD ); } void help_hint() noexcept { fmt::println("For more information, try '{}--help{}'", BOLD, RESET); } } // namespace Cli