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
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2024 HiSilicon Limited
*/
#ifndef RTE_ARGPARSE_H
#define RTE_ARGPARSE_H
/**
* @file rte_argparse.h
*
* Argument parsing API.
*
* The argument parsing API makes it easy to write user-friendly command-line
* program. The program defines what arguments it requires,
* and the API will parse those arguments from [argc, argv].
*
* The API provides the following functions:
* 1) Support parsing optional argument (which could take with no-value,
* required-value and optional-value.
* 2) Support parsing positional argument (which must take with required-value).
* 3) Support automatic generate usage information.
* 4) Support issue errors when provided with invalid arguments.
*
* There are two ways to parse arguments:
* 1) AutoSave: for which known value types, the way can be used.
* 2) Callback: will invoke user callback to parse.
*
*/
#include <stdbool.h>
#include <stdint.h>
#include <rte_bitops.h>
#include <rte_compat.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* enum defining whether an argument takes a value or not.
*/
enum rte_argparse_value_required {
/** The argument takes no value. */
RTE_ARGPARSE_VALUE_NONE,
/** The argument must have a value. */
RTE_ARGPARSE_VALUE_REQUIRED,
/** The argument has optional value. */
RTE_ARGPARSE_VALUE_OPTIONAL,
};
/** enum defining the type of the argument, integer, boolean or just string */
enum rte_argparse_value_type {
/** Argument takes no value, or value type not specified.
* Should be used when argument is to be handled via callback.
*/
RTE_ARGPARSE_VALUE_TYPE_NONE = 0,
/** The argument's value is int type. */
RTE_ARGPARSE_VALUE_TYPE_INT,
/** The argument's value is uint8 type. */
RTE_ARGPARSE_VALUE_TYPE_U8,
/** The argument's value is uint16 type. */
RTE_ARGPARSE_VALUE_TYPE_U16,
/** The argument's value is uint32 type. */
RTE_ARGPARSE_VALUE_TYPE_U32,
/** The argument's value is uint64 type. */
RTE_ARGPARSE_VALUE_TYPE_U64,
/** The argument's value is string type. */
RTE_ARGPARSE_VALUE_TYPE_STR,
/** The argument's value is boolean flag type. */
RTE_ARGPARSE_VALUE_TYPE_BOOL,
/** The argument's value is a corelist. */
RTE_ARGPARSE_VALUE_TYPE_CORELIST,
};
/** Additional flags which may be specified for each argument */
enum rte_argparse_arg_flags {
/** argument may be specified multiple times on the commandline */
RTE_ARGPARSE_FLAG_SUPPORT_MULTI = RTE_BIT32(0),
};
/**
* A structure used to hold argument's configuration.
*/
struct rte_argparse_arg {
/**
* Long name of the argument:
* 1) If the argument is optional, it must start with ``--``.
* 2) If the argument is positional, it must not start with ``-``.
* 3) Other case will be considered as error.
*/
const char *name_long;
/**
* Short name of the argument:
* 1) This field could be set only when name_long is optional, and
* must start with a hyphen (-) followed by an English letter.
* 2) Other case it should be set NULL.
*/
const char *name_short;
/** Help information of the argument, must not be NULL. */
const char *help;
/**
* Saver for the argument's value.
* 1) If this field is NULL, the callback is used for parsing argument.
* 2) If this field is not NULL, the argument's value will be automatically saved.
*/
void *val_saver;
/**
* If val_saver is NULL, this filed (cast as (uint32_t)val_set) will be
* used as the first parameter to invoke callback.
*
* If val_saver is not NULL, then:
* 1) If argument has no value, *val_saver will be set to val_set.
* 2) If argument has optional value but doesn't take value this
* time, *val_saver will be set to val_set.
* 3) Other case it should be set NULL.
*/
void *val_set;
/** Specify if the argument takes a value, @see enum rte_argparse_value_required. */
enum rte_argparse_value_required value_required;
/** The type of the argument, @see enum rte_argparse_value_type. */
enum rte_argparse_value_type value_type;
/** any additional flags for this argument */
uint32_t flags;
};
/**
* Callback prototype used by parsing specified arguments.
*
* @param index
* The argument's index, coming from argument's val_set field.
* @param value
* The value corresponding to the argument, it may be NULL (e.g. the
* argument has no value, or the argument has optional value but doesn't
* provided value).
* @param opaque
* An opaque pointer coming from the caller.
* @return
* 0 on success. Otherwise negative value is returned.
*/
typedef int (*rte_arg_parser_t)(uint32_t index, const char *value, void *opaque);
/**
* A structure used to hold argparse's configuration.
*/
struct rte_argparse {
/** Program name. Must not be NULL. */
const char *prog_name;
/** How to use the program. Must not be NULL. */
const char *usage;
/** Explain what the program does. Could be NULL. */
const char *descriptor;
/** Text at the bottom of help. Could be NULL. */
const char *epilog;
/** Whether exit when error. */
bool exit_on_error;
/** behave like getopt and move non-flag args to the end, ignoring them otherwise.
* If this flag is specified, no positional args are allowed.
*/
bool ignore_non_flag_args;
/* reserved for future flags/other use */
bool reserved_flags[6];
/** User callback for parsing arguments. */
rte_arg_parser_t callback;
/** Opaque which used to invoke callback. */
void *opaque;
/**
* Function pointer for printing usage when -h is passed.
* If this is NULL, default printing function will be used.
*/
void (*print_help)(const struct rte_argparse *obj);
/** Reserved field used for future extension. */
void *reserved[15];
/** Arguments configuration. Must ended with ARGPARSE_ARG_END(). */
struct rte_argparse_arg args[];
};
#define ARGPARSE_ARG_END() { NULL }
/**
* @warning
* @b EXPERIMENTAL: this API may change without prior notice.
*
* Parse parameters passed until all are processed,
* or until a "--" parameter is encountered.
*
* @param obj
* Parser object.
* @param argc
* Parameters count.
* @param argv
* Array of parameters points.
*
* @return
* number of arguments parsed (>= 0) on success.
* Otherwise negative error code is returned.
*/
__rte_experimental
int rte_argparse_parse(const struct rte_argparse *obj, int argc, char **argv);
/**
* @warning
* @b EXPERIMENTAL: this API may change without prior notice.
*
* Output the help text information for the given argparse object.
*
* @param stream
* Output file handle, e.g. stdout, stderr, on which to print the help text.
* @param obj
* Parser object.
*/
__rte_experimental
void rte_argparse_print_help(FILE *stream, const struct rte_argparse *obj);
/**
* @warning
* @b EXPERIMENTAL: this API may change without prior notice.
*
* Parse the value from the input string based on the value type.
*
* @param str
* Input string.
* @param val_type
* The value type, @see rte_argparse_value_type.
* @param val
* Saver for the value.
*
* @return
* 0 on success. Otherwise negative value is returned.
*/
__rte_experimental
int rte_argparse_parse_type(const char *str, enum rte_argparse_value_type val_type, void *val);
#ifdef __cplusplus
}
#endif
#endif /* RTE_ARGPARSE_H */
|