-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathklib_getopt.c
executable file
·463 lines (421 loc) · 13.7 KB
/
klib_getopt.c
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
/*===========================================================================
klib
klib_getopt.c
(c)2000-2012 Kevin Boone
============================================================================*/
#include <stdarg.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "klib_defs.h"
#include "klib_log.h"
#include "klib_getopt.h"
#include "klib_getoptspec.h"
#include "klib_error.h"
#include "klib_string.h"
#include "klib_list.h"
/*===========================================================================
private data
============================================================================*/
extern void klib_getopt_init (klib_Object *self);
void klib_getopt_dispose (klib_Object *self);
static klib_Spec klib_spec_getopt =
{
.obj_size = sizeof (klib_GetOpt),
.init_fn = klib_getopt_init,
.class_name = "klib_GetOpt"
};
typedef struct _klib_GetOpt_priv
{
klib_List *specs;
klib_List *argv;
} klib_GetOpt_priv;
extern void klib_getopt_add_to_argv (klib_GetOpt *self, const char *argv);
/*===========================================================================
klib_getopt_new
============================================================================*/
klib_GetOpt *klib_getopt_new ()
{
KLIB_IN
klib_GetOpt *ret = (klib_GetOpt*) klib_object_new(&klib_spec_getopt);
KLIB_OUT
return ret;
}
/*===========================================================================
klib_getopt_init
============================================================================*/
void klib_getopt_init (klib_Object *_self)
{
KLIB_IN
klib_object_init (_self);
_self->dispose = klib_getopt_dispose;
klib_GetOpt *self = (klib_GetOpt *)_self;
self->priv = (klib_GetOpt_priv *)malloc (sizeof (klib_GetOpt_priv));
memset (self->priv, 0, sizeof (klib_GetOpt_priv));
self->priv->specs = klib_list_new ();
self->priv->argv = klib_list_new ();
KLIB_OUT
}
/*===========================================================================
klib_getopt_dispose
============================================================================*/
void klib_getopt_dispose (klib_Object *_self)
{
KLIB_IN
klib_GetOpt *self = (klib_GetOpt *)_self;
if (!self->disposing)
{
self->disposing = TRUE;
if (self->priv)
{
int i, l = klib_list_length (self->priv->specs);
for (i = 0; i < l; i++)
{
klib_GetOptSpec *spec =
(klib_GetOptSpec*) klib_list_get (self->priv->specs, i);
klib_getoptspec_free (spec);
}
klib_list_free (self->priv->specs);
klib_list_free (self->priv->argv);
free (self->priv);
}
}
klib_object_dispose ((klib_Object *)self);
KLIB_OUT
}
/*===========================================================================
klib_getopt_free
============================================================================*/
void klib_getopt_free (klib_GetOpt *self)
{
KLIB_IN
klib_object_unref ((klib_Object *)self);
KLIB_OUT
}
/*===========================================================================
klib_getopt_add_spec_object
============================================================================*/
void klib_getopt_add_spec_object (klib_GetOpt *self, klib_GetOptSpec *spec)
{
KLIB_IN
klib_list_append (self->priv->specs, (klib_Object *)spec);
KLIB_OUT
}
/*===========================================================================
klib_getopt_add_spec
============================================================================*/
void klib_getopt_add_spec (klib_GetOpt *self, const char *name,
const char *longopt, char shortopt, int flags)
{
KLIB_IN
klib_GetOptSpec *spec = klib_getoptspec_new (name, longopt, shortopt, flags);
klib_getopt_add_spec_object (self, spec);
// We don't need to keep a ref to this object
//klib_object_unref ((klib_Object *)spec);
KLIB_OUT
}
/*===========================================================================
klib_getopt_add_to_argv
============================================================================*/
void klib_getopt_add_to_argv (klib_GetOpt *self, const char *argv)
{
klib_String *arg = klib_string_new (argv);
klib_list_append (self->priv->argv, (klib_Object *)arg);
klib_object_unref ((klib_Object *)arg);
}
/*===========================================================================
klib_getopt_get_spec_by_longname
============================================================================*/
klib_GetOptSpec *klib_getopt_get_spec_by_longname (klib_GetOpt *self,
const char *arg)
{
KLIB_IN
klib_GetOptSpec * ret = NULL;
int i, l = klib_list_length (self->priv->specs);
for (i = 0; i < l && !ret; i++)
{
klib_GetOptSpec *spec = (klib_GetOptSpec *)klib_list_get
(self->priv->specs, i);
if (strcmp (klib_getoptspec_get_longopt (spec), arg) == 0)
ret = spec;
}
KLIB_OUT
return ret;
}
/*===========================================================================
klib_getopt_get_spec_by_longname
============================================================================*/
klib_GetOptSpec *klib_getopt_get_spec_by_shortname (klib_GetOpt *self,
char arg)
{
KLIB_IN
klib_GetOptSpec * ret = NULL;
int i, l = klib_list_length (self->priv->specs);
for (i = 0; i < l && !ret; i++)
{
klib_GetOptSpec *spec = (klib_GetOptSpec *)klib_list_get
(self->priv->specs, i);
if (klib_getoptspec_get_shortopt (spec) == arg)
ret = spec;
}
KLIB_OUT
return ret;
}
/*===========================================================================
klib_getopt_get_spec_by_name
============================================================================*/
klib_GetOptSpec *klib_getopt_get_spec_by_name (klib_GetOpt *self,
const char* name)
{
KLIB_IN
klib_GetOptSpec * ret = NULL;
int i, l = klib_list_length (self->priv->specs);
for (i = 0; i < l && !ret; i++)
{
klib_GetOptSpec *spec = (klib_GetOptSpec *)klib_list_get
(self->priv->specs, i);
if (strcmp (klib_getoptspec_get_name (spec), name) == 0)
ret = spec;
}
KLIB_OUT
return ret;
}
/*===========================================================================
klib_getopt_parse
============================================================================*/
void klib_getopt_parse (klib_GetOpt *self, int argc, const char **argv,
klib_Error **error)
{
KLIB_IN
int i = 1; // skip argv0
while (i < argc && !*error)
{
if (strlen (argv[i]) > 1)
{
BOOL is_switch = FALSE;
if (argv[i][0] == '-')
{
// -1 is not a switch -- it is likely to be a number
is_switch = TRUE;
if (strlen (argv[i]))
{
if (isdigit (argv[i][1]))
is_switch = FALSE;
}
}
if (is_switch)
{
// It's a switch
const char *argstr = argv[i] + 1; // skip -
BOOL longopt = FALSE;
if (argstr[0] == '-')
{
argstr++;
longopt = TRUE;
}
if (strlen (argstr) >= 1)
{
char *p = strchr (argstr, '=');
if (p > 0)
{
// arg of the form --a=b
klib_String *key = klib_string_new_split_before (argstr, "=");
klib_String *value =klib_string_new_split_after (argstr, "=");
klib_GetOptSpec *spec = klib_getopt_get_spec_by_longname
(self, klib_string_cstr (key));
if (spec)
{
kilb_getoptspec_set_arg (spec, klib_string_cstr(value));
}
else
{
char buff[256];
snprintf (buff, sizeof (buff),
"Unrecognized command-line switch: %s",
klib_string_cstr (key));
*error = klib_error_new (KLIB_ERR_PARSE_CMDLINE,
klib_error_strerror (KLIB_ERR_PARSE_CMDLINE),
buff);
}
klib_string_free (key);
klib_string_free (value);
i++;
}
else
{
klib_GetOptSpec *spec = NULL;
if (longopt)
{
// TODO
spec = klib_getopt_get_spec_by_longname (self, argstr);
if (spec)
{
if (klib_getoptspec_get_flags (spec) & KLIB_GETOPT_COMPARG)
{
// Needs an arg
if (i < argc - 1)
{
// TODO set spec flag and arg to match
kilb_getoptspec_set_arg (spec, argv[i+1]);
i++;
}
else
{
char buff[256];
snprintf (buff, sizeof (buff),
"Command-line switch '%s' needs an argument",
argstr);
*error = klib_error_new (KLIB_ERR_PARSE_CMDLINE,
klib_error_strerror (KLIB_ERR_PARSE_CMDLINE),
buff);
}
}
else
{
// Does not need an arg
//TODO set spec flag to match
kilb_getoptspec_set_arg (spec, KLIB_GETOPT_ARGSET);
}
}
else
{
char buff[256];
snprintf (buff, sizeof (buff),
"Unrecognized command-line switch: %s", argv[i]);
*error = klib_error_new (KLIB_ERR_PARSE_CMDLINE,
klib_error_strerror (KLIB_ERR_PARSE_CMDLINE),
buff);
}
}
else
{
int j, m = strlen (argstr);
for (j = 0; j < m && !*error; j++)
{
spec = klib_getopt_get_spec_by_shortname (self, argstr[j]);
if (spec)
{
if (klib_getoptspec_get_flags (spec) & KLIB_GETOPT_COMPARG)
{
// Needs an arg
if (i < argc - 1)
{
// TODO set spec flag and arg to match
kilb_getoptspec_set_arg (spec, argv[i+1]);
i++;
}
else
{
char buff[256];
snprintf (buff, sizeof (buff),
"Command-line switch '%c' needs an argument",
argstr[j]);
*error = klib_error_new (KLIB_ERR_PARSE_CMDLINE,
klib_error_strerror (KLIB_ERR_PARSE_CMDLINE),
buff);
}
}
else
{
// Does not need an arg
//TODO set spec flag to match
kilb_getoptspec_set_arg (spec, KLIB_GETOPT_ARGSET);
}
}
else
{
char buff[256];
snprintf (buff, sizeof (buff),
"Unrecognized command-line switch: %c", argstr[j]);
*error = klib_error_new (KLIB_ERR_PARSE_CMDLINE,
klib_error_strerror (KLIB_ERR_PARSE_CMDLINE),
buff);
}
}
}
i++;
}
}
else
{
char buff[256];
snprintf (buff, sizeof (buff),
"Empty command-line switch: %s", argv[i]);
*error = klib_error_new (KLIB_ERR_PARSE_CMDLINE,
klib_error_strerror (KLIB_ERR_PARSE_CMDLINE),
buff);
}
}
else
{
// Not a switch
klib_getopt_add_to_argv (self, argv[i]);
i++;
}
}
else
{
klib_getopt_add_to_argv (self, argv[i]);
i++;
}
}
KLIB_OUT
}
/*===========================================================================
klib_getopt_argc
============================================================================*/
int klib_getopt_argc (const klib_GetOpt *self)
{
return klib_list_length (self->priv->argv);
}
/*===========================================================================
klib_getopt_argv
============================================================================*/
const char *klib_getopt_argv (const klib_GetOpt *self, int index)
{
KLIB_IN
const char *ret = NULL;
int l = klib_list_length (self->priv->argv);
if (index < l && index >= 0)
{
klib_String *s = (klib_String *)klib_list_get (self->priv->argv, index);
ret = klib_string_cstr (s);
}
else
klib_log_warning ("Index %d out of range in getopt_argv", index);
KLIB_OUT
return ret;
}
/*===========================================================================
klib_getopt_arg_set
============================================================================*/
BOOL klib_getopt_arg_set (const klib_GetOpt *self, const char *name)
{
KLIB_IN
BOOL ret = (klib_getopt_get_arg (self, name) != NULL);
KLIB_OUT
return ret;
}
/*===========================================================================
klib_getopt_get_arg
============================================================================*/
const char *klib_getopt_get_arg (const klib_GetOpt *self, const char *name)
{
KLIB_IN
const char *ret = NULL;
klib_GetOptSpec *spec = klib_getopt_get_spec_by_name
((klib_GetOpt *)self, name);
if (spec)
{
ret = klib_getoptspec_get_arg (spec);
}
// else
// klib_log_warning ("");
KLIB_OUT
return ret;
}