Source file mpp_actions.ml
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
open Mpp_charstream
module Out = Mpp_out
open Printf
let space_chars = ref (Mpp_charset.empty)
let blank_chars = ref (Mpp_charset.empty)
let debug = ref false
let ignore_non_existing_commands = ref false
let main_process : (charstream -> Out.t -> unit) ref = ref (fun _ _ -> assert false)
type action = last_condition -> nesting -> action_args -> charstream -> Out.t -> unit
and action_args = charstream
and nesting = bool
and last_condition = bool option ref
type action_set = (action * documentation) Mpp_stringmap.t
and documentation = string
let actions : action_set ref = ref Mpp_stringmap.empty
let ignore_exec_error = ref false
let is_lazy, register_lazy =
let module SS = Set.Make(String) in
let lazy_set = ref SS.empty in
((fun action_name ->
SS.mem action_name !lazy_set),
(fun action_name ->
lazy_set := SS.add action_name !lazy_set
))
type set = string Mpp_stringmap.t
let environment : set = Mpp_stringmap.empty
module Mpp_conditions = struct
let elze last_cond nesting (s:charstream) cs out =
match !last_cond with
| None ->
Mpp_charstream.parse_error ~msg:"`else' without a previous \
matching conditional."
(cs.Mpp_charstream.where());
exit 1
| Some c ->
last_cond := None;
if c then
()
else
begin
if nesting then
begin
let b1 = Buffer.create 42 in
!main_process s (Out.Buffer b1);
Out.output_buffer out b1;
let b2 = Buffer.create 42 in
!main_process cs (Out.Buffer b2);
Out.output_buffer out b2;
end
else
begin
Out.output_charstream out s;
Out.output_charstream out cs;
end
end
end
module Variable : sig
val set: charstream -> charstream -> 'ignored -> unit
val get: charstream -> charstream -> Out.t -> unit
val tryget: charstream -> charstream -> Out.t -> unit
val unset: charstream -> charstream -> 'ignored -> unit
val unsetall: 'string -> 'charstream -> Out.t -> unit
val ifdef: bool option ref -> bool -> charstream -> charstream -> Out.t -> unit
val ifndef: bool option ref -> bool -> charstream -> charstream -> Out.t -> unit
val elzeifdef: bool option ref -> bool -> charstream -> charstream -> Out.t -> unit
val elze: bool option ref -> bool -> charstream -> charstream -> Out.t -> unit
end = struct
include Mpp_conditions
include Map.Make(String)
let suppress_spaces s =
let b = Buffer.create (String.length s - 1) in
for i = 0 to String.length s - 1 do
match s.[i] with
| ' ' | '\t' | '\n' | '\r' ->
()
| c -> Buffer.add_char b c
done;
Buffer.contents b
let env = ref empty
let unsetall _s _cs _out = env := empty
let set s cs _ =
let variable =
read_until_one_of ~failsafe:true !blank_chars s
in
let value =
match string_of_charstream cs with
| "" -> string_of_charstream s
| x ->
string_of_charstream s ^ x
in
env := add variable value !env
let get s cs out =
let s = suppress_spaces (string_of_charstream s) in
try
Out.output_string out (find s !env)
with Not_found ->
parse_error
~msg:(sprintf "You tried to get the value of variable %s, \
which doesn't exist (1)." s)
(cs.where());
exit 1
let tryget s _ out =
let s = suppress_spaces (string_of_charstream s) in
try
Out.output_string out (find s !env)
with Not_found ->
()
let unset s cs _ =
let s = suppress_spaces (string_of_charstream s) in
try
env := remove s !env
with Not_found ->
parse_error
~msg:(sprintf "You tried to get the value of variable %s, \
which doesn't exist (2)." s)
(cs.where());
exit 1
let ifdef last_cond nesting (cs:charstream) bcs out =
if !debug then
eprintf "ifdef <%s> <%s>\n%!" (string_of_charstream ~keepcs:true cs)
(String.escaped (string_of_charstream ~keepcs:true bcs));
let s:string = read_until_one_of ~failsafe:true ~caller:"ifdef"
!blank_chars cs in
assert (s<>"");
try
begin
ignore(find s !env);
last_cond := Some true;
if nesting then
begin
let b1 = Buffer.create 42 in
!main_process cs (Out.Buffer b1);
Out.output_buffer out b1;
let b2 = Buffer.create 42 in
!main_process bcs (Out.Buffer b2);
Out.output_buffer out b2;
end
else
begin
Out.output_charstream out cs;
Out.output_charstream out bcs;
end
end
with Not_found ->
last_cond := Some false
let ifndef last_cond nesting (cs:charstream) bcs out =
if !debug then
eprintf "ifdef <%s> <%s>\n%!" (string_of_charstream ~keepcs:true cs)
(String.escaped (string_of_charstream ~keepcs:true bcs));
let s:string = read_until_one_of ~failsafe:true ~caller:"ifndef"
!blank_chars cs in
assert(s<>"");
try
begin
ignore(find s !env);
last_cond := Some false;
end
with Not_found ->
last_cond := Some true;
if nesting then
begin
let b1 = Buffer.create 42 in
!main_process cs (Out.Buffer b1);
Out.output_buffer out b1;
let b2 = Buffer.create 42 in
!main_process bcs (Out.Buffer b2);
Out.output_buffer out b2;
end
else
begin
Out.output_charstream out cs;
Out.output_charstream out bcs;
end
let elzeifdef (last_cond:bool option ref) (nesting:bool) (s:charstream)
(cs:charstream) (out:Out.t) =
match !last_cond with
| Some c ->
if c then
()
else
ifdef last_cond nesting s cs out
| None ->
parse_error ~msg:"`elseifdef' without a matching previous `if'."
(cs.where());
exit 1
end
let last_cmd = ref 0
let command ?temp_dir arg charstream (out:Out.t) =
let tmp = Filename.temp_file ?temp_dir "mpp_command" "" in
let otmp = open_out tmp in
output_charstream otmp charstream;
close_out otmp;
let tmp2 = Filename.temp_file ?temp_dir "mpp_command" "" in
let cmd = sprintf "(cat %s | %s) > %s" tmp (string_of_charstream arg) tmp2 in
if !debug then eprintf "command %s\n%!" cmd;
last_cmd := Sys.command ("bash -c " ^ (Filename.quote cmd));
Out.cat out tmp2;
Sys.remove tmp;
Sys.remove tmp2;
Out.flush out;
!last_cmd
let ifcmd last_cond nesting arg charstream out =
if !debug then
eprintf "ifcmd <%s> <%s>\n%!"
(String.escaped (string_of_charstream ~keepcs:true arg))
(String.escaped (string_of_charstream ~keepcs:true charstream));
if !last_cmd = 0 then
begin
last_cond := Some true;
if nesting then
begin
let b1 = Buffer.create 42 in
!main_process arg (Out.Buffer b1);
Out.output_buffer out b1;
let b2 = Buffer.create 42 in
!main_process charstream (Out.Buffer b2);
Out.output_buffer out b2;
end
else
begin
Out.output_charstream out arg;
Out.output_charstream out charstream;
end
end
else
last_cond := Some false
let cmd arg charstream (out:Out.t) =
let file, line, column = charstream.where() in
match command arg charstream out with
| 0 -> ()
| ec ->
if not (!ignore_exec_error) then
failwith
(sprintf "Command <%s> ended with error <%d>. Location: %s:%d:%d."
(string_of_charstream ~keepcs:true arg) ec file line column)
else
()
let copy ~trunc _last_cond _nesting filename cs (out:Out.t) =
let filename = string_of_charstream filename in
let s = string_of_charstream cs in
let o =
if trunc then
open_out_gen [Open_wronly;Open_creat;Open_trunc;Open_binary] 0o640 filename
else
open_out_gen [Open_wronly;Open_creat;Open_binary] 0o640 filename
in
let f = Out.Out_channel o in
Out.output_string f s;
Out.flush f;
close_out o;
Out.output_string out s
let builtins : action_set ref =
let cmd _ _ = cmd in
let echo _ _ =
(fun a _cs out -> Out.output_charstream out a) in
let cat _ _ =
(fun filename _cs out -> Out.cat out (string_of_charstream filename); Out.flush out)
in
let set _ _ = Variable.set in
let unset _ _ = Variable.unset in
let unsetall _ _ = Variable.unsetall in
let get _ _ = Variable.get in
let tryget _ _ = Variable.tryget in
let ifcmd = ifcmd in
let ifdef = Variable.ifdef in
let ifndef = Variable.ifndef in
let elzeifdef = Variable.elzeifdef in
let elze = Variable.elze in
let error _ _ s cs _ =
parse_error
~msg:(sprintf "your message is <%s>. No matter what, I'm exiting."
(string_of_charstream ~keepcs:true s))
(cs.where());
exit 1
in
let r =
List.fold_left
(fun r (k,(e:bool option ref -> bool -> Mpp_charstream.charstream -> Mpp_charstream.charstream -> Out.t -> unit),doc) -> Mpp_stringmap.add k (e,doc) r)
Mpp_stringmap.empty
[
"ignore", (fun _ _ _ _ _ -> ()), "A command that does nothing with its arguments.";
"ifcmd", ifcmd, "If the last external command returned 0, then inputs the rest.";
"ifdef", ifdef, "If the argument is a defined variable, then inputs the rest.";
"tryget", tryget, "Get the value of a variable, and if it doesn't exist, it does nothing.";
"error", error, "Stops MPP.";
"ifndef", ifndef, "If the argument is not a defined variable, then inputs the rest, else does nothing.";
"else", elze, "If the previous test was not satisfied, then outputs its arguments";
"elseifdef", elzeifdef, "If the previous test was not satisfied and the variable exists, then outputs the rest.";
"set", set, "Set the variable to the rest. Related: get, tryget, unset, unsetall.";
"get", get, "Get the value of a variable, and if it does not exist, MPP stops. Related: set, tryget, unset, unsetall.";
"unset", unset, "Unset a variable. Related: tryget, get, tryget, unsetall.";
"unsetall", unsetall, "Unset all variables. Related: tryget, get, tryget, unsetall.";
"cmd", cmd, "Execute the rest of the line as a shell command. Following lines (if any) are given as input of the shell command.";
"echo", echo, "Print the rest of the line.";
"cat", cat, "Print the contents of a file.";
"copy", copy ~trunc:false, "Copy the block to a file.";
"tcopy", copy ~trunc:true, "Copy the block to a file, empty it first if it already exists.";
]
in ref (r:action_set)
let apply_builtin action_name location =
try
match Mpp_stringmap.find action_name !builtins with
| f, _ -> (f:bool option ref -> bool -> charstream -> charstream -> Out.t -> unit )
with Not_found ->
if !ignore_non_existing_commands then
begin
fun (_last_cond:bool option ref) (_nesting:bool) _action_name _charstream _out -> ()
end
else
begin
parse_error
~msg:(sprintf "Command <%s> not found!" action_name)
location;
exit 1
end
let exec (nesting:bool) (last_cond:bool option ref) (action_name:string)
(arguments:charstream) (charstream:charstream) (out: Out.t) =
if !debug then
begin
eprintf "Exec: %!";
eprintf "action_name:<%s> arguments:<%s>\n%!"
action_name (string_of_charstream ~keepcs:true arguments);
end;
if action_name.[0] <> '-' then
begin
if nesting then
begin
if is_lazy action_name then
begin
apply_builtin action_name (charstream.where()) last_cond nesting
arguments charstream out
end
else
begin
let buff1 = Buffer.create 42 in
let buff2 = Buffer.create 42 in
let arguments =
let l = arguments.where() in
!main_process arguments (Out.Buffer buff1);
charstream_of_string ~location:l (Buffer.contents buff1)
in
let charstream =
let x = charstream.where() in
!main_process charstream (Out.Buffer buff2);
charstream_of_string ~location:x (Buffer.contents buff2)
in
if !debug then
eprintf "action<%s><%s><%s>\n%!" (action_name)
(String.escaped (string_of_charstream ~keepcs:true arguments))
(String.escaped (string_of_charstream ~keepcs:true charstream));
apply_builtin action_name (charstream.where()) last_cond
nesting arguments charstream out
end
end
else
begin
apply_builtin action_name (charstream.where()) last_cond nesting
arguments charstream out
end
end
else
begin
if nesting then
begin
(apply_builtin "cmd" (charstream.where())) last_cond nesting
(charstream_of_string (String.sub action_name 1
(String.length action_name - 1)
^ " " ^ string_of_charstream arguments))
charstream out
end
else
(apply_builtin "cmd" (charstream.where())) last_cond nesting
(charstream_of_string (String.sub action_name 1
(String.length action_name - 1) ^ " " ^ string_of_charstream arguments))
charstream out;
if !debug then eprintf "cmd... mpp_actions.ml:>???%!";
end;
Out.flush out
let list_builtins out =
let m =
4 + Mpp_stringmap.fold
(fun k _ r -> max (String.length k) r)
!builtins
0
in
let pad k =
k ^ String.make (max 1 (m - String.length k)) ' '
in
Mpp_stringmap.iter
(fun k (_e, doc) ->
Out.printf out "%s %s\n" (pad k) doc;
Out.flush out)
!builtins
let register (name:string) (f: action) (d:documentation) : unit =
builtins := Mpp_stringmap.add name (f,d) !builtins
let _ =
register
"builtins"
(fun _ _ _ _ out -> list_builtins out)
"List all available builtins."
let _ =
List.iter register_lazy [
"ifdef";
"ifndef";
"else";
"elseifdef";
"ifcmd";
]
let _ =
register
"getenv"
(fun _ _ s cs out ->
let v = string_of_charstream s in
try
Out.output_string out (Sys.getenv v);
Out.flush out
with Not_found ->
parse_error
~msg:(sprintf "You tried to get the value of process-environment \
variable %s, which doesn't exist." v)
(cs.where());
exit 1
)
"Get a process-environment variable. Stops if it doesn't find it.";
register
"trygetenv"
(fun _ _ s _ out ->
try
Out.output_string out (Sys.getenv(string_of_charstream s));
Out.flush out
with Not_found -> ())
"Try to get a process-environment variable. Continues if it doesn't find it."
let builtins = ()