1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
|
/* CLI options framework, for GDB.
Copyright (C) 2017-2024 Free Software Foundation, Inc.
This file is part of GDB.
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */
#ifndef GDB_CLI_CLI_OPTION_H
#define GDB_CLI_CLI_OPTION_H
#include <optional>
#include "gdbsupport/array-view.h"
#include "completer.h"
#include <string>
#include "command.h"
namespace gdb {
namespace option {
/* A type-erased option definition. The actual type of the option is
stored in the TYPE field. Client code cannot define objects of
this type directly (the ctor is protected). Instead, one of the
wrapper types below that extends this (boolean_option_def,
flag_option_def, uinteger_option_def, etc.) should be defined. */
struct option_def
{
/* The ctor is protected because you're supposed to construct using
one of bool_option_def, etc. below. */
protected:
typedef void *(erased_get_var_address_ftype) ();
/* Construct an option. NAME_ is the option's name. VAR_TYPE_
defines the option's type. ERASED_GET_VAR_ADDRESS_ is a pointer
to a function that returns the option's control variable.
SHOW_CMD_CB_ is a pointer to callback for the "show" command that
is installed for this option. SET_DOC_, SHOW_DOC_, HELP_DOC_ are
used to create the option's "set/show" commands. */
constexpr option_def (const char *name_,
var_types var_type_,
const literal_def *extra_literals_,
erased_get_var_address_ftype *erased_get_var_address_,
show_value_ftype *show_cmd_cb_,
const char *set_doc_,
const char *show_doc_,
const char *help_doc_)
: name (name_), type (var_type_), extra_literals (extra_literals_),
erased_get_var_address (erased_get_var_address_),
var_address {},
show_cmd_cb (show_cmd_cb_),
set_doc (set_doc_), show_doc (show_doc_), help_doc (help_doc_)
{}
public:
/* The option's name. */
const char *name;
/* The option's type. */
var_types type;
/* Extra literals, such as `unlimited', accepted in lieu of a number. */
const literal_def *extra_literals;
/* A function that gets the controlling variable's address, type
erased. */
erased_get_var_address_ftype *erased_get_var_address;
/* Get the controlling variable's address. Each type of variable
uses a different union member. We do this instead of having a
single hook that return a "void *", for better type safety. This
way, actual instances of concrete option_def types
(boolean_option_def, etc.) fail to compile if you pass in a
function with incorrect return type. CTX here is the aggregate
object that groups the option variables from which the callback
returns the address of some member. */
union
{
bool *(*boolean) (const option_def &, void *ctx);
unsigned int *(*uinteger) (const option_def &, void *ctx);
int *(*integer) (const option_def &, void *ctx);
const char **(*enumeration) (const option_def &, void *ctx);
std::string *(*string) (const option_def &, void *ctx);
}
var_address;
/* Pointer to null terminated list of enumerated values (like argv).
Only used by var_enum options. */
const char *const *enums = nullptr;
/* True if the option takes an argument. */
bool have_argument = true;
/* The "show" callback to use in the associated "show" command.
E.g., "show print elements". */
show_value_ftype *show_cmd_cb;
/* The set/show/help strings. These are shown in both the help of
commands that use the option group this option belongs to (e.g.,
"help print"), and in the associated commands (e.g., "set/show
print elements", "help set print elements"). */
const char *set_doc;
const char *show_doc;
const char *help_doc;
/* Convenience method that returns THIS as an option_def. Useful
when you're putting an option_def subclass in an option_def
array_view. */
const option_def &def () const
{
return *this;
}
};
namespace detail
{
/* Get the address of the option's value, cast to the right type.
RetType is the restored type of the variable, and Context is the
restored type of the context pointer. */
template<typename RetType, typename Context>
static inline RetType *
get_var_address (const option_def &option, void *ctx)
{
using unerased_ftype = RetType *(Context *);
unerased_ftype *fun = (unerased_ftype *) option.erased_get_var_address;
return fun ((Context *) ctx);
}
/* Convenience identity helper that just returns SELF. */
template<typename T>
static T *
return_self (T *self)
{
return self;
}
} /* namespace detail */
/* Follows the definitions of the option types that client code should
define. Note that objects of these types are placed in option_def
arrays, by design, so they must not have data fields of their
own. */
/* A var_boolean command line option. */
template<typename Context>
struct boolean_option_def : option_def
{
boolean_option_def (const char *long_option_,
bool *(*get_var_address_cb_) (Context *),
show_value_ftype *show_cmd_cb_,
const char *set_doc_,
const char *show_doc_ = nullptr,
const char *help_doc_ = nullptr)
: option_def (long_option_, var_boolean, nullptr,
(erased_get_var_address_ftype *) get_var_address_cb_,
show_cmd_cb_,
set_doc_, show_doc_, help_doc_)
{
var_address.boolean = detail::get_var_address<bool, Context>;
}
};
/* A flag command line option. This is a var_boolean option under the
hood, but unlike boolean options, flag options don't take an on/off
argument. */
template<typename Context = bool>
struct flag_option_def : boolean_option_def<Context>
{
flag_option_def (const char *long_option_,
bool *(*var_address_cb_) (Context *),
const char *set_doc_,
const char *help_doc_ = nullptr)
: boolean_option_def<Context> (long_option_,
var_address_cb_,
NULL,
set_doc_, NULL, help_doc_)
{
this->have_argument = false;
}
flag_option_def (const char *long_option_,
const char *set_doc_,
const char *help_doc_ = nullptr)
: boolean_option_def<Context> (long_option_,
gdb::option::detail::return_self,
NULL,
set_doc_, nullptr, help_doc_)
{
this->have_argument = false;
}
};
/* A var_uinteger command line option. */
template<typename Context>
struct uinteger_option_def : option_def
{
uinteger_option_def (const char *long_option_,
unsigned int *(*get_var_address_cb_) (Context *),
const literal_def *extra_literals_,
show_value_ftype *show_cmd_cb_,
const char *set_doc_,
const char *show_doc_ = nullptr,
const char *help_doc_ = nullptr)
: option_def (long_option_, var_uinteger, extra_literals_,
(erased_get_var_address_ftype *) get_var_address_cb_,
show_cmd_cb_,
set_doc_, show_doc_, help_doc_)
{
var_address.uinteger = detail::get_var_address<unsigned int, Context>;
}
uinteger_option_def (const char *long_option_,
unsigned int *(*get_var_address_cb_) (Context *),
show_value_ftype *show_cmd_cb_,
const char *set_doc_,
const char *show_doc_ = nullptr,
const char *help_doc_ = nullptr)
: uinteger_option_def (long_option_, get_var_address_cb_, nullptr,
show_cmd_cb_, set_doc_, show_doc_, help_doc_)
{ /* Nothing. */ }
};
/* A var_pinteger command line option. */
template<typename Context>
struct pinteger_option_def : option_def
{
pinteger_option_def (const char *long_option_,
int *(*get_var_address_cb_) (Context *),
const literal_def *extra_literals_,
show_value_ftype *show_cmd_cb_,
const char *set_doc_,
const char *show_doc_ = nullptr,
const char *help_doc_ = nullptr)
: option_def (long_option_, var_pinteger, extra_literals_,
(erased_get_var_address_ftype *) get_var_address_cb_,
show_cmd_cb_,
set_doc_, show_doc_, help_doc_)
{
var_address.integer = detail::get_var_address<int, Context>;
}
pinteger_option_def (const char *long_option_,
int *(*get_var_address_cb_) (Context *),
show_value_ftype *show_cmd_cb_,
const char *set_doc_,
const char *show_doc_ = nullptr,
const char *help_doc_ = nullptr)
: pinteger_option_def (long_option_, get_var_address_cb_, nullptr,
show_cmd_cb_, set_doc_, show_doc_, help_doc_)
{ /* Nothing. */ }
};
/* An var_enum command line option. */
template<typename Context>
struct enum_option_def : option_def
{
enum_option_def (const char *long_option_,
const char *const *enumlist,
const char **(*get_var_address_cb_) (Context *),
show_value_ftype *show_cmd_cb_,
const char *set_doc_,
const char *show_doc_ = nullptr,
const char *help_doc_ = nullptr)
: option_def (long_option_, var_enum, nullptr,
(erased_get_var_address_ftype *) get_var_address_cb_,
show_cmd_cb_,
set_doc_, show_doc_, help_doc_)
{
var_address.enumeration = detail::get_var_address<const char *, Context>;
this->enums = enumlist;
}
};
/* A var_string command line option. */
template<typename Context>
struct string_option_def : option_def
{
string_option_def (const char *long_option_,
std::string *(*get_var_address_cb_) (Context *),
show_value_ftype *show_cmd_cb_,
const char *set_doc_,
const char *show_doc_ = nullptr,
const char *help_doc_ = nullptr)
: option_def (long_option_, var_string, nullptr,
(erased_get_var_address_ftype *) get_var_address_cb_,
show_cmd_cb_,
set_doc_, show_doc_, help_doc_)
{
var_address.string = detail::get_var_address<std::string, Context>;
}
};
/* A var_filename command line option. */
template<typename Context>
struct filename_option_def : option_def
{
filename_option_def (const char *long_option_,
std::string *(*get_var_address_cb_) (Context *),
show_value_ftype *show_cmd_cb_,
const char *set_doc_,
const char *show_doc_ = nullptr,
const char *help_doc_ = nullptr)
: option_def (long_option_, var_filename, nullptr,
(erased_get_var_address_ftype *) get_var_address_cb_,
show_cmd_cb_,
set_doc_, show_doc_, help_doc_)
{
var_address.string = detail::get_var_address<std::string, Context>;
}
};
/* A group of options that all share the same context pointer to pass
to the options' get-current-value callbacks. */
struct option_def_group
{
/* The list of options. */
gdb::array_view<const option_def> options;
/* The context pointer to pass to the options' get-current-value
callbacks. */
void *ctx;
};
/* Modes of operation for process_options. */
enum process_options_mode
{
/* In this mode, options are only processed if we find a "--"
delimiter. Throws an error if unknown options are found. */
PROCESS_OPTIONS_REQUIRE_DELIMITER,
/* In this mode, a "--" delimiter is not required. Throws an error
if unknown options are found, regardless of whether a delimiter
is present. */
PROCESS_OPTIONS_UNKNOWN_IS_ERROR,
/* In this mode, a "--" delimiter is not required. If an unknown
option is found, assume it is the command's argument/operand. */
PROCESS_OPTIONS_UNKNOWN_IS_OPERAND,
};
/* Process ARGS, using OPTIONS_GROUP as valid options. Returns true
if the string has been fully parsed and there are no operands to
handle by the caller. Return false if options were parsed, and
*ARGS now points at the first operand. */
extern bool process_options
(const char **args,
process_options_mode mode,
gdb::array_view<const option_def_group> options_group);
/* Complete ARGS on options listed by OPTIONS_GROUP. Returns true if
the string has been fully parsed and there are no operands to
handle by the caller. Return false if options were parsed, and
*ARGS now points at the first operand. */
extern bool complete_options
(completion_tracker &tracker,
const char **args,
process_options_mode mode,
gdb::array_view<const option_def_group> options_group);
/* Complete on all options listed by OPTIONS_GROUP. */
extern void
complete_on_all_options (completion_tracker &tracker,
gdb::array_view<const option_def_group> options_group);
/* Return a string with the result of replacing %OPTIONS% in HELP_TMLP
with an auto-generated "help" string fragment for all the options
in OPTIONS_GROUP. */
extern std::string build_help
(const char *help_tmpl,
gdb::array_view<const option_def_group> options_group);
/* Install set/show commands for options defined in OPTIONS. DATA is
a pointer to the structure that holds the data associated with the
OPTIONS array. */
extern void add_setshow_cmds_for_options (command_class cmd_class, void *data,
gdb::array_view<const option_def> options,
struct cmd_list_element **set_list,
struct cmd_list_element **show_list);
} /* namespace option */
} /* namespace gdb */
#endif /* GDB_CLI_CLI_OPTION_H */
|