Source file opamParallel.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
open OpamStd.Op
open OpamProcess.Job.Op
let log fmt = OpamConsole.log "PARALLEL" fmt
let slog = OpamConsole.slog
exception Aborted
module type VERTEX = sig
include OpamStd.OrderedType
include Graph.Sig.COMPARABLE with type t := t
end
module type G = sig
include Graph.Sig.I
module Vertex: VERTEX with type t = V.t
module Topological: sig
val fold: (V.t -> 'a -> 'a) -> t -> 'a -> 'a
end
val has_cycle: t -> bool
val scc_list: t -> V.t list list
end
module type SIG = sig
module G : G
val iter:
jobs:int ->
command:(pred:(G.V.t * 'a) list -> G.V.t -> 'a OpamProcess.job) ->
?dry_run:bool ->
?mutually_exclusive:(G.V.t list list) ->
G.t ->
unit
val map:
jobs:int ->
command:(pred:(G.V.t * 'a) list -> G.V.t -> 'a OpamProcess.job) ->
?dry_run:bool ->
?mutually_exclusive:(G.V.t list list) ->
G.t ->
(G.V.t * 'a) list
exception Errors of G.V.t list * (G.V.t * exn) list * G.V.t list
exception Cyclic of G.V.t list list
end
module Make (G : G) = struct
module G = G
module V = G.Vertex
module M = OpamStd.Map.Make (V)
module S = OpamStd.Set.Make (V)
let map_keys m = M.fold (fun k _ s -> S.add k s) m S.empty
exception Errors of G.V.t list * (G.V.t * exn) list * G.V.t list
exception Cyclic of V.t list list
open S.Op
let aux_map ~jobs ~command ?(dry_run=false) ?(mutually_exclusive=[]) g =
log "Iterate over %a task(s) with %d process(es)"
(slog @@ G.nb_vertex @> string_of_int) g jobs;
let mutually_exclusive = List.map S.of_list mutually_exclusive in
if G.has_cycle g then (
let sccs = G.scc_list g in
let sccs = List.filter (function _::_::_ -> true | _ -> false) sccs in
raise (Cyclic sccs)
);
let njobs = G.nb_vertex g in
let print_status
(finished: int)
(running: (OpamProcess.t * 'a * string option) M.t) =
let texts =
OpamStd.List.filter_map (fun (_,_,t) -> t) (M.values running) in
let rec limit_width acc rem_cols = function
| [] -> List.rev acc
| t::ts ->
let len = OpamStd.Format.visual_length t in
if ts = [] && len < rem_cols then List.rev (t::acc)
else if len > rem_cols - 5 then
List.rev
(Printf.sprintf "%s+%2d"
(String.make (rem_cols - 4) ' ') (List.length ts + 1)
:: acc)
else
limit_width (t::acc) (rem_cols - len - 1) ts
in
let title =
Printf.sprintf "Processing %2d/%d:"
(finished + M.cardinal running) njobs
in
let texts =
if OpamConsole.disp_status_line () then
limit_width [] (OpamStd.Sys.terminal_columns ()) (title::texts)
else if OpamConsole.verbose () then title::texts
else []
in
if texts <> [] then OpamConsole.status_line "%s" (String.concat " " texts)
in
let rec loop
(nslots: int)
(results: 'b M.t)
(running: (OpamProcess.t * 'a * string option) M.t)
(ready: S.t)
=
let mutual_exclusion_set n =
List.fold_left (fun acc s -> if S.mem n s then acc ++ s else acc)
S.empty mutually_exclusive
in
let run_seq_command nslots ready n = function
| Done r ->
log "Job %a finished" (slog (string_of_int @* V.hash)) n;
let results = M.add n r results in
let running = M.remove n running in
if not (M.is_empty running) then
print_status (M.cardinal results) running;
let new_ready =
S.filter
(fun n ->
List.for_all (fun n -> M.mem n results) (G.pred g n) &&
not (M.mem n results) &&
S.is_empty (mutual_exclusion_set n %% map_keys running))
(S.of_list (G.succ g n) ++ mutual_exclusion_set n)
in
loop (nslots + 1) results running (ready ++ new_ready)
| Run (cmd, cont) ->
log "Next task in job %a: %a" (slog (string_of_int @* V.hash)) n
(slog OpamProcess.string_of_command) cmd;
let p =
if dry_run then OpamProcess.dry_run_background cmd
else OpamProcess.run_background cmd
in
let running =
M.add n (p, cont, OpamProcess.text_of_command cmd) running
in
print_status (M.cardinal results) running;
loop nslots results running ready
in
let fail node error =
log "Exception while computing job %a: %a"
(slog (string_of_int @* V.hash)) node
(slog V.to_string) node;
if error = Sys.Break then OpamConsole.error "User interruption";
let running = M.remove node running in
let errors,pend =
if dry_run then [node,error],[] else
M.fold (fun n (p,cont,_text) (errors,pend) ->
try
match OpamProcess.dontwait p with
| None ->
OpamProcess.interrupt p;
(n,Aborted) :: errors,
p::pend
| Some result ->
match cont result with
| Done _ -> errors, pend
| Run _ ->
(n,Aborted) :: errors,
pend
with
| Unix.Unix_error _ -> errors, pend
| e -> (n,e)::errors, pend)
running ([node,error],[])
in
(try List.iter (fun _ -> ignore (OpamProcess.wait_one pend)) pend
with e -> log "%a in sub-process cleanup" (slog Printexc.to_string) e);
let remaining =
G.Topological.fold (fun n remaining ->
if M.mem n results || List.mem_assoc n errors then remaining
else n::remaining)
g [] in
raise (Errors (M.keys results, List.rev errors, List.rev remaining))
in
if M.is_empty running && S.is_empty ready then
results
else if nslots > 0 && not (S.is_empty ready) then
let n = S.choose ready in
log "Starting job %a (worker %d/%d): %a"
(slog (string_of_int @* V.hash)) n (jobs - nslots + 1) jobs
(slog V.to_string) n;
let pred = G.pred g n in
let pred = List.map (fun n -> n, M.find n results) pred in
let cmd = try command ~pred n with e -> fail n e in
let ready = S.remove n ready -- mutual_exclusion_set n in
run_seq_command (nslots - 1) ready n cmd
else
let processes =
M.fold (fun n (p,x,_) acc -> (p,(n,x)) :: acc) running []
in
let process,result =
if dry_run then
OpamProcess.dry_wait_one (List.map fst processes)
else try match processes with
| [p,_] -> p, OpamProcess.wait p
| _ -> OpamProcess.wait_one (List.map fst processes)
with e -> fail (fst (snd (List.hd processes))) e
in
let n,cont = List.assoc process processes in
log "Collected task for job %a (ret:%d)"
(slog (string_of_int @* V.hash)) n result.OpamProcess.r_code;
let next =
try cont result with e ->
OpamProcess.cleanup result;
fail n e in
OpamProcess.cleanup result;
run_seq_command nslots ready n next
in
let roots =
G.fold_vertex
(fun n roots -> if G.in_degree g n = 0 then S.add n roots else roots)
g S.empty
in
let r = loop jobs M.empty M.empty roots in
OpamConsole.clear_status ();
r
let iter ~jobs ~command ?dry_run ?mutually_exclusive g =
ignore (aux_map ~jobs ~command ?dry_run ?mutually_exclusive g)
let map ~jobs ~command ?dry_run ?mutually_exclusive g =
M.bindings (aux_map ~jobs ~command ?dry_run ?mutually_exclusive g)
let error_printer = function
| Errors (_, (_,exc)::_, _) -> Some (Printexc.to_string exc)
| _ -> None
let () = Printexc.register_printer error_printer
end
module type GRAPH = sig
include Graph.Sig.I
include Graph.Oper.S with type g = t
module Topological : sig
val fold : (V.t -> 'a -> 'a) -> t -> 'a -> 'a
val iter : (V.t -> unit) -> t -> unit
end
module Parallel : SIG with type G.t = t
and type G.V.t = vertex
module Dot : sig val output_graph : out_channel -> t -> unit end
val transitive_closure: ?reflexive:bool -> t -> unit
end
module MakeGraph (X: VERTEX) = struct
module Vertex = X
module PG = Graph.Imperative.Digraph.ConcreteBidirectional (Vertex)
module Topological = Graph.Topological.Make (PG)
module Traverse = Graph.Traverse.Dfs(PG)
module Components = Graph.Components.Make(PG)
module Parallel = Make (struct
include PG
module Vertex = Vertex
module Topological = Topological
include Traverse
include Components
end)
module Dot = Graph.Graphviz.Dot (struct
let edge_attributes _ = []
let default_edge_attributes _ = []
let get_subgraph _ = None
let vertex_attributes _ = []
let vertex_name v = Printf.sprintf "\"%s\"" (Vertex.to_string v)
let default_vertex_attributes _ = []
let graph_attributes _ = []
include PG
end)
include PG
include Graph.Oper.I (PG)
let transitive_closure ?reflexive g =
ignore (add_transitive_closure ?reflexive g)
end
module IntGraph = MakeGraph(struct
type t = int
let compare x y = x - y
let hash x = x
let equal x y = x = y
let to_string = string_of_int
let to_json x = `Float (float_of_int x)
end)
let flat_graph_of_array a =
let g = IntGraph.create () in
Array.iteri (fun i _ -> IntGraph.add_vertex g i) a;
g
exception Errors = IntGraph.Parallel.Errors
let iter ~jobs ~command ?dry_run l =
let a = Array.of_list l in
let g = flat_graph_of_array a in
let command ~pred:_ i = command a.(i) in
ignore (IntGraph.Parallel.iter ~jobs ~command ?dry_run g)
let map ~jobs ~command ?dry_run l =
let a = Array.of_list l in
let g = flat_graph_of_array a in
let command ~pred:_ i = command a.(i) in
let r = IntGraph.Parallel.aux_map ~jobs ~command ?dry_run g in
let rec mklist acc n =
if n < 0 then acc
else mklist (IntGraph.Parallel.M.find n r :: acc) (n-1)
in
mklist [] (Array.length a - 1)
let reduce ~jobs ~command ~merge ~nil ?dry_run l =
let a = Array.of_list l in
let g = flat_graph_of_array a in
let command ~pred:_ i = command a.(i) in
let r = IntGraph.Parallel.aux_map ~jobs ~command ?dry_run g in
IntGraph.Parallel.M.fold (fun _ -> merge) r nil