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
open Core
open Import
module Unix = Unix_syscalls
type env = Unix.env [@@deriving sexp]
type t =
{ pid : Pid.t
; stdin : Writer.t
; stdout : Reader.t
; stderr : Reader.t
; prog : string
; args : string list
; working_dir : string option
; env : env
; wait : Unix.Exit_or_signal.t Deferred.t Lazy.t
}
[@@deriving fields ~getters, sexp_of]
let create
?argv0
?buf_len
?(env = `Extend [])
?prog_search_path
?stdin:write_to_stdin
?working_dir
?setpgid
~prog
~args
()
=
match%map
In_thread.syscall ~name:"create_process_env" (fun () ->
Core_unix.create_process_env
~prog
~args
~env
?working_dir
?prog_search_path
?argv0
?setpgid
())
with
| Error exn -> Or_error.of_exn exn
| Ok { pid; stdin; stdout; stderr } ->
let create_fd name file_descr =
Fd.create
Fifo
file_descr
(Info.create
"child process"
~here:[%here]
(name, `pid pid, `prog prog, `args args)
[%sexp_of:
string * [ `pid of Pid.t ] * [ `prog of string ] * [ `args of string list ]])
in
let stdin =
let fd = create_fd "stdin" stdin in
match write_to_stdin with
| None -> Writer.create ?buf_len fd
| Some _ ->
Writer.create
?buf_len
fd
~buffer_age_limit:`Unlimited
~raise_when_consumer_leaves:false
in
let t =
{ pid
; stdin
; stdout = Reader.create ?buf_len (create_fd "stdout" stdout)
; stderr = Reader.create ?buf_len (create_fd "stderr" stderr)
; prog
; args
; working_dir
; env
; wait =
lazy (Unix.waitpid_prompt pid)
}
in
(match write_to_stdin with
| None -> ()
| Some write_to_stdin -> Writer.write t.stdin write_to_stdin);
Ok t
;;
let create_exn
?argv0
?buf_len
?env
?prog_search_path
?stdin
?working_dir
?setpgid
~prog
~args
()
=
create
?argv0
?buf_len
?env
?prog_search_path
?stdin
?working_dir
?setpgid
~prog
~args
()
>>| ok_exn
;;
module Lines_or_sexp = struct
type t =
| Lines of string list
| Sexp of Sexp.t
let sexp_of_t t =
match t with
| Lines ([] | [ "" ]) -> [%sexp ""]
| Lines lines -> [%sexp (lines : string list)]
| Sexp sexp -> sexp
;;
let create string =
try Sexp (Sexp.of_string string) with
| _ -> Lines (String.split ~on:'\n' string)
;;
end
module Output = struct
module Stable = struct
module V1 = struct
type t =
{ stdout : string
; stderr : string
; exit_status : Unix.Exit_or_signal.t
}
[@@deriving compare, sexp]
end
end
include Stable.V1
let sexp_of_t t =
[%message
""
~stdout:(Lines_or_sexp.create t.stdout : Lines_or_sexp.t)
~stderr:(Lines_or_sexp.create t.stderr : Lines_or_sexp.t)
~exit_status:(t.exit_status : Unix.Exit_or_signal.t)]
;;
end
let wait t = force t.wait
let collect_output_and_wait t =
let stdout = Reader.contents t.stdout in
let stderr = Reader.contents t.stderr in
let%bind () = Writer.close t.stdin ~force_close:(Deferred.never ()) in
let%bind exit_status = wait t in
let%bind stdout = stdout in
let%bind stderr = stderr in
return { Output.stdout; stderr; exit_status }
;;
module Failure = struct
let should_drop_env = function
| `Extend [] | `Override [] -> true
| `Extend (_ :: _) | `Override (_ :: _) | `Replace _ | `Replace_raw _ -> false
;;
type t =
{ prog : string
; args : string list
; working_dir : string option [@sexp.option]
; env : env [@sexp_drop_if should_drop_env]
; exit_status : Unix.Exit_or_signal.error
; stdout : Lines_or_sexp.t
; stderr : Lines_or_sexp.t
}
[@@deriving sexp_of]
end
let handle_exit_status ?(accept_nonzero_exit = []) = function
| Ok _ as ok -> ok
| Error (`Exit_non_zero n) when List.mem accept_nonzero_exit n ~equal:Int.equal -> Ok ()
| Error _ as e -> e
;;
let collect_stdout_and_wait ?accept_nonzero_exit t =
let%map { stdout; stderr; exit_status } = collect_output_and_wait t in
match handle_exit_status ?accept_nonzero_exit exit_status with
| Ok () -> Ok stdout
| Error exit_status ->
let { prog; args; working_dir; env; _ } = t in
Or_error.error
"Process.run failed"
{ Failure.prog
; args
; working_dir
; env
; exit_status
; stdout = Lines_or_sexp.create stdout
; stderr = Lines_or_sexp.create stderr
}
[%sexp_of: Failure.t]
;;
let map_collect collect f ?accept_nonzero_exit t =
let%map a = collect ?accept_nonzero_exit t in
f a
;;
let collect_stdout_and_wait_exn = map_collect collect_stdout_and_wait ok_exn
let collect_stdout_lines_and_wait =
map_collect collect_stdout_and_wait (Or_error.map ~f:String.split_lines)
;;
let collect_stdout_lines_and_wait_exn = map_collect collect_stdout_lines_and_wait ok_exn
let run
?accept_nonzero_exit
?argv0
?env
?prog_search_path
?stdin
?working_dir
~prog
~args
()
=
match%bind create ?argv0 ?env ?prog_search_path ?stdin ?working_dir ~prog ~args () with
| Error _ as e -> return e
| Ok t -> collect_stdout_and_wait ?accept_nonzero_exit t
;;
let map_run
run
f
?accept_nonzero_exit
?argv0
?env
?prog_search_path
?stdin
?working_dir
~prog
~args
()
=
let%map a =
run
?accept_nonzero_exit
?argv0
?env
?prog_search_path
?stdin
?working_dir
~prog
~args
()
in
f a
;;
let run_exn = map_run run ok_exn
let run_lines = map_run run (Or_error.map ~f:String.split_lines)
let run_lines_exn = map_run run_lines ok_exn
let run_expect_no_output
?accept_nonzero_exit
?argv0
?env
?prog_search_path
?stdin
?working_dir
~prog
~args
()
=
match%map
run
?accept_nonzero_exit
?argv0
?env
?prog_search_path
?stdin
?working_dir
~prog
~args
()
with
| Error _ as err -> err
| Ok "" -> Ok ()
| Ok non_empty_output ->
Or_error.error "Process.run_expect_no_output: non-empty output" () (fun () ->
[%sexp { prog : string; args : string list; output = (non_empty_output : string) }])
;;
let run_expect_no_output_exn = map_run run_expect_no_output ok_exn
let transfer_and_close reader writer =
Reader.with_close reader ~f:(fun () -> Writer.splice ~from:reader writer)
;;
let forward_output_and_wait ?accept_nonzero_exit t =
let%map () = Writer.close t.stdin ~force_close:(Deferred.never ())
and () = transfer_and_close t.stdout (Lazy.force Writer.stdout)
and () = transfer_and_close t.stderr (Lazy.force Writer.stderr)
and exit_status = wait t in
match handle_exit_status ?accept_nonzero_exit exit_status with
| Ok _ as ok -> ok
| Error exit_status ->
let { prog; args; working_dir; env; _ } = t in
Or_error.error_s
[%message
"Process.run failed"
(prog : string)
(args : string list)
(working_dir : string option)
(env : env)
(exit_status : Unix.Exit_or_signal.error)]
;;
let forward_output_and_wait_exn = map_collect forward_output_and_wait ok_exn
let run_forwarding_with_spliced_fds
?accept_nonzero_exit
?argv0
?env
?prog_search_path
?stdin
?working_dir
~prog
~args
()
=
match%bind create ?argv0 ?env ?prog_search_path ?stdin ?working_dir ~prog ~args () with
| Error _ as e -> return e
| Ok t -> forward_output_and_wait ?accept_nonzero_exit t
;;
let run_forwarding_with_shared_fds
?accept_nonzero_exit
?argv0
?env
?prog_search_path
?stdin:write_to_stdin
?working_dir
~prog
~args
()
=
let%bind () = Writer.flushed (Lazy.force Writer.stdout)
and () = Writer.flushed (Lazy.force Writer.stderr) in
match%bind
In_thread.syscall ~name:"create_process_with_fds" (fun () ->
Core_unix.create_process_with_fds
?argv0
?env
?prog_search_path
?working_dir
~prog
~args
~stdin:Generate
~stdout:(Use_this Core_unix.stdout)
~stderr:(Use_this Core_unix.stderr)
())
with
| Error exn -> Deferred.Or_error.of_exn exn
| Ok { pid; stdin; stdout = `Did_not_create_fd; stderr = `Did_not_create_fd } ->
let%map () =
let writer =
Fd.create
Fifo
stdin
(Info.create
"child process"
~here:[%here]
("stdin", `pid pid, `prog prog, `args args)
[%sexp_of:
string * [ `pid of Pid.t ] * [ `prog of string ] * [ `args of string list ]])
|> Writer.create
in
Writer.with_close writer ~f:(fun () ->
(match write_to_stdin with
| None -> ()
| Some write_to_stdin -> Writer.write writer write_to_stdin);
Writer.flushed_or_failed_unit writer)
and exit_status = Unix.waitpid_prompt pid in
(match handle_exit_status ?accept_nonzero_exit exit_status with
| Ok _ as ok -> ok
| Error exit_status ->
Or_error.error_s
[%message
"Process.run_forwarding_with_shared_fds failed"
(prog : string)
(args : string list)
(working_dir : string option)
(env : env option)
(exit_status : Unix.Exit_or_signal.error)])
;;
let run_forwarding ?(child_fds = `Splice) =
match child_fds with
| `Splice -> run_forwarding_with_spliced_fds
| `Share -> run_forwarding_with_shared_fds
;;
let run_forwarding_exn ?child_fds = map_run (run_forwarding ?child_fds) ok_exn
let send_signal_internal t signal =
if Lazy.is_val t.wait && Deferred.is_determined (Lazy.force t.wait)
then
`No_such_process_internal
else (
match Signal_unix.send signal (`Pid t.pid) with
| `No_such_process ->
`No_such_process_OS
| `Ok -> `Ok)
;;
let send_signal_compat t signal =
match send_signal_internal t signal with
| `No_such_process_OS | `No_such_process_internal -> `No_such_process
| `Ok -> `Ok
;;
let send_signal_compat_exn t signal =
match (send_signal_compat t signal : [ `Ok | `No_such_process ]) with
| `Ok -> ()
| `No_such_process ->
failwithf
"Process.send_signal_compat_exn %s pid:%s"
(Signal.to_string signal)
(Pid.to_string t.pid)
()
;;
let send_signal t signal =
ignore (send_signal_compat t signal : [ `Ok | `No_such_process ])
;;
module Aliases = struct
type 'a create =
?argv0:string
-> ?buf_len:int
-> ?env:env
-> ?prog_search_path:string list
-> ?stdin:string
-> ?working_dir:string
-> ?setpgid:Core_unix.Pgid.t
-> prog:string
-> args:string list
-> unit
-> 'a Deferred.t
type 'a run =
?accept_nonzero_exit:int list
-> ?argv0:string
-> ?env:env
-> ?prog_search_path:string list
-> ?stdin:string
-> ?working_dir:string
-> prog:string
-> args:string list
-> unit
-> 'a Deferred.t
type 'a collect = ?accept_nonzero_exit:int list -> t -> 'a Deferred.t
end
module For_tests = struct
let send_signal_internal = send_signal_internal
end