/
githubmirror
/
nvme-cli
Обзор
Документация
Войти
/
githubmirror
/
nvme-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/argconfig.h
198 строк
5 KB
Martin Belanger
nvme: add OPT_STRING_OPTIONAL() for optional-argument options
10 авг 2026, 19:27
10 авг 2026, 19:27
01865a9
Код
Авторство
О чём код?
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * * Copyright 2014 PMC-Sierra, Inc. * * 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 2 * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ /* * * Author: Logan Gunthorpe <logang@deltatee.com> * Logan Gunthorpe * * Date: Oct 23 2014 * * Description: * Header file for argconfig.c * */ #pragma once #include <getopt.h> #include <stdbool.h> #include <stdarg.h> #include <stdint.h> #include <stdio.h> #include <string.h> enum argconfig_types { CFG_FLAG, CFG_STRING, CFG_INT, CFG_LONG, CFG_LONG_SUFFIX, CFG_DOUBLE, CFG_BYTE, CFG_SHORT, CFG_POSITIVE, CFG_INCREMENT, CFG_GROUP_SEPARATOR, }; #define OPT_ARGS(n) \ struct argconfig_commandline_options n[] #define OPT_END() { NULL } #define OPT_GROUP(d) \ {"", 0, NULL, CFG_GROUP_SEPARATOR, NULL, no_argument, d, false, NULL} #define OPT_FLAG(l, s, v, d, ...) \ {l, s, NULL, CFG_FLAG, v, no_argument, d, false, __VA_ARGS__} #define OPT_SUFFIX(l, s, v, d, ...) \ {l, s, "IONUM", CFG_LONG_SUFFIX, v, required_argument, d, false, __VA_ARGS__} #define OPT_UINT(l, s, v, d, ...) \ {l, s, "NUM", CFG_POSITIVE, v, required_argument, d, false, __VA_ARGS__} #define OPT_INT(l, s, v, d, ...) \ {l, s, "NUM", CFG_INT, v, required_argument, d, false, __VA_ARGS__} #define OPT_LONG(l, s, v, d, ...) \ {l, s, "NUM", CFG_LONG, v, required_argument, d, false, __VA_ARGS__} #define OPT_DOUBLE(l, s, v, d, ...) \ {l, s, "NUM", CFG_DOUBLE, v, required_argument, d, false, __VA_ARGS__} #define OPT_BYTE(l, s, v, d, ...) \ {l, s, "NUM", CFG_BYTE, v, required_argument, d, false, __VA_ARGS__} #define OPT_SHRT(l, s, v, d, ...) \ {l, s, "NUM", CFG_SHORT, v, required_argument, d, false, __VA_ARGS__} #define OPT_INCR(l, s, v, d, ...) \ {l, s, "NUM", CFG_INCREMENT, v, no_argument, d, false, __VA_ARGS__} #define OPT_STRING(l, s, m, v, d, ...) \ {l, s, m, CFG_STRING, v, required_argument, d, false, __VA_ARGS__} /* * Like OPT_STRING(), but the value is optional. getopt_long() only * recognizes an attached value ("--long=value" or "-svalue"), never a * separate argv token -- initialize *v to a sentinel distinct from NULL * before parsing to tell "not given" (still the sentinel) apart from * "given with no value" (optarg is NULL). */ #define OPT_STRING_OPTIONAL(l, s, m, v, d, ...) \ {l, s, m, CFG_STRING, v, optional_argument, d, false, __VA_ARGS__} #define OPT_FMT(l, s, v, d, ...) OPT_STRING(l, s, "FMT", v, d, __VA_ARGS__) #define OPT_FILE(l, s, v, d, ...) OPT_STRING(l, s, "FILE", v, d, __VA_ARGS__) #define OPT_LIST(l, s, v, d, ...) OPT_STRING(l, s, "LIST", v, d, __VA_ARGS__) #define OPT_STR(l, s, v, d, ...) OPT_STRING(l, s, "STRING", v, d, __VA_ARGS__) #ifdef CONFIG_JSONC #define OPT_FLAG_JSON(l, s, v, d, ...) OPT_FLAG(l, s, v, d, __VA_ARGS__) #else /* CONFIG_JSONC */ #define OPT_FLAG_JSON(l, s, v, d, ...) OPT_END() #endif /* CONFIG_JSONC */ #define OPT_VALS(n) \ struct argconfig_opt_val n[] #define VAL_END() { NULL } #define VAL_FLAG(s, l, v) \ {s, CFG_FLAG, .val.flag = v} #define VAL_LONG_SUFFIX(s, v) \ {s, CFG_LONG_SUFFIX, .val.long_suffix = v} #define VAL_UINT(s, v) \ {s, CFG_POSITIVE, v} #define VAL_INT(s, v) \ {s, CFG_INT, .val.int_val = v} #define VAL_LONG(s, v) \ {s, CFG_LONG, .val.long_val = v} #define VAL_DOUBLE(s, v) \ {s, CFG_DOUBLE, .val.double_val = v} #define VAL_BYTE(s, v) \ {s, CFG_BYTE, .val.byte = v} #define VAL_SHRT(s, v) \ {s, CFG_SHORT, .val.short_val = v} #define VAL_INCR(s, v) \ {s, CFG_INCREMENT, .val.increment = v} #define VAL_STRING(s, m, v) \ {s, CFG_STRING, .val.string = v} union argconfig_val { char *string; size_t size; int int_val; int bool_val; uint8_t byte; uint16_t short_val; uint32_t positive; int increment; unsigned long long_val; uint64_t long_suffix; double double_val; bool flag; }; struct argconfig_opt_val { const char *str; enum argconfig_types type; union argconfig_val val; }; struct argconfig_commandline_options { const char *option; const char short_option; const char *meta; enum argconfig_types config_type; void *default_value; int argument_type; const char *help; bool seen; struct argconfig_opt_val *opt_val; bool hidden; }; void argconfig_append_usage(const char *str); void argconfig_print_help(const char *program_desc, struct argconfig_commandline_options *options); int argconfig_parse(int argc, char *argv[], const char *program_desc, struct argconfig_commandline_options *options); int argconfig_parse_global(int argc, char *argv[], struct argconfig_commandline_options *options); typedef int (*argconfig_parse_hook_fn)(int argc, char *argv[], const char *program_desc, struct argconfig_commandline_options *options); void argconfig_set_parse_hook(argconfig_parse_hook_fn hook); bool argconfig_parse_seen(struct argconfig_commandline_options *options, const char *option);