Source file b0_opam.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
let () = B0_scope.open_lib ~module':__MODULE__ "opam"
open B0_std
open Result.Syntax
let collect_results rs =
let rec loop ok err = function
| Ok o :: vs -> loop (o :: ok) err vs
| Error e :: vs -> loop ok (e :: err) vs
| [] -> if err = [] then Ok (List.rev ok) else Error (String.concat "\n" err)
in
loop [] [] rs
type t = Cmd.t
let get ?search ?(cmd = Cmd.arg "opam") () = Os.Cmd.get ?search cmd
module File = struct
type value =
[ `Raw of string | `B of bool | `S of string | `L of bool * value list ]
type field = string * value
type section = string * string option * t
and item = [ `Comment of comment | `Field of field | `Section of section ]
and t = item list
let v2 = `Field ("opam-version", `S "2.0")
let escape =
let char_len = function '"' -> 2 | _ -> 1 in
let set_char b i = function
| '"' -> Bytes.set b i '\\'; Bytes.set b (i+1) '"'; i + 2
| c -> Bytes.set b i c; i + 1
in
String.byte_escaper char_len set_char
let _pp ppf file =
let rec pp_value ppf = function
| `Raw r -> Fmt.string ppf r
| `B b -> Fmt.bool ppf b
| `S s -> Fmt.pf ppf "\"%s\"" (escape s)
| `L (vert, vs) ->
let box = if vert then Fmt.vbox else Fmt.hovbox in
let pp_list ppf vs = Fmt.pf ppf "[%a]" Fmt.(list ~sep:sp pp_value) vs in
(box ~indent:1 pp_list) ppf vs
in
let pp_field ppf (f, v) = Fmt.pf ppf "%s: @[%a@]" f pp_value v in
let = Fmt.(hbox @@ any "# " ++ string) in
let rec pp_item ppf = function
| `Comment c -> pp_comment ppf c
| `Field f -> pp_field ppf f
| `Section (n, opt, file) ->
let pp_opt = Fmt.(option (quote ~mark:{|"|} string ++ any " " )) in
Fmt.pf ppf "@[<v2>%s %a{@,%a}@]" n pp_opt opt pp_file file
and pp_file ppf file = (Fmt.vbox (Fmt.list pp_item)) ppf file in
pp_file ppf file; Fmt.flush ppf ()
let to_string opam ~normalize file =
let b = Buffer.create (10 * 1024) in
let file = _pp (Format.formatter_of_buffer b) file; Buffer.contents b in
if not normalize then Ok file else
let stdin = Os.Cmd.in_string file in
Os.Cmd.run_out ~stdin ~trim:true @@
Cmd.(opam % "lint" % "-" % "--normalise")
type pkg_spec = string * string
let pp_pkg_spec ppf (n, f) =
let pp_formula ppf = function "" -> () | f -> Fmt.pf ppf " {%s}" f in
Fmt.pf ppf "%s%a" n pp_formula f
let pp_pkg_url ppf (n, u) = Fmt.pf ppf "@[%s %s@]" n u
let pp_pkg_spec_list = Fmt.vbox @@ Fmt.list pp_pkg_spec
let pp_pkg_url_list = Fmt.vbox @@ Fmt.list pp_pkg_url
let pp_string_list = Fmt.vbox @@ Fmt.list Fmt.string
let name_field =
let doc = "opam file name: field" in
B0_meta.Key.make "name" ~doc ~pp_value:Fmt.string
let file_addendum =
let doc = "opam file fragment added at the end" in
B0_meta.Key.make "file-addendum" ~doc ~pp_value:_pp
let available_field =
let doc = "opam file available: field" in
B0_meta.Key.make "available" ~doc ~pp_value:Fmt.string
let build_field =
let doc = "opam file build: field" in
B0_meta.Key.make "build" ~doc ~pp_value:Fmt.string
let build_env_field =
let doc = "opam file build-env: field" in
B0_meta.Key.make "build-env" ~doc ~pp_value:Fmt.string
let conflicts_field =
let doc = "opam file conflicts: field" in
B0_meta.Key.make "conflicts" ~doc ~pp_value:pp_pkg_spec_list
let depends_field =
let doc = "opam file depends: field" in
B0_meta.Key.make "depends" ~doc ~pp_value:pp_pkg_spec_list
let depopts_field =
let doc = "opam file depopts: field" in
B0_meta.Key.make "depopts" ~doc ~pp_value:pp_pkg_spec_list
let install_field =
let doc = "opam file install: field" in
B0_meta.Key.make "install" ~doc ~pp_value:Fmt.string
let pin_depends =
let doc = "opam file pin-depends: field" in
B0_meta.Key.make "pin-depends" ~doc ~pp_value:pp_pkg_url_list
let x_maintenance_intent =
let doc = "opam file x-maintenance-intent: field" in
B0_meta.Key.make "x-maintenance-intent" ~doc ~pp_value:pp_string_list
let pkg_of_meta ~with_name m =
let string field k m acc = match B0_meta.find k m with
| None -> acc | Some s -> `Field (field, `S s) :: acc
in
let string_raw field k m acc = match B0_meta.find k m with
| None -> acc | Some s -> `Field (field, `Raw s) :: acc
in
let string_list ~by_line:l field k m acc = match B0_meta.find k m with
| None -> acc
| Some ms -> `Field (field, `L (l, List.map (fun s -> `S s) ms)) :: acc
in
let triple_string ~nl field k m acc = match B0_meta.find k m with
| None -> acc | Some s ->
let nl = if nl then "\n" else "" in
let tri = "\"\"\"" in
`Field (field, `Raw (String.concat "" [tri; nl; s; tri])) :: acc
in
let pkg_spec_list field k m acc = match B0_meta.find k m with
| None -> acc | Some pkgs ->
let pkg (n, f) = match f with
| "" -> `S n | f -> `Raw (Fmt.str {|"%s" {%s}|} n f)
in
`Field (field, `L (true, List.map pkg pkgs)) :: acc
in
let string_pair_list ~by_line:l field k m acc = match B0_meta.find k m with
| None -> acc | Some ps ->
let pair (f, s) = `L (false, [`S f; `S s]) in
`Field (field, `L (l, List.map pair ps)) :: acc
in
let fields =
[ triple_string ~nl:false "synopsis" B0_meta.synopsis;
string_list ~by_line:true "maintainer" B0_meta.maintainers;
string_list ~by_line:true "authors" B0_meta.authors;
string "homepage" B0_meta.homepage;
string "doc" B0_meta.online_doc;
string "dev-repo" B0_meta.repo;
string "bug-reports" B0_meta.issues;
string_list ~by_line:false "license" B0_meta.licenses;
string_list ~by_line:false "tags" B0_meta.description_tags;
pkg_spec_list "depends" depends_field;
string_pair_list ~by_line:true "pin-depends" pin_depends;
pkg_spec_list "depopts" depopts_field;
pkg_spec_list "conflicts" conflicts_field;
string_raw "available" available_field;
string_raw "build" build_field;
string_raw "build-env" build_env_field;
string_raw "install" install_field;
triple_string ~nl:true "description" B0_meta.description;
string_list ~by_line:false "x-maintenance-intent" x_maintenance_intent;
]
in
let add_field m acc f = f m acc in
let start =
if with_name then add_field m [] (string "name" name_field) else []
in
let (fs : item list) = List.fold_left (add_field m) start fields in
let addendum = Option.value ~default:[] (B0_meta.find file_addendum m) in
List.rev_append fs addendum
end
let tag = B0_meta.Key.make_tag "tag" ~doc:"opam related entity"
let pkg_name_of_pack p =
match B0_meta.find File.name_field (B0_pack.meta p) with
| Some n -> n
| None ->
let n = B0_pack.basename p in
if not (String.equal n "default") then n else
match B0_def.scope_dir (B0_pack.def p) with
| None -> "unknown"
| Some d -> Fpath.basename d
type pkg_spec = string * string
let available = File.available_field
let build = File.build_field
let build_env = File.build_env_field
let conflicts = File.conflicts_field
let depends = File.depends_field
let depopts = File.depopts_field
let file_addendum = File.file_addendum
let install = File.install_field
let name = File.name_field
let pin_depends = File.pin_depends
let x_maintenance_intent = File.x_maintenance_intent
let derive_build p m =
if B0_meta.mem build m then m else
let b = Fmt.str {|[[ "b0" "--lock" "-p" "%s" ]]|} (B0_pack.basename p) in
B0_meta.add build b m
let derive_depends p m =
if B0_meta.mem depends m then m else
let unit_pkg_deps u = match B0_unit.find_meta B0_ocaml.requires u with
| None -> [] | Some libs ->
List.rev_map (fun l -> B0_ocaml.Libname.root l) libs
in
let pkg_deps = List.concat_map unit_pkg_deps (B0_pack.units p) in
let pkg_deps = List.map (fun n -> n, "") (String.distinct pkg_deps) in
B0_meta.add depends pkg_deps m
let derive_name p m =
if B0_meta.mem name m then m else B0_meta.add name (pkg_name_of_pack p) m
let derive_x_maintenance_intent p m =
if B0_meta.mem x_maintenance_intent m then m else
B0_meta.add x_maintenance_intent ["(latest)"] m
let pkg_meta_of_pack p =
let m = B0_pack.meta p in
let m = derive_name p m in
let m = B0_pack.derive_synopsis_and_description p m in
let m = derive_build p m in
let m = derive_depends p m in
let m = derive_x_maintenance_intent p m in
m
module Pkg = struct
type t = string * B0_pack.t
let name = fst
let pack = snd
let pp_name_str = Fmt.code
let pp_name = Fmt.using fst pp_name_str
let pp_err ppf pkg = Fmt.pf ppf "Package %a" pp_name pkg
let pp_err_pack ppf pkg =
Fmt.pf ppf "Package %a: Pack %a" pp_name pkg B0_pack.pp_name (pack pkg)
let file ~with_name pkg =
let meta = pkg_meta_of_pack (pack pkg) in
let file = File.v2 :: File.pkg_of_meta ~with_name meta in
meta, file
let name_hints ~dom ~unknown =
let pkg_dom = fun yield -> List.iter yield (String.Set.elements dom) in
let add u acc =
let kind ppf () = Fmt.string ppf "opam package" in
let hint = Fmt.did_you_mean in
let pp = Fmt.unknown' ~kind pp_name_str ~hint in
Fmt.str "@[%a@]" pp (u, String.spellcheck pkg_dom u) :: acc
in
String.concat "\n" (List.rev (String.Set.fold add unknown []))
let get_list_or_hints pkgs =
let add_pack p = match B0_pack.has_tag tag p with
| true -> Some (pkg_name_of_pack p, p) | false -> None
in
let packs = List.filter_map add_pack (B0_pack.list ()) in
if pkgs = [] then Ok packs else
let dom =
let add_name acc (n, _) = String.Set.add n acc in
List.fold_left add_name String.Set.empty packs
in
let pkgs = String.Set.of_list pkgs in
let unknown = String.Set.diff pkgs dom in
if String.Set.is_empty unknown
then Ok (List.filter (fun (n, _) -> String.Set.mem n pkgs) packs)
else Error (name_hints ~dom ~unknown)
let get_unique_list_or_hints ~constraints pkgs =
let all_if_empty = false in
let* constraints = B0_pack.get_list_or_hint ~all_if_empty constraints in
let constraints = B0_pack.Set.of_list constraints in
let* pkg_packs = get_list_or_hints pkgs in
let by_name =
let add acc (n, p) = String.Map.add_to_set (module B0_pack.Set) n p acc in
List.fold_left add String.Map.empty pkg_packs
in
let add_unique n set (acc, errs) = match B0_pack.Set.cardinal set with
| 1 -> (n, B0_pack.Set.choose_opt set |> Option.get) :: acc, errs
| _ ->
let set' = B0_pack.Set.inter set constraints in
match B0_pack.Set.cardinal set' with
| 1 -> (n, B0_pack.Set.choose_opt set' |> Option.get) :: acc, errs
| _ ->
let packs = B0_pack.Set.elements set in
let err =
Fmt.str "@[<v>Package %a is defined by packs:@, %a@,\
Use option %a to choose a definition.@]"
pp_name_str n (Fmt.and_enum B0_pack.pp_name) packs
Fmt.code "-p"
in
acc, err :: errs
in
match String.Map.fold add_unique by_name ([], []) with
| pkg_packs, [] -> Ok pkg_packs
| _, errs -> Error (String.concat "\n" (List.rev errs))
let write_opam_file opam ~normalize pkg ~version file ~dir =
let* file = File.to_string opam ~normalize file in
let fname = match version with
| None -> name pkg ^ ".opam"
| Some v -> String.concat "." [name pkg; v]
in
Os.File.write ~force:true ~make_path:true Fpath.(dir / fname) file
let lint_opam_file opam ~normalize pkg file =
let opam_lint = Cmd.(opam % "lint" % "-" % "--normalise") in
let* file = File.to_string opam ~normalize file in
let stdin = Os.Cmd.in_string file in
let* e = Os.Cmd.run_status_out ~trim:false ~stdin opam_lint in
match e with
| `Exited 0, _ -> Ok ()
| `Exited 1, out -> Fmt.error "@[<v>opam lint failed with:@,%s@]" out
| st, _ -> Fmt.error "%a" Os.Cmd.pp_cmd_status (opam_lint, st)
end
let list_cmd ~env ~pkgs ~output_details =
Log.if_error ~use:Os.Exit.no_such_name @@
let* pkg_packs = Pkg.get_list_or_hints pkgs in
match pkg_packs with
| [] -> Ok Os.Exit.ok
| ps ->
let pp_normal ppf pkg =
Fmt.pf ppf "@[<h>%a %s@]" Pkg.pp_name pkg (B0_pack.name (Pkg.pack pkg))
in
let pp_pkg = match output_details with
| `Short -> Pkg.pp_name | `Normal | `Long -> pp_normal
in
Log.stdout (fun m -> m "@[<v>%a@]" Fmt.(list pp_pkg) ps);
Ok Os.Exit.ok
let lint_files ~normalize pkgs =
let* opam = get () in
let lint pkg =
Result.map_error (Fmt.str "%a: %s" Pkg.pp_err_pack pkg) @@
Pkg.lint_opam_file opam ~normalize pkg (snd (Pkg.file ~with_name:false pkg))
in
let* _ = collect_results (List.map lint pkgs) in
Log.stdout (fun m -> m "%a" (Fmt.st [`Fg `Green]) "Passed.");
Ok Os.Exit.ok
let gen_files pkgs ~normalize ~with_name ~dst =
let* opam = get () in
let gen_file ~normalize ~with_name ~dst pkg =
Result.map_error (Fmt.str "%a: %s" Pkg.pp_err_pack pkg) @@
let* dir = match dst with
| `Stdout -> Ok None
| `Dir dir -> Ok (Some dir)
| `In_scope ->
match B0_def.scope_dir (B0_pack.def (Pkg.pack pkg)) with
| Some s -> Ok (Some Fpath.(s / "opam"))
| None ->
Fmt.error "can't write opam file, pack %a has no scope."
B0_pack.pp_name (Pkg.pack pkg)
in
let _, file = Pkg.file ~with_name pkg in
match dir with
| None ->
let* file = File.to_string opam ~normalize file in
Log.stdout (fun m -> m "@[%s@]" file); Ok ()
| Some dir ->
Pkg.write_opam_file opam ~normalize pkg ~version:None file ~dir
in
let gen = gen_file ~normalize ~with_name ~dst in
let* () = List.iter_stop_on_error gen pkgs in
Ok Os.Exit.ok
let file_cmd ~env ~constraints ~pkgs ~lint ~raw ~dst ~in_scope ~no_name =
Log.if_error ~use:Os.Exit.no_such_name @@
let action =
if lint then `Lint else
if in_scope then `Gen `In_scope else
match dst with None -> `Gen `Stdout | Some d -> `Gen (`Dir d)
in
let* pkgs = match action with
| `Gen `Stdout | `Lint -> Pkg.get_list_or_hints pkgs
| _ -> Pkg.get_unique_list_or_hints ~constraints pkgs
in
match pkgs with
| [] ->
Log.warn (fun m -> m "No opam packages found in b0 root.");
Ok Os.Exit.ok
| ps ->
Log.if_error' ~use:Os.Exit.some_error @@
let normalize = not raw in
match action with
| `Lint -> lint_files ~normalize pkgs
| `Gen dst ->
let with_name = action = `Gen `Stdout && not no_name in
gen_files pkgs ~normalize ~with_name ~dst
module Publish = struct
type info =
{ pkg : Pkg.t;
version : string;
file : File.t;
file_meta : B0_meta.t;
changes_file : Fpath.t option;
changes_latest : (string * string) option;
url : string; }
let versioned_name i = Fmt.str "%s.%s" (Pkg.name i.pkg) i.version
let split_version p = match String.split_first ~sep:"." p with
| None -> (p, None) | Some (name, v) -> (name, Some v)
let warn_miss_changes pkg changes_file changes_latest =
let warn msg = Log.warn @@ fun m -> m "%a: %s" Pkg.pp_err_pack pkg msg in
match changes_file with
| None -> warn "No changelog file found."
| Some f ->
match changes_latest with
| Some _ -> ()
| None ->
warn @@
Fmt.str "@[<v>Could not parse latest changes from:@, %a@]"
Fpath.pp f
let info_of_pkg opam (pkg, version) =
Result.map_error (Fmt.str "%a: %s" Pkg.pp_err_pack pkg) @@
let* version = match version with
| Some version -> Ok version
| None -> B0_release.vcs_repo_version_of_pack (Pkg.pack pkg)
in
let* file_meta, file =
let file_meta, file = Pkg.file ~with_name:false pkg in
let* () = Pkg.lint_opam_file opam ~normalize:true pkg file in
Ok (file_meta, file)
in
let* changes_file = B0_release.changes_file_of_pack (Pkg.pack pkg) in
let* changes_latest = match changes_file with
| None -> Ok None | Some f -> B0_release.changes_latest_of_file f
in
let* url = B0_release.src_archive_url_of_pack ~version (Pkg.pack pkg) in
warn_miss_changes pkg changes_file changes_latest;
Ok { pkg; version; file; file_meta; changes_file; changes_latest; url }
let add_url_csum csum i =
let url_section =
let fields = [`Field ("src", `S i.url); `Field ("checksum", `S csum)] in
`Section ("url", None, fields)
in
let file = match List.rev i.file with
| descr :: rest -> List.rev (descr :: url_section :: rest)
| _ -> assert false
in
{ i with file }
let branch_name_of_pkgs is =
match List.sort compare (List.map versioned_name is) with
| [vname] -> Fmt.str "b0-publish-%s" vname
| (vname :: _ as vnames) ->
let hash = B0_hash.Xxh3_64.string (String.concat " " vnames) in
Fmt.str "b0-publish-%s-etc-%s" vname (B0_hash.to_hex hash)
| [] -> assert false
let link_issue_numbers pkg s =
let issues_url = B0_meta.find B0_meta.issues pkg.file_meta in
let link_issue num = match issues_url with
| None -> Fmt.str "`#%s`" num
| Some url -> Fmt.str "[#%s](%s/%s)" num url num
in
let rec parse_int ~first i ~max =
let stop = i > max || not (Char.Ascii.is_digit s.[i]) in
if stop then String.subrange ~first ~last:(i - 1) s, i else
parse_int ~first (i + 1) ~max
in
let rec loop acc i j max = match j > max with
| true ->
let last = String.subrange ~first:i ~last:max s in
String.concat "" (List.rev (last :: acc))
| false when s.[j] <> '#' -> loop acc i (j + 1) max
| false ->
let k = j + 1 in
if k > max || not (Char.Ascii.is_digit s.[k]) then loop acc i k max else
let acc = String.subrange ~first:i ~last:(j - 1) s :: acc in
let num, k = parse_int ~first:k k ~max in
let acc = link_issue num :: acc in
loop acc k k max
in
loop [] 0 0 (String.length s - 1)
let msg_changelogs is =
let add acc i = match i.changes_file with
| None -> acc
| Some file ->
match i.changes_latest with
| None -> acc | Some _ -> Fpath.Map.add_to_list file i acc
in
let by_file = List.fold_left add Fpath.Map.empty is in
let with_pkg _ pkgs acc =
let pkg = List.hd pkgs in
let tit, notes = Option.get ((List.hd pkgs).changes_latest) in
let notes = link_issue_numbers pkg notes in
let pkgs = List.map (fun i -> Fmt.str "`%s`" (Pkg.name i.pkg)) pkgs in
let pkgs = String.concat ", " (List.sort compare pkgs) in
Fmt.str "\n\n---\n\n#### %s %s\n\n%s" pkgs tit notes :: acc
in
List.sort compare (Fpath.Map.fold with_pkg by_file [])
let msg_links i =
let pack = Pkg.pack i.pkg in
let get some k = Option.fold ~none:"" ~some (B0_pack.find_meta k pack) in
let home = get (Fmt.str "[home](%s)") B0_meta.homepage in
let doc = get (Fmt.str "[doc](%s)") B0_meta.online_doc in
let issues = get (Fmt.str "[issues](%s)") B0_meta.issues in
let links = [home; doc; issues] in
match List.filter (Fun.negate String.is_empty) links with
| [] -> "" | ls -> Fmt.str " %s" (String.concat ", " ls)
let msg_synopsis i = match B0_meta.find B0_meta.synopsis i.file_meta with
| None -> "\n" | Some syn -> Fmt.str " \n *%s*\n" syn
let msg_title is =
let versioned_names = List.map versioned_name is in
"Add: " ^ String.concat ", " versioned_names
let msg_update_cmd is incompats =
let vnames = String.concat " " (List.map versioned_name is) in
let incompats = match List.sort compare incompats with
| [] -> "" | is -> String.concat "" (List.map (( ^ ) " -i ") is)
in
Fmt.str "\n\n---\n\n\
Use `b0 -- .opam publish %s%s` to update the pull request."
vnames incompats
let msg_for_publish is incompats =
let title = msg_title is in
let add_line i =
Fmt.str "* Add: `%s`%s%s"
(versioned_name i) (msg_links i) (msg_synopsis i)
in
let adds = List.map add_line is in
let incompats_line = match incompats with
| [] -> ""
| incompats ->
let incompats = List.sort compare incompats in
let incompats = List.map (Fmt.str "`%s`") incompats in
Fmt.str "* Incompatible: %s\n" (String.concat ", " incompats)
in
let changes = msg_changelogs is in
let update_cmd = msg_update_cmd is incompats in
title, String.concat "" (adds @ [incompats_line] @ changes @ [update_cmd])
let shasum_algo = "512"
let checksum shasum s =
let stdin = Os.Cmd.in_string s in
let shasum = Cmd.(shasum % "-b" % "-a" % shasum_algo % "-") in
let* csum = Os.Cmd.run_out ~trim:true ~stdin shasum in
match String.split_first ~sep:" " csum with
| None -> Ok csum | Some (csum, _) -> Ok csum
let add_url_checksums http shasum ~dry_run is =
let open B0_http in
let add csum i = add_url_csum (Fmt.str "sha%s=%s" shasum_algo csum) i in
let add_url (acc, is) i = match String.Map.find_opt i.url acc with
| Some csum -> acc, add csum i :: is
| None ->
let meth = if dry_run then `HEAD else `GET in
let request = Http.Request.make ~url:i.url meth in
let csum =
Result.error_to_failure @@
Result.map_error (Fmt.str "%a: %s" Pkg.pp_err i.pkg) @@
let* response = Http_client.request ~follow:true http request in
match Http.Response.status response with
| 200 -> checksum shasum (Http.Response.body response)
| c -> Fmt.error "[%a] %s" Fmt.(st' [`Fg `Red] int) c i.url
in
String.Map.add i.url csum acc, add csum i :: is
in
match List.fold_left add_url (String.Map.empty, []) is with
| exception Failure e -> Error e
| _, is -> Ok (List.rev is)
let log_start is incs check_only =
let pp_add ppf () = Fmt.st [`Fg `Green] ppf "Add:" in
let pp_inc ppf () = Fmt.st [`Fg `Yellow] ppf "Incompatible:" in
let pp_info ppf i =
Fmt.pf ppf "@[<v>%a %a@, %s@]"
pp_add () Fmt.code (versioned_name i) i.url
in
let pp_incs ppf = function
| [] -> () | incs ->
Fmt.pf ppf "@,@[%a @[%a@]@]" pp_inc () Fmt.(list ~sep:sp string) incs
in
let pp_download ppf check_only =
let action = if check_only then "Checking" else "Downloading" in
Fmt.pf ppf "@,%s archives…" action
in
Log.stdout @@ fun m ->
m "@[<v>%a%a%a@]" Fmt.(list pp_info) is pp_incs incs pp_download check_only
let log_check_success () = Log.stdout @@ fun m ->
m "%a" (Fmt.st [`Fg `Green]) "All checks succeeded"
let stdout_logging () =
if Log.level () >= Log.Info then None, None else
Some Os.Cmd.out_null, Some Os.Cmd.out_null
let rec get_updated_local_repo git ~pkgs_repo ~local_repo:dir =
let stdout, stderr = stdout_logging () in
let master = "master" in
let* local = B0_vcs_repo.Git.find ~dir () in
match local with
| Some repo ->
Log.stdout (fun m -> m "Updating %a" Fpath.pp dir);
let git = B0_vcs_repo.repo_cmd repo in
let fetch = Cmd.(arg "fetch" % "origin" % master) in
let* () = Os.Cmd.run ?stdout ?stderr Cmd.(git %% fetch) in
Ok repo
| None ->
Log.stdout (fun m -> m "Cloning %s to %a" pkgs_repo Fpath.pp dir);
let clone =
Cmd.(arg "clone" % "--bare" % "--single-branch" %
"--branch" % master % pkgs_repo %% path dir)
in
let* () = Os.Cmd.run ?stdout ?stderr Cmd.(git %% clone) in
get_updated_local_repo git ~pkgs_repo ~local_repo:dir
let commit opam ~local_repo:repo ~branch ~pkgs_dir pkginfos incompats =
let stdout, stderr = stdout_logging () in
let fetch_head = Some "FETCH_HEAD" and force = true in
Log.stdout (fun m -> m "Branching %s…" branch);
Result.join @@ B0_vcs_repo.Git.with_transient_checkout
?stdout ?stderr repo ~force ~branch fetch_head
@@ fun r ->
Result.join @@ Os.Dir.with_cwd Fpath.(B0_vcs_repo.work_dir r) @@ fun () ->
let incompats = String.concat "," incompats in
let add_pkg ~base_dir pkg =
let file =
Fpath.(base_dir / Pkg.name pkg.pkg / versioned_name pkg / "opam")
in
let* contents = File.to_string opam ~normalize:true pkg.file in
let* () = Os.File.write ~force:true ~make_path:true file contents in
if incompats = "" then Ok () else
let upperbound = Fmt.str "%s<%s" (Pkg.name pkg.pkg) pkg.version in
let add_constraint = Cmd.(opam % "admin" % "add-constraint") in
Os.Cmd.run Cmd.(add_constraint % "--packages" % incompats % upperbound)
in
let base_dir = Fpath.(B0_vcs_repo.work_dir r / pkgs_dir) in
let* () = List.iter_stop_on_error (add_pkg ~base_dir) pkginfos in
let msg = msg_title pkginfos in
let pkgs_dir = Fpath.v pkgs_dir in
let* () = B0_vcs_repo.Git.add ?stdout ?stderr r ~force:false [pkgs_dir] in
let* () = B0_vcs_repo.Git.commit ?stdout ?stderr ~msg r in
Ok ()
let github_auth_env ~github_auth:a =
let* e = Os.Env.current () in
let e = Os.Env.add "B0_GITHUB_USER" (B0_github.Auth.user a) e in
let e = Os.Env.add "B0_GITHUB_TOKEN" (B0_github.Auth.token a) e in
Ok (Os.Env.to_assignments e)
let push_branch ~github_auth ~local_repo ~branch ~fork_repo =
Log.stdout (fun m -> m "Pushing %s on %s" branch fork_repo);
let stdout, stderr = stdout_logging () in
let repo_cmd = B0_vcs_repo.repo_cmd local_repo in
let env_creds =
"!f() { echo \"username=${B0_GITHUB_USER}\n\
password=${B0_GITHUB_TOKEN}\"; }; f"
in
let creds = Cmd.(repo_cmd % "config" % "credential.helper" % env_creds) in
let* () = Os.Cmd.run creds in
let* env = github_auth_env ~github_auth in
let src = branch and dst = branch in
let remote = fork_repo in
B0_vcs_repo.Git.remote_branch_push
?stdout ?stderr local_repo ~env ~force:true ~src ~remote ~dst
let publish_pkgs
~pkgs_dir ~pkgs_repo ~fork_repo ~local_repo ~github_auth pkgs incompats
~dry_run no_pr
=
let* opam = get () in
let* httpc = B0_http.Http_client.make () in
let* shasum = Os.Cmd.get (Cmd.tool "shasum") in
let* git = B0_vcs_repo.Git.get_cmd () in
let* is = collect_results (List.map (info_of_pkg opam) pkgs) in
let title, msg = msg_for_publish is incompats in
log_start is incompats dry_run;
let* is = add_url_checksums httpc shasum ~dry_run is in
if dry_run then (log_check_success (); Ok ()) else
let* local_repo = get_updated_local_repo git ~pkgs_repo ~local_repo in
let branch = branch_name_of_pkgs is in
let* () = commit opam ~local_repo ~branch ~pkgs_dir is incompats in
let* () = push_branch ~github_auth ~local_repo ~branch ~fork_repo in
let* () =
if no_pr then Ok () else
let dst_repo = pkgs_repo and dst_branch = "master" in
let src_repo = fork_repo and src_branch = branch in
let auth = github_auth in
B0_github.Pull_request.ensure
httpc ~auth ~dst_repo ~dst_branch ~src_repo ~src_branch ~title ~msg
in
Ok ()
let cmd
~env ~pkgs_dir ~pkgs_repo ~fork_repo ~local_repo ~github_auth
~constraints ~pkgs ~incompats ~dry_run ~no_pr
=
Log.if_error ~use:Os.Exit.no_such_name @@
let pkgs = List.map split_version pkgs in
let* ps = Pkg.get_unique_list_or_hints ~constraints (List.map fst pkgs) in
match ps with
| [] ->
Log.stdout (fun m -> m "No opam package to publish in b0 root.");
Ok Os.Exit.ok
| ps ->
let add_version p = p, Option.join (List.assoc_opt (Pkg.name p) pkgs) in
let pkgs = List.map add_version (List.sort compare ps) in
Log.if_error' ~use:Os.Exit.some_error @@
let* local_repo = match local_repo with
| Some d -> Ok d
| None ->
let* cache_dir = Os.Dir.cache () in
Ok (Fpath.(cache_dir / "opam-repository.git"))
in
let* github_auth = github_auth in
let fork_repo = match fork_repo with
| Some url -> url
| None ->
let user = B0_github.Auth.user github_auth in
Fmt.str "https://github.com/%s/opam-repository" user
in
let* () =
publish_pkgs ~pkgs_dir ~pkgs_repo ~fork_repo ~local_repo ~github_auth
pkgs incompats ~dry_run no_pr
in
Ok Os.Exit.ok
end
let unit =
let doc = "opam support" in
B0_unit.of_cmdliner_cmd "" ~doc @@ fun env u ->
let open Cmdliner in
let open Cmdliner.Term.Syntax in
let man =
[ `S Manpage.s_see_also;
`P "Consult $(b,odig doc b0) for the b0 opam manual."]
in
let pkgs ?(docv = "PKG") ~doc () =
Arg.(value & pos_all string [] & info [] ~doc ~docv)
in
let constraints =
let doc =
"If an opam package is defined by more than one pack use the \
definition by pack $(docv)."
in
B0_cli.use_packs ~doc ()
in
let list_cmd =
let doc = "List opam packages and their defining packs" in
Cmd.make (Cmd.info "list" ~doc ~man) @@
let+ pkgs = pkgs ~doc:"Only list opam package $(docv) (repeatable)." ()
and+ output_details = B0_cli.output_details in
list_cmd ~env ~pkgs ~output_details
in
let file_cmd =
let doc = "Generate opam files" in
Cmd.make (Cmd.info "file" ~doc ~man) @@
let+ pkgs =
let doc = "Only generate file for opam package $(docv) (repeatable)." in
pkgs ~doc ()
and+ dst =
let doc = "Write files in directory $(docv)." in
Arg.(value & opt (some ~none:"stdout" B0_std_cli.dirpath) None &
info ["d"; "dir"] ~doc)
and+ in_scope =
let doc =
"Write file(s) in an $(b,opam) directory in the scope directories of \
their defining pack."
in
Arg.(value & flag & info ["s"; "in-scope-dir"] ~doc)
and+ lint =
let doc = "Do not write files, lint them with $(b,opam lint)." in
Arg.(value & flag & info ["lint"] ~doc)
and+ raw =
let doc = "Do not normalize files on file generation." in
Arg.(value & flag & info ["raw"] ~doc)
and+ no_name =
let doc = "On stdout, do not add the $(b,name:) field." in
Arg.(value & flag & info ["no-name"] ~doc)
and+ constraints in
file_cmd ~env ~constraints ~pkgs ~lint ~raw ~dst ~in_scope ~no_name
in
let publish_cmd =
let doc = "Publish opam packages on GitHub" in
let envs = B0_github.Auth.envs in
let man = [
`S Cmdliner.Manpage.s_description;
`P "$(cmd) publishes opam package on GitHub.";
`P "If you want to inspect the $(b,opam) file before use \
$(b,b0 --) $(b,.opam file) $(i,PKG)….";
`Blocks man ]
in
Cmd.make (Cmd.info "publish" ~doc ~envs ~man) @@
let+ pkgs_dir =
let doc = "The directory with the opam files in the package repository."in
Arg.(value & opt string "packages" & info ["pkgs-dir"] ~doc ~docv:"DIR")
and+ pkgs_repo =
let doc = "The GitHub URL of the package repository."in
Arg.(value & opt string "https://github.com/ocaml/opam-repository.git" &
info ["pkgs-repo"] ~doc ~docv:"URL")
and+ fork_repo =
let doc =
"The GitHub URL of the user fork of the package repository. \
See $(b,--github-user) option."
in
let none = "https://github.com/USER/opam-repository.git" in
Arg.(value & opt (some ~none string) None &
info ["fork-repo"] ~doc ~docv:"URL")
and+ local_repo =
let doc =
"The directory to the local (shallow and bare) clone of \
the package repository."
in
let none = "XDG_CACHE_HOME/opam-repository.git" in
Arg.(value & opt (some ~none B0_std_cli.dirpath) None &
info ["local-repo"] ~doc)
and+ github_auth = B0_github.Auth.cli ()
and+ pkgs =
let doc =
"Only publish opam package $(docv) at version $(i,VERSION) \
(repeatable)."
in
pkgs ~docv:"PKG[.VERSION]" ~doc ()
and+ dry_run =
let doc =
"Do not publish. Report various bits that are being inferred and \
perform basic checks. Stop before updating the opam repository."
in
Arg.(value & flag & info ["dry-run"] ~doc)
and+ incompats =
let doc =
"Declare $(docv) to be incompatible with the opam packages \
being published (for those which are in their dependencies)."
in
let docv = "PKG[.VERSION]" in
Arg.(value & opt_all string [] & info ["i"; "incompatible"] ~doc ~docv)
and+ no_pr =
let doc =
"Do not open (or update) the pull request. All the other \
steps, including pushing on the fork repo are done."
in
Arg.(value & flag & info ["no-pr"; "no-pull-request"] ~doc)
and+ constraints in
Publish.cmd ~env ~pkgs_dir ~pkgs_repo ~fork_repo ~local_repo ~github_auth
~constraints ~pkgs ~incompats ~dry_run ~no_pr
in
let man = [
`S Cmdliner.Manpage.s_description;
`P "$(cmd) helps with $(b,opam) see the b0 opam manual in \
$(b,odig doc b0) and invoke the subcommands with $(b,--help) for \
more information.";
`Blocks man]
in
let name = B0_unit.name u in
Cmd.group (Cmd.info name ~doc ~man) [file_cmd; list_cmd; publish_cmd]
let () = B0_scope.close ()