forked from docopt/docopt.c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docopt_c.py
executable file
·701 lines (581 loc) · 21.4 KB
/
docopt_c.py
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Copyright (c) 2012 Vladimir Keleshev, <[email protected]>
# (see LICENSE-MIT file for copying)
"""Usage: docopt_c.py [options] [<docopt>]
Processes a docopt formatted string, from either stdin or a file, and
outputs the equivalent C code to parse a CLI, to either the stdout or a file.
Options:
-o, --output-name=<outname>
Filename used to write the produced C file.
If not present, the produced code is printed to stdout.
-t, --template=<template>
Filename used to read a C template.
-p, --template-header=<template-header>
Filename used to read a C template header (prototypes, structs).
-h,--help Show this help message and exit.
Arguments:
<docopt> Input file describing your CLI in docopt language.
"""
__author__ = "Vladimir Keleshev"
__version__ = "2.0rc2"
__description__ = "C generator for language for description of command-line interfaces"
import numbers
import os.path
import re
import textwrap
from string import Template
import sys
import docopt
template_h = """
#ifndef DOCOPT_$header_no_ext_H
#define DOCOPT_$header_no_ext_H
#include <stddef.h>
#if defined(__STDC__) && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#include <stdbool.h>
#elif !defined(_STDBOOL_H)
#define _STDBOOL_H
#include <stdlib.h>
#ifdef true
#undef true
#endif
#ifdef false
#undef false
#endif
#ifdef bool
#undef bool
#endif
#define true 1
#define false (!true)
typedef size_t bool;
#endif
#if defined(_AIX)
#include <sys/limits.h>
#elif defined(__FreeBSD__) || defined(__NetBSD__)
|| defined(__OpenBSD__) || defined(__bsdi__)
|| defined(__DragonFly__) || defined(macintosh)
|| defined(__APPLE__) || defined(__APPLE_CC__)
#include <sys/syslimits.h>
#elif defined(__HAIKU__)
#include <system/user_runtime.h>
#elif defined(__linux__) || defined(linux) || defined(__linux)
#include <linux/version.h>
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,22)
#include <linux/limits.h>
#else
#define ARG_MAX 131072 /* # bytes of args + environ for exec() */
/* it's no longer defined, see this example and more at https://unix.stackexchange.com/q/120642 */
#endif
#elif (defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) \
|| defined(__DragonFly__) || defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__))
#include <sys/param.h>
#if defined(__APPLE__) || defined(__APPLE_CC__)
/* ARG_MAX gives a segfault on macOS when used for array size below */
#undef ARG_MAX
#undef NCARGS
#endif
#else
#include <limits.h>
#endif
#ifndef ARG_MAX
#ifdef NCARGS
#define ARG_MAX NCARGS
#else
#define ARG_MAX 131072
#endif
#endif
struct DocoptArgs {
$commands$arguments$flags$options
/* special */
const char *usage_pattern;
const char *help_message[$help_message_n];
};
struct DocoptArgs docopt(int, char *[], bool, const char *);
#endif
"""
template_c = """
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "$header_name"
struct Command {
const char *name;
bool value;
};
struct Argument {
const char *name;
const char *value;
const char *array[ARG_MAX];
};
struct Option {
const char *oshort;
const char *olong;
bool argcount;
bool value;
const char *argument;
};
struct Elements {
int n_commands;
int n_arguments;
int n_options;
struct Command *commands;
struct Argument *arguments;
struct Option *options;
};
/*
* Tokens object
*/
struct Tokens {
int argc;
char **argv;
int i;
char *current;
};
const char usage_pattern[] =
$usage_pattern;
struct Tokens tokens_new(int argc, char **argv) {
struct Tokens ts;
ts.argc = argc;
ts.argv = argv;
ts.i = 0;
ts.current = argv[0];
return ts;
}
struct Tokens *tokens_move(struct Tokens *ts) {
if (ts->i < ts->argc) {
ts->current = ts->argv[++ts->i];
}
if (ts->i == ts->argc) {
ts->current = NULL;
}
return ts;
}
/*
* ARGV parsing functions
*/
int parse_doubledash(struct Tokens *ts, struct Elements *elements) {
/*
int n_commands = elements->n_commands;
int n_arguments = elements->n_arguments;
Command *commands = elements->commands;
Argument *arguments = elements->arguments;
not implemented yet
return parsed + [Argument(None, v) for v in tokens]
*/
return 0;
}
int parse_long(struct Tokens *ts, struct Elements *elements) {
int i;
int len_prefix;
int n_options = elements->n_options;
char *eq = strchr(ts->current, '=');
struct Option *option;
struct Option *options = elements->options;
len_prefix = (eq - (ts->current)) / sizeof(char);
for (i = 0; i < n_options; i++) {
option = &options[i];
if (!strncmp(ts->current, option->olong, len_prefix))
break;
}
if (i == n_options) {
/* TODO: %s is not a unique prefix */
fprintf(stderr, "%s is not recognized\\n", ts->current);
return 1;
}
tokens_move(ts);
if (option->argcount) {
if (eq == NULL) {
if (ts->current == NULL) {
fprintf(stderr, "%s requires argument\\n", option->olong);
return 1;
}
option->argument = ts->current;
tokens_move(ts);
} else {
option->argument = eq + 1;
}
} else {
if (eq != NULL) {
fprintf(stderr, "%s must not have an argument\\n", option->olong);
return 1;
}
option->value = true;
}
return 0;
}
int parse_shorts(struct Tokens *ts, struct Elements *elements) {
char *raw;
int i;
int n_options = elements->n_options;
struct Option *option;
struct Option *options = elements->options;
raw = &ts->current[1];
tokens_move(ts);
while (raw[0] != '\\0') {
for (i = 0; i < n_options; i++) {
option = &options[i];
if (option->oshort != NULL && option->oshort[1] == raw[0])
break;
}
if (i == n_options) {
/* TODO -%s is specified ambiguously %d times */
fprintf(stderr, "-%c is not recognized\\n", raw[0]);
return EXIT_FAILURE;
}
raw++;
if (!option->argcount) {
option->value = true;
} else {
if (raw[0] == '\\0') {
if (ts->current == NULL) {
fprintf(stderr, "%s requires argument\\n", option->oshort);
return EXIT_FAILURE;
}
raw = ts->current;
tokens_move(ts);
}
option->argument = raw;
break;
}
}
return EXIT_SUCCESS;
}
int parse_argcmd(struct Tokens *ts, struct Elements *elements) {
int i;
int n_commands = elements->n_commands;
/* int n_arguments = elements->n_arguments; */
struct Command *command;
struct Command *commands = elements->commands;
/* Argument *arguments = elements->arguments; */
for (i = 0; i < n_commands; i++) {
command = &commands[i];
if (strcmp(command->name, ts->current) == 0) {
command->value = true;
tokens_move(ts);
return EXIT_SUCCESS;
}
}
/* not implemented yet, just skip for now
parsed.append(Argument(None, tokens.move())) */
/*
fprintf(stderr, "! argument '%s' has been ignored\\n", ts->current);
fprintf(stderr, " '");
for (i=0; i<ts->argc ; i++)
fprintf(stderr, "%s ", ts->argv[i]);
fprintf(stderr, "'\\n");
*/
tokens_move(ts);
return EXIT_SUCCESS;
}
int parse_args(struct Tokens *ts, struct Elements *elements) {
int ret = EXIT_FAILURE;
while (ts->current != NULL) {
if (strcmp(ts->current, "--") == 0) {
ret = parse_doubledash(ts, elements);
if (ret == EXIT_FAILURE) break;
} else if (ts->current[0] == '-' && ts->current[1] == '-') {
ret = parse_long(ts, elements);
} else if (ts->current[0] == '-' && ts->current[1] != '\\0') {
ret = parse_shorts(ts, elements);
} else
ret = parse_argcmd(ts, elements);
if (ret) return ret;
}
return ret;
}
int elems_to_args(struct Elements *elements, struct DocoptArgs *args,
const bool help, const char *version) {
struct Command *command;
struct Argument *argument;
struct Option *option;
int i, j;
/* fix gcc-related compiler warnings (unused) */
(void) command;
(void) argument;
/* options */
for (i = 0; i < elements->n_options; i++) {
option = &elements->options[i];
if (help && option->value && strcmp(option->olong, "--help") == 0) {
for (j = 0; j < $help_message_n; j++)
puts(args->help_message[j]);
return EXIT_FAILURE;
} else if (version && option->value &&
strcmp(option->olong, "--version") == 0) {
puts(version);
return EXIT_FAILURE;
}$if_flag$if_option
}
/* commands */
for (i = 0; i < elements->n_commands; i++) {
command = &elements->commands[i];
$if_command
}
/* arguments */
for (i = 0; i < elements->n_arguments; i++) {
argument = &elements->arguments[i];
$if_argument
}
return EXIT_SUCCESS;
}
/*
* Main docopt function
*/
struct DocoptArgs docopt(int argc, char *argv[], const bool help, const char *version) {
struct DocoptArgs args = {$defaults
usage_pattern,
$help_message
};
struct Command commands[] = {$elems_cmds
};
struct Argument arguments[] = {$elems_args
};
struct Option options[] = {$elems_opts
};
struct Elements elements;
int return_code = EXIT_SUCCESS;
elements.n_commands = $t_elems_n_commands;
elements.n_arguments = $t_elems_n_arguments;
elements.n_options = $t_elems_n_options;
elements.commands = commands;
elements.arguments = arguments;
elements.options = options;
if (argc == 1) {
argv[argc++] = "--help";
argv[argc++] = NULL;
return_code = EXIT_FAILURE;
}
{
struct Tokens ts = tokens_new(argc, argv);
if (parse_args(&ts, &elements))
exit(EXIT_FAILURE);
}
if (elems_to_args(&elements, &args, help, version))
exit(return_code);
return args;
}
"""
def to_initializer(val):
if isinstance(val, (str, type(None), bool, numbers.Number)):
return to_c(val)
return '{{{}}}'.format(',\n'.join('{}"{}"'.format(' ' * 10, k) for k in val)[9:])
def to_c(val):
if type(val) is str:
return '"{}"'.format(val
.replace('\\', r'\\')
.replace('"', r'\"')
.replace('\n', '\\n"\n"')
)
elif val is True:
return '1'
elif val is False:
return '0'
elif isinstance(val, numbers.Number):
return str(val)
elif val is None:
return 'NULL'
raise ValueError("can't convert to c type: {!r}".format(val))
def c_command(obj):
return '{{{!s}}}'.format(', '.join(to_c(v)
for v in (obj.name, obj.value)))
def c_argument(obj):
return '{{{!s}}}'.format(', '.join(to_c(v)
for v in (obj.name, obj.value, None)))
def c_option(obj):
return '{{{!s}}}'.format(', '.join(to_c(v)
for v in (obj.short, obj.long, obj.argcount,
False, None)))
def c_name(s):
return ''.join(c if c.isalnum() else '_' for c in s).strip('_')
def c_if_command(cmd):
return 'if (strcmp(command->name, {val!s}) == 0) {{\n' \
' args->{prop!s} = command->value;\n' \
'}}\n'.format(val=to_c(cmd.name),
prop=c_name(cmd.name))
def c_if_argument(arg):
return 'if (strcmp(argument->name, {val!s}) == 0) {{\n' \
' args->{prop!s} = (char *) argument->value;\n' \
'}}\n'.format(val=to_c(arg.name),
prop=c_name(arg.name))
def c_if_flag(obj):
return ' else if (strcmp(option->o{typ!s}, {val!s}) == 0) {{\n' \
' args->{prop!s} = option->value;\n' \
'}}\n'.format(typ=('long' if obj.long else 'short'),
val=to_c(obj.long or obj.short),
prop=c_name(obj.long or obj.short))
def c_if_option(obj):
return ' else if (strcmp(option->o{typ!s}, {val!s}) == 0) {{\n' \
' if (option->argument) {{\n' \
' args->{prop!s} = (char *) option->argument;\n' \
' }}\n}}\n'.format(typ=('long' if obj.long else 'short'),
val=to_c(obj.long or obj.short),
prop=c_name(obj.long or obj.short))
def parse_leafs(pattern, all_options):
options_shortcut = False
leaves = []
queue = [(0, pattern)]
while queue:
level, node = queue.pop(-1) # depth-first search
if not options_shortcut and type(node) == docopt.OptionsShortcut:
options_shortcut = True
elif hasattr(node, 'children'):
children = [(level + 1, child) for child in node.children]
children.reverse()
queue.extend(children)
else:
if node not in leaves:
leaves.append(node)
sort_by_name = lambda e: e.name
leaves.sort(key=sort_by_name)
commands = [leaf for leaf in leaves if type(leaf) == docopt.Command]
arguments = [leaf for leaf in leaves if type(leaf) == docopt.Argument]
if options_shortcut:
option_leafs = all_options
option_leafs.sort(key=sort_by_name)
else:
option_leafs = [leaf for leaf in leaves if type(leaf) == docopt.Option]
flags = [leaf for leaf in option_leafs if leaf.argcount == 0]
options = [leaf for leaf in option_leafs if leaf.argcount > 0]
leaves = [i for sl in (commands, arguments, flags, options) for i in sl]
return leaves, commands, arguments, flags, options
def null_if_zero(s):
return 'NULL' if s is None or len(s) == 0 else s
def main():
assert __doc__ is not None
args = docopt.docopt(__doc__)
try:
if args['<docopt>'] is not None:
with open(args['<docopt>'], 'r') as f:
args['<docopt>'] = f.read()
elif args['<docopt>'] is None and sys.stdin.isatty():
print(__doc__.strip("\n"))
sys.exit("")
else:
args['<docopt>'] = sys.stdin.read()
if args['--template'] is None:
args['--template'] = template_c
else:
with open(args['--template'], 'rt') as f:
args['--template'] = f.read()
if args['--template-header'] is None:
args['--template-header'] = template_h
else:
with open(args['--template-header'], 'rt') as f:
args['--template-header'] = f.read()
except IOError as e:
sys.exit(e)
doc = args['<docopt>']
usage = docopt.parse_section('usage:', doc)
error_str_l = 'More than one ', '"usage:" (case-insensitive)', ' not found.'
usage = {0: error_str_l[1:], 1: usage[0] if usage else None}.get(len(usage), error_str_l[:2])
if isinstance(usage, list):
raise docopt.DocoptLanguageError(''.join(usage))
all_options = docopt.parse_defaults(doc)
pattern = docopt.parse_pattern(docopt.formal_usage(usage), all_options)
leafs, commands, arguments, flags, options = parse_leafs(pattern, all_options)
_indent = ' ' * 4
t_commands = ';\n{indent}'.format(indent=_indent).join('size_t {!s}'.format(c_name(cmd.name))
for cmd in commands)
t_commands = '\n{indent}/* commands */\n{indent}{t_commands};'.format(indent=_indent, t_commands=t_commands) \
if t_commands != '' else ''
t_arguments = ';\n{indent}'.join('char *{!s}'.format(c_name(arg.name))
for arg in arguments)
t_arguments = '\n{indent}/* arguments */\n{indent}{t_arguments};'.format(indent=_indent, t_arguments=t_arguments) \
if t_arguments != '' else ''
t_flags = ';\n{indent}'.format(indent=_indent).join('size_t {!s}'.format(c_name(flag.long or flag.short))
for flag in flags)
t_flags = '\n{indent}/* options without arguments */\n{indent}{t_flags};'.format(indent=_indent, t_flags=t_flags) \
if t_flags != '' else ''
t_options = ';\n{indent}'.format(indent=_indent).join('char *{!s}'.format(c_name(opt.long or opt.short))
for opt in options)
t_options = '\n{indent}/* options with arguments */\n{indent}{t_options};'.format(indent=_indent,
t_options=t_options) \
if t_options != '' else ''
t_defaults = ', '.join(to_c(leaf.value) for leaf in leafs)
t_defaults = re.sub(r'"(.*?)"', r'(char *) "\1"', t_defaults)
t_defaults = '\n{indent}'.format(indent=_indent * 2).join(textwrap.wrap(t_defaults, 72))
t_defaults = '\n{indent}{t_defaults},'.format(indent=_indent * 2, t_defaults=t_defaults) if t_defaults != '' else ''
t_elems_cmds = ',\n{indent}'.format(indent=_indent * 2).join(c_command(cmd) for cmd in commands)
t_elems_cmds = '\n{indent}{t_elems_cmds}'.format(indent=_indent * 2,
t_elems_cmds=t_elems_cmds) if t_elems_cmds != '' else ''
t_elems_args = ',\n{indent}'.format(indent=_indent * 2).join(c_argument(arg) for arg in arguments)
t_elems_args = '\n{indent}{t_elems_args}'.format(indent=_indent * 2,
t_elems_args=t_elems_args) if t_elems_args != '' else ''
t_elems_opts = ',\n{indent}'.format(indent=_indent * 2).join(c_option(o) for o in (flags + options))
t_elems_opts = '\n{indent}{t_elems_opts}'.format(indent=_indent * 2,
t_elems_opts=t_elems_opts) if t_elems_opts != '' else ''
'''
t_elems_n_commands = str(len(commands))
t_elems_n_arguments = str(len(arguments))
t_elems_n_options = str(len(flags + options))
t_elems_n_cmds = str(len(commands))
t_elems_n = ', '.join(str(len(l)) for l in (commands, arguments, (flags + options)))
print(
't_elems_n_commands:', t_elems_n_commands, ';\n',
't_elems_n_arguments:', t_elems_n_arguments, ';\n',
't_elems_n_options:', t_elems_n_options, ';\n',
't_elems_n_cmds:', t_elems_n_cmds, ';\n',
't_elems_n:', t_elems_n, ';'
)
'''
t_if_command = ' else '.join(c_if_command(command) for command in commands)
t_if_command = '\n{indent}{t_if_command}'.format(indent=_indent * 2,
t_if_command=t_if_command) if t_if_command != '' else ''
t_if_argument = ' else '.join(c_if_argument(arg) for arg in arguments)
t_if_argument = '\n{indent}{t_if_argument}'.format(
indent=_indent * 2,
t_if_argument='\n{indent}'.format(indent=_indent * 2).join(t_if_argument.splitlines())
) if t_if_argument != '' else ''
t_if_flag = ''.join('\n{indent}'.format(indent=_indent * 2).join(c_if_flag(flag).splitlines())
for flag in flags)
t_if_option = ''.join(
'\n{indent}'.format(indent=_indent * 2).join(c_if_option(opt).splitlines())
for opt in options
)
if not args['--output-name']:
header_output_name = '<stdout>'
else:
base, ext = os.path.splitext(args['--output-name'])
if ext not in frozenset(('.h', '.c')):
base = args['--output-name']
args['--output-name'] = "{base}.c".format(base=base)
header_output_name = "{base}.h".format(base=base)
header_name = os.path.basename(header_output_name)
doc = doc.splitlines()
doc_n = len(doc)
template_out = Template(args['--template']).safe_substitute(
help_message='\n{indent}'.format(indent=_indent).join(to_initializer(doc).splitlines()),
help_message_n=doc_n,
usage_pattern='\n{indent}'.format(indent=_indent * 2).join(to_c(usage).splitlines()),
if_flag=t_if_flag,
if_option=t_if_option,
if_command=t_if_command,
if_argument=t_if_argument,
defaults=t_defaults,
elems_cmds=null_if_zero(t_elems_cmds),
elems_args=null_if_zero(t_elems_args),
elems_opts=null_if_zero(t_elems_opts),
t_elems_n_commands=str(len(commands)),
t_elems_n_arguments=str(len(arguments)),
t_elems_n_options=str(len(flags + options)),
header_name=header_name
)
template_header_out = Template(args['--template-header']).safe_substitute(
commands=t_commands,
arguments=t_arguments,
flags=t_flags,
options=t_options,
help_message_n=doc_n,
# nargs=t_nargs
).replace('$header_no_ext', os.path.splitext(header_name)[0].upper())
if args['--output-name'] is None:
print(template_out.strip(), '\n')
else:
try:
with open(sys.stdout if args['--output-name'] in (None, "<stdout>") else args['--output-name'], 'w') as f:
f.write(template_out.strip() + '\n')
with open(sys.stdout if header_output_name == "<stdout>" else header_output_name, 'w') as f:
f.write(template_header_out.strip() + '\n')
except IOError as e:
sys.exit(str(e))
if __name__ == '__main__':
main()