package b0
Software construction and deployment kit
Install
dune-project
Dependency
Authors
Maintainers
Sources
b0-0.0.6.tbz
sha512=e9aa779e66c08fc763019f16d4706f465d16c05d6400b58fbd0313317ef33ddea51952e2b058db28e65f7ddb7012f328c8bf02d8f1da17bb543348541a2587f0
doc/src/b0.std/b0_vcs_repo.ml.html
Source file b0_vcs_repo.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
(*--------------------------------------------------------------------------- Copyright (c) 2019 The b0 programmers. All rights reserved. SPDX-License-Identifier: ISC ---------------------------------------------------------------------------*) open B0_std open Result.Syntax let parse_changes s = let line n acc line = match String.split_first ~sep:" " line with | None -> Fmt.failwith "line %d: %S: can't parse log line" n line | Some cut -> cut :: acc in try Ok (List.rev (String.fold_ascii_lines ~strip_newlines:true line [] s)) with Failure e -> Error e let parse_ptime ptime = try Ok (int_of_string ptime) with | Failure _ -> Fmt.error "Could not parse timestamp from %S" ptime let parse_files ~err o = let file_of_string l = Fpath.of_string l |> Result.error_to_failure in try Ok (List.map file_of_string (String.split_all ~sep:"\n" o)) with | Failure e -> Fmt.error "%s: %s" err e let dirtify id = id ^ "-dirty" type dry_run = Cmd.t -> unit (* VCS kind *) type kind = Git | Hg let kind_to_string = function Git -> "git" | Hg -> "hg" let pp_kind ppf k = Fmt.string ppf (kind_to_string k) let pp_kind_option = Fmt.option ~none:(Fmt.any "VCS") pp_kind let kinds = [Git; Hg] (* VCS *) type commit_ish = string type commit_id = string type tag = string type r = { kind : kind; bare_cmd : Cmd.t; cmd : Cmd.t; repo_dir : Fpath.t; work_dir : Fpath.t } module type VCS = sig val find : ?search:Cmd.tool_search -> ?dir:Fpath.t -> unit -> (r option, string) result val repo_cmd : r -> Cmd.t (* Commits *) val commit_id : r -> dirty_mark:bool -> commit_ish -> (commit_id, string) result val commit_ptime_s : r -> commit_ish -> (int, string) result val describe : r -> dirty_mark:bool -> commit_ish -> (string, string) result val changes : r -> ?after:commit_ish -> ?last:commit_ish -> unit -> ((string * string) list, string) result val tracked_files : r -> tree_ish:string -> (Fpath.t list, string) result val commit_files : ?stdout:Os.Cmd.stdo -> ?stderr:Os.Cmd.stdo -> ?msg:string -> r -> Fpath.t list -> (unit, string) result (* Working directory *) val is_dirty : r -> (bool, string) result val file_is_dirty : r -> Fpath.t -> (bool, string) result val checkout : ?and_branch:string -> r -> commit_ish -> (unit, string) result val local_clone : r -> dir:Fpath.t -> (r, string) result (* Tags *) val tag : ?dry_run:(Cmd.t -> unit) -> ?msg:string -> r -> force:bool -> sign:bool -> commit_ish -> tag -> (unit, string) result val delete_tag : ?dry_run:(Cmd.t -> unit) -> r -> tag -> (unit, string) result val latest_tag : r -> commit_ish -> (tag option, string) result end type t = r * (module VCS) let err cmd status = Fmt.error "%a" Os.Cmd.pp_cmd_status (cmd, status) let run ?stderr r cmd_args = let vcs = Cmd.(r.cmd %% cmd_args) in Result.bind (Os.Cmd.run_status_out ?stderr ~trim:true vcs) @@ function | `Exited 0, v -> Ok v | status, _ -> err vcs status let _run_status ?dry_run ?stdout ?stderr r cmd = match dry_run with | Some dry_run -> dry_run cmd; Ok () | None -> let* status = Os.Cmd.run_status ?stdout ?stderr cmd in match status with | `Exited 0 -> Ok () | status -> err cmd status let bare_run_status ?dry_run ?stdout ?stderr repo cmd_args = _run_status ?dry_run ?stdout ?stderr repo Cmd.(repo.bare_cmd %% cmd_args) let run_status ?dry_run ?stdout ?stderr repo cmd_args = _run_status ?dry_run ?stdout ?stderr repo Cmd.(repo.cmd %% cmd_args) (* Git support *) module Git_vcs = struct let tool = Cmd.tool "git" let repo_cmd git repo_dir work_dir = Cmd.(git % "--git-dir" %% path repo_dir % "--work-tree" %% path work_dir) let find ?search ?dir () = let get_vcs_path cmd = let stderr = `Stdo Os.Cmd.out_null in let* status, repo_dir = Os.Cmd.run_status_out ~stderr ~trim:true cmd in match status with | `Exited 0 -> if repo_dir = "" (* that seems to be returned on bare repos *) then Ok None else Result.map Option.some (Fpath.of_string repo_dir) | status -> Ok None in match Os.Cmd.find ?search tool with | None -> Ok None | Some git -> let cwd = match dir with | Some d -> Cmd.(arg "-C" %% path d) | None -> Cmd.empty in let repo_dir = Cmd.(git %% cwd % "rev-parse" % "--absolute-git-dir") in let work_dir = Cmd.(git %% cwd % "rev-parse" % "--show-toplevel") in let* repo_dir = get_vcs_path repo_dir in match repo_dir with | None -> Ok None | Some repo_dir -> let* work_dir = get_vcs_path work_dir in let default = Fpath.null (* for bare repos *) in let work_dir = Option.value ~default work_dir in let cmd = repo_cmd git repo_dir work_dir in Ok (Some { kind = Git; bare_cmd = git; cmd; repo_dir; work_dir }) let repo_cmd r = r.cmd let is_dirty r = let stderr = `Stdo Os.Cmd.out_null in let status = Cmd.(arg "status" % "--porcelain") in Result.bind (run ~stderr r status) @@ function | "" -> Ok false | _ -> Ok true let handle_dirt ~dirty_mark commit_ish r id = match dirty_mark && commit_ish = "HEAD" with | false -> Ok id | true -> Result.bind (is_dirty r) @@ function | true -> Ok (dirtify id) | false -> Ok id (* Commits *) let commit_id r ~dirty_mark commit_ish = let typed_commit_ish = Fmt.str "%s^{commit}" commit_ish in let args = Cmd.(arg "rev-parse" % "--verify" % typed_commit_ish) in Result.bind (run r args) (handle_dirt ~dirty_mark commit_ish r) let commit_ptime_s r commit_ish = let args = Cmd.(arg "show" % "-s" % "--format=%ct" % commit_ish) in Result.bind (run r args) parse_ptime let changes r ?after ?(last = "HEAD") () = let range = match after with | None -> last | Some after -> Fmt.str "%s..%s" after last in let args = Cmd.(arg "log" % "--oneline" % "--no-decorate" % range) in let* lines = run r args in parse_changes lines let tracked_files r ~tree_ish = let args = Cmd.(arg "ls-tree" % "--name-only" % "-r" % tree_ish) in Result.bind (run r args) (parse_files ~err:"tracked files") let commit_files ?stdout ?stderr ?msg:m r files = let msg = match m with None -> Cmd.empty | Some m -> Cmd.(arg "-m" % m) in let args = Cmd.(arg "commit" %% msg %% paths files) in run_status ?stdout ?stderr r args (* Working directory *) let file_is_dirty r file = let stderr = Os.Cmd.out_null in let cmd = Cmd.(r.cmd % "diff-index" % "--quiet" % "HEAD" %% path file) in Result.bind (Os.Cmd.run_status ~stderr cmd) @@ function | `Exited 0 -> Ok false | `Exited 1 -> Ok true | _ as status -> err cmd status let checkout ?and_branch:b r commit_ish = let b = match b with None -> Cmd.empty | Some b -> Cmd.(arg "-b" % b) in let args = Cmd.(arg "checkout" % "--quiet" %% b % commit_ish) in run_status r args let local_clone r ~dir = let args = Cmd.(arg "clone" % "--local" %% path r.repo_dir %% path dir) in let* () = bare_run_status r args in let* clone = find ~dir () in match clone with | Some r -> Ok r | None -> Fmt.error "%a: no clone found" Fpath.pp_quoted dir (* Tags *) let r = let args = Cmd.(arg "tag" % "--list") in Result.bind (run r args) @@ fun o -> Ok (String.split_all ~sep:"\n" o) let tag ?dry_run ?msg:m r ~force ~sign commit_ish tag = let msg = match m with None -> Cmd.empty | Some m -> Cmd.(arg "-m" % m) in let flags = Cmd.(if' force (arg "-f") %% if' sign (arg "-s")) in let args = Cmd.(arg "tag" % "-a" %% flags %% msg % tag % commit_ish) in run_status ?dry_run r args let delete_tag ?dry_run r tag = let args = Cmd.(arg "tag" % "-d" % tag) in run_status ?dry_run r args let describe r ~dirty_mark commit_ish = let args = Cmd.(arg "describe" % "--always" % commit_ish) in Result.bind (run r args) (handle_dirt ~dirty_mark commit_ish r) let latest_tag r commit_ish = let stderr = `Stdo Os.Cmd.out_null in let args = Cmd.(arg "describe" % "--abbrev=0" % commit_ish) in let cmd = Cmd.(r.cmd %% args) in Result.bind (Os.Cmd.run_status_out ~stderr ~trim:true cmd) @@ function | `Exited 0, v -> Ok (Some v) | `Exited 128, _ -> Ok None | status, _ -> err cmd status end (* Hg support *) module Hg_vcs = struct let tool = Cmd.tool "hg" let repo_cmd hg repo_dir = Cmd.(hg % "--repository" %% path repo_dir) let find ?search ?dir () = match dir with | Some dir -> begin let work_dir = dir in let repo_dir = Fpath.(work_dir / ".hg") in Result.bind (Os.Dir.exists repo_dir) @@ function | false -> Ok None | true -> match Os.Cmd.find ?search tool with | Some hg -> Ok (Some { kind = Hg; bare_cmd = hg; cmd = repo_cmd hg repo_dir; repo_dir; work_dir}) | None -> Fmt.error "%a: repo found but no hg executable in PATH" Fpath.pp_quoted repo_dir end | None -> match Os.Cmd.find ?search tool with | None -> Ok None | Some hg -> let hg_root = Cmd.(hg % "root") in let stderr = `Stdo Os.Cmd.out_null in let res = Os.Cmd.run_status_out ~stderr ~trim:true hg_root in Result.bind res @@ function | `Exited 0, repo_dir -> Result.bind (Fpath.of_string repo_dir) @@ fun repo_dir -> let work_dir = Fpath.parent repo_dir in Ok (Some { kind = Hg; bare_cmd = hg; cmd = repo_cmd hg repo_dir; repo_dir; work_dir }) | _ -> Ok None let repo_cmd r = r.cmd let revision commit_ish = match commit_ish with "HEAD" -> "tip" | c -> c let id r ~rev = let* id = run r Cmd.(arg "id" % "-i" % "--rev" % rev) in let len = String.length id in let is_dirty = String.length id > 0 && id.[len - 1] = '+' in let id = if is_dirty then String.sub id 0 (len - 1) else id in Ok (id, is_dirty) let is_dirty r = Result.bind (id r ~rev:"tip") @@ function (_, is_dirty) -> Ok is_dirty let handle_dirt ~dirty_mark commit_ish r id = match dirty_mark && commit_ish = "HEAD" with | false -> Ok id | true -> Result.bind (is_dirty r) @@ function | true -> Ok (dirtify id) | false -> Ok id (* Commits *) let commit_id r ~dirty_mark commit_ish = let rev = revision commit_ish in Result.bind (id r ~rev) @@ fun (id, _) -> handle_dirt ~dirty_mark commit_ish r id let commit_ptime_s r commit_ish = let rev = revision commit_ish in let date = "{date(date, \"%s\")}" in let args = Cmd.(arg "log" % "--template" % date % "--rev" % rev) in Result.bind (run r args) parse_ptime let changes r ?after ?(last = "HEAD") () = let last = revision last in let rev = match after with | None -> last | Some after -> Fmt.str "%s::%s" (revision after) last in let template = "{node|short} {desc|firstline}\\n" in let args = Cmd.(arg "log" % "--template" % template % "--rev" % rev) in let* lines = run r args in let* changes = parse_changes lines in match changes with | [] -> Ok [] | after :: rest -> Ok (List.rev rest) (* hg order is reverse from git *) let tracked_files r ~tree_ish = let rev = revision tree_ish in let args = Cmd.(arg "manifest" % "--rev" % rev) in Result.bind (run r args) (parse_files ~err:"tracked files") let commit_files ?stdout ?stderr ?msg:m r files = let msg = match m with None -> Cmd.empty | Some m -> Cmd.(arg "-m" % m) in let args = Cmd.(arg "commit" %% msg %% paths files) in run_status ?stdout ?stderr r args (* Working directory *) let file_is_dirty r file = let args = Cmd.(arg "status" %% path file) in Result.bind (run r args) @@ function "" -> Ok false | _ -> Ok true let checkout ?and_branch:branch r commit_ish = let rev = revision commit_ish in let args = Cmd.(arg "update" % "--rev" % rev) in Result.bind (run r args) @@ fun _ -> match branch with | None -> Ok () | Some branch -> let args = Cmd.(arg "branch" % branch) in Result.bind (run r args) @@ fun _ -> Ok () let local_clone r ~dir = let args = Cmd.(arg "clone" %% path r.repo_dir %% path dir) in Result.bind (run_status r args) @@ fun _ -> Result.bind (find ~dir ()) @@ function | Some r -> Ok r | None -> Fmt.error "%a: no clone found" Fpath.pp_quoted dir (* Tags *) let r = let args = Cmd.(arg "tags" % "--quiet" (* sic *)) in Result.bind (run r args) @@ fun o -> Ok (String.split_all ~sep:"\n" o) let tag ?dry_run ?msg:m r ~force ~sign commit_ish tag = if sign then Error "Tag signing is not supported by hg" else let rev = revision commit_ish in let msg = match m with None -> Cmd.empty | Some m -> Cmd.(arg "-m" % m) in let may_force = Cmd.(if' force (arg "-f")) in let args = Cmd.(arg "tag" %% may_force %% msg % "--rev" % rev % tag) in run_status ?dry_run r args let delete_tag ?dry_run r tag = let args = Cmd.(arg "tag" % "--remove" % tag) in run_status ?dry_run r args let describe r ~dirty_mark commit_ish = let get_distance s = try Ok (int_of_string s) with | Failure _ -> Fmt.error "%a: Could not parse hg tag distance." Fpath.pp_quoted r.repo_dir in let rev = revision commit_ish in let parent t = Cmd.(arg "parent" % "--rev" % rev % "--template" % t) in Result.bind (run r (parent "{latesttagdistance}")) @@ fun dist -> Result.bind (get_distance dist) @@ fun dist -> let template = match dist with | 1 -> "{latesttag}" | n -> "{latesttag}-{latesttagdistance}-{node|short}" in Result.bind (run r (parent template)) (handle_dirt ~dirty_mark commit_ish r) let latest_tag r commit_ish = let rev = revision commit_ish in let args = Cmd.(arg "parent" % "--rev" % rev % "--template" % "{latesttag}") in Result.map Option.some (run r args) end let kind (r, _) = r.kind let repo_dir (r, _) = r.repo_dir let work_dir (r, _) = r.work_dir let repo_cmd (r, (module Vcs : VCS)) = Vcs.repo_cmd r let pp ppf (r, _) = Fmt.pf ppf "%a" (Fmt.st' [`Bold] Fpath.pp) r.repo_dir let pp_long ppf (r, _ as vcs) = Fmt.pf ppf "%a %a" pp_kind r.kind pp vcs (* Finding reposistories *) let find ?search ?kind ?dir () = let find_git () = match Git_vcs.find ?search ?dir () with | Ok (Some r) -> Ok (Some (r, (module Git_vcs : VCS))) | (Ok None | Error _ as v) -> v in let find_hg () = match Hg_vcs.find ?search ?dir () with | Ok (Some r) -> Ok (Some (r, (module Hg_vcs : VCS))) | (Ok None | Error _ as v) -> v in match kind with | Some Git -> find_git () | Some Hg -> find_hg () | None -> match find_git () with | Ok None -> find_hg () | ret -> ret let get ?search ?kind ?dir () = let* r = find ?search ?kind ?dir () in match r with | Some r -> Ok r | None -> let* dir = match dir with None -> Os.Dir.cwd () | Some dir -> Ok dir in Fmt.error "%a: No %a repository found" Fpath.pp_quoted dir pp_kind_option kind (* Commits *) let head = "HEAD" let commit_id (r, (module Vcs : VCS)) = Vcs.commit_id r let commit_ptime_s (r, (module Vcs : VCS)) = Vcs.commit_ptime_s r let changes (r, (module Vcs : VCS)) = Vcs.changes r let tracked_files (r, (module Vcs : VCS)) = Vcs.tracked_files r let commit_files ?stdout ?stderr ?msg (r, (module Vcs : VCS)) = Vcs.commit_files ?stdout ?stderr ?msg r let pp_commit = Fmt.st [`Fg `Yellow] (* Working directory *) let is_dirty (r, (module Vcs : VCS)) = Vcs.is_dirty r let not_dirty r = Result.bind (is_dirty r) @@ function | false -> Ok () | true -> Error "The VCS repository is dirty, commit or stash your changes." let file_is_dirty (r, (module Vcs : VCS)) = Vcs.file_is_dirty r let checkout ?and_branch (r, (module Vcs : VCS)) = Vcs.checkout ?and_branch r let local_clone (r, (module Vcs : VCS)) ~dir = Result.bind (Vcs.local_clone r ~dir) @@ fun r -> Ok (r, (module Vcs : VCS)) let pp_dirty ppf () = Fmt.st [`Fg `Red] ppf "dirty" (* Tags *) let (r, (module Vcs : VCS)) = Vcs.tags r let tag ?dry_run ?msg (r, (module Vcs : VCS)) = Vcs.tag ?dry_run ?msg r let delete_tag ?dry_run (r, (module Vcs : VCS)) = Vcs.delete_tag ?dry_run r let describe (r, (module Vcs : VCS)) = Vcs.describe r let latest_tag (r, (module Vcs : VCS)) = Vcs.latest_tag r let find_greatest_version_tag vcs = let* = tags vcs in let rev_compare v v' = -1 * compare v v' in let parse_tag acc tag = match B0_version.of_string tag with | None -> acc | Some version -> (version, tag) :: acc in match List.(sort rev_compare (fold_left parse_tag [] tags)) with | (_, latest) :: _ -> Ok (Some latest) | [] -> Ok None (* Git specific *) module Git = struct let get_cmd ?search ?(cmd = Cmd.arg "git") () = Os.Cmd.get ?search cmd let find ?search ?dir () = let* vcs = Git_vcs.find ?search ?dir () in Ok (Option.map (fun r -> r, (module Git_vcs : VCS)) vcs) let check_kind (r, _) = match r.kind with | Hg -> Fmt.error "%a: not a git repository" Fpath.pp_quoted r.repo_dir | Git -> Ok () (* Branches *) type remote = string type branch = string let pp_branch = Fmt.st [`Fg `Green; `Bold;] let pp_remote_branch = Fmt.st' [`Fg `Red; `Bold] (fun ppf (r, b) -> Fmt.pf ppf "%s/%s" r b) let remote_branch_exists ?env (r, _) ~remote ~branch = let ui = Cmd.(arg "--exit-code" % "--quiet") in let stdout = Os.Cmd.out_null (* not so quiet *) in let ls_remote = Cmd.(r.cmd % "ls-remote" %% ui % remote % branch) in Result.bind (Os.Cmd.run_status ?env ~stdout ls_remote) @@ function | `Exited 0 -> Ok true | `Exited 2 -> Ok false | status -> Fmt.error "%a" Os.Cmd.pp_cmd_status (ls_remote, status) let remote_branch_fetch ?env ?stdout ?stderr (r, _) ~remote ~branch = let fetch = Cmd.(r.cmd % "fetch" % remote % branch) in Os.Cmd.run ?env ?stdout ?stderr fetch let remote_branch_push ?env ?stdout ?stderr (r, _) ~force ~src ~remote ~dst = let refspec = Fmt.str "%s:%s" src dst in let force = Cmd.(if' force (arg "--force")) in let push = Cmd.(r.cmd % "push" %% force % remote % refspec) in Os.Cmd.run ?env ?stdout ?stderr push let remote_branch_delete ?env ?stdout ?stderr (r, _) ~force ~remote ~branch = let force = Cmd.(if' force (arg "--force")) in let push = Cmd.(r.cmd % "push" % "--delete" %% force % remote % branch) in Os.Cmd.run ?env ?stdout ?stderr push let branch_delete ?env ?stdout ?stderr (r, _) ~force ~branch = let force = Cmd.(if' force (arg "--force")) in let del = Cmd.(r.cmd % "branch" % "-d" %% force % branch) in Os.Cmd.run ?env ?stdout ?stderr del (* Transient checkouts *) let transient_checkout ?stdout ?stderr (r, _) ~force ~branch dir = function | Some cish -> let b = if force then "-B" else "-b" in let add = Cmd.(arg "worktree" % "add" % b % branch %% path dir % cish) in let* () = Os.Cmd.run ?stdout ?stderr Cmd.(r.cmd %% add) in get ~dir () | None -> (* worktree add has no --orphan option... The following is a contrived way of getting an empty branch. *) let add = Cmd.(r.cmd % "worktree" % "add" % "--detach" %% path dir) in let* () = Os.Cmd.run ?stdout ?stderr add in let* repo = get ~dir () in let orphan = Cmd.(r.cmd % "checkout" % "--orphan" % branch) in let* () = Os.Cmd.run ?stdout ?stderr orphan in let* () = Os.Cmd.run ?stdout ?stderr Cmd.(r.cmd % "rm" % "-rf" % ".") in Ok repo let transient_checkout_delete ?stdout ?stderr (r, _) ~force = let force = Cmd.(if' force (arg "--force")) in let rem = Cmd.(arg "worktree" % "remove" %% force %% path r.work_dir) in Os.Cmd.run ?stdout ?stderr Cmd.(r.cmd %% rem) let with_transient_checkout ?stdout ?stderr ?dir r ~force ~branch cish f = let* dir = match dir with None -> Os.Path.tmp () | Some d -> Ok d in let* tr = transient_checkout r ?stdout ?stderr ~force ~branch dir cish in let cleanup () = Log.if_error ~use:() (transient_checkout_delete ?stdout ?stderr tr ~force) in try Os.Exit.on_sigint ~hook:cleanup @@ fun () -> let v = f tr in (cleanup (); Ok v) with e -> cleanup (); raise e (* Working dir *) let add ?stdout ?stderr (r, _) ~force fs = let force = Cmd.(if' force (arg "--force")) in let add = Cmd.(r.cmd % "add" %% force % "--" %% paths fs) in Os.Cmd.run ?stdout ?stderr add let has_staged_changes (r, _) = let diff = Cmd.(r.cmd % "diff" % "--exit-code"% "--quiet" % "--staged") in Result.bind (Os.Cmd.run_status diff) @@ function | `Exited 0 -> Ok false | `Exited 1 -> Ok true | status -> Fmt.error "%a" Os.Cmd.pp_cmd_status (diff, status) let commit ?stdout ?stderr ?(sign = false) ?( = false) ?(amend = false) ?msg:m (r, _) = let sign = Cmd.(if' sign (arg "--signoff")) in let = Cmd.(if' reset_author (arg "--reset-author")) in let amend = Cmd.(if' amend (arg "--amend")) in let msg = match m with None -> Cmd.empty | Some m -> Cmd.(arg "-m" % m) in let commit = Cmd.(arg "commit" %% sign %% reset_author %% amend %% msg) in Os.Cmd.run ?stdout ?stderr Cmd.(r.cmd %% commit) let commit_exists (r, _) cish = let reflog = Cmd.(r.cmd % "reflog" % "exists" % cish) in Result.bind (Os.Cmd.run_status reflog) @@ function | `Exited 0 -> Ok true | `Exited 1 -> Ok false | status -> Fmt.error "%a" Os.Cmd.pp_cmd_status (reflog, status) let rm ?stdout ?stderr (r, _) ~force ~recurse ~ignore_unmatch files = let force = Cmd.(if' force (arg "--force")) in let recurse = Cmd.(if' recurse (arg "-r")) in let ign = Cmd.(if' ignore_unmatch (arg "--ignore-unmatch")) in let rm = Cmd.(r.cmd % "rm" %% force %% recurse %% ign %% paths files) in Os.Cmd.run ?stdout ?stderr rm end module Hg = struct let get_cmd ?search ?(cmd = Cmd.arg "hg") () = Os.Cmd.get ?search cmd let find ?search ?dir () = let* vcs = Hg_vcs.find ?search ?dir () in Ok (Option.map (fun r -> r, (module Hg_vcs : VCS)) vcs) end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>