Source file opamClient.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
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
open OpamTypes
open OpamStateTypes
open OpamStd.Op
open OpamPackage.Set.Op
let log fmt = OpamConsole.log "CLIENT" fmt
let slog = OpamConsole.slog
let orphans ?changes ?(transitive=false) t =
let all = t.packages ++ t.installed in
let available = Lazy.force t.available_packages in
let allnames = OpamPackage.names_of_packages all in
let invalidated = Lazy.force t.invalidated in
let universe =
OpamSwitchState.universe t ~requested:OpamPackage.Name.Set.empty Reinstall
in
let orphans =
t.installed -- available
in
log "Base orphans: %a" (slog OpamPackage.Set.to_string) orphans;
let changes = match changes with
| None -> None
| Some ch ->
Some
(OpamPackage.Name.Set.fold (fun name ch ->
try
OpamPackage.Set.add
(OpamPackage.package_of_name t.installed name) ch
with Not_found -> ch)
(OpamPackage.names_of_packages ch)
ch)
in
let orphans = match changes with
| None -> orphans
| Some ch ->
if OpamPackage.Set.is_empty orphans then orphans else
let recompile_cone =
OpamSolver.reverse_dependencies
~depopts:true ~installed:true ~unavailable:true
~build:true ~post:false
universe ch
in
orphans %% recompile_cone
in
let orphans = orphans ++ invalidated in
let orphans = orphans -- OpamPinned.packages t in
let full_partition orphans =
let orphan_names =
OpamPackage.Name.Set.diff
allnames
(OpamPackage.names_of_packages (available -- orphans)) in
OpamPackage.Set.partition
(fun nv -> OpamPackage.Name.Set.mem nv.name orphan_names)
orphans
in
let full_orphans, orphan_versions = full_partition orphans in
let full_orphans, orphan_versions =
if not transitive then full_orphans, orphan_versions else
let rec add_trans full_orphans orphan_versions =
let new_orphans =
OpamSolver.reverse_dependencies
~depopts:false ~installed:false ~unavailable:true
~build:true ~post:false
universe full_orphans
in
let full, versions = full_partition (new_orphans++orphan_versions) in
if OpamPackage.Set.equal full_orphans full
then full, versions
else add_trans full versions
in
add_trans full_orphans orphan_versions
in
let t =
if changes = None then t else
let available_packages = lazy (available ++ (t.installed -- orphans)) in
{ t with available_packages }
in
log "Orphans: (changes: %a, transitive: %b) -> full %a, versions %a"
(slog @@ OpamStd.Option.to_string OpamPackage.Set.to_string) changes
transitive
(slog @@ OpamPackage.Name.Set.to_string @* OpamPackage.names_of_packages)
full_orphans
(slog OpamPackage.Set.to_string) orphan_versions;
t, full_orphans, orphan_versions
let get_installed_atoms t atoms =
List.fold_left (fun (packages, not_installed) atom ->
try
let nv =
OpamPackage.Set.find (OpamFormula.check atom) t.installed in
nv :: packages, not_installed
with Not_found ->
packages, atom :: not_installed)
([],[]) atoms
let update_dev_packages_t ?(only_installed=false) atoms t =
OpamRepositoryState.check_last_update ();
if OpamClientConfig.(!r.skip_dev_update) then t else
let working_dir = OpamClientConfig.(!r.working_dir || !r.inplace_build) in
let to_update =
List.fold_left (fun to_update (name,_) ->
try
let nv = OpamPackage.package_of_name t.pinned name in
if OpamSwitchState.is_dev_package t nv &&
( not only_installed ||
OpamPackage.Set.exists (fun nv -> nv.name = name) t.installed )
then
OpamPackage.Set.add nv to_update
else to_update
with Not_found -> to_update)
OpamPackage.Set.empty atoms
in
if OpamPackage.Set.is_empty to_update then t else (
OpamConsole.header_msg "Synchronising pinned packages";
try
let working_dir =
if working_dir then Some (OpamSwitchState.packages_of_atoms t atoms)
else None
in
let _success, t, _pkgs =
OpamUpdate.dev_packages t ?working_dir to_update in
OpamConsole.msg "\n";
t
with e ->
OpamStd.Exn.fatal e;
OpamConsole.msg "\n";
t
)
let compute_upgrade_t
?(strict_upgrade=true) ?(auto_install=false) ?(only_installed=false)
~all atoms t =
let names = OpamPackage.Name.Set.of_list (List.rev_map fst atoms) in
let atoms =
List.map (function
| (n,None) when strict_upgrade ->
(try
let nv = OpamSwitchState.find_installed_package_by_name t n in
if OpamSwitchState.is_dev_package t nv ||
OpamPackage.has_name t.pinned n ||
OpamPackage.Set.mem nv (Lazy.force t.reinstall)
then (n, None)
else
let atom = (n, Some (`Gt, nv.version)) in
if OpamPackage.Set.exists
(fun nv ->
OpamFormula.check atom nv &&
(not (OpamFile.OPAM.has_flag Pkgflag_AvoidVersion (OpamSwitchState.opam t nv)) ||
OpamSwitchState.can_upgrade_to_avoid_version (OpamPackage.name nv) t))
(Lazy.force t.available_packages)
then atom
else (n, None)
with Not_found -> (n,None))
| atom -> atom
) atoms in
let requested_installed, not_installed =
List.fold_left (fun (packages, not_installed) (n,_ as atom) ->
try
let nv =
OpamPackage.Set.find (fun nv -> nv.name = n)
t.installed in
OpamPackage.Set.add nv packages, not_installed
with Not_found ->
packages, atom :: not_installed)
(OpamPackage.Set.empty,[]) atoms in
let to_install =
if only_installed || not_installed = [] then [] else
if auto_install ||
OpamConsole.confirm "%s %s not installed. Install %s?"
(OpamStd.Format.pretty_list
(List.rev_map OpamFormula.short_string_of_atom not_installed))
(match not_installed with [_] -> "is" | _ -> "are")
(match not_installed with [_] -> "it" | _ -> "them")
then not_installed
else []
in
let upgrade_atoms to_upgrade =
List.map (fun nv ->
let name = nv.name in
try name, List.assoc name atoms
with Not_found -> name, None)
(OpamPackage.Set.elements to_upgrade)
in
if all then
let t, full_orphans, orphan_versions = orphans ~transitive:true t in
let to_upgrade = t.installed -- full_orphans in
names,
OpamSolution.resolve t Upgrade
~orphans:(full_orphans ++ orphan_versions)
~requested:names
~reinstall:(Lazy.force t.reinstall)
(OpamSolver.request
~install:to_install
~upgrade:(upgrade_atoms to_upgrade)
~criteria:`Upgrade ())
else
let changes =
requested_installed ++ OpamSwitchState.packages_of_atoms t to_install
in
let t, full_orphans, orphan_versions = orphans ~changes t in
let to_remove = requested_installed %% full_orphans in
let to_upgrade = requested_installed -- full_orphans in
names,
OpamSolution.resolve t Upgrade
~orphans:(full_orphans ++ orphan_versions)
~requested:names
(OpamSolver.request
~install:to_install
~remove:(OpamSolution.atoms_of_packages to_remove)
~upgrade:(upgrade_atoms to_upgrade)
())
let upgrade_t
?strict_upgrade ?auto_install ?ask ?(check=false) ?(terse=false)
?only_installed ~all atoms t
=
log "UPGRADE %a"
(slog @@ function [] -> "<all>" | a -> OpamFormula.string_of_atoms a)
atoms;
match compute_upgrade_t ?strict_upgrade ?auto_install ?only_installed ~all atoms t with
| requested, Conflicts cs ->
log "conflict!";
if not (OpamPackage.Name.Set.is_empty requested) then
(OpamConsole.error "Package conflict!";
OpamConsole.errmsg "%s"
(OpamCudf.string_of_conflicts t.packages
(OpamSwitchState.unavailable_reason t) cs);
OpamStd.Sys.exit_because `No_solution);
let reasons, cycles =
OpamCudf.conflict_explanations t.packages
(OpamSwitchState.unavailable_reason t) cs in
if cycles <> [] then begin
OpamConsole.error
"Dependency errors in the upgrade actions. Please update, and \
report the following to the package maintainers if the error \
persists:";
OpamConsole.errmsg "%s\n%s\n"
(OpamStd.Format.itemize (fun x -> x) cycles)
"You may try upgrading packages individually to work around this."
end else begin
OpamConsole.warning
"Upgrade is not possible because of conflicts or packages that \
are no longer available:";
OpamConsole.errmsg " %s"
(OpamStd.Format.itemize (OpamCudf.string_of_conflict ~start_column:2)
reasons);
OpamConsole.errmsg
"\nYou may run \"opam upgrade --fixup\" to let opam fix the \
current state.\n"
end;
OpamStd.Sys.exit_because `No_solution
| requested, Success solution ->
if check then
OpamStd.Sys.exit_because
(if OpamSolver.solution_is_empty solution
then `False
else `Success)
else
let t, result = OpamSolution.apply ?ask t ~requested solution in
if result = Nothing_to_do then (
let to_check =
if OpamPackage.Name.Set.is_empty requested then t.installed
else OpamPackage.packages_of_names t.installed requested
in
let latest =
OpamPackage.Name.Set.fold (fun name acc ->
OpamPackage.Set.add (OpamPackage.max_version t.packages name) acc)
(OpamPackage.names_of_packages to_check)
OpamPackage.Set.empty in
let notuptodate = latest -- to_check in
if OpamPackage.Set.is_empty notuptodate then
OpamConsole.msg "Already up-to-date.\n"
else if terse then
OpamConsole.msg "No package build needed.\n"
else
(let hdmsg = "Everything as up-to-date as possible" in
let unav = notuptodate -- Lazy.force t.available_packages in
let unopt = notuptodate %% Lazy.force t.available_packages in
let base =
OpamPackage.packages_of_names unopt
(OpamPackage.names_of_packages t.compiler_packages)
in
let unopt = unopt -- base in
let conflicts =
let get_formula pkg =
OpamStd.Option.map
(fun opam ->
OpamFilter.filter_formula ~default:false
(OpamPackageVar.resolve_switch ~package:pkg t)
(OpamFile.OPAM.conflicts opam))
(OpamSwitchState.opam_opt t pkg)
in
OpamPackage.Set.fold (fun unopt_pkg map ->
let set =
OpamSwitchState.conflicts_with t
(OpamPackage.Set.singleton unopt_pkg) latest in
OpamPackage.Set.fold (fun installed_pkg map ->
match get_formula installed_pkg with
| None -> map
| Some conflicts_formula ->
OpamFormula.fold_left
(fun map (n,formula) ->
if OpamPackage.name unopt_pkg = n &&
OpamFormula.check_version_formula formula
(OpamPackage.version unopt_pkg)
then
OpamPackage.Map.update unopt_pkg
(OpamStd.List.cons (installed_pkg, formula)) [] map
else map
) map conflicts_formula
) set map
) unopt OpamPackage.Map.empty
in
let incompatibilities =
let get_formula pkg =
OpamStd.Option.map (OpamPackageVar.all_depends t)
(OpamSwitchState.opam_opt t pkg)
in
OpamPackage.Set.fold (fun latest_pkg map ->
match get_formula latest_pkg with
| None -> map
| Some depends_formula ->
OpamPackage.Set.fold
(fun unopt_pkg map ->
OpamFormula.fold_left
(fun map (n, formula) ->
if OpamPackage.name unopt_pkg = n &&
formula <> OpamFormula.Empty &&
not (OpamFormula.check_version_formula formula
(OpamPackage.version unopt_pkg))
then
OpamPackage.Map.update unopt_pkg
(OpamStd.List.cons (latest_pkg, formula)) [] map
else map
) map depends_formula
) unopt map
) latest OpamPackage.Map.empty
in
if (OpamConsole.verbose ()) && not (OpamPackage.Set.is_empty unav) then
(OpamConsole.formatted_msg
"%s.\n\
The following newer versions couldn't be installed:\n"
hdmsg;
OpamConsole.msg "%s"
(OpamStd.Format.itemize (fun p ->
Printf.sprintf "%s.%s: %s"
(OpamConsole.colorise `bold
(OpamPackage.name_to_string p))
(OpamPackage.version_to_string p)
(OpamSwitchState.unavailable_reason t
~default:"unavailable for unknown reasons (this may \
be a bug in opam)"
(OpamPackage.name p,
Atom (`Eq, OpamPackage.version p))))
(OpamPackage.Set.elements unav)))
else
OpamConsole.formatted_msg
"%s (run with --verbose to show unavailable upgrades).\n" hdmsg;
if not (OpamPackage.Set.is_empty unopt) then
(let bullet =
OpamConsole.(colorise `red
(utf8_symbol Symbols.asterisk_operator "--"))
^ " "
in
let string_dep pkg map reason =
List.fold_right (fun (p, f) acc ->
Printf.sprintf "%s\n%s%s is installed and %s %s"
acc bullet
(OpamPackage.to_string p)
reason
(OpamFormula.to_string (Atom (pkg.name, f)))
)
(OpamStd.Option.default [] (OpamPackage.Map.find_opt pkg map))
""
in
OpamConsole.formatted_msg
"\nThe following packages are not being upgraded because the new \
versions conflict with other installed packages:\n";
OpamConsole.msg "%s"
(OpamStd.Format.itemize
(fun pkg -> Printf.sprintf "%s.%s%s%s"
(OpamConsole.colorise `bold
(OpamPackage.name_to_string pkg))
(OpamPackage.version_to_string pkg)
(string_dep pkg incompatibilities "requires")
(string_dep pkg conflicts "conflicts with")
) (OpamPackage.Set.elements unopt))
);
OpamConsole.formatted_msg
"However, you may \"opam upgrade\" these packages explicitly, \
which will ask permission to downgrade or uninstall the \
conflicting packages.\n";
)
);
OpamSolution.check_solution t (Success result);
t
let upgrade t ?check ?only_installed ~all names =
let atoms = OpamSolution.sanitize_atom_list t names in
let t = update_dev_packages_t ?only_installed atoms t in
upgrade_t ?check ~strict_upgrade:(not all) ?only_installed ~all atoms t
let fixup t =
log "FIXUP";
let t, full_orphans, orphan_versions = orphans ~transitive:true t in
let all_orphans = full_orphans ++ orphan_versions in
let resolve pkgs =
pkgs,
OpamSolution.resolve t Upgrade
~orphans:all_orphans
~requested:(OpamPackage.names_of_packages pkgs)
(OpamSolver.request
~install:(OpamSolution.atoms_of_packages pkgs)
~criteria:`Fixup
())
in
let is_success = function
| _, Success _ -> true
| _, Conflicts cs ->
log "conflict: %a"
(slog (OpamCudf.string_of_conflicts t.packages @@
OpamSwitchState.unavailable_reason t))
cs;
false
in
let requested, solution =
let s =
log "fixup-1/ keep installed packages with orphaned versions and roots";
resolve (t.installed_roots %% t.installed
-- full_orphans ++ orphan_versions)
in
if is_success s then s else
let s =
log "fixup-2/ keep just roots";
resolve (t.installed_roots %% t.installed -- full_orphans)
in
if is_success s then s else
let s =
log "fixup-3/ keep packages with orphaned versions";
resolve orphan_versions
in
if is_success s then s else
let s =
log "fixup-4/ last resort: no constraints. This should never fail";
resolve OpamPackage.Set.empty
in
s
in
let t, result = match solution with
| Conflicts cs ->
OpamConsole.error
"It appears that the switch invariant is no longer satisfiable. \
Either fix the package prerequisites or change the invariant \
with 'opam switch set-invariant'.";
OpamConsole.errmsg "%s"
(OpamCudf.string_of_conflicts t.packages
(OpamSwitchState.unavailable_reason t) cs);
t, Conflicts cs
| Success solution ->
let _, req_rm, _ = orphans ~transitive:false t in
let t, res =
OpamSolution.apply ~ask:true t
~requested:(OpamPackage.names_of_packages (requested ++ req_rm))
solution in
t, Success res
in
OpamSolution.check_solution t result;
t
let update
gt ~repos_only ~dev_only ?(all=false) names =
log "UPDATE %a" (slog @@ String.concat ", ") names;
let rt = OpamRepositoryState.load `Lock_none gt in
let st, repos_only =
match OpamStateConfig.get_switch_opt () with
| None -> OpamSwitchState.load_virtual gt rt, true
| Some sw -> OpamSwitchState.load `Lock_none gt rt sw, repos_only
in
let repo_names =
let all_repos = OpamRepositoryName.Map.keys rt.repositories in
if dev_only then []
else if names <> [] then
List.filter
(fun r -> List.mem (OpamRepositoryName.to_string r) names)
all_repos
else if all then all_repos
else OpamSwitchState.repos_list st
in
let packages, ignore_packages =
if repos_only then OpamPackage.Set.empty, OpamPackage.Set.empty else
let packages = st.installed ++ st.pinned in
let packages =
if names = [] then packages else
OpamPackage.Set.filter (fun nv ->
let name = OpamPackage.Name.to_string nv.name in
let pkg = OpamPackage.to_string nv in
List.exists (fun s -> s = name || s = pkg) names &&
let pinned = OpamPinned.package_opt st nv.name in
pinned = None || pinned = Some nv
) packages
in
let dev_packages, nondev_packages =
OpamPackage.Set.partition (OpamSwitchState.is_dev_package st) packages
in
let dev_packages = dev_packages -- (st.compiler_packages -- st.pinned) in
let nondev_packages =
if names = [] || OpamPackage.Set.is_empty nondev_packages then
OpamPackage.Set.empty
else
(OpamConsole.warning
"The following are not development packages (no dynamic or version \
controlled upstream) and can't be updated individually: %s\n\
You may want to update your repositories with just %s or to \
upgrade your package%s with %s %s"
(OpamStd.List.concat_map ", " ~last_sep:"and" OpamPackage.to_string
(OpamPackage.Set.elements nondev_packages))
(OpamConsole.colorise `bold "opam update")
(if OpamPackage.Set.is_singleton nondev_packages then "" else "s")
(OpamConsole.colorise `bold "opam upgrade")
(OpamConsole.colorise `bold
(OpamStd.List.concat_map " " OpamPackage.name_to_string
(OpamPackage.Set.elements nondev_packages)));
nondev_packages)
in
let dirty_dev_packages, dev_packages =
if names <> [] || OpamClientConfig.(!r.drop_working_dir) then
OpamPackage.Set.empty, dev_packages
else
OpamPackage.Set.partition
(fun nv ->
let src_cache = OpamSwitchState.source_dir st nv in
let cache_url =
OpamUrl.of_string (OpamFilename.Dir.to_string src_cache)
in
match OpamSwitchState.primary_url st nv with
| Some { OpamUrl.backend = #OpamUrl.version_control as vc; _ } ->
(try
OpamProcess.Job.run @@
OpamRepository.is_dirty { cache_url with OpamUrl.backend = vc }
with OpamSystem.Process_error _ ->
log "Skipping %s, not a git repo" (OpamPackage.to_string nv);
false)
| _ -> false)
dev_packages
in
OpamPackage.Set.iter (fun nv ->
OpamConsole.note "%s has previously been updated with --working-dir, \
not resetting unless explicitly selected"
(OpamPackage.to_string nv))
dirty_dev_packages;
dev_packages, nondev_packages
in
let remaining =
let ps = packages ++ ignore_packages in
List.filter (fun n -> not (
List.mem (OpamRepositoryName.of_string n) repo_names ||
(try OpamPackage.has_name ps (OpamPackage.Name.of_string n)
with Failure _ -> false) ||
(try OpamPackage.Set.mem (OpamPackage.of_string n) ps
with Failure _ -> false)
)) names
in
if remaining <> [] then
OpamConsole.error
"Unknown repositories or installed packages: %s"
(String.concat ", " remaining);
let rt_before = rt in
let repo_update_failure, rt =
if repo_names = [] then [], rt else
OpamRepositoryState.with_write_lock rt @@ fun rt ->
OpamConsole.header_msg "Updating package repositories";
OpamRepositoryCommand.update_with_auto_upgrade rt repo_names
in
let repo_changed =
not
(OpamRepositoryName.Map.equal
(OpamPackage.Map.equal (OpamFile.OPAM.effectively_equal))
rt_before.repo_opams rt.repo_opams)
in
let (dev_update_success, dev_changed), st =
if OpamPackage.Set.is_empty packages then
(true, false), st
else
OpamSwitchState.with_write_lock st @@ fun st ->
let working_dir =
if OpamClientConfig.(!r.working_dir) && names <> [] then
Some (OpamPackage.packages_of_names packages
(OpamPackage.Name.(Set.of_list (List.map of_string names))))
else None
in
OpamConsole.header_msg "Synchronising development packages";
let success, st, updates = OpamUpdate.dev_packages st ?working_dir packages in
if OpamClientConfig.(!r.json_out <> None) then
OpamJson.append "dev-packages-updates"
(OpamPackage.Set.to_json updates);
(success, not (OpamPackage.Set.is_empty updates)), st
in
OpamSwitchState.drop st;
repo_update_failure = [] && dev_update_success && remaining = [] &&
OpamPackage.Set.is_empty ignore_packages,
repo_changed || dev_changed,
rt
let init_checks ?(hard_fail_exn=true) init_config =
let check_external_dep name =
OpamSystem.resolve_command name <> None
in
OpamConsole.msg "Checking for available remotes: ";
let repo_types =
["rsync", "rsync and local";
"git", "git"; "hg", "mercurial"; "darcs", "darcs"]
in
let available_repos, unavailable_repos =
List.partition (check_external_dep @* fst) repo_types in
OpamConsole.msg "%s.%s\n"
(match available_repos with
| [] -> "none"
| r -> String.concat ", " (List.map snd r))
(if unavailable_repos = [] then " Perfect!" else
"\n" ^ OpamStd.Format.itemize (fun (cmd,msg) ->
Printf.sprintf
"you won't be able to use %s repositories unless you \
install the %s command on your system."
msg (OpamConsole.colorise `bold cmd))
unavailable_repos);
let soft_fail =
if OpamCudfSolver.has_builtin_solver () then false else
let external_solvers = ["aspcud"; "packup"; "mccs"] in
if not (List.exists check_external_dep external_solvers) then
(OpamConsole.error
"No external solver found. You should get one of %s, or use a \
version of opam compiled with a built-in solver (see \
http://opam.ocaml.org/doc/External_solvers.html for \
details)"
(OpamStd.Format.pretty_list ~last:"or"
(List.map (OpamConsole.colorise `bold) external_solvers));
true)
else false
in
let env v =
let vs = OpamVariable.Full.variable v in
OpamStd.Option.Op.(OpamStd.Option.of_Not_found (List.assoc vs)
OpamSysPoll.variables >>= Lazy.force)
in
let filter_tools =
OpamStd.List.filter_map (fun (cmd,str,oflt) ->
match oflt with
| None -> Some (cmd,str)
| Some flt -> if (OpamFilter.eval_to_bool env flt) then
Some (cmd,str) else None)
in
let check_tool logf tools =
match List.filter (not @* (List.exists check_external_dep) @* fst) tools with
| [] -> false
| missing -> (logf
(OpamStd.Format.itemize
(fun (miss,msg) -> Printf.sprintf "%s%s"
(OpamStd.List.concat_map " or "
(OpamConsole.colorise `bold) miss)
(match msg with | None -> "" | Some m -> ": "^m))
missing);
true)
in
let advised_deps =
filter_tools (OpamFile.InitConfig.recommended_tools init_config)
in
let _ = check_tool
(fun s -> OpamConsole.warning
"Recommended dependencies -- most packages rely on these:";
OpamConsole.errmsg "%s" s)
advised_deps in
let required_deps =
filter_tools (OpamFile.InitConfig.required_tools init_config)
in
let hard_fail =
let msg = if hard_fail_exn then OpamConsole.error else OpamConsole.warning in
check_tool (fun s -> msg
"Missing dependencies -- \
the following commands are required for opam to operate:";
OpamConsole.errmsg "%s" s)
required_deps
in
if hard_fail && hard_fail_exn then OpamStd.Sys.exit_because `Configuration_error
else not (soft_fail || hard_fail)
let update_with_init_config ?(overwrite=false) config init_config =
let module I = OpamFile.InitConfig in
let module C = OpamFile.Config in
let setifnew getter setter v conf =
if overwrite then setter v conf
else if getter conf = getter C.empty then setter v conf
else conf
in
config |>
match I.jobs init_config with
| Some j -> setifnew C.jobs C.with_jobs j
| None -> fun c -> c |>
setifnew C.dl_tool C.with_dl_tool_opt (I.dl_tool init_config) |>
setifnew C.dl_jobs C.with_dl_jobs
(OpamStd.Option.default OpamStateConfig.(default.dl_jobs)
(I.dl_jobs init_config)) |>
setifnew C.criteria C.with_criteria (I.solver_criteria init_config) |>
setifnew C.solver C.with_solver_opt (I.solver init_config) |>
setifnew C.wrappers C.with_wrappers (I.wrappers init_config) |>
setifnew C.global_variables C.with_global_variables
(I.global_variables init_config) |>
setifnew C.eval_variables C.with_eval_variables
(I.eval_variables init_config) |>
setifnew C.default_compiler C.with_default_compiler
(I.default_compiler init_config) |>
setifnew C.default_invariant C.with_default_invariant
(I.default_invariant init_config)
let reinit ?(init_config=OpamInitDefaults.init_config()) ~interactive
?dot_profile ?update_config ?env_hook ?completion ?inplace
?(check_sandbox=true) ?(bypass_checks=false)
config shell =
let root = OpamStateConfig.(!r.root_dir) in
let config = update_with_init_config config init_config in
let _all_ok =
if bypass_checks then false else
init_checks ~hard_fail_exn:false init_config
in
let custom_init_scripts =
let env v =
let vs = OpamVariable.Full.variable v in
OpamStd.Option.Op.(OpamStd.Option.of_Not_found
(List.assoc vs) OpamSysPoll.variables >>= Lazy.force)
in
OpamStd.List.filter_map (fun ((nam,scr),oflt) -> match oflt with
| None -> Some (nam,scr)
| Some flt ->
if OpamFilter.eval_to_bool env flt then Some (nam,scr) else None)
(OpamFile.InitConfig.init_scripts init_config)
in
OpamEnv.write_custom_init_scripts root custom_init_scripts;
let config =
if check_sandbox then
OpamAuxCommands.check_and_revert_sandboxing root config
else config
in
OpamFile.Config.write (OpamPath.config root) config;
OpamEnv.setup root ~interactive
?dot_profile ?update_config ?env_hook ?completion ?inplace shell;
let gt = OpamGlobalState.load `Lock_write in
let rt = OpamRepositoryState.load `Lock_write gt in
OpamConsole.header_msg "Updating repositories";
let _failed, rt =
OpamRepositoryCommand.update_with_auto_upgrade rt
(OpamRepositoryName.Map.keys rt.repos_definitions)
in
OpamRepositoryState.drop rt
let init
~init_config ~interactive
?repo ?(bypass_checks=false)
?dot_profile ?update_config ?env_hook ?(completion=true)
?(check_sandbox=true)
shell =
log "INIT %a"
(slog @@ OpamStd.Option.to_string OpamRepositoryBackend.to_string) repo;
let root = OpamStateConfig.(!r.root_dir) in
let config_f = OpamPath.config root in
let root_empty =
not (OpamFilename.exists_dir root) || OpamFilename.dir_is_empty root in
let gt, rt, default_compiler =
if OpamFile.exists config_f then (
OpamConsole.msg "Opam has already been initialized.\n";
let gt = OpamGlobalState.load `Lock_write in
if OpamFile.Config.installed_switches gt.config = [] then
OpamConsole.msg
"... but you have no switches installed, use `opam switch \
create <compiler-or-version>' to get started.";
gt, OpamRepositoryState.load `Lock_none gt, []
) else (
if not root_empty then (
OpamConsole.warning "%s exists and is not empty"
(OpamFilename.Dir.to_string root);
if not (OpamConsole.confirm "Proceed?") then
OpamStd.Sys.exit_because `Aborted);
try
let repos = match repo with
| Some r -> [r.repo_name, (r.repo_url, r.repo_trust)]
| None -> OpamFile.InitConfig.repositories init_config
in
let config =
update_with_init_config
OpamFile.Config.(with_opam_root_version root_version empty)
init_config |>
OpamFile.Config.with_repositories (List.map fst repos)
in
let dontswitch =
if bypass_checks then false else
let all_ok = init_checks init_config in
if not all_ok &&
not (OpamConsole.confirm "Continue initialisation anyway ?")
then OpamStd.Sys.exit_because `Configuration_error
else not all_ok
in
let custom_scripts =
let env v =
let vs = OpamVariable.Full.variable v in
OpamStd.Option.Op.(OpamStd.Option.of_Not_found (List.assoc vs)
OpamSysPoll.variables >>= Lazy.force)
in
let scripts = OpamFile.InitConfig.init_scripts init_config in
OpamStd.List.filter_map (fun ((nam,scr),oflt) -> match oflt with
| None -> Some (nam,scr)
| Some flt -> if OpamFilter.eval_to_bool env flt then
Some (nam,scr) else None) scripts
in
OpamEnv.write_custom_init_scripts root custom_scripts;
let config =
if check_sandbox then
OpamAuxCommands.check_and_revert_sandboxing root config
else config
in
OpamFile.Config.write config_f config;
let repos_config =
OpamRepositoryName.Map.of_list repos |>
OpamRepositoryName.Map.map OpamStd.Option.some
in
OpamFile.Repos_config.write (OpamPath.repos_config root)
repos_config;
log "updating repository state";
let gt = OpamGlobalState.load `Lock_write in
let rt = OpamRepositoryState.load `Lock_write gt in
OpamConsole.header_msg "Fetching repository information";
let failed, rt =
OpamRepositoryCommand.update_with_auto_upgrade rt
(List.map fst repos)
in
if failed <> [] then
(if root_empty then
(try OpamFilename.rmdir root with _ -> ());
OpamConsole.error_and_exit `Sync_error
"Initial download of repository failed.");
let default_compiler =
if dontswitch then [] else
let chrono = OpamConsole.timer () in
let alternatives =
OpamFormula.to_dnf
(OpamFile.InitConfig.default_compiler init_config)
in
let invariant = OpamFile.InitConfig.default_invariant init_config in
let virt_st =
OpamSwitchState.load_virtual ~avail_default:false gt rt
in
let univ =
OpamSwitchState.universe virt_st
~requested:OpamPackage.Name.Set.empty Query
in
let univ = { univ with u_invariant = invariant } in
let default_compiler =
OpamStd.List.find_opt
(OpamSolver.atom_coinstallability_check univ)
alternatives
|> OpamStd.Option.default []
in
log "Selected default compiler %s in %0.3fs"
(OpamFormula.string_of_atoms default_compiler)
(chrono ());
default_compiler
in
gt, OpamRepositoryState.unlock ~cleanup:false rt, default_compiler
with e ->
OpamStd.Exn.finalise e @@ fun () ->
if not (OpamConsole.debug ()) && root_empty then begin
OpamSystem.release_all_locks ();
OpamFilename.rmdir root
end)
in
OpamEnv.setup root ~interactive
?dot_profile ?update_config ?env_hook ~completion shell;
gt, rt, default_compiler
let check_conflicts t atoms =
let changes = OpamSwitchState.packages_of_atoms t atoms in
let t, full_orphans, orphan_versions = orphans ~changes t in
let available = Lazy.force t.available_packages in
let available_changes = changes %% available in
let full_orphans_reinstallable, full_orphans =
OpamPackage.Set.partition (fun nv ->
match OpamPackage.Map.find_opt nv t.opams with
| None -> false
| Some opam ->
OpamFilter.eval_to_bool ~default:false
(OpamPackageVar.resolve_switch ~package:nv t)
(OpamFile.OPAM.available opam))
full_orphans
in
let orphan_versions_reinstallable, orphan_versions =
OpamPackage.Set.partition (fun nv ->
not (OpamPackage.has_name available_changes nv.name) &&
match OpamPackage.Map.find_opt nv t.opams with
| None -> false
| Some opam ->
OpamFilter.eval_to_bool ~default:false
(OpamPackageVar.resolve_switch ~package:nv t)
(OpamFile.OPAM.available opam))
orphan_versions
in
let orphans = full_orphans ++ orphan_versions in
let conflict_atoms =
let non_orphans = lazy (t.packages -- full_orphans -- orphan_versions) in
List.filter
(fun (name,_ as a) ->
not (OpamPackage.has_name t.pinned name) &&
OpamPackage.Set.exists (OpamFormula.check a) orphans &&
not (OpamPackage.Set.exists (OpamFormula.check a)
(Lazy.force non_orphans)))
atoms
in
if conflict_atoms <> [] then
OpamConsole.error_and_exit `Not_found
"Sorry, these packages are no longer available from the repositories: \
%s"
(OpamStd.Format.pretty_list
(List.map OpamFormula.string_of_atom conflict_atoms))
else
{t with available_packages = lazy
(available ++
full_orphans_reinstallable ++
orphan_versions_reinstallable)},
full_orphans,
orphan_versions
let check_installed ~build ~post t atoms =
let available = (Lazy.force t.available_packages) in
let uninstalled = OpamPackage.Set.Op.(available -- t.installed) in
let pkgs =
OpamPackage.to_map
(OpamFormula.packages_of_atoms available atoms)
in
let test = OpamStateConfig.(!r.build_test) in
let doc = OpamStateConfig.(!r.build_doc) in
let env p =
OpamFilter.deps_var_env ~build ~post ~test ~doc
~dev:(OpamSwitchState.is_dev_package t p)
in
OpamPackage.Name.Map.fold (fun name versions map ->
let compliant, missing_opt =
OpamPackage.Version.Set.fold (fun version (found, missing) ->
if found then (found, missing)
else
let pkg = OpamPackage.create name version in
let cnf_formula =
OpamSwitchState.opam t pkg
|> OpamFile.OPAM.depends
|> OpamFilter.filter_formula (env pkg)
|> OpamFormula.to_cnf
in
let missing_conj =
List.filter
(List.for_all (fun ((n,_vc) as atom) ->
OpamPackage.Set.for_all
(fun p -> not (OpamFormula.check atom p))
(OpamPackage.packages_of_name t.installed n)))
cnf_formula
in
if missing_conj = [] then true, None
else false, Some (pkg,missing_conj))
versions (false,None)
in
if compliant then map else
match missing_opt with
| None -> assert false
| Some (pkg, missing_conj) ->
OpamPackage.Map.add pkg
(OpamPackage.names_of_packages
(List.fold_left (fun names disj ->
OpamPackage.Set.union names
(OpamFormula.packages_of_atoms uninstalled disj))
OpamPackage.Set.empty missing_conj))
map
) pkgs OpamPackage.Map.empty
let assume_built_restrictions ?available_packages t atoms =
let missing = check_installed ~build:false ~post:false t atoms in
let atoms =
if OpamPackage.Map.is_empty missing then atoms else
(OpamConsole.warning
"You specified '--assume-built' but the following dependencies \
aren't installed, skipping\n%s\
Launch 'opam install %s --deps-only' (and recompile) to \
install them.\n"
(OpamStd.Format.itemize (fun (nv, names) ->
Printf.sprintf "%s: %s" (OpamPackage.name_to_string nv)
(OpamStd.List.concat_map " " OpamPackage.Name.to_string
(OpamPackage.Name.Set.elements names)))
(OpamPackage.Map.bindings missing))
(OpamStd.List.concat_map " " OpamPackage.name_to_string
(OpamPackage.Map.keys missing));
List.filter (fun (n,_) ->
not (OpamPackage.Map.exists (fun nv _ ->
OpamPackage.name nv = n) missing))
atoms)
in
let pinned =
OpamPackage.Set.filter
(fun p -> List.exists (fun a -> OpamFormula.check a p) atoms)
t.pinned
in
let installed_dependencies =
OpamSolver.dependencies ~build:false ~post:false
~depopts:false ~installed:true ~unavailable:false
(OpamSwitchState.universe t
~requested:(OpamPackage.names_of_packages pinned) Query)
pinned
in
let available_packages =
match available_packages with
| Some a -> a
| None -> Lazy.force t.available_packages
in
let uninstalled_dependencies =
(OpamPackage.Map.values missing
|> List.fold_left OpamPackage.Name.Set.union OpamPackage.Name.Set.empty
|> OpamPackage.packages_of_names available_packages)
-- installed_dependencies
in
let available_packages = lazy (
(available_packages -- uninstalled_dependencies) ++ t.installed ++ pinned
) in
let fixed_atoms =
List.map (fun nv ->
(OpamPackage.name nv , Some (`Eq, OpamPackage.version nv)))
(OpamPackage.Set.elements pinned @
OpamPackage.Set.elements installed_dependencies)
in
{ t with available_packages }, fixed_atoms
let filter_unpinned_locally t atoms f =
OpamStd.List.filter_map (fun at ->
let n,_ = at in
if OpamSwitchState.is_pinned t n &&
OpamStd.Option.Op.(OpamPinned.package_opt t n >>=
OpamSwitchState.primary_url t >>=
OpamUrl.local_dir) <> None
then
Some (f at)
else
(log "Package %a is not pinned locally and assume built \
option is set, skipping"
(slog OpamPackage.Name.to_string) n;
None))
atoms
let install_t t ?ask ?(ignore_conflicts=false) ?(depext_only=false)
?(download_only=false) atoms add_to_roots ~deps_only ~assume_built =
log "INSTALL %a" (slog OpamFormula.string_of_atoms) atoms;
let names = OpamPackage.Name.Set.of_list (List.rev_map fst atoms) in
let t, full_orphans, orphan_versions = check_conflicts t atoms in
let atoms =
let compl = function
| (_, Some _) as at -> at
| (name, None) as at ->
match OpamPinned.package_opt t name with
| Some nv -> OpamSolution.eq_atom_of_package nv
| None -> at
in
if assume_built then filter_unpinned_locally t atoms compl
else List.map compl atoms
in
let pkg_skip, pkg_new =
get_installed_atoms t atoms in
let pkg_reinstall =
if assume_built then OpamPackage.Set.of_list pkg_skip
else Lazy.force t.reinstall %% OpamPackage.Set.of_list pkg_skip
in
let current_roots = t.installed_roots in
let t =
if deps_only then t else
List.fold_left (fun t nv ->
if OpamPackage.Set.mem nv t.installed then
match add_to_roots with
| None ->
if not (OpamPackage.Set.mem nv pkg_reinstall) then
OpamConsole.note
"Package %s is already installed (current version is %s)."
(OpamPackage.Name.to_string nv.name)
(OpamPackage.Version.to_string nv.version);
t
| Some true ->
if OpamPackage.Set.mem nv t.installed_roots then
OpamConsole.note
"Package %s is already installed as a root."
(OpamPackage.Name.to_string nv.name);
{ t with installed_roots =
OpamPackage.Set.add nv t.installed_roots }
| Some false ->
if OpamPackage.Set.mem nv t.installed_roots then begin
if OpamPackage.Set.mem nv t.compiler_packages then
OpamConsole.note
"Package %s is part of the switch invariant and won't be uninstalled \
unless the invariant is updated."
(OpamPackage.name_to_string nv);
{ t with installed_roots =
OpamPackage.Set.remove nv t.installed_roots }
end else
(OpamConsole.note
"Package %s is already marked as 'installed automatically'."
(OpamPackage.Name.to_string nv.name);
t)
else t
) t pkg_skip in
if t.installed_roots <> current_roots then (
let diff = t.installed_roots -- current_roots in
if not (OpamPackage.Set.is_empty diff) then
let diff = OpamPackage.Set.elements diff in
let diff = List.rev (List.rev_map OpamPackage.to_string diff) in
OpamConsole.msg
"Adding %s to the list of installed roots.\n"
(OpamStd.Format.pretty_list diff)
else (
let diff = current_roots -- t.installed_roots in
let diff = OpamPackage.Set.elements diff in
let diff = List.rev (List.rev_map OpamPackage.to_string diff) in
OpamConsole.msg
"Removing %s from the list of installed roots.\n"
(OpamStd.Format.pretty_list diff)
);
OpamSwitchAction.write_selections t
);
let available_packages = Lazy.force t.available_packages in
let available_packages =
if deps_only then
List.fold_left (fun avail (name, _ as atom) ->
if OpamPackage.Set.exists (OpamFormula.check atom) avail then avail
else match OpamPinned.package_opt t name with
| Some nv when OpamFormula.check atom nv ->
OpamPackage.Set.add nv avail
| _ ->
avail ++
OpamPackage.Set.filter (OpamFormula.check atom) t.packages)
available_packages atoms
else
(OpamSolution.check_availability t available_packages atoms;
available_packages)
in
let opams =
if deps_only && ignore_conflicts then
(let pkgs = OpamFormula.packages_of_atoms available_packages atoms in
log "removing conflicts from %s" (OpamPackage.Set.to_string pkgs);
OpamPackage.Set.fold (fun pkg opams ->
let opam =
OpamFile.OPAM.with_conflicts Empty (OpamSwitchState.opam t pkg)
in
OpamPackage.Map.add pkg opam opams)
pkgs t.opams)
else t.opams
in
let t = {t with available_packages = lazy available_packages; opams} in
if pkg_new = [] && OpamPackage.Set.is_empty pkg_reinstall then t else
let t, atoms =
if assume_built then
assume_built_restrictions ~available_packages t atoms
else t, atoms
in
let request = OpamSolver.request ~install:atoms () in
let solution =
let reinstall = if assume_built then Some pkg_reinstall else None in
OpamSolution.resolve t Install
~orphans:(full_orphans ++ orphan_versions)
~requested:names
?reinstall
request in
let t, solution = match solution with
| Conflicts cs ->
log "conflict!";
OpamConsole.error "Package conflict!";
let (conflicts, _cycles) as explanations =
OpamCudf.conflict_explanations_raw t.packages cs
in
let has_missing_depexts =
let check = function
| `Missing (_, _, fdeps) ->
OpamFormula.fold_right (fun a x ->
match OpamSwitchState.unavailable_reason_raw t x with
| `MissingDepexts _ -> true
| _ -> a)
false fdeps
| _ -> false
in
List.exists check conflicts
in
let =
if has_missing_depexts then
OpamStd.Option.map_default (fun s -> s ^ ".\n\n") ""
(OpamSysInteract.repo_enablers ())
else
""
in
OpamConsole.errmsg "%s%s"
(OpamCudf.string_of_explanations
(OpamSwitchState.unavailable_reason t) explanations)
extra_message;
t, if depext_only then None else Some (Conflicts cs)
| Success full_solution ->
let solution =
if deps_only then
OpamSolver.filter_solution (fun nv ->
not (OpamPackage.Name.Set.mem nv.name names))
full_solution
else full_solution in
if depext_only then
(OpamSolution.install_depexts ~force_depext:true ~confirm:false t
(OpamSolver.all_packages solution)), None
else
let add_roots =
if deps_only && add_to_roots <> Some false then
let requested_deps =
OpamPackage.Set.fold (fun nv acc ->
OpamFormula.ors [
OpamPackageVar.all_depends t (OpamSwitchState.opam t nv)
~depopts:false ~build:true ~post:false;
acc
])
(OpamPackage.packages_of_names
(OpamSolver.all_packages full_solution)
names)
OpamFormula.Empty
in
Some (OpamPackage.names_of_packages
(OpamFormula.packages
(OpamSolver.all_packages solution) requested_deps))
else
OpamStd.Option.map (function
| true -> names
| false -> OpamPackage.Name.Set.empty)
add_to_roots
in
let t, res =
OpamSolution.apply ?ask t ~requested:names ?add_roots
~download_only ~assume_built solution in
t, Some (Success res)
in
OpamStd.Option.iter (OpamSolution.check_solution t) solution;
t
let install t ?autoupdate ?add_to_roots
?(deps_only=false) ?(ignore_conflicts=false) ?(assume_built=false)
?(download_only=false) ?(depext_only=false) names =
let atoms = OpamSolution.sanitize_atom_list ~permissive:true t names in
let autoupdate_atoms = match autoupdate with
| None -> atoms
| Some a -> OpamSolution.sanitize_atom_list ~permissive:true t a
in
let t = update_dev_packages_t autoupdate_atoms t in
install_t t atoms add_to_roots
~ignore_conflicts ~depext_only ~deps_only ~download_only ~assume_built
let remove_t ?ask ~autoremove ~force atoms t =
log "REMOVE autoremove:%b %a" autoremove
(slog OpamFormula.string_of_atoms) atoms;
let t, full_orphans, orphan_versions =
if atoms = [] then t, OpamPackage.Set.empty, OpamPackage.Set.empty
else
let changes = OpamSwitchState.packages_of_atoms t atoms in
orphans ~changes t
in
let nothing_to_do = ref true in
let packages, not_installed =
get_installed_atoms t atoms in
if not_installed <> [] then (
if force then
let force_remove atom =
let candidates = OpamPackage.Set.filter (OpamFormula.check atom) t.packages in
try
let nv = OpamPackage.max_version candidates (fst atom) in
OpamConsole.note "Forcing removal of (uninstalled) %s" (OpamPackage.to_string nv);
OpamProcess.Job.run (OpamAction.remove_package t nv);
OpamAction.cleanup_package_artefacts t nv;
nothing_to_do := false
with Not_found ->
OpamConsole.error "No package %s found for (forced) removal.\n"
(OpamFormula.short_string_of_atom atom)
in
List.iter force_remove not_installed
else
OpamConsole.note "%s %s not installed.\n"
(OpamStd.Format.pretty_list
(List.map OpamFormula.short_string_of_atom not_installed))
(match not_installed with [_] -> "is" | _ -> "are")
);
if autoremove || packages <> [] then (
let packages = OpamPackage.Set.of_list packages in
let universe =
OpamSwitchState.universe t
~requested:(OpamPackage.names_of_packages packages)
Remove
in
let to_remove =
OpamSolver.reverse_dependencies ~build:true ~post:true
~depopts:false ~installed:true universe packages
in
let to_keep =
(if autoremove then t.installed_roots %% t.installed else t.installed)
++ universe.u_base
-- to_remove
in
let to_keep =
OpamSolver.dependencies ~build:true ~post:true
~depopts:true ~installed:true universe to_keep in
let to_keep = to_keep -- to_remove in
let requested = OpamPackage.names_of_packages packages in
let to_remove =
if autoremove then
let to_remove1 = t.installed -- to_keep in
if atoms = [] then to_remove1
else
to_remove1 %%
(OpamSolver.dependencies ~build:true ~post:true
~depopts:true ~installed:true universe to_remove)
else to_remove in
let t, solution =
OpamSolution.resolve_and_apply ?ask t Remove
~force_remove:force
~requested ~orphans:(full_orphans ++ orphan_versions)
(OpamSolver.request
~install:(OpamSolution.eq_atoms_of_packages to_keep)
~remove:(OpamSolution.atoms_of_packages to_remove)
())
in
OpamSolution.check_solution t solution;
t
) else if !nothing_to_do then (
OpamConsole.msg "Nothing to do.\n";
t
) else t
let remove t ~autoremove ~force names =
let atoms = OpamSolution.sanitize_atom_list t names in
remove_t ~autoremove ~force atoms t
let reinstall_t t ?ask ?(force=false) ~assume_built atoms =
log "reinstall %a" (slog OpamFormula.string_of_atoms) atoms;
let atoms =
if assume_built then filter_unpinned_locally t atoms (fun x -> x)
else atoms
in
let reinstall, not_installed =
get_installed_atoms t atoms in
let to_install =
if not_installed <> [] then
if
force || assume_built ||
OpamConsole.confirm "%s %s not installed. Install %s?"
(OpamStd.Format.pretty_list
(List.rev_map OpamFormula.short_string_of_atom not_installed))
(match not_installed with [_] -> "is" | _ -> "are")
(match not_installed with [_] -> "it" | _ -> "them")
then not_installed
else OpamStd.Sys.exit_because `Aborted
else []
in
let reinstall = OpamPackage.Set.of_list reinstall in
let atoms =
to_install @ OpamSolution.eq_atoms_of_packages reinstall in
let t, full_orphans, orphan_versions = check_conflicts t atoms in
let requested =
OpamPackage.Name.Set.of_list (List.rev_map fst atoms) in
let t, atoms =
if assume_built then
assume_built_restrictions t atoms
else t, atoms
in
let request = OpamSolver.request ~install:atoms ~criteria:`Fixup () in
let t, solution =
OpamSolution.resolve_and_apply ?ask t Reinstall
~orphans:(full_orphans ++ orphan_versions)
~reinstall:(OpamPackage.packages_of_names t.installed requested)
~requested
~assume_built
request in
OpamSolution.check_solution t solution;
t
let reinstall t ?(assume_built=false) names =
let atoms = OpamSolution.sanitize_atom_list t names in
let t = update_dev_packages_t atoms t in
reinstall_t t ~assume_built atoms
module PIN = struct
open OpamPinCommand
let post_pin_action st was_pinned names =
let pkgs =
let newly = st.pinned -- was_pinned in
let old =
OpamPackage.packages_of_names was_pinned
OpamPackage.Name.Set.Op.(
OpamPackage.Name.Set.of_list names
-- OpamPackage.names_of_packages newly)
in
newly ++ old
in
let no_depexts =
not (OpamFile.Config.depext st.switch_global.config)
|| OpamSysPkg.Set.is_empty
((OpamPackage.Set.fold (fun pkg acc ->
OpamSysPkg.Set.union acc (OpamSwitchState.depexts st pkg)))
pkgs OpamSysPkg.Set.empty)
in
try
let st =
if no_depexts then st else
let st =
{ st with sys_packages = lazy (
OpamPackage.Map.union (fun _ n -> n)
(Lazy.force st.sys_packages)
(OpamSwitchState.depexts_status_of_packages st pkgs)
)}
in
{ st with available_packages = lazy (
OpamPackage.Set.filter (fun nv ->
OpamSwitchState.depexts_unavailable st nv = None)
(Lazy.force st.available_packages)
)}
in
upgrade_t
~strict_upgrade:false ~auto_install:true ~ask:true ~terse:true
~all:false
(List.map (fun name -> name, None) names) st
with e ->
OpamConsole.note
"Pinning command successful, but your installed packages \
may be out of sync.";
raise e
let get_upstream t name =
try match
OpamStd.Option.Op.(
OpamSwitchState.get_package t name |>
OpamSwitchState.opam_opt t >>=
OpamFile.OPAM.dev_repo
)
with
| None ->
OpamConsole.error_and_exit `Not_found
"\"dev-repo\" field missing in %s metadata, you'll need to specify \
the pinning location"
(OpamPackage.Name.to_string name)
| Some url -> url
with Not_found ->
OpamConsole.error_and_exit `Not_found
"No package named %S found"
(OpamPackage.Name.to_string name)
let pin st name ?(edit=false) ?version ?(action=true) ?subpath ?locked target =
try
let pinned = st.pinned in
let st =
match target with
| `Source url -> source_pin st name ?version ~edit ?subpath ?locked (Some url)
| `Version v ->
let st = version_pin st name v in
if edit then OpamPinCommand.edit st name else st
| `Source_version (srcv, version) ->
let url =
let nv = (OpamPackage.create name srcv) in
match OpamPackage.Map.find_opt nv st.repos_package_index with
| Some opam ->
(match
OpamStd.Option.Op.(OpamFile.OPAM.url opam >>| OpamFile.URL.url)
with
| Some u -> u
| None ->
OpamConsole.error_and_exit `Not_found
"Package %s has no url defined in its opam file description"
(OpamPackage.to_string nv))
| None ->
OpamConsole.error_and_exit `Not_found
"Package %s has no known version %s in the repositories"
(OpamPackage.Name.to_string name)
(OpamPackage.Version.to_string version)
in
source_pin st name ~version ~edit ?locked (Some url)
| `Dev_upstream ->
source_pin st name ?version ~edit ?locked (Some (get_upstream st name))
| `None -> source_pin st name ?version ~edit ?locked None
in
if action then (OpamConsole.msg "\n"; post_pin_action st pinned [name])
else st
with
| OpamPinCommand.Aborted -> OpamStd.Sys.exit_because `Aborted
| OpamPinCommand.Nothing_to_do -> st
let url_pins st ?edit ?(action=true) ?locked ?(pre=fun _ -> ()) pins =
let names = List.map (fun (n,_,_,_,_) -> n) pins in
(match names with
| _::_::_ ->
if not (OpamConsole.confirm
"This will pin the following packages: %s. Continue?"
(OpamStd.List.concat_map ", " OpamPackage.Name.to_string names))
then
OpamStd.Sys.exit_because `Aborted
| _ -> ());
let pins =
let urls_ok =
OpamPinCommand.fetch_all_pins st
(List.map (fun (name, _, _, url, subpath) ->
name, url, subpath) pins)
in
List.filter (fun (_,_,_, url, subpath) ->
List.mem (url, subpath) urls_ok)
pins
in
let pinned = st.pinned in
let st =
List.fold_left (fun st (name, version, opam, url, subpath as pin) ->
pre pin;
try
OpamPinCommand.source_pin st name ?version ?opam
?edit ?subpath ?locked (Some url)
with
| OpamPinCommand.Aborted -> OpamStd.Sys.exit_because `Aborted
| OpamPinCommand.Nothing_to_do -> st)
st pins
in
if action then
(OpamConsole.msg "\n";
post_pin_action st pinned names)
else st
let edit st ?(action=true) ?version ?locked name =
let pinned = st.pinned in
let st =
if OpamPackage.has_name st.pinned name then
edit st ?version name
else
let pin_nv =
match version with
| Some v ->
let nv = OpamPackage.create name v in
if OpamPackage.Set.mem nv st.packages then Some nv else None
| None ->
OpamStd.Option.of_Not_found (OpamSwitchState.get_package st) name
in
match pin_nv with
| Some nv ->
if OpamConsole.confirm
"Package %s is not pinned. Edit as a new pinning to version %s?"
(OpamPackage.Name.to_string name)
(OpamPackage.version_to_string nv)
then
let target =
OpamStd.Option.Op.(OpamSwitchState.url st nv >>| OpamFile.URL.url)
in
let opam = OpamPackage.Map.find_opt nv st.repos_package_index in
try source_pin st name ~edit:true ?version ?opam ?locked target
with OpamPinCommand.Aborted -> OpamStd.Sys.exit_because `Aborted
| OpamPinCommand.Nothing_to_do -> st
else
OpamStd.Sys.exit_because `Aborted
| None ->
OpamConsole.error_and_exit `Not_found
"Package is not pinned, and no existing version was supplied."
in
if action then post_pin_action st pinned [name]
else st
let unpin st ?(action=true) names =
let pinned_before = st.pinned in
let st = unpin st names in
let installed_unpinned = (pinned_before -- st.pinned) %% st.installed in
if action && not (OpamPackage.Set.is_empty installed_unpinned) then
let atoms =
OpamPackage.Set.fold (fun nv acc -> (nv.name, None) :: acc)
installed_unpinned []
in
upgrade_t
~strict_upgrade:false ~auto_install:true ~ask:true ~all:false
~terse:true
atoms st
else st
let list = list
end