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
let src = Logs.Src.create "git.mem" ~doc:"logs git's memory back-end"
module Log = (val Logs.src_log src : Logs.LOG)
module Sched = Carton.Make (struct
type 'a t = 'a
end)
type 'hash t = {
values : ('hash, 'hash Value.t Lazy.t) Hashtbl.t;
inflated : ('hash, [ `Commit | `Blob | `Tag | `Tree ] * Cstruct.t) Hashtbl.t;
refs : (Reference.t, [ `H of 'hash | `R of Reference.t ]) Hashtbl.t;
root : Fpath.t;
dotgit : Fpath.t;
shallows : 'hash Shallow.t;
mutable head : 'hash Reference.contents option;
}
let batch_write :
type uid pack index.
uid t ->
uid_ln:int ->
uid_rw:(string -> uid) ->
map:(pack -> pos:int64 -> int -> Bigstringaf.t) ->
iter:(index -> f:(uid -> int64 -> unit Lwt.t) -> unit Lwt.t) ->
pack ->
index ->
unit Lwt.t =
fun store ~uid_ln ~uid_rw ~map ~iter pack index ->
let tbl = Hashtbl.create 0x100 in
let f uid offset =
Hashtbl.add tbl uid offset;
Lwt.return_unit
in
let open Lwt.Infix in
iter index ~f >>= fun () ->
let z = De.bigstring_create De.io_buffer_size in
let w = De.make_window ~bits:15 in
let allocate _ = w in
let pack =
Carton.Dec.make pack ~z ~allocate ~uid_ln ~uid_rw (Hashtbl.find tbl)
in
let f uid offset =
let weight =
Carton.Dec.weight_of_offset ~map pack ~weight:Carton.Dec.null offset
in
let raw = Carton.Dec.make_raw ~weight in
Log.debug (fun m -> m "Unpack %08Lx from the given PACK file." offset);
let res = Carton.Dec.of_offset ~map pack raw ~cursor:offset in
let inflated =
Cstruct.of_bigarray (Carton.Dec.raw res) ~off:0 ~len:(Carton.Dec.len res)
in
let kind =
match Carton.Dec.kind res with
| `A -> `Commit
| `B -> `Tree
| `C -> `Blob
| `D -> `Tag
in
if not (Hashtbl.mem store.values uid) then
Hashtbl.add store.inflated uid (kind, inflated);
Lwt.return_unit
in
iter index ~f
let failuref fmt = Fmt.kstr (fun err -> Failure err) fmt
module Make (Digestif : Digestif.S) = struct
type hash = Digestif.t
type nonrec t = hash t
type git_store = t
open Value
open Reference
module Hash = Hash.Make (Digestif)
module Value = Value.Make (Hash)
module Reference = struct
type hash = Digestif.t
include (
Reference :
module type of Reference
with type 'uid contents := 'uid Reference.contents)
type contents = hash Reference.contents
end
type error =
[ `Not_found of Hash.t
| `Reference_not_found of Reference.t
| `Cycle
| `Msg of string ]
let pp_error ppf = function
| `Not_found hash -> Fmt.pf ppf "%a not found" Hash.pp hash
| `Reference_not_found r -> Fmt.pf ppf "%a not found" Reference.pp r
| `Cycle -> Fmt.pf ppf "Got a reference cycle"
| `Msg err -> Fmt.string ppf err
let root { root; _ } = root
let dotgit { dotgit; _ } = dotgit
let v ?dotgit root =
let dotgit =
match dotgit with Some v -> v | None -> Fpath.(root / ".git")
in
Lwt.return_ok
{
values = Hashtbl.create 1024;
inflated = Hashtbl.create 1024;
refs = Hashtbl.create 8;
head = None;
shallows = Shallow.make [];
root;
dotgit;
}
let reset t =
Log.info (fun l -> l "Reset memory store.");
Hashtbl.reset t.values;
Hashtbl.reset t.inflated;
Hashtbl.reset t.refs;
t.head <- None;
Log.debug (fun l -> l "Elements into refs: %d." (Hashtbl.length t.refs));
Lwt.return_ok ()
let write t value =
Log.debug (fun m ->
m "Write a new value into the store: %a." Value.pp value);
let hash = Value.digest value in
Log.debug (fun m -> m "Store %a." Hash.pp hash);
if Hashtbl.mem t.values hash then Lwt.return (Ok (hash, 0))
else (
Hashtbl.add t.values hash (lazy value);
Lwt.return_ok (hash, Int64.to_int (Value.length value)))
let digest kind raw =
let len = Cstruct.length raw in
let ctx = Hash.init () in
let hdr =
Fmt.str "%s %d\000%!"
(match kind with
| `Commit -> "commit"
| `Blob -> "blob"
| `Tree -> "tree"
| `Tag -> "tag")
len
in
let ctx = Hash.feed_string ctx hdr in
let ctx = Hash.feed_bigstring ctx (Cstruct.to_bigarray raw) in
Hash.get ctx
let write_inflated t ~kind inflated =
Log.debug (fun m -> m "Write inflated Git object.");
let hash = digest kind inflated in
if Hashtbl.mem t.values hash then Lwt.return hash
else
let value =
lazy
(match Value.of_raw ~kind inflated with
| Error (`Msg err) ->
let str = Fmt.str "Value.of_raw(%a): %s" Hash.pp hash err in
raise (Failure str)
| Ok value -> value)
in
Hashtbl.add t.inflated hash (kind, inflated);
Hashtbl.add t.values hash value;
Lwt.return hash
let read_inflated t h =
let open Lwt.Infix in
try
let value = Lazy.force (Hashtbl.find t.values h) in
let kind =
match value with
| Commit _ -> `Commit
| Blob _ -> `Blob
| Tree _ -> `Tree
| Tag _ -> `Tag
in
let raw = Value.to_raw_without_header value in
Lwt.pause () >|= fun () -> Some (kind, Cstruct.of_string raw)
with Not_found -> (
try
let kind, raw = Hashtbl.find t.inflated h in
Lwt.pause () >|= fun () -> Some (kind, raw)
with Not_found -> Lwt.return_none)
let read t h =
try Ok (Lazy.force (Hashtbl.find t.values h))
with Not_found -> (
try
let kind, raw = Hashtbl.find t.inflated h in
match Value.of_raw ~kind raw with
| Ok v ->
Hashtbl.add t.values h (lazy v);
Ok v
| Error (`Msg err) ->
let str = Fmt.str "Value.of_raw(%a): %s" Hash.pp h err in
raise (Failure str)
with Not_found -> Error (`Not_found h))
let keys t = Hashtbl.fold (fun k _ l -> k :: l) t []
let list t =
Lwt.return (List.sort_uniq Hash.compare (keys t.values @ keys t.inflated))
let mem t h = Lwt.return (Hashtbl.mem t.values h || Hashtbl.mem t.inflated h)
let size t h =
let v =
match read t h with
| Ok (Blob v) -> Ok (Value.Blob.length v)
| Ok (Commit _ | Tag _ | Tree _) | Error _ ->
Error (`Not_found h)
in
Lwt.return v
let read_exn t h =
let open Lwt.Infix in
match read t h with
| Error _ -> Lwt.fail (failuref "%a not found" Hash.pp h)
| Ok v -> Lwt.pause () >|= fun () -> v
let read_opt t h =
let open Lwt.Infix in
match read t h with
| Error (`Not_found _) -> Lwt.return (Ok None)
| Ok v -> Lwt.pause () >|= fun () -> Ok (Some v)
let contents t =
let open Lwt.Infix in
list t >>= fun hashes ->
let res =
List.fold_left
(fun acc h ->
match read t h with Ok v -> (h, v) :: acc | Error _ -> acc)
[] hashes
in
Lwt.return res
let read t h =
let open Lwt.Infix in
match read t h with
| Ok _ as v -> Lwt.pause () >|= fun () -> v
| Error _ as err -> Lwt.return err
let is_shallowed t hash = Shallow.exists t.shallows ~equal:Hash.equal hash
let shallowed t = Shallow.get t.shallows
let shallow t hash = Shallow.append t.shallows hash
let unshallow t hash = Shallow.remove t.shallows ~equal:Hash.equal hash
module Traverse = Traverse_bfs.Make (struct
module Hash = Hash
module Value = Value
type nonrec t = git_store
let root { root; _ } = root
let read_exn = read_exn
let is_shallowed = is_shallowed
end)
let fold = Traverse.fold
let iter = Traverse.iter
let map ~f idx =
let open Lwt.Infix in
let rec go acc n =
if Carton.Dec.Idx.max idx == n then Lwt.return (List.rev acc)
else
let uid = Carton.Dec.Idx.get_uid idx n
and offset = Carton.Dec.Idx.get_offset idx n
and crc = Carton.Dec.Idx.get_crc idx n in
f ~uid ~offset ~crc >>= fun entry -> go (entry :: acc) (succ n)
in
go [] 0
let batch_write t _ ~pck ~idx =
let open Lwt.Infix in
let rec flat stream buf =
stream () >>= function
| Some str ->
Buffer.add_string buf str;
flat stream buf
| None -> Lwt.return (Buffer.contents buf)
in
flat pck (Buffer.create 0x100) >>= fun pck_contents ->
flat idx (Buffer.create 0x100) >>= fun idx_contents ->
let index =
Carton.Dec.Idx.make
(Bigstringaf.of_string ~off:0
~len:(String.length idx_contents)
idx_contents)
~uid_ln:Hash.length ~uid_rw:Hash.to_raw_string
~uid_wr:Hash.of_raw_string
in
let iter index ~f =
let f (uid, offset) = f uid offset in
let f ~uid ~offset ~crc:_ = f (uid, offset) >>= Lwt.pause in
map ~f index >>= fun _units -> Lwt.return_unit
in
let map pck_contents ~pos len =
let pos = Int64.to_int pos in
let len = min (String.length pck_contents - pos) len in
Bigstringaf.of_string ~off:pos ~len pck_contents
in
batch_write t ~uid_ln:Hash.length ~uid_rw:Hash.of_raw_string ~map ~iter
pck_contents index
>>= fun () -> Lwt.return_ok ()
module Ref = struct
module Graph = Reference.Map
let list t =
Log.debug (fun l -> l "Ref.list.");
let graph, rest =
Hashtbl.fold
(fun k -> function
| `R ptr -> fun (a, r) -> a, (k, ptr) :: r
| `H hash -> fun (a, r) -> Graph.add k hash a, r)
t.refs (Graph.empty, [])
in
let graph =
List.fold_left
(fun a (k, ptr) ->
try
let v = Graph.find ptr a in
Graph.add k v a
with Not_found -> a)
graph rest
in
let r = Graph.fold (fun k v a -> (k, v) :: a) graph [] in
Lwt.return r
let mem t r =
Log.debug (fun l -> l "Ref.mem %a." Reference.pp r);
try
let _ = Hashtbl.find t.refs r in
Lwt.return true
with Not_found -> Lwt.return false
exception Cycle
let resolve t r =
let rec go ~visited r =
Log.debug (fun l -> l "Ref.resolve %a." Reference.pp r);
try
if List.exists (Reference.equal r) visited then raise Cycle;
match Hashtbl.find t.refs r with
| `H s ->
Log.debug (fun l ->
l "Ref.resolve %a found: %a." Reference.pp r Hash.pp s);
Lwt.return_ok s
| `R r' ->
let visited = r :: visited in
go ~visited r'
with
| Not_found ->
Log.err (fun l -> l "%a not found." Reference.pp r);
Lwt.return_error (`Reference_not_found r)
| Cycle ->
Log.err (fun l -> l "Got a reference cycle");
Lwt.return_error `Cycle
in
go ~visited:[] r
let read t r =
try
match Hashtbl.find t.refs r with
| `H hash -> Lwt.return_ok (Reference.uid hash)
| `R refname -> Lwt.return_ok (Reference.ref refname)
with Not_found -> Lwt.return_error (`Reference_not_found r)
let remove t r =
Log.debug (fun l -> l "Ref.remove %a." Reference.pp r);
Hashtbl.remove t.refs r;
Lwt.return_ok ()
let write t r value =
Log.debug (fun l -> l "Ref.write %a." Reference.pp r);
let head_contents =
match value with Uid hash -> `H hash | Ref refname -> `R refname
in
Hashtbl.replace t.refs r head_contents;
Lwt.return_ok ()
end
let has_global_watches = false
let has_global_checkout = false
end
module Store = Make (Digestif.SHA1)
module Sync (Git_store : Minimal.S) = struct
let src = Logs.Src.create "git-mem.sync" ~doc:"logs git-mem's sync event"
module Log = (val Logs.src_log src : Logs.LOG)
module Idx = Carton.Dec.Idx.M (Lwt) (Git_store.Hash)
module Index = struct
type +'a fiber = 'a Lwt.t
include (Idx : module type of Idx with type fd := Idx.fd)
type 'a rd = < rd : unit ; .. > as 'a
type 'a wr = < wr : unit ; .. > as 'a
type 'a mode =
| Rd : < rd : unit > mode
| Wr : < wr : unit > mode
| RdWr : < rd : unit ; wr : unit > mode
type 'm fd = Idx.fd
let create :
type a.
?trunc:bool -> mode:a mode -> t -> uid -> (a fd, error) result fiber =
fun ?trunc:_ ~mode:_ t uid -> create t uid
let move _ ~src:_ ~dst:_ = assert false
let map _ _ ~pos:_ _ = assert false
end
include Sync.Make (Git_store.Hash) (Cstruct_append) (Index) (Git_store)
let stream_of_cstruct ?(chunk = 0x1000) payload =
let stream, emitter = Lwt_stream.create () in
let fill () =
let rec go pos =
if pos = Cstruct.length payload then (
emitter None;
Lwt.return_unit)
else
let len = min chunk (Cstruct.length payload - pos) in
let tmp = Bytes.create len in
Cstruct.blit_to_bytes payload pos tmp 0 len;
emitter (Some (Bytes.unsafe_to_string tmp));
go (pos + len)
in
go 0
in
Lwt.async fill;
fun () -> Lwt_stream.get stream
let fetch ?(push_stdout = ignore) ?(push_stderr = ignore) ?threads ~ctx edn
store ?version ?capabilities ?deepen want =
let open Lwt.Infix in
let t_idx = Carton.Dec.Idx.Device.device () in
let t_pck = Cstruct_append.device () in
let index = Carton.Dec.Idx.Device.create t_idx in
let src = Cstruct_append.key t_pck in
let dst = Cstruct_append.key t_pck in
let create_idx_stream () =
Carton.Dec.Idx.Device.project t_idx index
|> Cstruct.of_bigarray
|> stream_of_cstruct
in
let create_pack_stream () =
let pack = Cstruct_append.project t_pck dst in
stream_of_cstruct pack
in
fetch ~push_stdout ~push_stderr ?threads ~ctx edn store ?version
?capabilities ?deepen want ~src ~dst ~idx:index ~create_idx_stream
~create_pack_stream t_pck t_idx
>>= fun res ->
let _dst = Sys.opaque_identity dst in
let _src = Sys.opaque_identity src in
Lwt.return res
end