Source file pack_store.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
open Import
include Irmin_pack.Pack_store
module Varint = struct
type t = int [@@deriving irmin ~decode_bin]
(** LEB128 stores 7 bits per byte. An OCaml [int] has at most 63 bits.
[63 / 7] equals [9]. *)
let max_encoded_size = 9
end
exception Invalid_read of string
exception Corrupted_store of string
let invalid_read fmt = Fmt.kstr (fun s -> raise (Invalid_read s)) fmt
let corrupted_store fmt = Fmt.kstr (fun s -> raise (Corrupted_store s)) fmt
module Table (K : Irmin.Hash.S) = Hashtbl.Make (struct
type t = K.t
let hash = K.short_hash
let equal = Irmin.Type.(unstage (equal K.t))
end)
module Maker (Index : Pack_index.S) (K : Irmin.Hash.S with type t = Index.key) :
Maker with type hash = K.t and type index := Index.t = struct
module IO_cache = IO.Cache
module IO = IO.Unix
module Tbl = Table (K)
module Dict = Pack_dict
module Hash = struct
include K
let hash = K.short_hash
let equal = Irmin.Type.(unstage (equal K.t))
end
module Key = Pack_key.Make (K)
type hash = K.t
type 'a t = {
block : IO.t;
index : Index.t;
indexing_strategy : Indexing_strategy.t;
dict : Dict.t;
mutable open_instances : int;
}
let valid t =
if t.open_instances <> 0 then (
t.open_instances <- t.open_instances + 1;
true)
else false
let unsafe_v ~index ~indexing_strategy ~fresh ~readonly file =
let root = Filename.dirname file in
let dict = Dict.v ~fresh ~readonly root in
let block =
let version = Some selected_version in
IO.v ~version ~fresh ~readonly file
in
{ block; index; indexing_strategy; dict; open_instances = 1 }
(** For a given path to a pack store and a given pack store module, an
instance of [_ t] is shared between all contents/node/commit stores of a
repo. It is also shared between all repos with the same open mode.
[get_io] stores the instances.
In practice it permits 2 things:
- for the contents/node/commit stores to use the same files and
- for multiple ro instance to share the same [IO.t]. *)
let IO_cache.{ v = get_io } =
IO_cache.memoize ~valid
~clear:(fun t -> IO.truncate t.block)
~v:(fun (index, indexing_strategy) -> unsafe_v ~index ~indexing_strategy)
Layout.pack
let close t =
t.open_instances <- t.open_instances - 1;
if t.open_instances = 0 then (
if not (IO.readonly t.block) then IO.flush t.block;
IO.close t.block;
Dict.close t.dict)
module Make_without_close_checks
(Val : Pack_value.Persistent with type hash := K.t and type key := Key.t) =
struct
module Key = Key
module Tbl = Table (K)
module Lru = Irmin.Backend.Lru.Make (Hash)
type nonrec 'a t = {
pack : 'a t;
lru : Val.t Lru.t;
staging : Val.t Tbl.t;
mutable open_instances : int;
readonly : bool;
}
type hash = K.t [@@deriving irmin ~pp ~equal ~decode_bin]
type key = Key.t [@@deriving irmin ~pp]
type value = Val.t [@@deriving irmin ~pp]
let index_direct_with_kind t hash =
[%log.debug "index %a" pp_hash hash];
match Index.find t.pack.index hash with
| None -> None
| Some (offset, length, kind) ->
let key = Pack_key.v_direct ~hash ~offset ~length in
Some (key, kind)
let index_direct t hash =
index_direct_with_kind t hash |> Option.map (fun (key, _) -> key)
let index t hash = Lwt.return (index_direct t hash)
let clear t =
if IO.offset t.block <> Int63.zero then (
Index.clear t.index;
IO.truncate t.block)
let unsafe_clear t =
clear t.pack;
Tbl.clear t.staging;
Lru.clear t.lru
(** For a given path to a pack store and a given pack store module, an
instance of [_ t] is shared between all the contents store of all repos
with the same open mode. The same goes for the node store and the commit
store (i.e. one instance for each).
[roots] stores the instances.
In practice this sharing permits multiple ro instances to share the same
LRU. *)
let roots = Hashtbl.create 10
let valid t =
if t.open_instances <> 0 then (
t.open_instances <- t.open_instances + 1;
true)
else false
let flush ?(index = true) ?(index_merge = false) t =
if index_merge then Index.merge t.pack.index;
Dict.flush t.pack.dict;
IO.flush t.pack.block;
if index then Index.flush t.pack.index;
Tbl.clear t.staging
let unsafe_v_no_cache ~fresh ~readonly ~lru_size ~index ~indexing_strategy
root =
let pack = get_io (index, indexing_strategy) ~fresh ~readonly root in
let staging = Tbl.create 127 in
let lru = Lru.create lru_size in
{ staging; lru; pack; open_instances = 1; readonly }
let unsafe_v ?(fresh = false) ?(readonly = false) ?(lru_size = 10_000)
~index ~indexing_strategy root =
try
let t = Hashtbl.find roots (root, readonly) in
if valid t then (
if fresh then unsafe_clear t;
t)
else (
Hashtbl.remove roots (root, readonly);
raise Not_found)
with Not_found ->
let t =
unsafe_v_no_cache ~fresh ~readonly ~lru_size ~index ~indexing_strategy
root
in
if fresh then unsafe_clear t;
Hashtbl.add roots (root, readonly) t;
t
let v ?fresh ?readonly ?lru_size ~index ~indexing_strategy root =
let t =
unsafe_v ?fresh ?readonly ?lru_size ~index ~indexing_strategy root
in
Lwt.return t
let io_read_and_decode_hash ~off t =
let buf = Bytes.create K.hash_size in
let n = IO.read t.pack.block ~off buf in
assert (n = K.hash_size);
decode_bin_hash (Bytes.unsafe_to_string buf) (ref 0)
type span = { offset : int63; length : int }
(** The type of contiguous ranges of bytes in the pack file. *)
(** Refer to the index for the position of a pack entry, assuming it is
indexed: *)
let get_entry_span_from_index_exn t hash : span =
match index_direct t hash with
| Some key' -> (
match Pack_key.inspect key' with
| Direct { offset; length; _ } -> { offset; length }
| Indexed _ ->
assert false)
| None ->
corrupted_store "Unexpected object %a missing from index" pp_hash hash
module Entry_prefix = struct
type t = {
hash : hash;
kind : Pack_value.Kind.t;
size_of_value_and_length_header : int option;
(** Remaining bytes in the entry after reading the hash and the kind
(i.e. the length of the length header + the value of the length
header), if the entry has a length header (otherwise [None]).
NOTE: the length stored in the index and in direct pack keys is
the {!total_entry_length} (including the hash and the kind). See
[pack_value.mli] for a description. *)
}
[@@deriving irmin ~pp_dump]
let min_length = K.hash_size + 1
let max_length = K.hash_size + 1 + Varint.max_encoded_size
let total_entry_length t =
Option.map
(fun len -> min_length + len)
t.size_of_value_and_length_header
end
let read_and_decode_entry_prefix ~off ~io_read =
let buf = Bytes.create Entry_prefix.max_length in
let bytes_read = io_read ~off buf in
if bytes_read < Entry_prefix.min_length then
invalid_read
"Attempted to read an entry at offset %a in the pack file, but got \
only %d bytes"
Int63.pp off bytes_read;
let hash = decode_bin_hash (Bytes.unsafe_to_string buf) (ref 0) in
let kind = Pack_value.Kind.of_magic_exn (Bytes.get buf Hash.hash_size) in
let size_of_value_and_length_header =
match Val.length_header kind with
| None -> None
| Some `Varint ->
let = Entry_prefix.min_length in
let pos_ref = ref length_header_start in
let =
Varint.decode_bin (Bytes.unsafe_to_string buf) pos_ref
in
let = !pos_ref - length_header_start in
Some (length_header_length + length_header)
in
{ Entry_prefix.hash; kind; size_of_value_and_length_header }
let io_read_and_decode_entry_prefix ~off t =
let io_read = IO.read t.pack.block in
read_and_decode_entry_prefix ~off ~io_read
let pack_file_contains_key t k =
let key = Pack_key.inspect k in
match key with
| Indexed hash -> Index.mem t.pack.index hash
| Direct { offset; _ } ->
let io_offset = IO.offset t.pack.block in
let minimal_entry_length = Entry_prefix.min_length in
if
Int63.compare
(Int63.add offset (Int63.of_int minimal_entry_length))
io_offset
> 0
then (
if not t.readonly then
invalid_read
"invalid key %a checked for membership (IO offset = %a)" pp_key
k Int63.pp io_offset;
false)
else
let hash = io_read_and_decode_hash ~off:offset t in
let expected_hash = Key.to_hash k in
if not (Hash.equal hash expected_hash) then
invalid_read
"invalid key %a checked for membership (read hash %a at this \
offset instead)"
pp_key k pp_hash hash;
true
let unsafe_mem t k =
[%log.debug "[pack] mem %a" pp_key k];
Tbl.mem t.staging (Key.to_hash k)
|| Lru.mem t.lru (Key.to_hash k)
|| pack_file_contains_key t k
let mem t k =
let b = unsafe_mem t k in
Lwt.return b
let check_hash h v =
let h' = Val.hash v in
if equal_hash h h' then Ok () else Error (h, h')
let check_key k v = check_hash (Key.to_hash k) v
let io_read_and_decode ~off ~len t =
let () =
if not (IO.readonly t.pack.block) then
let io_offset = IO.offset t.pack.block in
if Int63.add off (Int63.of_int len) > io_offset then
invalid_read
"Got request to read %d bytes (at offset %a), but max IO offset \
is %a"
len Int63.pp off Int63.pp io_offset
in
let buf = Bytes.create len in
let n = IO.read t.pack.block ~off buf in
if n <> len then
invalid_read "Read %d bytes (at offset %a) but expected %d" n Int63.pp
off len;
let key_of_offset offset =
[%log.debug "key_of_offset: %a" Int63.pp offset];
let entry_prefix = io_read_and_decode_entry_prefix ~off:offset t in
match Entry_prefix.total_entry_length entry_prefix with
| Some length ->
Pack_key.v_direct ~hash:entry_prefix.hash ~offset ~length
| None ->
Pack_key.v_indexed entry_prefix.hash
in
let key_of_hash = Pack_key.v_indexed in
let dict = Dict.find t.pack.dict in
Val.decode_bin ~key_of_offset ~key_of_hash ~dict
(Bytes.unsafe_to_string buf)
(ref 0)
let pp_io ppf t =
let name = Filename.basename (Filename.dirname (IO.name t.pack.block)) in
let mode = if t.readonly then ":RO" else "" in
Fmt.pf ppf "%s%s" name mode
let find_in_pack_file ~check_integrity t key hash =
let loc, { offset; length } =
match Pack_key.inspect key with
| Direct { offset; length; _ } ->
(Stats.Find.Pack_direct, { offset; length })
| Indexed hash ->
let entry_span = get_entry_span_from_index_exn t hash in
Pack_key.promote_exn key ~offset:entry_span.offset
~length:entry_span.length;
(Stats.Find.Pack_indexed, entry_span)
in
let io_offset = IO.offset t.pack.block in
if Int63.add offset (Int63.of_int length) > io_offset then (
match t.readonly with
| false ->
invalid_read
"attempt to dereference invalid key %a (IO offset = %a)" pp_key
key Int63.pp io_offset
| true ->
[%log.debug
"Direct store key references an unknown starting offset %a \
(length = %d, IO offset = %a)"
Int63.pp offset length Int63.pp io_offset];
(Stats.Find.Not_found, None))
else
let v = io_read_and_decode ~off:offset ~len:length t in
Lru.add t.lru hash v;
(if check_integrity then
check_key key v |> function
| Ok () -> ()
| Error (expected, got) ->
corrupted_store "Got hash %a, expecting %a (for val: %a)." pp_hash
got pp_hash expected pp_value v);
(loc, Some v)
let unsafe_find ~check_integrity t k =
[%log.debug "[pack:%a] find %a" pp_io t pp_key k];
let hash = Key.to_hash k in
let location, value =
match Tbl.find t.staging hash with
| v ->
Lru.add t.lru hash v;
(Stats.Find.Staging, Some v)
| exception Not_found -> (
match Lru.find t.lru hash with
| v -> (Stats.Find.Lru, Some v)
| exception Not_found -> find_in_pack_file ~check_integrity t k hash
)
in
Stats.report_find ~location;
value
let find t k =
let v = unsafe_find ~check_integrity:true t k in
Lwt.return v
let cast t = (t :> read_write t)
let integrity_check ~offset ~length hash t =
try
let value = io_read_and_decode ~off:offset ~len:length t in
match check_hash hash value with
| Ok () -> Ok ()
| Error _ -> Error `Wrong_hash
with Invalid_read _ -> Error `Absent_value
let batch t f =
let* r = f (cast t) in
if Tbl.length t.staging = 0 then Lwt.return r
else (
flush t;
Lwt.return r)
let auto_flush = 1024
let unsafe_append ~ensure_unique ~overcommit t hash v =
let unguarded_append () =
[%log.debug "[pack] append %a" pp_hash hash];
let offset_of_key k =
match Pack_key.inspect k with
| Direct { offset; _ } ->
Stats.incr_appended_offsets ();
Some offset
| Indexed hash -> (
match Index.find t.pack.index hash with
| None ->
Stats.incr_appended_hashes ();
None
| Some (offset, _, _) ->
Stats.incr_appended_offsets ();
Some offset)
in
let kind = Val.kind v in
let () =
let value_version = Pack_value.Kind.version kind
and io_version = IO.version t.pack.block in
if Version.compare value_version io_version > 0 then
IO.set_version t.pack.block value_version
in
let dict = Dict.index t.pack.dict in
let off = IO.offset t.pack.block in
Val.encode_bin ~offset_of_key ~dict hash v (IO.append t.pack.block);
let len = Int63.to_int (IO.offset t.pack.block -- off) in
let key = Pack_key.v_direct ~hash ~offset:off ~length:len in
let () =
let kind = Val.kind v in
let should_index = t.pack.indexing_strategy ~value_length:len kind in
if should_index then
Index.add ~overcommit t.pack.index hash (off, len, kind)
in
if Tbl.length t.staging >= auto_flush then flush t
else Tbl.add t.staging hash v;
Lru.add t.lru hash v;
[%log.debug "[pack] append done %a <- %a" pp_hash hash pp_key key];
key
in
match ensure_unique with
| false -> unguarded_append ()
| true -> (
match index_direct t hash with
| None -> unguarded_append ()
| Some key -> key)
let unsafe_add t hash v =
unsafe_append ~ensure_unique:true ~overcommit:false t hash v |> Lwt.return
let add t v = unsafe_add t (Val.hash v) v
let unsafe_close t =
t.open_instances <- t.open_instances - 1;
if t.open_instances = 0 then (
[%log.debug "[pack] close %s" (IO.name t.pack.block)];
Tbl.clear t.staging;
Lru.clear t.lru;
close t.pack)
let close t =
unsafe_close t;
Lwt.return_unit
let clear t =
unsafe_clear t;
Lwt.return_unit
let clear_caches t =
Tbl.clear t.staging;
Lru.clear t.lru
let sync t =
let former_offset = IO.offset t.pack.block in
let offset = IO.force_offset t.pack.block in
if offset > former_offset then (
Dict.sync t.pack.dict;
Index.sync t.pack.index)
let offset t = IO.offset t.pack.block
end
module Make
(Val : Pack_value.Persistent with type hash := K.t and type key := Key.t) =
struct
module Inner = Make_without_close_checks (Val)
include Indexable.Closeable (Inner)
let v ?fresh ?readonly ?lru_size ~index ~indexing_strategy path =
Inner.v ?fresh ?readonly ?lru_size ~index ~indexing_strategy path
>|= make_closeable
let sync t = Inner.sync (get_open_exn t)
let flush ?index ?index_merge t =
Inner.flush ?index ?index_merge (get_open_exn t)
let offset t = Inner.offset (get_open_exn t)
let clear_caches t = Inner.clear_caches (get_open_exn t)
let integrity_check ~offset ~length k t =
Inner.integrity_check ~offset ~length k (get_open_exn t)
module Entry_prefix = Inner.Entry_prefix
let read_and_decode_entry_prefix = Inner.read_and_decode_entry_prefix
let index_direct_with_kind t = Inner.index_direct_with_kind (get_open_exn t)
end
end