-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportopt.h
200 lines (163 loc) · 5.04 KB
/
portopt.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
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
/* License information at EOF */
#ifndef PORTOPT_H
#define PORTOPT_H
/* Both freestanding C90 compatable */
#include <stddef.h> /* for NULL and size_t */
#include <stdarg.h>
#define PORTOPT_BOOL unsigned char
#define PORTOPT_TRUE 1
#define PORTOPT_FALSE 0
/* Checks if a given ASCII encoded character is a number */
#define PORTOPT_IS_NUM(x) \
((((x) >= '0') && ((x) <= '9')) ? PORTOPT_TRUE : PORTOPT_FALSE)
#ifndef PORTOPT_DISABLE_LOGGING
/* Not freestanding C90 compatable, but disablable */
#include <stdio.h>
#endif
static void portoptLog(const char *fmt, ...)
{
#ifndef PORTOPT_DISABLE_LOGGING
va_list args;
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
#else
(void) fmt;
#endif
}
struct portoptVerboseOpt
{
const char abrv_opt;
const char *verbose_opt;
const PORTOPT_BOOL takes_arg;
};
static int portoptCmp(const char *left, const char *right)
{
for (; (*left) == (*right) && (*left != '\0'); left++, right++);
return (* (unsigned char *)left) - (* (unsigned char *)right);
}
static PORTOPT_BOOL portoptValidateNumber(char *str)
{
do
{
/* don't worry, this will fail immediately for '\0' */
if (PORTOPT_IS_NUM(*str) == PORTOPT_FALSE)
{
return PORTOPT_FALSE;
}
} while (*(++str) != '\0');
return PORTOPT_TRUE;
}
/* Returns NULL so should the user want to crash on a particular switch not
* getting that arg that they expect they can */
static char* portoptGetArg(const size_t argc, char **argv, size_t *ind)
{
if ((argv == NULL) || (ind == NULL) || (*ind >= argc))
{
portoptLog("PORTOPT: Bad arguments passed to portoptGetArg\n");
return NULL;
}
return ((argv[*ind][0] == '-')
&& (portoptValidateNumber(&(argv[*ind][1])) == PORTOPT_FALSE))
? NULL : argv[(*ind)++];
}
static PORTOPT_BOOL portoptCmpVerbose(const char *foo,
const struct portoptVerboseOpt opt)
{
return (portoptCmp(&foo[2], opt.verbose_opt) == 0)
? PORTOPT_TRUE : PORTOPT_FALSE;
}
static PORTOPT_BOOL portoptCmpAbrv(const char *foo,
const struct portoptVerboseOpt opt)
{
return (foo[1] == opt.abrv_opt) ? PORTOPT_TRUE : PORTOPT_FALSE;
}
static int portoptVerbose(const size_t argc, char **argv,
const struct portoptVerboseOpt *options, const size_t num_opts,
size_t *ind)
{
size_t i, j;
PORTOPT_BOOL (*CmpFunc)
(const char*, const struct portoptVerboseOpt);
if ((ind != NULL) && (argv != NULL) && (options != NULL))
{
for (i = *ind; i < argc; i++)
{
if ((argv[i] == NULL) || (argv[i][0] != '-'))
{
continue;
}
*ind = i + 1;
CmpFunc = (argv[i][1] == '-')
? portoptCmpVerbose
: portoptCmpAbrv;
for (j = 0; j < num_opts; j++)
{
if (CmpFunc(argv[i], options[j])
== PORTOPT_TRUE)
{
return options[j].abrv_opt;
}
}
portoptLog("PORTOPT: Unknown switch '%s'\n", argv[i]);
return '?';
}
}
return -1;
}
static int portopt(const size_t argc, char **argv, const char *options,
size_t *ind)
{
size_t i, j;
if ((ind != NULL) && (argv != NULL) && (options != NULL))
{
for (i = *ind; i < argc; i++)
{
if ((argv[i] != NULL)
&& ((argv[i][0] == '-') && (argv[i][1] != ':')))
{
*ind = i + 1;
for (j = 0; options[j] != '\0'; j++)
{
if ((argv[i][1] == options[j])
&& (argv[i][2] == '\0'))
{
return options[j];
}
}
portoptLog("PORTOPT: Unknown switch '%s'\n",
argv[i]);
return '?';
}
}
}
return -1;
}
#endif /* PORTOPT_H */
/*
BSD 4-Clause License
Copyright (c) 2024, grauho <grauho@proton.me> All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
All advertising materials mentioning features or use of this software must
display the following acknowledgement: This product includes software
developed by the <copyright holder>.
Neither the name of the <copyright holder> nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> AS IS AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/