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
open Common
type 'a t = 'a Language.t
type c_string = Language.c_string
type byte_array = Language.byte_array
type fd_redirection = Language.fd_redirection
let ( // ) = Caml.Filename.concat
open Language.Construct
include Language.Construct.Base
module Magic = Magic
type str = Language.byte_array
let str = byte_array
let string = str
module Str = struct
include Byte_array
let equals = ( =$= )
let concat_elist e = byte_array_concat_list e
let concat_list l = concat_elist (Elist.make l)
end
let call l = call @@ List.map ~f:to_c_string l
let strs l = List.map ~f:str l
let exec l = call (strs l)
let getenv str = getenv (to_c_string str) |> to_byte_array
let setenv ~var v = setenv ~var:(to_c_string var) (to_c_string v)
let file_exists s = file_exists (to_c_string s)
let write_output ?stdout ?stderr ?return_value u =
let stdout = Option.map stdout ~f:to_c_string in
let stderr = Option.map stderr ~f:to_c_string in
let return_value = Option.map return_value ~f:to_c_string in
write_output ?stdout ?stderr ?return_value u
let to_file take file = to_file take (to_c_string file)
let write_stdout ~path expr = write_output expr ~stdout:path
module Elist = struct
include Elist
let serialize_str_list sl = serialize_byte_array_list sl
let deserialize_to_str_list sl = deserialize_to_byte_array_list sl
end
module Bool = struct
let of_string s = Bool.of_string (to_c_string s)
let to_string b = Bool.to_string b |> to_byte_array
end
module Integer = struct
include Integer
let to_str = to_byte_array
let of_str = of_byte_array
end
let case condition body = `Case (condition, seq body)
let default d = `Default (seq d)
let switch l =
let default = ref None in
let cases =
List.filter_map l ~f:(function
| `Default _ when Poly.(!default <> None) ->
failwith "Cannot build switch with >1 defaults"
| `Default d ->
default := Some d ;
None
| `Case t -> Some t ) in
make_switch ~default:(Option.value ~default:nop !default) cases
type file =
< get: str t
; set: str t -> unit t
; append: str t -> unit t
; delete: unit t
; path: str t >
let tmp_file ?tmp_dir name : file =
let default_tmp_dir = "/tmp" in
let get_tmp_dir =
Option.value tmp_dir
~default:
(get_stdout
(
if_then_else
Str.(getenv (str "TMPDIR") <$> str "")
(call [str "printf"; str "%s"; getenv (str "TMPDIR")])
(exec ["printf"; "%s"; default_tmp_dir]) ) ) in
let path =
let clean =
String.map name ~f:(function
| ('a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' | '-') as c -> c
| _ -> '_' ) in
Str.concat_list
[ get_tmp_dir; str "/"
; str
(Fmt.str "genspio-tmp-file-%s-%s" clean
Caml.Digest.(string name |> to_hex) ) ] in
let tmp = Str.concat_list [path; string "-tmp"] in
object (_self)
method get = get_stdout (call [string "cat"; path])
method path = path
method set v =
seq
[
v >> exec ["cat"] |> write_output ~stdout:tmp
; call [string "mv"; string "-f"; tmp; path] ]
method append v =
seq
[ seq [call [string "cat"; path]; v >> exec ["cat"]]
|> write_output ~stdout:tmp
; call [string "mv"; string "-f"; tmp; path] ]
method delete = call [string "rm"; string "-f"; path; tmp]
end
let if_seq ~t ?e c =
match e with
| None -> if_then c (seq t)
| Some f -> if_then_else c (seq t) (seq f)
let printf fmt l = call (string "printf" :: string "--" :: fmt :: l)
let with_stdout_to_stderr cmd = with_redirections cmd [to_fd (int 1) (int 2)]
let eprintf fmt l = with_stdout_to_stderr (printf fmt l)
module Command_line = struct
type 'a cli_option = {switches: string list; doc: string; default: 'a}
type _ option_spec =
| Opt_flag : bool t cli_option -> bool t option_spec
| Opt_string : str t cli_option -> str t option_spec
and (_, _) cli_options =
| Opt_end : string -> ('a, 'a) cli_options
| Opt_cons :
'c option_spec * ('a, 'b) cli_options
-> ('c -> 'a, 'b) cli_options
module Arg = struct
let string ?(default = string "") ~doc switches =
Opt_string {switches; doc; default}
let flag ?(default = bool false) ~doc switches =
Opt_flag {switches; doc; default}
let ( & ) x y = Opt_cons (x, y)
let usage s = Opt_end s
end
let parse (options : ('a, unit t) cli_options) (action : anon:str list t -> 'a)
: unit t =
let prefix = Common.Unique_name.variable "getopts" in
let variable {switches; _} =
Fmt.str "%s_%s" prefix
( String.concat ~sep:"" switches
|> Caml.Digest.string |> Caml.Digest.to_hex ) in
let inits = ref [] in
let to_init s = inits := s :: !inits in
let cases = ref [] in
let to_case s = cases := s :: !cases in
let help_intro = ref "" in
let help = ref [] in
let to_help s = help := s :: !help in
let string_of_var var = getenv (string var) in
let bool_of_var var = getenv (string var) |> Bool.of_string in
let anon_var = Fmt.kstr str "%s_anon" prefix in
let anon = anon_var |> getenv |> Elist.deserialize_to_str_list in
let applied_action =
let rec loop : type a b. a -> (a, b) cli_options -> b =
fun f -> function
| Opt_end doc ->
help_intro := doc ;
f
| Opt_cons (Opt_string x, more) ->
let var = variable x in
to_init (setenv ~var:(string var) x.default) ;
to_case
(case
(List.fold ~init:(bool false) x.switches ~f:(fun p s ->
p ||| Str.(str s =$= getenv (str "1")) ) )
[ if_seq
Str.(getenv (string "2") =$= string "")
~t:
[ eprintf
(string "ERROR option '%s' requires an argument\\n")
[getenv (string "1")]; fail "Wrong command line" ]
~e:[setenv ~var:(string var) (getenv (string "2"))]
; exec ["shift"]; exec ["shift"] ] ) ;
Fmt.kstr to_help "* `%s <string>`: %s"
(String.concat ~sep:"," x.switches)
x.doc ;
loop (f (string_of_var var)) more
| Opt_cons (Opt_flag x, more) ->
let var = variable x in
to_init (setenv ~var:(string var) (Bool.to_string x.default)) ;
to_case
(case
(List.fold ~init:(bool false) x.switches ~f:(fun p s ->
p ||| Str.equals (string s) (getenv (string "1")) ) )
[ setenv ~var:(string var) (Bool.to_string (bool true))
; exec ["shift"] ] ) ;
Fmt.kstr to_help "* `%s`: %s"
(String.concat ~sep:"," x.switches)
x.doc ;
loop (f (bool_of_var var)) more in
loop (action ~anon) options in
let help_msg =
Fmt.str "%s\n\nOptions:\n\n%s\n" !help_intro
(String.concat ~sep:"\n" (List.rev !help)) in
let help_flag_var = Fmt.kstr string "%s_help" prefix in
let while_loop =
let body =
let append_anon_arg_to_list =
setenv ~var:anon_var
( Elist.append anon (Elist.make [getenv (string "1")])
|> Elist.serialize_str_list ) in
let help_case =
let help_switches = ["-h"; "-help"; "--help"] in
case
(List.fold ~init:(bool false) help_switches ~f:(fun p s ->
p ||| Str.(str s =$= getenv (str "1")) ) )
[ setenv ~var:help_flag_var (Bool.to_string (bool true))
; byte_array help_msg >> exec ["cat"]; exec ["break"] ] in
let dash_dash_case =
case
Str.(getenv (str "1") =$= str "--")
[ exec ["shift"]
; loop_while
Str.(getenv (str "#") <$> str "0")
~body:(seq [append_anon_arg_to_list; exec ["shift"]])
; exec ["break"] ] in
let anon_case =
case
Str.(getenv (str "#") <$> str "0")
[append_anon_arg_to_list; exec ["shift"]] in
let default_case = default [exec ["break"]] in
let cases =
(help_case :: List.rev !cases)
@ [dash_dash_case; anon_case; default_case] in
seq [switch cases] in
loop_while (bool true) ~body in
seq
[ setenv ~var:help_flag_var (Bool.to_string (bool false))
; setenv ~var:anon_var (Elist.serialize_byte_array_list (Elist.make []))
; seq (List.rev !inits); while_loop
; if_then_else (bool_of_var (Fmt.str "%s_help" prefix)) nop applied_action
]
end
let loop_until_true ?(attempts = 20) ?(sleep = 2)
?(on_failed_attempt = fun nth -> printf (string "%d.") [Integer.to_str nth])
cmd =
let intvar =
let varname = string "C_ATTEMPTS" in
object
method set v = setenv ~var:varname (Integer.to_str v)
method get = getenv varname |> Integer.of_str
end in
seq
[ intvar#set (int 1)
; loop_while
(Integer.(intvar#get <= int attempts) &&& not cmd)
~body:
(seq
[ on_failed_attempt intvar#get
; intvar#set Integer.(intvar#get + int 1)
; if_then
Integer.(intvar#get <= int attempts)
(exec ["sleep"; Fmt.str "%d" sleep]) ] )
; if_then_else
Integer.(intvar#get > int attempts)
(seq
[ exec ["false"]] )
(seq [ exec ["true"]])
]
|> returns ~value:0
let silently u =
let dev_null = string "/dev/null" in
write_output ~stdout:dev_null ~stderr:dev_null u
let succeeds_silently u = silently u |> succeeds
let seq_and l = List.fold l ~init:(bool true) ~f:(fun u v -> u &&& succeeds v)
let output_markdown_code tag f =
seq
[ exec ["printf"; Fmt.str "``````````%s\\n" tag]; f
; exec ["printf"; Fmt.str "\\n``````````\\n"] ]
let cat_markdown tag file = output_markdown_code tag @@ call [string "cat"; file]
let fresh_name suf =
let x =
object
method v = 42
end in
Fmt.str "g-%d-%d-%s" (Caml.Oo.id x) (Random.int 100_000) suf
let sanitize_name n =
String.map n ~f:(function
| ('0' .. '9' | 'a' .. 'z' | 'A' .. 'Z' | '-') as c -> c
| _ -> '_' )
let default_on_failure ~step:(i, _) ~stdout ~stderr =
seq
[ printf (Fmt.kstr str "Step '%s' FAILED:\\n" i) []
; cat_markdown "stdout" stdout; cat_markdown "stderr" stderr; exec ["false"]
]
let check_sequence ?(verbosity = `Announce ">> ")
?(on_failure = default_on_failure)
?(on_success = fun ~step:_ ~stdout:_ ~stderr:_ -> nop) ?(tmpdir = "/tmp")
cmds =
let tmp_prefix = fresh_name "-cmd" in
let tmpout which id =
str
( tmpdir
// Fmt.str "genspio-check-sequence-%s-%s-%s" tmp_prefix which
(sanitize_name id) ) in
let stdout id = tmpout "stdout" id in
let stderr id = tmpout "stderr" id in
let log id u =
match verbosity with
| `Silent -> write_output ~stdout:(stdout id) ~stderr:(stderr id) u
| `Announce prompt ->
seq
[ eprintf (Fmt.kstr str "%s %s\\n" prompt id) []
; write_output ~stdout:(stdout id) ~stderr:(stderr id) u ]
| `Output_all -> u in
let check idx (nam, u) next =
let id = Fmt.str "%d. %s" idx nam in
if_seq
(log id u |> succeeds)
~t:[on_success ~step:(id, u) ~stdout:(stdout id) ~stderr:(stderr id); next]
~e:[on_failure ~step:(id, u) ~stdout:(stdout id) ~stderr:(stderr id)]
in
let rec loop i = function
| one :: more -> check i one (loop (i + 1) more)
| [] -> exec ["true"] in
loop 1 cmds
let on_stdin_lines body =
let fresh = Common.Unique_name.variable "read_stdin" in
loop_while
(exec ["read"; "-r"; fresh] |> succeeds)
~body:(seq [exec ["export"; fresh]; body (getenv (string fresh))])
let command_available executable =
succeeds_silently (call [str "command"; str "-v"; executable])
let get_stdout_one_line ?(first_line = false) ?(remove_spaces = false) u =
get_stdout
( (if first_line then u ||> exec ["head"; "-n"; "1"] else u)
||> exec ["tr"; "-d"; (if remove_spaces then " \\n" else "\\n")] )
let verbose_call ?(prefix = "CALL: ") ?(verbose = bool true) l =
if_seq verbose
~t:
[ eprintf (Fmt.kstr str "%s[" prefix) []
; seq @@ List.map l ~f:(fun ex -> eprintf (string "%s ") [ex])
; eprintf (string "]\\n") []; call l ]
~e:[call l]
let check_sequence_with_output l =
check_sequence ~verbosity:`Output_all
(List.mapi l ~f:(fun i c -> (Fmt.str "Step-%d" i, c)))
let is_regular_file path =
call [string "test"; string "-f"; path] |> succeeds_silently
let is_directory path =
call [string "test"; string "-d"; path] |> succeeds_silently
let is_executable path = succeeds_silently @@ call [str "test"; str "-x"; path]
let is_readable path = succeeds_silently @@ call [str "test"; str "-r"; path]
let mkdir_p path = call [str "mkdir"; str "-p"; path]
let exit n = exec ["exit"; Int.to_string n]
let home_path () = getenv (str "HOME")
let ( ^$^ ) a b = Str.concat_list [a; b]
let ( /// ) a b = Str.concat_list [a; str "/"; b]
let say fmt l = eprintf (Fmt.kstr string "%s\\n" fmt) l
let ensure what ~condition ~how =
if_seq condition
~t:[Fmt.kstr say "%s -> already done" what []]
~e:
[ check_sequence
~verbosity:(`Announce (Fmt.str "-> %s: in-progress" what))
~on_failure:(fun ~step ~stdout ~stderr ->
seq
[ say "FAILURE: %s" [str (fst step)]
; with_stdout_to_stderr (cat_markdown "stdout" stdout)
; with_stdout_to_stderr (cat_markdown "stderr" stderr)
; fail "FATAL ERROR" ] )
how
; if_then_else condition nop
(seq
[ say "FAILURE: %s did not ensure condition!" [str what]
; fail "FATAL ERROR" ] ) ]
let greps_to ?(extended_re = false) re u =
let c = [string "grep"] @ (if extended_re then [string "-E"] else []) @ [re] in
succeeds_silently (u ||> call c)
let ?(file_descriptor = str "1") ?disable
?(default_command = exec ["more"]) () =
let with_disable =
Option.value_map disable ~default:[] ~f:(fun cond ->
[case cond [exec ["cat"]]] ) in
switch
( with_disable
@ [ case
(call [str "test"; str "-t"; file_descriptor] |> succeeds_silently)
[exec ["cat"]]
; case
Str.(getenv (str "PAGER") <$> str "")
[call [str "sh"; str "-c"; getenv (str "PAGER")]]
; default [default_command] ] )
module Script_with_describe (P : sig
val name : string val description : string
end) =
struct
include P
let describe_option_and_usage ?(more_usage = []) () =
let open Command_line.Arg in
flag ["--describe"] ~doc:P.description
& Fmt.kstr usage "usage: %s <args>\n%s.%s" P.name P.description
(List.map more_usage ~f:(Fmt.str "\n%s") |> String.concat ~sep:"")
let deal_with_describe describe more =
if_seq describe
~t:[printf (Fmt.kstr string "%s\\n" P.description) []]
~e:more
end
module Dispatcher_script = struct
let make ?(aliases = []) ~name ~description () =
let eq_or ~eq s1 l =
match l with
| [] -> bool true
| h :: t ->
List.fold
~init:(eq s1 (string h))
t
~f:(fun p v -> p ||| eq s1 (string v)) in
let pr_usage =
seq
[ printf
(Fmt.kstr string
"usage: %s <cmd> [OPTIONS/ARGS]\\n\\n%s.\\n\\nSub-commands:\\n"
name description )
[]
; (let findgrep =
Fmt.kstr Magic.unit
"{ ls -1 $(echo $PATH | tr ':' ' ') | grep -E '%s-[^-]*$' | \
sort -u ; } 2> /dev/null"
name in
findgrep
||> on_stdin_lines (fun line ->
printf (string "* %s: %s\\n")
[ line
; get_stdout
( call [line; string "--describe"]
||> exec ["tr"; "-d"; "\\n"] ) ] ) )
; printf (str "Aliases:\\n") []
; seq
(List.map aliases ~f:(fun (a, v) ->
printf (str "* %s -> %s\\n") [a; v] ) ) ] in
let dollar_one_empty = Str.(getenv (string "1") =$= string "") in
let tmp = Fmt.kstr tmp_file "%s-call" name in
seq
[ if_seq
( dollar_one_empty
||| eq_or ~eq:Str.( =$= )
(getenv (string "1"))
["-h"; "--help"; "help"] )
~t:[pr_usage]
~e:
[ if_seq
Str.(getenv (string "1") =$= string "--describe")
~t:[printf (Fmt.kstr string "%s\\n" description) []]
~e:
[ write_stdout ~path:tmp#path
(seq
[ printf (str "%s-") [str name]
; switch
( List.map aliases ~f:(fun (a, v) ->
case
Str.(a =$= getenv (string "1"))
[printf (str "%s") [v]] )
@ [default [printf (str "%s") [getenv (str "1")]]]
); exec ["shift"]
; loop_seq_while (not dollar_one_empty)
[ printf (str " '") []
; getenv (string "1")
>> exec ["sed"; "s/'/'\\\\''/g"]
; printf (str "'") []; exec ["shift"] ] ] )
; call [string "sh"; tmp#path] ] ] ]
end