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
|
use "alloc.use"
use "die.use"
use "extremum.use"
use "fmt.use"
use "option.use"
use "sleq.use"
use "slpush.use"
use "syswrap-ss.use"
use "syswrap.use"
use "types.use"
use "utf.use"
pkg std =
type optdef = struct
argdesc : byte[:]
opts : optdesc[:]
;;
type optdesc = struct
opt : char
arg : byte[:]
desc : byte[:]
needed : bool
;;
type optctx = struct
/* public variables */
args : byte[:][:]
/* data passed in */
optdef : optdef#
optargs : byte[:][:]
/* state */
optdone : bool /* if we've seen '--', everything's an arg */
finished : bool /* if we've processed all the optargs */
argidx : size
curarg : byte[:]
;;
const optinit : (optargs : byte[:][:], def : optdef# -> optctx#)
const optnext : (ctx : optctx# -> (char, byte[:]))
const optdone : (ctx : optctx# -> bool)
const optfin : (ctx : optctx# -> byte[:][:])
const optusage : (ctx : optctx# -> void)
;;
const optinit = {args, def
var ctx
ctx = alloc()
ctx.optargs = args
ctx.optdef = def
ctx.optdone = false
ctx.finished = false
ctx.argidx = 0
ctx.curarg = [][:]
ctx.args = [][:]
next(ctx)
-> ctx
}
const optfin = {ctx
var a
a = ctx.args
free(ctx)
-> a
}
const optnext = {ctx
var c
var arg
(c, ctx.curarg) = striter(ctx.curarg)
match optinfo(ctx, c)
| `None:
if c == 'h' || c == '?'
optusage(ctx)
exit(0)
else
fatal(1, "unexpected argument '%c'\n", c)
;;
| `Some (true, needed):
/* -arg => '-a' 'rg' */
if ctx.curarg.len > 0
arg = ctx.curarg
ctx.curarg = ctx.curarg[ctx.curarg.len:]
next(ctx)
/* '-a rg' => '-a' 'rg' */
elif ctx.argidx < (ctx.optargs.len - 1)
arg = ctx.optargs[ctx.argidx + 1]
ctx.argidx++
next(ctx)
elif needed
put("Expected argument for %c\n", c)
exit(1)
;;
| `Some (false, _):
arg = ""
if ctx.curarg.len == 0
next(ctx)
;;
;;
-> (c, arg)
}
const optdone = {ctx
-> ctx.curarg.len == 0 && ctx.finished
}
const optinfo = {ctx, opt
for o in ctx.optdef.opts
if o.opt == opt
-> `Some (o.arg.len != 0, o.needed)
;;
;;
-> `None
}
const next = {ctx
var i
for i = ctx.argidx + 1; i < ctx.optargs.len; i++
if !ctx.optdone && decode(ctx.optargs[i]) == '-'
if sleq(ctx.optargs[i], "--")
ctx.optdone = true
else
goto foundopt
;;
else
ctx.args = slpush(ctx.args, ctx.optargs[i])
;;
;;
:finishedopt
ctx.finished = true
-> false
:foundopt
ctx.argidx = i
ctx.curarg = ctx.optargs[i][1:]
-> true
}
const optusage = {ctx
std.put("usage: %s [-h?]", ctx.optargs[0])
for o in ctx.optdef.opts
std.put("[-%c%s%s] ", o.opt, sep(o.arg), o.arg)
;;
std.put("%s\n", ctx.optdef.argdesc)
std.put("\t-h\tprint this help message\n")
std.put("\t-?\tprint this help message\n")
for o in ctx.optdef.opts
std.put("\t-%c%s%s\t%s\n", o.opt, sep(o.arg), o.arg, o.desc)
;;
}
const sep = {s
if s.len > 0
-> " "
else
-> ""
;;
}
|