|
| 1 | +/** |
| 2 | + * Copyright Soramitsu Co., Ltd. All Rights Reserved. |
| 3 | + * SPDX-License-Identifier: Apache-2.0 |
| 4 | + */ |
| 5 | + |
| 6 | +#pragma once |
| 7 | + |
| 8 | +#include <boost/optional.hpp> |
| 9 | +#include <boost/program_options/options_description.hpp> |
| 10 | +#include <map> |
| 11 | +#include <memory> |
| 12 | +#include <typeindex> |
| 13 | + |
| 14 | +#include "cli/try.hpp" |
| 15 | + |
| 16 | +#define CLI_BOOL(NAME, DESCRIPTION) \ |
| 17 | + struct { \ |
| 18 | + bool v{}; \ |
| 19 | + void operator()(Opts &opts) { \ |
| 20 | + opts.add_options()(NAME, po::bool_switch(&v), DESCRIPTION); \ |
| 21 | + } \ |
| 22 | + operator bool() const { \ |
| 23 | + return v; \ |
| 24 | + } \ |
| 25 | + } |
| 26 | + |
| 27 | +#define CLI_DEFAULT(NAME, DESCRIPTION, TYPE, INIT) \ |
| 28 | + struct { \ |
| 29 | + TYPE v INIT; \ |
| 30 | + void operator()(Opts &opts) { \ |
| 31 | + opts.add_options()(NAME, po::value(&v), DESCRIPTION); \ |
| 32 | + } \ |
| 33 | + auto &operator*() const { \ |
| 34 | + return v; \ |
| 35 | + } \ |
| 36 | + auto &operator*() { \ |
| 37 | + return v; \ |
| 38 | + } \ |
| 39 | + auto *operator->() const { \ |
| 40 | + return &v; \ |
| 41 | + } \ |
| 42 | + auto *operator->() { \ |
| 43 | + return &v; \ |
| 44 | + } \ |
| 45 | + } |
| 46 | + |
| 47 | +#define CLI_OPTIONAL(NAME, DESCRIPTION, TYPE) \ |
| 48 | + struct { \ |
| 49 | + boost::optional<TYPE> v; \ |
| 50 | + void operator()(Opts &opts) { \ |
| 51 | + opts.add_options()(NAME, po::value(&v), DESCRIPTION); \ |
| 52 | + } \ |
| 53 | + operator bool() const { \ |
| 54 | + return v.operator bool(); \ |
| 55 | + } \ |
| 56 | + void check() const { \ |
| 57 | + if (!v) { \ |
| 58 | + throw ::fc::cli::CliError{"--{} argument is required but missing", \ |
| 59 | + NAME}; \ |
| 60 | + } \ |
| 61 | + } \ |
| 62 | + auto &operator*() const { \ |
| 63 | + check(); \ |
| 64 | + return *v; \ |
| 65 | + } \ |
| 66 | + auto &operator*() { \ |
| 67 | + check(); \ |
| 68 | + return *v; \ |
| 69 | + } \ |
| 70 | + auto *operator->() const { \ |
| 71 | + return &**this; \ |
| 72 | + } \ |
| 73 | + auto *operator->() { \ |
| 74 | + return &**this; \ |
| 75 | + } \ |
| 76 | + } |
| 77 | + |
| 78 | +#define CLI_OPTS() ::fc::cli::Opts opts() |
| 79 | +#define CLI_RUN() \ |
| 80 | + static ::fc::cli::RunResult run( \ |
| 81 | + ::fc::cli::ArgsMap &argm, Args &args, ::fc::cli::Argv &&argv) |
| 82 | +#define CLI_NO_RUN() constexpr static std::nullptr_t run{nullptr}; |
| 83 | + |
| 84 | +namespace fc::cli { |
| 85 | + namespace po = boost::program_options; |
| 86 | + using Opts = po::options_description; |
| 87 | + |
| 88 | + using RunResult = void; |
| 89 | + struct ArgsMap { |
| 90 | + std::map<std::type_index, std::shared_ptr<void>> _; |
| 91 | + template <typename Args> |
| 92 | + void add(Args &&v) { |
| 93 | + _.emplace(typeid(Args), std::make_shared<Args>(std::forward<Args>(v))); |
| 94 | + } |
| 95 | + template <typename Cmd> |
| 96 | + typename Cmd::Args &of() { |
| 97 | + return *reinterpret_cast<typename Cmd::Args *>( |
| 98 | + _.at(typeid(typename Cmd::Args)).get()); |
| 99 | + } |
| 100 | + }; |
| 101 | + // note: Args is defined inside command |
| 102 | + using Argv = std::vector<std::string>; |
| 103 | + |
| 104 | + const std::string &cliArgv(const Argv &argv, |
| 105 | + size_t i, |
| 106 | + const std::string_view &name) { |
| 107 | + if (i < argv.size()) { |
| 108 | + return argv[i]; |
| 109 | + } |
| 110 | + throw CliError{"positional argument {} is required but missing", name}; |
| 111 | + } |
| 112 | + template <typename T> |
| 113 | + T cliArgv(const std::string &arg, const std::string_view &name) { |
| 114 | + boost::any out; |
| 115 | + try { |
| 116 | + po::value<T>()->xparse(out, Argv{arg}); |
| 117 | + } catch (po::validation_error &e) { |
| 118 | + e.set_option_name(std::string{name}); |
| 119 | + throw; |
| 120 | + } |
| 121 | + return boost::any_cast<T>(out); |
| 122 | + } |
| 123 | + template <typename T> |
| 124 | + T cliArgv(const Argv &argv, size_t i, const std::string_view &name) { |
| 125 | + return cliArgv<T>(cliArgv(argv, i, name), name); |
| 126 | + } |
| 127 | + |
| 128 | + struct Empty { |
| 129 | + struct Args { |
| 130 | + CLI_OPTS() { |
| 131 | + return {}; |
| 132 | + } |
| 133 | + }; |
| 134 | + CLI_NO_RUN(); |
| 135 | + }; |
| 136 | + using Group = Empty; |
| 137 | + |
| 138 | + struct ShowHelp {}; |
| 139 | +} // namespace fc::cli |
0 commit comments