forked from linux-nvme/nvme-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
argconfig.h
99 lines (90 loc) · 2.68 KB
/
argconfig.h
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
////////////////////////////////////////////////////////////////////////
//
// 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>
enum argconfig_types {
CFG_NONE,
CFG_STRING,
CFG_INT,
CFG_SIZE,
CFG_LONG,
CFG_LONG_SUFFIX,
CFG_DOUBLE,
CFG_BOOL,
CFG_BYTE,
CFG_SHORT,
CFG_POSITIVE,
CFG_INCREMENT,
CFG_SUBOPTS,
CFG_FILE_A,
CFG_FILE_W,
CFG_FILE_R,
CFG_FILE_AP,
CFG_FILE_WP,
CFG_FILE_RP,
};
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;
};
#define CFG_MAX_SUBOPTS 500
#define MAX_HELP_FUNC 20
#ifdef __cplusplus
extern "C" {
#endif
typedef void argconfig_help_func();
void argconfig_append_usage(const char *str);
void argconfig_print_help(const char *program_desc,
const struct argconfig_commandline_options *options);
int argconfig_parse(int argc, char *argv[], const char *program_desc,
const struct argconfig_commandline_options *options,
void *config_out, size_t config_size);
int argconfig_parse_subopt_string(char *string, char **options,
size_t max_options);
unsigned argconfig_parse_comma_sep_array(char *string, int *ret,
unsigned max_length);
unsigned argconfig_parse_comma_sep_array_long(char *string,
unsigned long long *ret,
unsigned max_length);
void argconfig_register_help_func(argconfig_help_func * f);
void print_word_wrapped(const char *s, int indent, int start);
#ifdef __cplusplus
}
#endif
#endif