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
module type S = sig
type t
module Hash : S.HASH
val make :
tree:Hash.t
-> author:User.t
-> committer:User.t
-> ?parents:Hash.t list
-> ?extra:(string * string list) list
-> string
-> t
module MakeMeta (Meta : Encore.Meta.S) : sig
val p : t Meta.t
end
module A : S.DESC with type 'a t = 'a Angstrom.t and type e = t
module M : S.DESC with type 'a t = 'a Encore.Encoder.t and type e = t
module D :
S.DECODER
with type t = t
and type init = Cstruct.t
and type error = Error.Decoder.t
module E :
S.ENCODER
with type t = t
and type init = Cstruct.t * t
and type error = Error.never
include S.DIGEST with type t := t and type hash := Hash.t
include S.BASE with type t := t
val length : t -> int64
val parents : t -> Hash.t list
val tree : t -> Hash.t
val committer : t -> User.t
val author : t -> User.t
val message : t -> string
val compare_by_date : t -> t -> int
end
module Make (Hash : S.HASH) = struct
type t =
{ tree: Hash.t
; parents: Hash.t list
; author: User.t
; committer: User.t
; extra: (string * string list) list
; message: string }
let make ~tree ~author ~committer ?(parents = []) ?( = []) message =
{tree; parents; author; committer; extra; message}
module MakeMeta (Meta : Encore.Meta.S) = struct
type e = t
open Helper.BaseIso
module Iso = struct
open Encore.Bijection
let hex =
make_exn
~fwd:(Exn.safe_exn Hash.of_hex)
~bwd:(Exn.safe_exn Hash.to_hex)
let user =
make_exn
~fwd:(fun s ->
match Angstrom.parse_string ~consume:All User.A.p s with
| Ok v -> v
| Error _ -> Exn.fail () )
~bwd:(Encore.Encoder.to_string User.M.p)
let commit =
make_exn
~fwd:
(fun ( (_, tree)
, parents
, (_, author)
, (_, committer)
,
, message ) ->
let parents = List.map snd parents in
{tree; parents; author; committer; extra; message} )
~bwd:(fun {tree; parents; author; committer; ; message} ->
let parents = List.map (fun x -> "parent", x) parents in
( ("tree", tree)
, parents
, ("author", author)
, ("committer", committer)
, extra
, message ) )
end
type 'a t = 'a Meta.t
module Meta = Encore.Meta.Make (Meta)
open Encore.Bijection
open Encore.Either
open Meta
let is_not_sp chr = chr <> ' '
let is_not_lf chr = chr <> '\x0a'
let to_end =
let loop m =
let cons = Exn.cons <$> (buffer <* commit <*> m) in
let nil = pure ~compare:(fun () () -> 0) () in
make_exn
~fwd:(function L cons -> cons | R () -> [])
~bwd:(function _ :: _ as lst -> L lst | [] -> R ())
<$> peek cons nil
in
fix loop
let to_end : string t =
make_exn ~fwd:(String.concat "")
~bwd:(fun x -> [x] )
<$> to_end
let value =
let sep = string_elt "\n " <$> const "\n " in
sep_by0 ~sep (while0 is_not_lf)
let =
while1 (fun chr -> is_not_sp chr && is_not_lf chr)
<* (char_elt ' ' <$> any)
<*> (value <* (char_elt '\x0a' <$> any))
let binding ?key value =
let value = value <$> (while1 is_not_lf <* (char_elt '\x0a' <$> any)) in
match key with
| Some key -> const key <* (char_elt ' ' <$> any) <*> value
| None -> while1 is_not_sp <* (char_elt ' ' <$> any) <*> value
let commit =
binding ~key:"tree" Iso.hex
<*> rep0 (binding ~key:"parent" Iso.hex)
<*> binding ~key:"author" Iso.user
<*> binding ~key:"committer" Iso.user
<*> rep0 extra
<*> to_end
let p = Exn.compose obj6 Iso.commit <$> commit
end
module A = MakeMeta (Encore.Proxy_decoder.Impl)
module M = MakeMeta (Encore.Proxy_encoder.Impl)
module D = Helper.MakeDecoder (A)
module E = Helper.MakeEncoder (M)
let length t =
let string x = Int64.of_int (String.length x) in
let ( + ) = Int64.add in
let parents =
List.fold_left
(fun acc _ ->
string "parent" + 1L + Int64.of_int (Hash.digest_size * 2) + 1L + acc
)
0L t.parents
in
let values l =
let rec go a = function
| [] -> 1L + a
| [x] -> string x + 1L + a
| x :: r -> go (string x + 2L + a) r
in
go 0L l
in
string "tree"
+ 1L
+ Int64.of_int (Hash.digest_size * 2)
+ 1L
+ parents
+ string "author"
+ 1L
+ User.length t.author
+ 1L
+ string "committer"
+ 1L
+ User.length t.committer
+ 1L
+ List.fold_left
(fun acc (key, v) -> string key + 1L + values v + acc)
0L t.extra
+ string t.message
let pp ppf {tree; parents; author; committer; ; message} =
let chr =
Fmt.using (function '\000' .. '\031' | '\127' -> '.' | x -> x) Fmt.char
in
let pp_message ppf x = Fmt.iter ~sep:Fmt.nop String.iter chr ppf x in
Fmt.pf ppf
"{ @[<hov>tree = %a;@ parents = [ %a ];@ author = %a;@ committer = %a;@ \
extra = %a;@ message = %a;@] }"
(Fmt.hvbox Hash.pp) tree
(Fmt.hvbox (Fmt.list ~sep:(Fmt.unit ";@ ") Hash.pp))
parents (Fmt.hvbox User.pp) author (Fmt.hvbox User.pp) committer
Fmt.(hvbox (Dump.list (Dump.pair string (Dump.list string))))
extra (Fmt.hvbox pp_message) message
let digest value =
let tmp = Cstruct.create 0x100 in
let etmp = Cstruct.create 0x100 in
Helper.digest (module Hash) (module E) ~etmp ~tmp ~kind:"commit" ~length value
let equal = ( = )
let hash = Hashtbl.hash
let parents {parents; _} = parents
let tree {tree; _} = tree
let committer {committer; _} = committer
let author {author; _} = author
let message {message; _} = message
let {; _} = extra
let compare_by_date a b =
Int64.compare (fst a.author.User.date) (fst b.author.User.date)
let compare = compare_by_date
module Set = Set.Make (struct type nonrec t = t
let compare = compare end)
module Map = Map.Make (struct type nonrec t = t
let compare = compare end)
end