diff options
author | Marius Peter <marius.peter@tutanota.com> | 2025-06-21 12:09:35 +0200 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2025-06-21 12:09:35 +0200 |
commit | 034ae69f2f22d7957386e73b3c42053fbf0cdfb2 (patch) | |
tree | b991f59a492b62b059029aa7365547e826c07416 /lib/resolvers.ml | |
parent | 6e07594aace8bc2c6f99219b4022a68291201aad (diff) |
Refactor resolvers.
Diffstat (limited to 'lib/resolvers.ml')
-rw-r--r-- | lib/resolvers.ml | 258 |
1 files changed, 138 insertions, 120 deletions
diff --git a/lib/resolvers.ml b/lib/resolvers.ml index af8fd8b..9baa116 100644 --- a/lib/resolvers.ml +++ b/lib/resolvers.ml @@ -2,134 +2,152 @@ module Store = Git_unix.Store open Lwt_result.Syntax -open Lwt_result.Infix + +(* open Lwt_result.Infix *) open Config let full_path path = Filename.concat config.git_project_root path let store repo = - let path = Fpath.v @@ full_path repo in + let path = full_path repo |> Fpath.v in Store.v ~dotgit:path path let repo_description repo = let description_path = Filename.concat (full_path repo) "description" in In_channel.with_open_text description_path In_channel.input_all -type user = Git.User.t - -type commit = { - hash : string; - short_hash : string; - parents : string list; - author : user; - message : string option; -} - -let to_commit store hash = - Store.read store hash >>= function - | Git.Value.Commit c -> - let hash = Store.Hash.to_hex hash in - Lwt_result.return - { - hash; - short_hash = String.sub hash 0 8; - parents = Store.Value.Commit.parents c |> List.map Store.Hash.to_hex; - author = Store.Value.Commit.author c; - message = Store.Value.Commit.message c; - } - | _ -> Lwt_result.fail (`Msg "value is not a commit") - -let commit_of_id repo id = - let* store = store repo in - let hash = Store.Hash.of_hex id in - to_commit store hash - -let recent_commits repo n = - let* store = store repo in - let* head = Store.Ref.resolve store Git.Reference.head in - let rec walk acc hash count = - if count = 0 then Lwt_result.return (List.rev acc) - else - let* commit = to_commit store hash in - match commit.parents with - | parent :: _ -> - walk (commit :: acc) (Store.Hash.of_hex parent) (count - 1) - | [] -> Lwt_result.return (List.rev (commit :: acc)) - in - walk [] head n - -type branch = { hash : string; name : string } - -let all_branches repo = - let* store = store repo in - let open Lwt.Syntax in - let* refs = Store.Ref.list store in - let branches = - List.map - (fun (reference, hash) -> - let name = Git.Reference.to_string reference in - let hash = Store.Hash.to_hex hash in - { name; hash }) - refs - in - Lwt_result.return branches - -type tree_entry = { - hash : string; - short_hash : string; - name : string; - perm : int; -} - -type tree = { hash : string; short_hash : string; entries : tree_entry list } -type blob = { content : string } - -let to_entry (entry : Store.Value.Tree.entry) = - let perm = - match entry.perm with - | `Commit -> 0o160000 - | `Dir -> 0o040000 - | `Everybody -> 0o100664 - | `Exec -> 0o100755 - | `Link -> 0o120000 - | `Normal -> 0o100644 - in - let hash = Store.Hash.to_hex entry.node in - let short_hash = String.sub hash 0 8 in - { hash; short_hash; name = entry.name; perm } - -let to_tree store hash = - Store.read store hash >>= function - | Git.Value.Tree tree -> - let hash = Store.Hash.to_hex hash in - let short_hash = String.sub hash 0 8 in - let entries = Store.Value.Tree.to_list tree |> List.map to_entry in - Lwt_result.return { hash; short_hash; entries } - | _ -> Lwt_result.fail (`Msg "value is not a tree") - -let to_blob store hash = - Store.read store hash >>= function - | Git.Value.Blob blob -> - let content = Store.Value.Blob.to_string blob in - Lwt_result.return { content } - | _ -> Lwt_result.fail (`Msg "value is not a blob") - -let head_tree repo = - let* store = store repo in - let* hash = - Store.Ref.resolve store Git.Reference.head >>= Store.read store >>= function - | Git.Value.Commit commit -> - Store.Value.Commit.tree commit |> Lwt_result.return - | _ -> `Msg "no head tree id" |> Lwt_result.fail - in - to_tree store hash - -let tree_of_id repo id = - let* store = store repo in - let hash = Store.Hash.of_hex id in - to_tree store hash - -let blob_of_id repo id = - let* store = store repo in - let hash = Store.Hash.of_hex id in - to_blob store hash +let short_hash hash = String.sub hash 0 8 + +module Commit = struct + type user = Git.User.t + + type t = { + hash : string; + parents : string list; + author : user; + message : string option; + } + + let to_t c = + let open Store.Value in + { + hash = Store.Value.Commit.digest c |> Store.Hash.to_hex; + parents = Commit.parents c |> List.map Store.Hash.to_hex; + author = Commit.author c; + message = Commit.message c; + } + + let of_id repo id = + let* store = store repo in + let hash = Store.Hash.of_hex id in + Store.read store hash + |> Lwt_result.map @@ function + | Git.Value.Commit commit -> to_t commit + | _ -> failwith (id ^ " does not point to a commit object") + + let head repo = + let* store = store repo in + let* hash = Store.Ref.resolve store Git.Reference.head in + let id = hash |> Store.Hash.to_hex in + of_id repo id + + let recent repo n = + let* head_commit = head repo in + let rec walk acc hash count = + if count = 0 then Lwt_result.return (List.rev acc) + else + let* commit = of_id repo hash in + match commit.parents with + | parent_hash :: _ -> walk (commit :: acc) parent_hash (count - 1) + | [] -> Lwt_result.return (List.rev (commit :: acc)) + in + walk [] head_commit.hash n +end + +(* module Branch = struct *) +(* type t = { hash : string; name : string } *) + +(* let to_t (branch : Store.Reference.t) = *) +(* { *) +(* hash = Store.Reference.hash branch ; *) +(* name = Store.Reference.contents branch; *) +(* } *) + +(* let of_id repo id = *) +(* let* store = store repo in *) +(* let hash = Store.Hash.of_hex id in *) +(* Store.Ref.resolve store hash *) +(* |> Lwt_result.map @@ function *) +(* | Git.Reference.Ref branch -> to_t branch *) +(* | _ -> failwith "no head tree id" *) + +(* let all repo = *) +(* let* store = store repo in *) +(* let* refs = Store.Ref.list store in *) +(* let branches = *) +(* List.map *) +(* (fun (reference, hash) -> *) +(* let name = Git.Reference.to_string reference in *) +(* let hash = Store.Hash.to_hex hash in *) +(* { name; hash }) *) +(* refs *) +(* in *) +(* Lwt_result.return branches *) +(* end *) + +module Entry = struct + type t = { hash : string; name : string; perm : int } + + let to_t (entry : Store.Value.Tree.entry) = + let perm = + match entry.perm with + | `Commit -> 0o160000 + | `Dir -> 0o040000 + | `Everybody -> 0o100664 + | `Exec -> 0o100755 + | `Link -> 0o120000 + | `Normal -> 0o100644 + in + let hash = Store.Hash.to_hex entry.node in + { hash; name = entry.name; perm } +end + +module Tree = struct + type t = { hash : string; entries : Entry.t list } + + let to_t (tree : Store.Value.Tree.t) = + let hash = Store.Value.Tree.hash tree |> Int.to_string in + let entries = Store.Value.Tree.to_list tree |> List.map Entry.to_t in + { hash; entries } + + let of_id repo id = + let* store = store repo in + let hash = Store.Hash.of_hex id in + Store.read store hash + |> Lwt_result.map @@ function + | Git.Value.Tree tree -> to_t tree + | _ -> failwith "no head tree id" + + let head repo : (t, Store.error) Lwt_result.t = + let* store = store repo in + let* hash = + Store.Ref.resolve store Git.Reference.head + |> Lwt_result.map Store.Hash.to_hex + in + of_id repo hash +end + +module Blob = struct + type t = { content : string } + + let to_t (blob : Store.Value.Blob.t) = + { content = Store.Value.Blob.to_string blob } + + let of_id repo id = + let* store = store repo in + let hash = Store.Hash.of_hex id in + Store.read store hash + |> Lwt_result.map @@ function + | Git.Value.Blob blob -> to_t blob + | _ -> failwith (id ^ " does not point to a blob object") +end |