4aa613cb
Göran Krampe
First commit
|
1
|
import strutils
|
809a975c
Göran Krampe
Cleanups and simp...
|
2
|
import os
|
4aa613cb
Göran Krampe
First commit
|
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
|
import tables
export tables.`[]`
#### Simple string lexer ###
type
PLexer = ref TLexer
TLexer = object
str: string
idx: int
TLexType = enum
tend
tword
tint
tfloat
trange
telipsis
tchar
proc thisChar(L: PLexer):char = L.str[L.idx]
proc next(L: PLexer) = L.idx += 1
proc skipws(L: PLexer) =
while thisChar(L) in Whitespace: next(L)
proc get(L: PLexer; t: var TLexType): string =
skipws(L)
let c = thisChar(L)
t = tend
if c == '\0': return nil
result = ""
result.add(c)
next(L)
t = tchar
case c
of '-': # '-", "--"
if thisChar(L) == '-':
result.add('-')
next(L)
of Letters: # word
t = tword
while thisChar(L) in Letters:
result.add(thisChar(L))
next(L)
of Digits: # number
t = tint
while thisChar(L) in Digits:
result.add(thisChar(L))
next(L)
if thisChar(L) == '.':
t = tfloat
|
7be5e09d
Göran Krampe
Fixed float parsi...
|
53
|
result.add(thisChar(L))
|
4aa613cb
Göran Krampe
First commit
|
54
55
|
next(L)
while thisChar(L) in Digits:
|
7be5e09d
Göran Krampe
Fixed float parsi...
|
56
|
result.add(thisChar(L))
|
4aa613cb
Göran Krampe
First commit
|
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
|
next(L)
of '.': # ".", "..", "..."
if thisChar(L) == '.':
t = trange
result.add('.')
next(L)
if thisChar(L) == '.':
t = telipsis
result.add('.')
next(L)
else: discard
proc get(L: PLexer): string =
var t: TLexType
get(L,t)
proc reset(L: PLexer, s: string) =
L.str = s
L.idx = 0
proc newLexer(s: string): PLexer =
new(result)
result.reset(s)
### a container for values ###
type
TValueKind = enum
vInt,
vFloat,
vString,
vBool,
vFile,
vSeq
|
7be5e09d
Göran Krampe
Fixed float parsi...
|
92
93
94
95
96
97
98
|
PValue* = ref TValue
TValue* = object
case kind*: TValueKind
of vInt: asInt*: int
of vFloat: asFloat*: float
of vString: asString*: string
of vBool: asBool*: bool
|
4aa613cb
Göran Krampe
First commit
|
99
|
of vFile:
|
7be5e09d
Göran Krampe
Fixed float parsi...
|
100
101
102
|
asFile*: File
fileName*: string
of vSeq: asSeq*: seq[PValue]
|
4aa613cb
Göran Krampe
First commit
|
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
|
proc boolValue(c: bool): PValue = PValue(kind: vBool, asBool: c)
proc fileValue(f: File, name: string): PValue = PValue(kind: vFile, asFile: f, fileName: name)
proc strValue(s: string): PValue = PValue(kind: vString, asString: s)
proc intValue(v: int): PValue = PValue(kind: vInt, asInt: v)
proc floatValue(v: float): PValue = PValue(kind: vFloat, asFloat: v)
proc seqValue(v: seq[PValue]): PValue = PValue(kind: vSeq, asSeq: v)
const MAX_FILES = 30
type
PSpec = ref TSpec
TSpec = object
defVal: string
ptype: string
needsValue, multiple, used: bool
var
progname, usage: string
aliases: array[char,string]
parm_spec = initTable[string,PSpec]()
|
809a975c
Göran Krampe
Cleanups and simp...
|
128
|
|
4aa613cb
Göran Krampe
First commit
|
129
130
131
132
|
proc fail(msg: string) =
stderr.writeln(progname & ": " & msg)
quit(usage)
|
6a614998
Göran Krampe
Fix for long opts...
|
133
|
proc parseSpec(u: string) =
|
4aa613cb
Göran Krampe
First commit
|
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
var
L: PLexer
tok: string
k = 1
let lines = u.splitLines
L = newLexer(lines[0])
progname = L.get
usage = u
for line in lines[1..(-1)]:
var
isarg = false
multiple = false
getnext = true
name: string
alias: char
L.reset(line)
tok = L.get
if tok == "-" or tok == "--": # flag
if tok == "-": #short flag
let flag = L.get
|
6a614998
Göran Krampe
Fix for long opts...
|
155
|
if len(flag) != 1: fail("short option has one character!")
|
4aa613cb
Göran Krampe
First commit
|
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
|
tok = L.get
if tok == ",": # which is alias for long flag
tok = L.get
if tok != "--": fail("expecting long --flag")
name = L.get
alias = flag[0]
else: # only short flag
name = flag
alias = flag[0]
getnext = false
else: # only long flag
name = L.get
alias = '\0'
elif tok == "<": # argument
isarg = true
name = L.get
alias = chr(k)
k += 1
tok = L.get
if tok != ">": fail("argument must be enclosed in <...>")
if getnext: tok = L.get
if tok == ":": # allowed to have colon after flags
tok = L.get
if tok == nil: continue
# default types for flags and arguments
var
ftype = if isarg: "string" else: "bool"
defValue = ""
if tok == "(": # typed flag/argument
var t = tchar
tok = L.get(t)
if tok == "default": # type from default value
defValue = L.get(t)
if t == tint: ftype = "int"
elif t == tfloat: ftype = "float"
elif t == tword:
if defValue == "stdin": ftype = "infile"
elif defValue == "stdout": ftype = "outfile"
else: ftype = "string"
else: fail("unknown default value " & tok)
else: # explicit type
if t == tword:
ftype = tok
if tok == "bool": defValue = "false"
else: fail("unknown type " & tok)
discard L.get(t)
multiple = t == telipsis
elif ftype == "bool": # no type or default
defValue = "false"
if name != nil:
|
7be5e09d
Göran Krampe
Fixed float parsi...
|
208
|
# echo("Param: " & name & " type: " & $ftype & " needsvalue: " & $(ftype != "bool") & " default: " & $defValue & " multiple: " & $multiple)
|
4aa613cb
Göran Krampe
First commit
|
209
210
211
212
213
214
215
|
let spec = PSpec(defVal:defValue, ptype: ftype, needsValue: ftype != "bool",multiple:multiple)
aliases[alias] = name
parm_spec[name] = spec
proc tail(s: string): string = s[1..(-1)]
var
|
809a975c
Göran Krampe
Cleanups and simp...
|
216
|
files = newSeq[File]()
|
4aa613cb
Göran Krampe
First commit
|
217
218
|
proc closeFiles() {.noconv.} =
|
809a975c
Göran Krampe
Cleanups and simp...
|
219
220
|
for f in files:
f.close()
|
4aa613cb
Göran Krampe
First commit
|
221
|
|
7af04aca
Göran Krampe
Exported parseArg...
|
222
|
proc parseArguments*(usage: string, args: seq[string]): Table[string,PValue] =
|
4aa613cb
Göran Krampe
First commit
|
223
224
225
226
227
228
229
230
231
232
233
|
var
vars = initTable[string,PValue]()
n = len(args) - 1
i = 1
k = 1
flag,value, arg: string
info: PSpec
short: bool
flagvalues: seq[seq[string]]
proc next(): string =
|
6a614998
Göran Krampe
Fix for long opts...
|
234
|
if i > n: fail("an option required a value!")
|
4aa613cb
Göran Krampe
First commit
|
235
236
237
238
239
240
241
242
243
244
|
result = args[i]
i += 1
proc get_alias(c: char): string =
result = aliases[c]
if result == nil:
n = ord(c)
if n < 20:
fail("no such argument: " & $n)
else:
|
6a614998
Göran Krampe
Fix for long opts...
|
245
|
fail("no such option: " & c)
|
4aa613cb
Göran Krampe
First commit
|
246
247
248
249
|
proc get_spec(name: string): PSpec =
result = parm_spec[name]
if result == nil:
|
6a614998
Göran Krampe
Fix for long opts...
|
250
|
fail("no such option: " & name)
|
4aa613cb
Göran Krampe
First commit
|
251
252
253
254
255
256
257
258
259
260
261
262
263
264
|
newSeq(flagvalues, 0)
parseSpec(usage)
addQuitProc(closeFiles)
# parse the flags and arguments
while i <= n:
arg = next()
if arg[0] == '-': #flag
short = arg[1] != '-'
arg = arg.tail
if short: # all short args are aliases, even if only to themselves
flag = get_alias(arg[0])
else:
|
6a614998
Göran Krampe
Fix for long opts...
|
265
|
flag = arg[1..high(arg)]
|
4aa613cb
Göran Krampe
First commit
|
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
|
info = get_spec(flag)
if info.needsValue:
if short and len(arg) > 1: # value can follow short flag
value = arg.tail
else: # grab next argument
value = next()
else:
value = "true"
if short and len(arg) > 0: # short flags can be combined
for c in arg.tail:
let f = get_alias(c)
let i = get_spec(f)
if i.needsValue: fail("needs value! " & f)
flagvalues.add(@[f,"true"])
i.used = true
else: # argument (stored as \001, \002, etc
flag = get_alias(chr(k))
value = arg
info = get_spec(flag)
# don't move on if this is a varags last param
if not info.multiple: k += 1
flagvalues.add(@[flag,value])
info.used = true
# any flags not mentioned?
for flag,info in parm_spec:
if not info.used:
if info.defVal == "": # no default!
|
6a614998
Göran Krampe
Fix for long opts...
|
294
|
fail("required option or argument missing: " & flag)
|
4aa613cb
Göran Krampe
First commit
|
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
flagvalues.add(@[flag,info.defVal])
# cool, we have the info, can convert known flags
for item in flagvalues:
var pval: PValue;
let
flag = item[0]
value = item[1]
info = get_spec(flag)
case info.ptype
of "int":
var v: int
try:
v = value.parseInt
except:
|
809a975c
Göran Krampe
Cleanups and simp...
|
310
|
fail("bad integer for " & flag)
|
4aa613cb
Göran Krampe
First commit
|
311
312
313
314
315
316
|
pval = intValue(v)
of "float":
var v: float
try:
v = value.parseFloat
except:
|
809a975c
Göran Krampe
Cleanups and simp...
|
317
|
fail("bad float for " & flag)
|
4aa613cb
Göran Krampe
First commit
|
318
319
320
321
322
323
324
325
326
|
pval = floatValue(v)
of "bool":
pval = boolValue(value.parseBool)
of "string":
pval = strValue(value)
of "infile","outfile": # we open files for the app...
var f: File
try:
if info.ptype == "infile":
|
809a975c
Göran Krampe
Cleanups and simp...
|
327
328
329
330
|
if value == "stdin":
f = stdin
else:
f = open(value, fmRead)
|
4aa613cb
Göran Krampe
First commit
|
331
|
else:
|
809a975c
Göran Krampe
Cleanups and simp...
|
332
333
334
335
|
if value == "stdout":
f = stdout
else:
f = open(value, fmWrite)
|
4aa613cb
Göran Krampe
First commit
|
336
|
# they will be closed automatically on program exit
|
809a975c
Göran Krampe
Cleanups and simp...
|
337
|
files.add(f)
|
4aa613cb
Göran Krampe
First commit
|
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
except:
fail("cannot open " & value)
pval = fileValue(f,value)
else: discard
var oval = vars[flag]
if info.multiple: # multiple flags are sequence values
if oval == nil: # first value!
pval = seqValue(@[pval])
else: # just add to existing sequence
oval.asSeq.add(pval)
pval = oval
elif oval != nil: # cannot repeat a single flag!
fail("cannot use '" & flag & "' more than once")
vars[flag] = pval
return vars
|
6a614998
Göran Krampe
Fix for long opts...
|
356
|
proc parse*(usage: string): Table[string,PValue] =
|
4aa613cb
Göran Krampe
First commit
|
357
358
359
360
361
362
363
364
365
366
|
var
args: seq[string]
n = paramCount()
newSeq(args,n+1)
for i in 0..n:
args[i] = paramStr(i)
return parseArguments(usage,args)
when isMainModule:
var args = parse"""
|
7af04aca
Göran Krampe
Exported parseArg...
|
367
|
head [flags] file [out]
|
4aa613cb
Göran Krampe
First commit
|
368
369
370
|
-n: (default 10) number of lines
-v,--verbose: (bool...) verbosity level
-a,--alpha useless parm
|
6a614998
Göran Krampe
Fix for long opts...
|
371
|
<file>: (default stdin...)
|
7be5e09d
Göran Krampe
Fixed float parsi...
|
372
|
<out>: (default stdout)
|
4aa613cb
Göran Krampe
First commit
|
373
374
375
376
377
378
379
380
381
382
383
384
|
"""
echo args["n"].asInt
echo args["alpha"].asBool
for v in args["verbose"].asSeq:
echo "got ",v.asBool
let myfiles = args["files"].asSeq
for f in myfiles:
echo f.asFile.readLine()
|