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
|
/* 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
*
*/
#ifndef argconfig_H
#define argconfig_H
#include <string.h>
#include <getopt.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdbool.h>
#include <stdint.h>
#include <linux/types.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,
};
#define OPT_ARGS(n) \
struct argconfig_commandline_options n[]
#define OPT_END() { 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__}
#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;
};
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_comma_sep_array(char *string, int *ret, unsigned int max_length);
int argconfig_parse_comma_sep_array_short(char *string, unsigned short *ret,
unsigned int max_length);
int argconfig_parse_comma_sep_array_long(char *string, unsigned long long *ret,
unsigned int max_length);
int argconfig_parse_comma_sep_array_u16(char *string, __u16 *val,
unsigned int max_length);
int argconfig_parse_comma_sep_array_u32(char *string, __u32 *val,
unsigned int max_length);
int argconfig_parse_comma_sep_array_u64(char *string, __u64 *val,
unsigned int max_length);
void print_word_wrapped(const char *s, int indent, int start, FILE *stream);
bool argconfig_parse_seen(struct argconfig_commandline_options *options,
const char *option);
#endif
|