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
module Path = Irmin.Path.String_list
module Metadata = Irmin.Metadata.None
module Branch = Irmin.Branch.String
module Hash : Irmin.Hash.S = struct
module H = Digestif.Make_BLAKE2B (struct
let digest_size = 32
end)
type t = H.t
let prefix = "\079\199"
let pp ppf t =
let s = H.to_raw_string t in
Tezos_base58.pp ppf (Tezos_base58.encode ~prefix s)
let of_b58 : string -> (t, [ `Msg of string ]) result =
fun x ->
match Tezos_base58.decode ~prefix (Base58 x) with
| Some x -> Ok (H.of_raw_string x)
| None -> Error (`Msg "Failed to read b58check_encoding data")
let short_hash_string = Repr.(unstage (short_hash string))
let short_hash ?seed t = short_hash_string ?seed (H.to_raw_string t)
let t : t Repr.t =
Repr.map ~pp ~of_string:of_b58
Repr.(string_of (`Fixed H.digest_size))
~short_hash H.of_raw_string H.to_raw_string
let short_hash_string = short_hash_string ?seed:None
let short_hash t = short_hash_string (H.to_raw_string t)
let hash_size = H.digest_size
let short_hash_substring t ~off =
short_hash_string (Bigstringaf.substring t ~off ~len:hash_size)
let hash = H.digesti_string
let to_raw_string = H.to_raw_string
let unsafe_of_raw_string = H.of_raw_string
end
module Info = Irmin.Info.Default
module Node
(Contents_key : Irmin.Key.S with type hash = Hash.t)
(Node_key : Irmin.Key.S with type hash = Hash.t) =
struct
module M =
Irmin.Node.Generic_key.Make (Hash) (Path) (Metadata) (Contents_key)
(Node_key)
module V1 : sig
val pre_hash : M.t -> (string -> unit) -> unit
end = struct
module Hash = Irmin.Hash.V1 (Hash)
type entry = string * M.value
let step_t = Irmin.Type.string
let metadata_t =
let some = "\255\000\000\000\000\000\000\000" in
let none = "\000\000\000\000\000\000\000\000" in
Irmin.Type.(map (string_of (`Fixed 8)))
(fun _ -> assert false)
(function Some _ -> some | None -> none)
let metadata_of_entry (_, t) =
match t with `Node _ -> None | `Contents (_, m) -> Some m
let hash_of_entry (_, t) =
match t with
| `Node h -> Node_key.to_hash h
| `Contents (h, _) -> Contents_key.to_hash h
let entry_t : entry Irmin.Type.t =
let open Irmin.Type in
record "Tree.entry" (fun _ _ _ -> assert false)
|+ field "kind" metadata_t metadata_of_entry
|+ field "name" step_t fst
|+ field "hash" Hash.t hash_of_entry
|> sealr
let entries_t : entry list Irmin.Type.t =
Irmin.Type.(list ~len:`Int64 entry_t)
let pre_hash_entries = Irmin.Type.(unstage (pre_hash entries_t))
let compare_entry (x, _) (y, _) = String.compare x y
let step_to_string = Irmin.Type.(unstage (to_bin_string Path.step_t))
let str_key (k, v) = (step_to_string k, v)
let pre_hash t =
M.list t
|> List.map str_key
|> List.fast_sort compare_entry
|> pre_hash_entries
end
include M
let t = Irmin.Type.(like t ~pre_hash:V1.pre_hash)
end
module Commit
(Node_key : Irmin.Key.S with type hash = Hash.t)
(Commit_key : Irmin.Key.S with type hash = Hash.t) =
struct
module M = Irmin.Commit.Generic_key.Make (Hash) (Node_key) (Commit_key)
module V1 = Irmin.Commit.V1.Make (Hash) (M)
include M
let pre_hash_v1_t = Irmin.Type.(unstage (pre_hash V1.t))
let pre_hash_v1 t = pre_hash_v1_t (V1.import t)
let t = Irmin.Type.(like t ~pre_hash:pre_hash_v1)
end
module Contents = struct
type t = bytes
let ty = Irmin.Type.(pair (bytes_of `Int64) unit)
let pre_hash_ty = Irmin.Type.(unstage (pre_hash ty))
let pre_hash_v1 x = pre_hash_ty (x, ())
let t = Irmin.Type.(like bytes ~pre_hash:pre_hash_v1)
let merge = Irmin.Merge.(idempotent (Irmin.Type.option t))
end