Source file diagnostic.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
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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
module OcamlHash = Hashtbl
open ExtLib
open Dose_common
include Util.Logging (struct
let label = "dose_algo.diagnostic"
end)
type reason_int =
| DependencyInt of (int * Cudf_types.vpkg list * int list)
| MissingInt of (int * Cudf_types.vpkg list)
| ConflictInt of (int * int * Cudf_types.vpkg)
type result_int =
| SuccessInt of (?all:bool -> unit -> int list)
| FailureInt of (unit -> reason_int list)
type request_int = int list
(** One un-installability reason for a package *)
type reason =
| Dependency of (Cudf.package * Cudf_types.vpkg list * Cudf.package list)
(** Not strictly a un-installability, Dependency (a,vpkglist,pkglist) is used
to recontruct the the dependency path from the root package to the
offending un-installable package *)
| Missing of (Cudf.package * Cudf_types.vpkg list)
(** Missing (a,vpkglist) means that the dependency
[vpkglist] of package [a] cannot be satisfied *)
| Conflict of (Cudf.package * Cudf.package * Cudf_types.vpkg)
(** Conflict (a,b,vpkg) means that the package [a] is in conflict
with package [b] because of vpkg *)
(** The request provided to the solver.
Check the installability of one package or the
coinstallability of a list of packages *)
type request = Cudf.package list
(** The result of an installability query *)
type result =
| Success of (?all:bool -> unit -> Cudf.package list)
(** If successfull returns a function that will
return the installation set for the given query. Since
not all packages are tested for installability directly, the
installation set might be empty. In this case, the solver can
be called again to provide the real installation set
using the parameter [~all:true] *)
| Failure of (unit -> reason list)
(** If unsuccessful returns a function containing the list of reason *)
type diagnosis = { result : result; request : request }
let reason map universe =
let from_sat = CudfAdd.inttopkg universe in
let globalid = map#vartoint (Cudf.universe_size universe) in
List.filter_map (function
| DependencyInt (i, _vl, _il) when i = globalid -> None
| MissingInt (i, _vl) when i = globalid ->
fatal
"the package encoding global constraints can't be missing (uid %d)"
i
| ConflictInt (i, j, _vpkg) when i = globalid || j = globalid ->
fatal
"the package encoding global constraints can't be in conflict (uid \
%d - %d)"
i
j
| DependencyInt (i, vl, il) ->
Some
(Dependency
( from_sat (map#inttovar i),
vl,
List.map (fun i -> from_sat (map#inttovar i)) il ))
| MissingInt (i, vl) -> Some (Missing (from_sat (map#inttovar i), vl))
| ConflictInt (i, j, vpkg) ->
Some
(Conflict
(from_sat (map#inttovar i), from_sat (map#inttovar j), vpkg)))
let result map universe result =
let from_sat = CudfAdd.inttopkg universe in
let globalid = map#vartoint (Cudf.universe_size universe) in
match result with
| SuccessInt f_int ->
Success
(fun ?(all = false) () ->
List.filter_map
(function
| i when i = globalid -> None
| i ->
Some
{ (from_sat (map#inttovar i)) with Cudf.installed = true })
(f_int ~all ()))
| FailureInt f -> Failure (fun () -> reason map universe (f ()))
let request universe result = List.map (CudfAdd.inttopkg universe) result
let diagnosis map universe res req =
let result = result map universe res in
let request = request universe req in
{ result; request }
module ResultHash = OcamlHash.Make (struct
type t = reason
let equal v w =
match (v, w) with
| (Missing (_, v1), Missing (_, v2)) -> v1 = v2
| (Conflict (i1, j1, _), Conflict (i2, j2, _)) -> i1 = i2 && j1 = j2
| _ -> false
let hash = function
| Missing (_, vpkgs) -> OcamlHash.hash vpkgs
| Conflict (i, j, _) -> OcamlHash.hash (i, j)
| _ -> assert false
end)
type summary =
{ mutable missing : int;
mutable conflict : int;
mutable unique_missing : int;
mutable unique_conflict : int;
mutable unique_selfconflict : int;
summary : Cudf.package list ref ResultHash.t;
statistic : (int * int, int ref) Hashtbl.t
}
let default_result n =
{ missing = 0;
conflict = 0;
unique_missing = 0;
unique_conflict = 0;
unique_selfconflict = 0;
summary = ResultHash.create n;
statistic = Hashtbl.create 17
}
let pp_out_version fmt = Format.fprintf fmt "output-version: 1.2@."
let pp_package ?(source = false) ?(fields = false) pp fmt pkg =
let (p, _, v, fieldlist) = pp pkg in
Format.fprintf fmt "package: %s@," p ;
Format.fprintf fmt "version: %s" v ;
List.iter
(function
| (("source" | "sourcenumber" | "type" | "essential"), _) -> ()
| (k, (v, true)) -> Format.fprintf fmt "@,%s: %s" k v
| (k, (v, false)) when fields = true -> Format.fprintf fmt "@,%s: %s" k v
| (_, (_, _)) -> ())
fieldlist ;
try
if fst (List.assoc "essential" fieldlist) = "true" then
Format.fprintf fmt "@,essential: true"
with Not_found -> (
() ;
try
if fst (List.assoc "type" fieldlist) = "src" then
Format.fprintf fmt "@,type: src"
with Not_found -> (
() ;
if source then
try
let source = fst (List.assoc "source" fieldlist) in
let sourceversion =
try "(= " ^ fst (List.assoc "sourcenumber" fieldlist) ^ ")"
with Not_found -> ""
in
Format.fprintf fmt "@,source: %s %s" source sourceversion
with Not_found -> ()))
let pp_dependency pp ?(label = "depends") fmt (i, vpkgs) =
Format.fprintf fmt "%a" (pp_package pp) i ;
if vpkgs <> [] then
Format.fprintf fmt "@,%s: %a" label (CudfAdd.pp_vpkglist pp) vpkgs
let rec pp_list pp fmt = function
| [h] -> Format.fprintf fmt "@[<v 1>-@,%a@]" pp h
| h :: t ->
Format.fprintf fmt "@[<v 1>-@,%a@]@," pp h ;
pp_list pp fmt t
| [] -> ()
let rec pp_collection pp fmt = function
| [h] -> Format.fprintf fmt "@[<v 1>%a@]" pp h
| h :: t ->
Format.fprintf fmt "@[<v 1>%a@]@," pp h ;
pp_collection pp fmt t
| [] -> ()
(** Build a SyntacticDependencyGraph from the solver output. *)
let build_explanation_graph ?(addmissing = false) root l =
let open Defaultgraphs.SyntacticDependencyGraph in
let add_node value =
G.V.create (PkgV.Pkg { value; root = CudfAdd.equal value root })
in
let gr = G.create () in
G.add_vertex gr (add_node root) ;
let c = ref 0 in
let dup_reasons_table = Hashtbl.create 10 in
let dup_or_table = Hashtbl.create 10 in
List.iter
(function
| e when Hashtbl.mem dup_reasons_table e -> ()
| e -> (
Hashtbl.add dup_reasons_table e () ;
match e with
| Dependency (pkg, [vpkg], [p]) ->
let vpid = add_node pkg in
let vp = add_node p in
add_edge gr vpid (PkgE.DirDepends [vpkg]) vp
| Dependency (pkg, vpkgs, l) ->
let vpid = add_node pkg in
let vor =
try Hashtbl.find dup_or_table (pkg.Cudf.package, vpkgs)
with Not_found ->
let vor = G.V.create (PkgV.Or !c) in
incr c ;
Hashtbl.add dup_or_table (pkg.Cudf.package, vpkgs) vor ;
vor
in
add_edge gr vpid (PkgE.OrDepends vpkgs) vor ;
List.iter
(fun p ->
let vp = add_node p in
add_edge gr vor (PkgE.OrDepends vpkgs) vp)
l ;
if addmissing then
let s =
List.fold_left
(fun acc p -> CudfAdd.StringSet.add p.Cudf.package acc)
CudfAdd.StringSet.empty
l
in
let missingvpkgs =
List.fold_left
(fun acc (n, c) ->
if not (CudfAdd.StringSet.mem n s) then (n, c) :: acc
else acc)
[]
vpkgs
in
if List.length missingvpkgs > 0 then (
let vp = G.V.create (PkgV.Missing missingvpkgs) in
incr c ;
add_edge gr vor (PkgE.MissingDepends missingvpkgs) vp)
| Missing (pkg, vpkgs) ->
let vpid = add_node pkg in
let vp = G.V.create (PkgV.Missing vpkgs) in
add_edge gr vpid (PkgE.MissingDepends vpkgs) vp
| Conflict (pkg_i, pkg_j, vpkg) ->
if not (CudfAdd.equal pkg_i pkg_j) then (
let vi = add_node pkg_i in
let vj = add_node pkg_j in
incr c ;
add_edge gr vi (PkgE.Conflict vpkg) vj
)
))
l ;
gr
(** condense nodes in the graph *)
let cmp_ne x y =
let open Defaultgraphs.SyntacticDependencyGraph in
let rec cmplist v1 v2 =
match (v1, v2) with
| ([], []) -> 0
| ([], _) -> 1
| (_, []) -> -1
| (x :: xs, y :: ys) ->
let c = G.V.compare x y in
if c = 0 then cmplist xs ys else c
in
let cmp (n1, sl1, pl1) (n2, sl2, pl2) =
let c = Stdlib.compare n1 n2 in
if c = 0 then
let c1 = cmplist sl1 sl2 in
if c1 = 0 then cmplist pl1 pl2 else c1
else c
in
cmp x y
let groupby cmp filter l =
List.fold_left
(fun map v ->
let k = filter v in
let pl = try PMap.find k map with Not_found -> [v] in
PMap.add k (v :: pl) map)
(PMap.create cmp)
l
let name_and_edges gr v =
let open Defaultgraphs.SyntacticDependencyGraph in
let sl = List.sort ~cmp:G.V.compare (G.succ gr v) in
let pl = List.sort ~cmp:G.V.compare (G.pred gr v) in
let n =
match v with
| PkgV.Pkg { value = p; _ } -> p.Cudf.package
| PkgV.Or i -> Printf.sprintf "Or%d" i
| PkgV.Missing _ -> "Missing"
| PkgV.Set _ -> assert false
in
(n, sl, pl)
let in_conflict gr x y =
let open Defaultgraphs.SyntacticDependencyGraph in
try
let e =
if G.V.compare x y > 0 then G.find_edge gr x y else G.find_edge gr y x
in
match !(G.E.label e) with PkgE.Conflict _ -> true | _ -> false
with Not_found -> false
let condense_graph gr =
let open Defaultgraphs.SyntacticDependencyGraph in
let module Visit = Graph.Traverse.Dfs (G) in
let h = Hashtbl.create 17 in
let getlist =
List.filter_map (function
| PkgV.Pkg { value = p; root = false } as v -> Some (p, v)
| _ -> None)
in
Visit.postfix
(function
| (PkgV.Missing _ | PkgV.Or _) as v ->
PMap.iter
(fun (_name, sl, pl) l ->
match getlist l with
| [] -> ()
| [(_, hd)] -> Hashtbl.add h hd (List.hd l, sl, pl)
| pkgl ->
let vpid =
G.V.create (PkgV.Set (CudfAdd.to_set (List.map fst pkgl)))
in
List.iter (fun (_, v) -> Hashtbl.add h v (vpid, sl, pl)) pkgl)
(groupby cmp_ne (name_and_edges gr) (G.pred gr v)) ;
PMap.iter
(fun (_name, sl, pl) l ->
match getlist l with
| [] -> ()
| [(_, hd)] -> Hashtbl.add h hd (List.hd l, sl, pl)
| pkgl ->
if
List.for_all
(fun (_, src) ->
List.for_all (in_conflict gr src) sl
|| List.for_all (in_conflict gr src) pl)
pkgl
then
let vpid =
G.V.create (PkgV.Set (CudfAdd.to_set (List.map fst pkgl)))
in
List.iter
(fun (_, v) -> Hashtbl.add h v (vpid, sl, pl))
pkgl)
(groupby cmp_ne (name_and_edges gr) (G.succ gr v))
| _ -> ())
gr ;
let e_to_remove = ref [] in
G.iter_vertex
(fun v ->
try
let (vpid, sl, pl) = Hashtbl.find h v in
List.iter
(fun dst ->
let e = G.find_edge gr v dst in
let dst =
try
let (c, _, _) = Hashtbl.find h dst in
c
with Not_found -> dst
in
add_edge gr vpid !(G.E.label e) dst ;
e_to_remove := e :: !e_to_remove)
sl ;
List.iter
(fun src ->
let e = G.find_edge gr src v in
let src =
try
let (c, _, _) = Hashtbl.find h src in
c
with Not_found -> src
in
add_edge gr src !(G.E.label e) vpid ;
e_to_remove := e :: !e_to_remove)
pl
with Not_found -> ())
gr ;
List.iter (G.remove_edge_e gr) !e_to_remove ;
Hashtbl.iter (fun k _ -> G.remove_vertex gr k) h ;
gr
let print_dot ?(pp = CudfAdd.default_pp) ?(condense = false)
?(addmissing = false) ?dir =
Defaultgraphs.SyntacticDependencyGraph.default_pp := pp ;
let open Defaultgraphs.SyntacticDependencyGraph in
function
| { result = Success _; _ } ->
fatal "Cannot build explanation graph on Success"
| { result = Failure f; request = [r] } ->
let fmt =
let n =
Printf.sprintf
"%s.%s.dot"
(CudfAdd.decode r.Cudf.package)
(CudfAdd.string_of_version r)
in
let f =
if Option.is_none dir then n else Filename.concat (Option.get dir) n
in
let oc = open_out f in
Format.formatter_of_out_channel oc
in
let gr =
let g = build_explanation_graph ~addmissing r (f ()) in
if condense then condense_graph g else g
in
DotPrinter.print fmt gr
| _ ->
warning
"Tryin to build explanation graph for a Coinst (not implemented yet)"
let print_error ?(condense = false) ?(minimal = false) pp root fmt l =
let module DG = Defaultgraphs.SyntacticDependencyGraph in
let get_package v =
match v with
| DG.PkgV.Pkg { DG.value = p; _ } -> [p]
| DG.PkgV.Set s -> CudfAdd.Cudf_set.elements s
| _ -> raise Not_found
in
let pp_package_list ?(source = false) pp fmt pkgl =
if List.length pkgl = 1 then pp_package ~source pp fmt (List.hd pkgl)
else
let fl = List.map pp pkgl in
let (n, _, _, _) = List.hd fl in
Format.fprintf fmt "package: %s@," n ;
Format.fprintf
fmt
"versions: %s"
(String.concat "," (List.map (fun (_, _, v, _) -> v) fl))
in
let pp_dependency_list pp ?(label = "depends") fmt (i, vpkgs) =
Format.fprintf fmt "%a" (pp_package_list pp) i ;
if vpkgs <> [] then
Format.fprintf fmt "@,%s: %a" label (CudfAdd.pp_vpkglist pp) vpkgs
in
let pp_dependencies pp fmt pl =
let pp_dependency pp fmt ((src, label, _) : DG.G.E.t) =
try
let l =
match src with
| DG.PkgV.Pkg { DG.value = p; _ } -> [p]
| DG.PkgV.Set l -> CudfAdd.Cudf_set.elements l
| _ -> raise Not_found
in
let vpkgs =
match !label with
| DG.PkgE.OrDepends vpkgs
| DG.PkgE.DirDepends vpkgs
| DG.PkgE.MissingDepends vpkgs ->
vpkgs
| _ -> []
in
if List.length l > 0 then (
Format.fprintf fmt "%a" (pp_package_list pp) l ;
if vpkgs <> [] then
Format.fprintf
fmt
"@,depends: %a"
(CudfAdd.pp_vpkglist pp)
(List.unique vpkgs))
with Not_found -> ()
in
let filter (src, _, _) =
match src with DG.PkgV.Pkg _ | DG.PkgV.Set _ -> true | _ -> false
in
let rec aux fmt = function
| [path] ->
Format.fprintf
fmt
"@[<v 1>-@,@[<v 1>depchain:@,%a@]@]"
(pp_list (pp_dependency pp))
path
| path :: pathlist ->
Format.fprintf
fmt
"@[<v 1>-@,@[<v 1>depchain:@,%a@]@]@,"
(pp_list (pp_dependency pp))
path ;
aux fmt pathlist
| [] -> ()
in
aux fmt [List.filter filter pl]
in
let module DJ =
Graph.Path.Dijkstra
(Defaultgraphs.SyntacticDependencyGraph.G)
(struct
open Defaultgraphs.SyntacticDependencyGraph
type t = int
type edge = G.E.t
let weight e =
match G.E.label e with
| { contents = PkgE.Conflict _ } -> 1000
| _ -> 0
let compare = Stdlib.compare
let add = ( + )
let zero = 0
end)
in
let gr =
let g = build_explanation_graph ~addmissing:false root l in
if condense then condense_graph g else g
in
let vroot = DG.G.V.create (DG.PkgV.Pkg { value = root; DG.root = true }) in
let pp_reason_conflicts fmt (vi, vj, vpkg) =
let (i, j) = (get_package vi, get_package vj) in
Format.fprintf fmt "@[<v 1>conflict:@," ;
Format.fprintf fmt "@[<v 1>pkg1:@,%a@," (pp_package_list ~source:true pp) i ;
Format.fprintf fmt "unsat-conflict: %a@]@," (CudfAdd.pp_vpkglist pp) [vpkg] ;
Format.fprintf fmt "@[<v 1>pkg2:@,%a@]" (pp_package_list ~source:true pp) j ;
if not minimal then (
let pl1 = try fst (DJ.shortest_path gr vroot vi) with Not_found -> [] in
let pl2 = try fst (DJ.shortest_path gr vroot vj) with Not_found -> [] in
if pl1 <> [] then
Format.fprintf fmt "@,@[<v 1>depchain1:@,%a@]" (pp_dependencies pp) pl1 ;
if pl2 <> [] then
Format.fprintf fmt "@,@[<v 1>depchain2:@,%a@]" (pp_dependencies pp) pl2 ;
Format.fprintf fmt "@]")
else Format.fprintf fmt "@,@]"
in
let pp_reason_missing fmt (vi, vpkgs) =
let i = try get_package vi with Not_found -> assert false in
Format.fprintf fmt "@[<v 1>missing:@," ;
Format.fprintf
fmt
"@[<v 1>pkg:@,%a@]"
(pp_dependency_list ~label:"unsat-dependency" pp)
(i, List.unique vpkgs) ;
if not minimal then
let pl = try fst (DJ.shortest_path gr vroot vi) with Not_found -> [] in
if pl <> [] then (
Format.fprintf fmt "@,@[<v 1>depchains:@,%a@]" (pp_dependencies pp) pl ;
Format.fprintf fmt "@]")
else Format.fprintf fmt "@]"
else Format.fprintf fmt "@]"
in
let conflicts = ref [] in
let missing = ref [] in
Defaultgraphs.SyntacticDependencyGraph.G.iter_edges_e
(fun (src, label, dst) ->
match !label with
| DG.PkgE.Conflict vpkg -> conflicts := (src, dst, vpkg) :: !conflicts
| DG.PkgE.MissingDepends vpkgs -> missing := (src, vpkgs) :: !missing
| _ -> ())
gr ;
pp_list pp_reason_conflicts fmt !conflicts ;
if List.length !conflicts > 0 && List.length !missing > 0 then
Format.fprintf fmt "@," ;
pp_list pp_reason_missing fmt !missing
let minimize roots l =
let module H = Hashtbl in
let h = H.create (List.length l) in
List.iter (fun p -> H.add h p.Cudf.package p) l ;
let acc = H.create 1023 in
let rec visit pkg =
if not (H.mem acc pkg) then (
H.add acc pkg () ;
List.iter
(fun vpkgformula ->
List.iter
(fun (name, constr) ->
try
let p = H.find h name in
if Cudf.version_matches p.Cudf.version constr then visit p
with Not_found -> ())
vpkgformula)
pkg.Cudf.depends)
in
(match roots with [r] -> visit r | _rl -> List.iter visit l) ;
H.fold (fun k _ l -> k :: l) acc []
let get_installationset ?(minimal = false) = function
| { result = Success f; request = req } ->
let s = f ~all:true () in
if minimal then minimize req s else s
| { result = Failure _; _ } -> raise Not_found
let is_solution = function
| { result = Success _; _ } -> true
| { result = Failure _; _ } -> false
let fprintf ?(pp = CudfAdd.default_pp) ?(failure = false) ?(success = false)
?(explain = false) ?(minimal = false) ?(condense = false) fmt d =
match d with
| { result = Success _; request = req } when success ->
Format.fprintf fmt "@[<v 1>-@," ;
(match req with
| [] -> Format.fprintf fmt "@[<v>consistent@]@,"
| [r] ->
Format.fprintf
fmt
"@[<v>%a@]@,"
(pp_package ~source:true ~fields:true pp)
r ;
if minimal then
Format.fprintf fmt "success: %a@," CudfAdd.pp_package r
| rl ->
Format.fprintf
fmt
"coinst: %s@,"
(String.concat " , " (List.map CudfAdd.string_of_package rl)) ;
if minimal then
Format.fprintf
fmt
"success: %s@,"
(String.concat " , " (List.map CudfAdd.string_of_package rl))) ;
Format.fprintf fmt "status: ok@," ;
(if explain then
let is = get_installationset ~minimal d in
if is <> [] then (
Format.fprintf fmt "@[<v 1>installationset:@," ;
Format.fprintf fmt "@[<v>%a@]" (pp_list (pp_package pp)) is ;
Format.fprintf fmt "@]")) ;
Format.fprintf fmt "@]@,"
| { result = Failure f; request = [r] } when failure ->
Format.fprintf fmt "@[<v 1>-@," ;
Format.fprintf
fmt
"@[<v>%a@]@,"
(pp_package ~source:true ~fields:true pp)
r ;
if minimal then Format.fprintf fmt "failure: %a@," CudfAdd.pp_package r ;
Format.fprintf fmt "status: broken@," ;
if explain then (
Format.fprintf fmt "@[<v 1>reasons:@," ;
Format.fprintf
fmt
"@[<v>%a@]"
(print_error ~minimal ~condense pp r)
(f ()) ;
Format.fprintf fmt "@]") ;
Format.fprintf fmt "@]@,"
| { result = Failure f; request = rl } when failure ->
Format.fprintf fmt "@[<v 1>-@," ;
Format.fprintf
fmt
"coinst: %s@,"
(String.concat " , " (List.map CudfAdd.string_of_package rl)) ;
if minimal then
Format.fprintf
fmt
"failure: %s@,"
(String.concat " , " (List.map CudfAdd.string_of_package rl)) ;
Format.fprintf fmt "status: broken@," ;
Format.fprintf fmt "@]@," ;
if explain then (
Format.fprintf fmt "@[<v 1>reasons:@," ;
List.iter
(fun r ->
Format.fprintf
fmt
"@[<v>%a@]@,"
(print_error ~minimal ~condense pp r)
(f ()))
rl ;
Format.fprintf fmt "@]@,")
| _ -> ()
let printf ?(pp = CudfAdd.default_pp) ?(failure = false) ?(success = false)
?(explain = false) d =
fprintf ~pp ~failure ~success ~explain Format.std_formatter d
let collect results d =
let add h k v =
try
let l = ResultHash.find h k in
l := v :: !l
with Not_found -> ResultHash.add h k (ref [v])
in
match d with
| { result = Failure f; request = [r] } -> (
let conflicts = ref 0 in
let missing = ref 0 in
List.iter
(fun reason ->
match reason with
| Conflict (i, j, _) ->
if not Cudf.(r =% i || r =% j) then add results.summary reason r ;
results.conflict <- results.conflict + 1 ;
conflicts := !conflicts + 1
| Missing (i, _vpkgs) ->
if not Cudf.(r =% i) then add results.summary reason r ;
results.missing <- results.missing + 1 ;
missing := !missing + 1
| _ -> ())
(f ()) ;
let id = (!conflicts, !missing) in
try incr (Hashtbl.find results.statistic id)
with Not_found -> Hashtbl.add results.statistic id (ref 1))
| _ -> ()
let pp_summary_row explain pp fmt = function
| (Conflict (i, j, _), pl) ->
Format.fprintf fmt "@[<v 1>conflict:@," ;
Format.fprintf fmt "@[<v 1>pkg1:@,%a@]@," (pp_package pp) i ;
Format.fprintf fmt "@[<v 1>pkg2:@,%a@]@," (pp_package pp) j ;
Format.fprintf fmt "@[<v 1>breaks: %d@]" (List.length pl) ;
if explain then (
Format.fprintf fmt "@,@[<v 1>packages:@," ;
pp_list (pp_package ~source:true pp) fmt pl ;
Format.fprintf fmt "@]") ;
Format.fprintf fmt "@]"
| (Missing (i, vpkgs), pl) ->
Format.fprintf fmt "@[<v 1>missing:@," ;
Format.fprintf
fmt
"@[<v 1>pkg:@,%a@]@,"
(pp_dependency ~label:"unsat-dependency" pp)
(i, vpkgs) ;
Format.fprintf fmt "@[<v 1>breaks: %d@]" (List.length pl) ;
if explain then (
Format.fprintf fmt "@,@[<v 1>packages:@," ;
pp_list (pp_package ~source:true pp) fmt pl ;
Format.fprintf fmt "@]") ;
Format.fprintf fmt "@]"
| _ -> ()
let pp_summary ?(pp = CudfAdd.default_pp) ?(explain = false) () fmt result =
let l =
ResultHash.fold
(fun k v acc ->
let l1 = Util.list_unique !v in
(match k with
| Conflict (i, j, _) ->
let (pi, _, _, _) = pp i in
let (pj, _, _, _) = pp j in
result.unique_conflict <- result.unique_conflict + 1 ;
if pi = pj then
result.unique_selfconflict <- result.unique_selfconflict + 1
| Missing (_, _) -> result.unique_missing <- result.unique_missing + 1
| _ -> ()) ;
if List.length l1 > 1 then (k, l1) :: acc else acc)
result.summary
[]
in
let l =
List.sort ~cmp:(fun (_, l1) (_, l2) -> List.length l2 - List.length l1) l
in
Format.fprintf fmt "@[" ;
Format.fprintf fmt "missing-packages: %d@." result.missing ;
Format.fprintf fmt "conflict-packages: %d@." result.conflict ;
Format.fprintf fmt "unique-missing-packages: %d@." result.unique_missing ;
Format.fprintf fmt "unique-conflict-packages: %d@." result.unique_conflict ;
Format.fprintf
fmt
"unique-self-conflicting-packages: %d@."
result.unique_selfconflict ;
Format.fprintf fmt "@[<v 1>conflict-missing-ratio:@," ;
let mcl = Hashtbl.fold (fun k v acc -> (k, v) :: acc) result.statistic [] in
pp_collection
(fun fmt ((c, m), i) -> Format.fprintf fmt "%d-%d: %d" c m !i)
fmt
mcl ;
Format.fprintf fmt "@]" ;
Format.fprintf fmt "@]@." ;
Format.fprintf fmt "@[<v 1>summary:@," ;
pp_list (pp_summary_row explain pp) fmt l ;
Format.fprintf fmt "@]@."