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
open! Import
include Pack_store_intf
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
(V : Version.S)
(Index : Pack_index.S)
(K : Irmin.Hash.S with type t = Index.key) :
Maker with type key = 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.Make (V)
type index = Index.t
type 'a t = {
mutable block : IO.t;
index : Index.t;
dict : Dict.t;
mutable open_instances : int;
}
let clear ?keep_generation t =
if IO.offset t.block <> Int63.zero then (
Index.clear t.index;
match V.version with
| `V1 -> IO.truncate t.block
| `V2 ->
IO.clear ?keep_generation t.block;
Dict.clear t.dict)
let valid t =
if t.open_instances <> 0 then (
t.open_instances <- t.open_instances + 1;
true)
else false
let unsafe_v ~index ~fresh ~readonly file =
let root = Filename.dirname file in
let dict = Dict.v ~fresh ~readonly root in
let block = IO.v ~version:(Some V.version) ~fresh ~readonly file in
{ block; index; dict; open_instances = 1 }
let IO_cache.{ v } =
IO_cache.memoize ~clear ~valid ~v:(fun index -> unsafe_v ~index) Layout.pack
type key = K.t
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.S with type hash := K.t) =
struct
module H = struct
include K
let hash = K.short_hash
let equal = Irmin.Type.(unstage (equal K.t))
end
module Tbl = Table (K)
module Lru = Irmin.Private.Lru.Make (H)
type nonrec 'a t = {
pack : 'a t;
lru : Val.t Lru.t;
staging : Val.t Tbl.t;
mutable open_instances : int;
readonly : bool;
}
type key = K.t
let equal_key = Irmin.Type.(unstage (equal K.t))
type value = Val.t
type index = Index.t
let unsafe_clear ?keep_generation t =
clear ?keep_generation t.pack;
Tbl.clear t.staging;
Lru.clear t.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 ~no_callback:() t.pack.index;
Tbl.clear t.staging
let unsafe_v_no_cache ~fresh ~readonly ~lru_size ~index root =
let pack = v index ~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 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 root in
if fresh then unsafe_clear t;
Hashtbl.add roots (root, readonly) t;
t
let v ?fresh ?readonly ?lru_size ~index root =
let t = unsafe_v ?fresh ?readonly ?lru_size ~index root in
Lwt.return t
let pp_hash = Irmin.Type.pp K.t
let decode_key = Irmin.Type.(unstage (decode_bin K.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);
let _, v = decode_key (Bytes.unsafe_to_string buf) 0 in
v
let unsafe_mem t k =
Log.debug (fun l -> l "[pack] mem %a" pp_hash k);
Tbl.mem t.staging k || Lru.mem t.lru k || Index.mem t.pack.index k
let mem t k =
let b = unsafe_mem t k in
Lwt.return b
let check_key k v =
let k' = Val.hash v in
if equal_key k k' then Ok () else Error (k, k')
exception Invalid_read
let io_read_and_decode ~off ~len t =
if (not (IO.readonly t.pack.block)) && off > IO.offset t.pack.block then
raise Invalid_read;
let buf = Bytes.create len in
let n = IO.read t.pack.block ~off buf in
if n <> len then raise Invalid_read;
let hash off = io_read_and_decode_hash ~off t in
let dict = Dict.find t.pack.dict in
Val.decode_bin ~hash ~dict (Bytes.unsafe_to_string buf) 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 unsafe_find ~check_integrity t k =
Log.debug (fun l -> l "[pack:%a] find %a" pp_io t pp_hash k);
Stats.incr_finds ();
match Tbl.find t.staging k with
| v ->
Lru.add t.lru k v;
Some v
| exception Not_found -> (
match Lru.find t.lru k with
| v -> Some v
| exception Not_found -> (
Stats.incr_cache_misses ();
match Index.find t.pack.index k with
| None -> None
| Some (off, len, _) ->
let v = snd (io_read_and_decode ~off ~len t) in
(if check_integrity then
check_key k v |> function
| Ok () -> ()
| Error (expected, got) ->
Fmt.failwith "corrupted value: got %a, expecting %a."
pp_hash got pp_hash expected);
Lru.add t.lru k v;
Some v))
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 k t =
try
let value = snd (io_read_and_decode ~off:offset ~len:length t) in
match check_key k 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 k v =
if ensure_unique && unsafe_mem t k then ()
else (
Log.debug (fun l -> l "[pack] append %a" pp_hash k);
let offset k =
match Index.find t.pack.index k with
| None ->
Stats.incr_appended_hashes ();
None
| Some (off, _, _) ->
Stats.incr_appended_offsets ();
Some off
in
let dict = Dict.index t.pack.dict in
let off = IO.offset t.pack.block in
Val.encode_bin ~offset ~dict v k (IO.append t.pack.block);
let len = Int63.to_int (IO.offset t.pack.block -- off) in
Index.add ~overcommit t.pack.index k (off, len, Val.kind v);
if Tbl.length t.staging >= auto_flush then flush t
else Tbl.add t.staging k v;
Lru.add t.lru k v)
let add t v =
let k = Val.hash v in
unsafe_append ~ensure_unique:true ~overcommit:false t k v;
Lwt.return k
let unsafe_add t k v =
unsafe_append ~ensure_unique:true ~overcommit:false t k v;
Lwt.return ()
let unsafe_close t =
t.open_instances <- t.open_instances - 1;
if t.open_instances = 0 then (
Log.debug (fun l -> l "[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_keep_generation t =
unsafe_clear ~keep_generation:() t;
Lwt.return_unit
let clear_caches t =
Tbl.clear t.staging;
Lru.clear t.lru
let sync ?(on_generation_change = Fun.id) t =
let former_offset = IO.offset t.pack.block in
let former_generation = IO.generation t.pack.block in
let h = IO.force_headers t.pack.block in
if former_generation <> h.generation then (
Log.debug (fun l -> l "[pack] generation changed, refill buffers");
clear_caches t;
on_generation_change ();
IO.close t.pack.block;
let block =
IO.v ~fresh:false ~version:(Some V.version) ~readonly:true
(IO.name t.pack.block)
in
t.pack.block <- block;
Dict.sync t.pack.dict;
Index.sync t.pack.index)
else if h.offset > former_offset then (
Dict.sync t.pack.dict;
Index.sync t.pack.index)
let version t = IO.version t.pack.block
let generation t = IO.generation t.pack.block
let offset t = IO.offset t.pack.block
end
module Make (Val : Pack_value.S with type hash := K.t) = struct
module Inner = Make_without_close_checks (Val)
include Content_addressable.Closeable (Inner)
let v ?fresh ?readonly ?lru_size ~index path =
Inner.v ?fresh ?readonly ?lru_size ~index path >|= make_closeable
type index = Inner.index
let sync ?on_generation_change t =
Inner.sync ?on_generation_change (get_open_exn t)
let flush ?index ?index_merge t =
Inner.flush ?index ?index_merge (get_open_exn t)
let version t = Inner.version (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)
end
end