package hg_lib

  1. Overview
  2. Docs

Source file hg.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
open Core
module Process = Async.Process
open Hg_lib_factory
include Hg_intf

module Make (A : Arg) = struct
  open Hg_private
  open Command_helpers

  let return = A.Output.return

  let command name f ~handle_output =
    let handle_output o = Or_simple_error.create (handle_output o) in
    A.With_args.map A.run ~f:(fun run ->
      f (fun argses -> run ~args:(name :: List.concat argses) ~handle_output ()))
  ;;

  (* This variation of [command] lets you choose the output handler dynamically. *)
  let command' name f =
    A.With_args.map A.run ~f:(fun run ->
      f (fun argses ~handle_output ->
        run ~args:(name :: List.concat argses) ~handle_output ()))
  ;;

  (* commands *)

  let add =
    command
      "add"
      (fun run ?includes ?excludes which_files ->
        match which_files with
        | `These_files [] -> return ()
        | _ ->
          run
            [ includes_args includes
            ; excludes_args excludes
            ; (match which_files with
               | `All_files -> []
               | `These_files files -> files)
            ])
      ~handle_output:expect_0
  ;;

  let addremove =
    command
      "addremove"
      (fun run ?includes ?excludes ?similarity which_files ->
        match which_files with
        | `These_files [] -> return ()
        | _ ->
          run
            [ includes_args includes
            ; excludes_args excludes
            ; similarity_args similarity
            ; (match which_files with
               | `All_files -> []
               | `These_files files -> files)
            ])
      ~handle_output:expect_0
  ;;

  let annotate =
    command
      "annotate"
      (fun run
           ?rev
           ?user
           ?file
           ?date
           ?number
           ?changeset
           ?skip
           ?ignore_space_change
           ?ignore_blank_lines
           ?ignore_space_at_eol
           ?includes
           ?excludes
           ?template
           filename ->
        run
          [ rev_args rev
          ; no_arg "--user" user
          ; no_arg "--file" file
          ; no_arg "--date" date
          ; no_arg "--quiet" date (* Force YYYY-MM-DD *)
          ; no_arg "--number" number
          ; no_arg "--changeset" changeset
            (* As of 2021-01, --skip is an experimental flag and only shows up in the
             verbose help output. *)
          ; repeated "--skip" skip
          ; no_arg "--ignore-space-change" ignore_space_change
          ; no_arg "--ignore-blank-lines" ignore_blank_lines
          ; no_arg "--ignore-space-at-eol" ignore_space_at_eol
          ; includes_args includes
          ; excludes_args excludes
          ; template_args (`Custom template)
          ; [ filename ]
          ])
      ~handle_output:expect_0_stdout_list
  ;;

  let archive =
    command
      "archive"
      (fun run
           ?no_decode
           ?prefix
           ?rev
           ?type_
           ?subrepos
           ?includes
           ?excludes
           ~destination
           () ->
        run
          [ no_arg "--no-decode" no_decode
          ; with_arg "--prefix" prefix
          ; rev_args rev
          ; with_arg "--type" type_
          ; no_arg "--subrepos" subrepos
          ; includes_args includes
          ; excludes_args excludes
          ; [ destination ]
          ])
      ~handle_output:expect_0
  ;;

  let bookmarks =
    command
      "bookmarks"
      (fun run () -> run [])
      ~handle_output:(fun output ->
        Or_error.map (expect_0_stdout_list output) ~f:Bookmark.of_lines)
  ;;

  let change_bookmark =
    command
      "bookmarks"
      (fun run ?force ~name which_flags ->
        run
          [ force_args force
          ; [ name ]
          ; (match which_flags with
             | `Set_rev rev -> [ "--rev"; rev ]
             | `Inactive -> [ "--inactive" ]
             | `Delete -> [ "--delete" ]
             | `Rename old -> [ "--rename"; old ]
             | `Current -> [])
          ])
      ~handle_output:expect_0
  ;;

  let bundle =
    command
      "bundle"
      (fun run
           ?force
           ?revs
           ?branches
           ?bases
           ?all
           ?compression_type
           ?ssh
           ?remotecmd
           ?insecure
           ?destination
           bundle_file ->
        run
          [ force_args force
          ; revs_args revs
          ; branches_args branches
          ; ssh_args ssh
          ; remotecmd_args remotecmd
          ; insecure_args insecure
          ; with_arg "--type" compression_type
          ; repeated "--base" bases
          ; no_arg "--all" all
          ; [ bundle_file ]
          ; Option.to_list destination
          ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Ok () -> Ok `Ok
        | Error (`Exit_non_zero 1) -> Ok `Nothing_to_bundle
        | Error _ -> unexpected_exit_error o)
  ;;

  let clone =
    command
      "clone"
      (fun run
           ~source
           ?destination
           ?update
           ?revs
           ?branches
           ?pull
           ?uncompressed
           ?ssh
           ?remotecmd
           ?insecure
           () ->
        let update =
          match update with
          | Some `No_update -> [ "--noupdate" ]
          | Some (`Rev rev) -> [ "--updaterev"; rev ]
          | None -> []
        in
        run
          [ update
          ; revs_args revs
          ; branches_args branches
          ; no_arg "--pull" pull
          ; no_arg "--uncompressed" uncompressed
          ; ssh_args ssh
          ; remotecmd_args remotecmd
          ; insecure_args insecure
          ; [ source ]
          ; Option.to_list destination
          ])
      ~handle_output:expect_0
  ;;

  let cat (type a) ~(destination : a Destination.t) =
    command
      "cat"
      (fun run ?includes ?excludes ?rev ?template path ->
        run
          [ includes_args includes
          ; excludes_args excludes
          ; revs_args (Option.map ~f:List.return rev)
          ; template_args (`Custom template)
          ; [ path ]
          ; (match destination with
             | Destination.String -> []
             | Destination.File path -> [ "--output"; path ])
          ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Ok () -> Ok (`Ok (Destination.handle_output destination o))
        | Error (`Exit_non_zero 1) -> Ok `No_such_file
        | Error _ -> unexpected_exit_error o)
  ;;

  let commit =
    command
      "commit"
      (fun run
           ?addremove
           ?allow_commit_without_bookmark
           ?includes
           ?excludes
           ~message
           ?time
           ?zone
           ?user
           ?files
           () ->
        match files with
        | Some [] -> return `Nothing_changed
        | _ ->
          let time_with_utc_offset =
            match time, zone with
            | Some time, Some zone ->
              Some (Time_with_utc_offset.of_time_with_zone ~zone time)
            | Some time, None ->
              let zone = force Time.Zone.local in
              Some (Time_with_utc_offset.of_time_with_zone ~zone time)
            | None, Some zone ->
              let time = Time.now () in
              Some (Time_with_utc_offset.of_time_with_zone ~zone time)
            | None, None -> None
          in
          run
            [ no_arg "--addremove" addremove
            ; no_arg "--allow-commit-without-bookmark" allow_commit_without_bookmark
            ; includes_args includes
            ; excludes_args excludes
            ; [ "--message"; message ]
            ; time_args time_with_utc_offset
            ; with_arg "--user" user
            ; Option.value files ~default:[]
            ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Ok () -> Ok `Ok
        | Error (`Exit_non_zero 1) -> Ok `Nothing_changed
        | Error _ -> unexpected_exit_error o)
  ;;

  let config =
    command
      "config"
      (fun run ?untrusted ?names () ->
        run [ no_arg "--untrusted" untrusted; Option.value names ~default:[] ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Ok () ->
          List.map
            (String.split ~on:'\n' (String.strip o.stdout))
            ~f:(fun line ->
              match String.lsplit2 line ~on:'=' with
              | Some (key, data) -> Ok (key, data)
              | None -> Or_error.error "malformed config line" line String.sexp_of_t)
          |> Or_error.combine_errors
        | Error _ -> non_0_exit_error o)
  ;;

  let copy =
    command
      "copy"
      (fun run ?forget ?after ?force ?includes ?excludes src dst ->
        run
          [ forget_args forget
          ; after_args after
          ; force_args force
          ; includes_args includes
          ; excludes_args excludes
          ; [ src; dst ]
          ])
      ~handle_output:expect_0
  ;;

  let diff =
    command
      "diff"
      (fun run
           ?revs
           ?change
           ?text
           ?git
           ?reverse
           ?ignore_all_space
           ?ignore_space_change
           ?ignore_blank_lines
           ?unified
           ?stat
           ?includes
           ?excludes
           ?subrepos
           ?files
           () ->
        match files with
        | Some [] -> return ""
        | _ ->
          run
            [ revs_args revs
            ; with_arg "--change" change
            ; no_arg "--text" text
            ; no_arg "--git" git
            ; no_arg "--reverse" reverse
            ; no_arg "--ignore-all-space" ignore_all_space
            ; no_arg "--ignore-space-change" ignore_space_change
            ; no_arg "--ignore-blank-lines" ignore_blank_lines
            ; unified_args unified
            ; no_arg "--stat" stat
            ; includes_args includes
            ; excludes_args excludes
            ; no_arg "--subrepos" subrepos
            ; Option.value files ~default:[]
            ])
      ~handle_output:expect_0_stdout
  ;;

  let extdiff =
    command
      "extdiff"
      (fun run ?revs ?change ?includes ?excludes ?program ?options ?files () ->
        match files with
        | Some [] -> return ""
        | _ ->
          run
            [ revs_args revs
            ; with_arg "--change" change
            ; includes_args includes
            ; excludes_args excludes
            ; with_arg "--program" program
            ; options_args options
            ; [ "--config"; "extensions.extdiff=" ]
            ; Option.value files ~default:[]
            ])
      ~handle_output:expect_0_stdout
  ;;

  let files =
    command
      "files"
      (fun run ?rev ?includes ?excludes ?subrepos which_files ->
        match which_files with
        | `These_files [] -> return []
        | _ ->
          run
            [ rev_args rev
            ; includes_args includes
            ; excludes_args excludes
            ; no_arg "--subrepos" subrepos
            ; (match which_files with
               | `All_files -> []
               | `These_files files -> files)
            ])
      ~handle_output:expect_0_stdout_list
  ;;

  let heads =
    command' "heads" (fun run ?rev ?topo ?closed ?include_files_in_changeset_info () ->
      let template =
        { Changeset_info.Template.include_files =
            Option.is_some include_files_in_changeset_info
        }
      in
      let handle_output (output : Process.Output.t) =
        (match output.exit_status with
         | Error _ ->
           (* 1 is documented as "no matching heads found," but I think this only comes
              up if you're closing branch heads, which we don't really do. Rather than
              making everyone explicitly deal with an error case that's very unlikely
              to come up, we'll just report it as a generic error. *)
           non_0_exit_error output
         | Ok () -> Changeset_info.of_templated_stdout output.stdout template)
        |> Or_simple_error.create
      in
      run
        ~handle_output
        [ with_arg "--rev" rev
        ; no_arg "--topo" topo
        ; no_arg "--closed" closed
        ; template_args (`For_changeset_info template)
        ])
  ;;

  let id =
    command
      "log" (* yes, you read that right *)
      (fun run ?(rev = ".") () -> run [ [ "--rev"; rev ]; [ "--template"; "{node}" ] ])
      ~handle_output:expect_0_stdout
  ;;

  let init =
    command
      "init"
      (fun run ?ssh ?remotecmd ?insecure ?dest () ->
        run
          [ ssh_args ssh
          ; remotecmd_args remotecmd
          ; insecure_args insecure
          ; Option.to_list dest
          ])
      ~handle_output:expect_0
  ;;

  let is_repo =
    command
      "root"
      (fun run () -> run [])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Ok () -> Ok true
        | Error (`Exit_non_zero 255) -> Ok false
        | Error _ -> unexpected_exit_error o)
  ;;

  let log =
    command'
      "log"
      (fun
          run
          ?follow
          ?date
          ?copies
          ?keywords
          ?revs
          ?removed
          ?users
          ?branches
          ?prune_revs
          ?limit
          ?no_merges
          ?includes
          ?excludes
          ?files
          ?include_files_in_changeset_info
          ()
          ->
      let template =
        { Changeset_info.Template.include_files =
            Option.is_some include_files_in_changeset_info
        }
      in
      let handle_output (output : Process.Output.t) =
        (match output.exit_status with
         | Error _ -> non_0_exit_error output
         | Ok () -> Changeset_info.of_templated_stdout output.stdout template)
        |> Or_simple_error.create
      in
      match files with
      | Some [] -> return []
      | _ ->
        run
          ~handle_output
          [ no_arg "--follow" follow
          ; date_range_args date
          ; no_arg "--copies" copies
          ; keywords_args keywords
          ; revs_args revs
          ; no_arg "--removed" removed
          ; repeated "--user" users
          ; branches_args branches
          ; repeated "--prune" prune_revs
          ; limit_args limit
          ; no_arg "--no-merges" no_merges
          ; includes_args includes
          ; excludes_args excludes
          ; template_args (`For_changeset_info template)
          ; Option.value files ~default:[]
          ])
  ;;

  let manifest =
    command
      "manifest"
      (fun run ?rev ?all () -> run [ rev_args rev; all_args all ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Error _ -> non_0_exit_error o
        | Ok () ->
          Ok
            (String.split ~on:'\n' o.stdout
             |> List.filter ~f:(fun line -> not (String.is_empty line))))
  ;;

  let merge =
    command
      "merge"
      (fun run ?(tool = ":merge3") ?allow_commit_without_bookmark target ->
        let rev =
          match target with
          | `Unique_other_head -> None
          | `Rev rev -> Some rev
        in
        run
          [ rev_args rev
          ; [ "--tool"; tool ]
          ; no_arg "--allow-commit-without-bookmark" allow_commit_without_bookmark
          ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Error (`Exit_non_zero 1) -> Ok `Unresolved_files
        | Error _ -> unexpected_exit_error o
        | Ok () -> Ok `Ok)
  ;;

  let out =
    command'
      "out"
      (fun
          run
          ?force
          ?revs
          ?limit
          ?no_merges
          ?ssh
          ?remotecmd
          ?insecure
          ?remote_path
          ?include_files_in_changeset_info
          ()
          ->
      let template =
        { Changeset_info.Template.include_files =
            Option.is_some include_files_in_changeset_info
        }
      in
      let handle_output (output : Process.Output.t) =
        (match output.exit_status with
         | Error (`Exit_non_zero 1) -> Ok []
         | Error _ -> unexpected_exit_error output
         | Ok () -> Changeset_info.of_templated_stdout output.stdout template)
        |> Or_simple_error.create
      in
      run
        ~handle_output
        [ no_arg "--force" force
        ; revs_args revs
        ; limit_args limit
        ; no_arg "--no-merges" no_merges
        ; ssh_args ssh
        ; remotecmd_args remotecmd
        ; insecure_args insecure
        ; [ "--quiet" ]
        ; template_args (`For_changeset_info template)
        ; Option.to_list remote_path
        ])
  ;;

  let pull =
    command
      "pull"
      (fun run
           ?update
           ?force
           ?revs
           ?bookmarks
           ?branches
           ?ssh
           ?remotecmd
           ?insecure
           ?rebase
           ?remote_path
           () ->
        run
          [ no_arg "--update" update
          ; force_args force
          ; revs_args revs
          ; bookmarks_args bookmarks
          ; branches_args branches
          ; ssh_args ssh
          ; remotecmd_args remotecmd
          ; insecure_args insecure
          ; no_arg "--rebase" rebase
          ; Option.to_list remote_path
          ])
      ~handle_output:expect_0
  ;;

  let purge =
    command
      "purge"
      (fun run ?abort_on_err ?all ?dirs ?files ?includes ?excludes () ->
        run
          [ no_arg "--abort-on-err" abort_on_err
          ; no_arg "--all" all
          ; no_arg "--dirs" dirs
          ; no_arg "--files" files
          ; includes_args includes
          ; excludes_args excludes
          ; [ "--config"; "extensions.purge=" ]
          ])
      ~handle_output:expect_0
  ;;

  let push =
    command
      "push"
      (fun run
           ?force
           ?revs
           ?bookmarks
           ?branches
           ?new_branch
           ?ssh
           ?remotecmd
           ?insecure
           ?remote_path
           () ->
        run
          [ force_args force
          ; revs_args revs
          ; bookmarks_args bookmarks
          ; branches_args branches
          ; no_arg "--new-branch" new_branch
          ; ssh_args ssh
          ; remotecmd_args remotecmd
          ; insecure_args insecure
          ; Option.to_list remote_path
          ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Ok () -> Ok `Ok
        | Error (`Exit_non_zero 1) -> Ok `Nothing_to_push
        | Error _ -> unexpected_exit_error o)
  ;;

  let remove =
    command
      "remove"
      (fun run ?after ?force ?includes ?excludes files ->
        run
          [ after_args after
          ; force_args force
          ; includes_args includes
          ; excludes_args excludes
          ; files
          ])
      ~handle_output:expect_0
  ;;

  let rename =
    command
      "rename"
      (fun run ?after ?force ?includes ?excludes src dst ->
        run
          [ after_args after
          ; force_args force
          ; includes_args includes
          ; excludes_args excludes
          ; [ src; dst ]
          ])
      ~handle_output:expect_0
  ;;

  let mark_resolved =
    command
      "resolve"
      (fun run files ->
        match files with
        | `These_files [] -> return ()
        | _ ->
          let files =
            (* This command also accepts a [--all] flag, but it's not necessary with
                [--mark]. *)
            match files with
            | `All_files -> []
            | `These_files x -> x
          in
          run [ [ "--mark" ]; files ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Error _ -> non_0_exit_error o
        | Ok () ->
          (* The case where you specify a file path that doesn't exist still exits with
             status 0, weirdly, so we have to check stderr. *)
          if String.is_empty o.stderr then Ok () else unexpected_exit_error o)
  ;;

  let revert =
    command
      "revert"
      (fun run ?date ?rev ?no_backup ?includes ?excludes files ->
        match files with
        | `These_files [] -> return ()
        | _ ->
          (* For safety, [hg revert] with no file arguments and without [--all] does not
              revert your entire repo. We instead use a variant type, so we should add
              [--all] automatically. *)
          let files, all =
            match files with
            | `All_files -> [], Some ()
            | `These_files x -> x, None
          in
          run
            [ all_args all
            ; date_range_args date
            ; rev_args rev
            ; no_arg "--no-backup" no_backup
            ; includes_args includes
            ; excludes_args excludes
            ; files
            ])
      ~handle_output:expect_0
  ;;

  let share =
    command
      "share"
      (fun run ?noupdate ?bookmarks ~src ~dst () ->
        run
          [ no_arg "--noupdate" noupdate
          ; no_arg "--bookmarks" bookmarks
          ; [ src ]
          ; [ dst ]
          ])
      ~handle_output:expect_0
  ;;

  let status =
    command
      "status"
      (fun run ?rev ?rev2 ?change ?includes ?excludes ?subrepos () ->
        run
          [ with_arg "--rev" rev
          ; with_arg "--rev" rev2
          ; with_arg "--change" change
          ; [ "--copies" ]
          ; includes_args includes
          ; excludes_args excludes
          ; no_arg "--subrepos" subrepos
          ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Error _ -> non_0_exit_error o
        | Ok () ->
          let entry_map (acc : File_status.t list) str =
            match String.split str ~on:' ' with
            | [ "" ] -> acc
            | [ "M"; filename ] -> Modified filename :: acc
            | [ "A"; filename ] -> Added filename :: acc
            | [ "R"; filename ] -> Removed filename :: acc
            | [ "!"; filename ] -> Missing filename :: acc
            | [ "?"; filename ] -> Not_tracked filename :: acc
            | [ ""; ""; src ] ->
              (match acc with
               | Added dst :: acc -> Copied { src; dst = `New_file dst } :: acc
               | Modified dst :: acc -> Copied { src; dst = `Overwritten dst } :: acc
               | _ -> failwithf "unexpected hg output: '%s'" str ())
            | _ -> failwithf "unexpected hg output: '%s'" str ()
          in
          o.stdout
          |> String.split ~on:'\n'
          |> List.fold ~init:[] ~f:entry_map
          |> List.rev
          |> Ok)
  ;;

  let root =
    command
      "root"
      (fun run () -> run [])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Error _ -> non_0_exit_error o
        | Ok () -> Ok (String.strip o.stdout))
  ;;

  let tags =
    command
      "tags"
      (fun run () -> run [])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Error _ -> non_0_exit_error o
        | Ok () -> Ok (List.filter_map (String.split o.stdout ~on:'\n') ~f:Tag.of_line))
  ;;

  let unbundle =
    command
      "unbundle"
      (fun run ?update path -> run [ no_arg "--update" update; [ path ] ])
      ~handle_output:expect_0
  ;;

  let update =
    command
      "update"
      (fun run ?clean ?check ?date ?rev () ->
        run
          [ no_arg "--clean" clean
          ; no_arg "--check" check
          ; date_range_args date
          ; rev_args rev
          ])
      ~handle_output:expect_0
  ;;

  let get_default_url =
    command
      "show"
      (fun run () -> run [ [ "paths.default" ] ])
      ~handle_output:(fun o ->
        match o.exit_status with
        | Ok () -> Ok (Some (String.strip o.stdout))
        | Error (`Exit_non_zero 1)
          when String.is_empty o.stdout && String.is_empty o.stderr -> Ok None
        | Error _ -> non_0_exit_error o)
  ;;
end

module Simple = Make (Simple)
module Async = Make (Async)
module Fixed_hg_environment (E : Hg_env) = Make (Fixed_hg_environment (E))
module Remote = Make (Remote)
OCaml

Innovation. Community. Security.