Codechange: internally use a span of arguments for GetOptData

This commit is contained in:
Rubidium
2024-04-10 22:21:56 +02:00
committed by rubidium42
parent 5592b4409b
commit afd7878de0
5 changed files with 25 additions and 34 deletions

View File

@@ -21,15 +21,14 @@
*/
int GetOptData::GetOpt()
{
char *s = this->cont;
const char *s = this->cont;
if (s == nullptr) {
if (this->numleft == 0) return -1; // No arguments left -> finished.
if (this->arguments.empty()) return -1; // No arguments left -> finished.
s = this->argv[0];
s = this->arguments[0];
if (*s != '-') return -1; // No leading '-' -> not an option -> finished.
this->argv++;
this->numleft--;
this->arguments = this->arguments.subspan(1);
/* Is it a long option? */
for (auto &option : this->options) {
@@ -68,14 +67,13 @@ int GetOptData::GetOpt(const OptionData &option)
return option.id;
}
/* No more arguments, either return an error or a value-less option. */
if (this->numleft == 0) return (option.type == ODF_HAS_VALUE) ? -2 : option.id;
if (this->arguments.empty()) return (option.type == ODF_HAS_VALUE) ? -2 : option.id;
/* Next argument looks like another option, let's not return it as option value. */
if (option.type == ODF_OPTIONAL_VALUE && this->argv[0][0] == '-') return option.id;
if (option.type == ODF_OPTIONAL_VALUE && this->arguments[0][0] == '-') return option.id;
this->opt = this->argv[0]; // Next argument is the option value.
this->argv++;
this->numleft--;
this->opt = this->arguments[0]; // Next argument is the option value.
this->arguments = this->arguments.subspan(1);
return option.id;
default: NOT_REACHED();

View File

@@ -28,26 +28,19 @@ struct OptionData {
/** Data storage for parsing command line options. */
struct GetOptData {
using OptionSpan = std::span<const OptionData>;
char *opt; ///< Option value, if available (else \c nullptr).
int numleft; ///< Number of arguments left in #argv.
char **argv; ///< Remaining command line arguments.
OptionSpan options; ///< Command line option descriptions.
char *cont; ///< Next call to #GetOpt should start here (in the middle of an argument).
using ArgumentSpan = std::span<char * const>;
ArgumentSpan arguments; ///< Remaining command line arguments.
const OptionSpan options; ///< Command line option descriptions.
const char *opt = nullptr; ///< Option value, if available (else \c nullptr).
const char *cont = nullptr; ///< Next call to #GetOpt should start here (in the middle of an argument).
/**
* Constructor of the data store.
* @param argc Number of command line arguments, excluding the program name.
* @param argv Command line arguments, excluding the program name.
* @param argument The command line arguments, excluding the program name.
* @param options Command line option descriptions.
*/
GetOptData(int argc, char **argv, OptionSpan options) :
opt(nullptr),
numleft(argc),
argv(argv),
options(options),
cont(nullptr)
{
}
GetOptData(ArgumentSpan arguments, OptionSpan options) : arguments(arguments), options(options) {}
int GetOpt();
int GetOpt(const OptionData &option);