Source file indexed_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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
open Store_sigs
open Store_errors
let blit ~src ~dst offset =
let len = Bytes.length src in
Bytes.blit src 0 dst offset len ;
offset + len
let bytes_set_int64 ~src ~dst offset =
Bytes.set_int64_be dst offset src ;
offset + 8
let bytes_set_int8 ~src ~dst offset =
Bytes.set_int8 dst offset src ;
offset + 1
let read_int64 str offset =
let i = TzEndian.get_int64_string str offset in
(i, offset + 8)
let read_int8 str offset =
let i = TzEndian.get_int8_string str offset in
(i, offset + 1)
module type NAME = sig
val name : string
end
module type SINGLETON_STORE = sig
type +'a t
type value
val load : path:string -> 'a mode -> 'a t tzresult Lwt.t
val read : [> `Read] t -> value option tzresult Lwt.t
val write : [> `Write] t -> value -> unit tzresult Lwt.t
val delete : [> `Write] t -> unit tzresult Lwt.t
val readonly : [> `Read] t -> [`Read] t
end
module type INDEXABLE_STORE = sig
type +'a t
type key
type value
val load :
path:string -> index_buffer_size:int -> 'a mode -> 'a t tzresult Lwt.t
val mem : [> `Read] t -> key -> bool tzresult Lwt.t
val find : [> `Read] t -> key -> value option tzresult Lwt.t
val add : ?flush:bool -> [> `Write] t -> key -> value -> unit tzresult Lwt.t
val close : _ t -> unit tzresult Lwt.t
val readonly : [> `Read] t -> [`Read] t
val gc :
?async:bool ->
rw t ->
(key -> value -> bool tzresult Lwt.t) ->
unit tzresult Lwt.t
val wait_gc_completion : 'a t -> unit Lwt.t
val is_gc_finished : 'a t -> bool
end
module type INDEXABLE_REMOVABLE_STORE = sig
include INDEXABLE_STORE
val remove : ?flush:bool -> [> `Write] t -> key -> unit tzresult Lwt.t
end
module type INDEXED_FILE = sig
type +'a t
type key
type value
val mem : [> `Read] t -> key -> bool tzresult Lwt.t
val read : [> `Read] t -> key -> (value * header) option tzresult Lwt.t
val append :
?flush:bool ->
[> `Write] t ->
key:key ->
header:header ->
value:value ->
unit tzresult Lwt.t
val load :
path:string ->
index_buffer_size:int ->
cache_size:int ->
'a mode ->
'a t tzresult Lwt.t
val close : _ t -> unit tzresult Lwt.t
val readonly : [> `Read] t -> [`Read] t
val gc :
?async:bool ->
rw t ->
(key -> header -> value -> bool tzresult Lwt.t) ->
unit tzresult Lwt.t
val wait_gc_completion : 'a t -> unit Lwt.t
val is_gc_finished : 'a t -> bool
end
module type SIMPLE_INDEXED_FILE = sig
include INDEXED_FILE
val append :
?flush:bool -> [> `Write] t -> key:key -> value:value -> unit tzresult Lwt.t
end
module type INDEX_KEY = sig
include Index.Key.S
val pp : Format.formatter -> t -> unit
end
module type ENCODABLE_VALUE = sig
type t
val name : string
val encoding : t Data_encoding.t
end
module type FIXED_ENCODABLE_VALUE = sig
include ENCODABLE_VALUE
val fixed_size : int
end
module Make_fixed_encodable (V : ENCODABLE_VALUE) :
FIXED_ENCODABLE_VALUE with type t = V.t = struct
include V
let fixed_size =
match Data_encoding.Binary.fixed_length encoding with
| None -> Stdlib.invalid_arg (name ^ " encoding is not fixed size")
| Some size -> size
end
module Make_index_value (E : FIXED_ENCODABLE_VALUE) :
Index.Value.S with type t = E.t = struct
type t = E.t
let encoded_size = E.fixed_size
let encode v =
Data_encoding.Binary.to_string_exn ~buffer_size:encoded_size E.encoding v
let decode buf offset =
let _read_bytes, v =
Data_encoding.Binary.read_exn E.encoding buf offset encoded_size
in
v
let t = Repr.map Repr.string (fun s -> decode s 0) encode
end
module Make_index_key (E : sig
include FIXED_ENCODABLE_VALUE
val equal : t -> t -> bool
end) : INDEX_KEY with type t = E.t = struct
include Make_index_value (E)
let equal = E.equal
let hash v = Stdlib.Hashtbl.hash (encode v)
let hash_size = 30
let pp ppf k =
Format.fprintf
ppf
"%a"
Data_encoding.Json.pp
(Data_encoding.Json.construct E.encoding k)
end
module Make_indexable (N : NAME) (K : INDEX_KEY) (V : Index.Value.S) = struct
module I = Index_unix.Make (K) (V) (Index.Cache.Unbounded)
type internal_index = {index : I.t; index_path : string}
type gc_status =
| No_gc
| Ongoing of {tmp_index : internal_index; promise : unit Lwt.t}
(** In order to periodically clean up the store with the {!gc} function, each
pure index store is split in multiple indexes: one fresh index and
multiple stale indexes (zero if no GC has ever occurred, one if the last
GC was successful, two if the GC is ongoing, and more in case some GC
failed).
Adding new information to the store is always done on the fresh index
whereas queries are done on both the fresh and stale indexes.
A gc operation starts by moving the fresh index to the stale list and
creates a new fresh index. The rest of the gc operation consists in,
asynchronously, merging the stale indexes while removing data. See {!gc}
for more details.
*)
type _ t = {
mutable fresh : internal_index;
mutable stales : internal_index list;
scheduler : Lwt_idle_waiter.t;
readonly : bool;
index_buffer_size : int;
path : string;
mutable gc_status : gc_status;
}
let internal_indexes ?(only_stale = false) store =
if only_stale then store.stales else store.fresh :: store.stales
let unsafe_mem store k =
List.exists (fun i -> I.mem i.index k) (internal_indexes store)
let mem store k =
let open Lwt_result_syntax in
trace (Cannot_read_from_store N.name)
@@ protect
@@ fun () ->
Lwt_idle_waiter.task store.scheduler @@ fun () ->
return (unsafe_mem store k)
let find_index i k = try Some (I.find i k) with Not_found -> None
let unsafe_find ?only_stale store k =
List.find_map
(fun i ->
try find_index i.index k
with e ->
Format.kasprintf
Stdlib.failwith
"cannot access index %s : %s"
i.index_path
(Printexc.to_string e))
(internal_indexes ?only_stale store)
let find store k =
let open Lwt_result_syntax in
trace (Cannot_read_from_store N.name)
@@ protect
@@ fun () ->
Lwt_idle_waiter.task store.scheduler @@ fun () ->
return (unsafe_find store k)
let add ?(flush = true) store k v =
let open Lwt_result_syntax in
trace (Cannot_write_to_store N.name)
@@ protect
@@ fun () ->
Lwt_idle_waiter.force_idle store.scheduler @@ fun () ->
I.replace store.fresh.index k v ;
if flush then I.flush store.fresh.index ;
return_unit
let stale_path path n = String.concat "." [path; string_of_int n]
let tmp_path path = String.concat "." [path; "tmp"]
let load_internal_index ~index_buffer_size ~readonly index_path =
let index = I.v ~log_size:index_buffer_size ~readonly index_path in
{index; index_path}
let load (type a) ~path ~index_buffer_size (mode : a mode) :
a t tzresult Lwt.t =
let open Lwt_result_syntax in
trace (Cannot_load_store {name = N.name; path})
@@ protect
@@ fun () ->
let*! () = Lwt_utils_unix.create_dir (Filename.dirname path) in
let readonly = match mode with Read_only -> true | Read_write -> false in
let fresh = load_internal_index ~index_buffer_size ~readonly path in
let rec load_stales acc n =
let open Lwt_syntax in
let stale_path = stale_path path n in
let*! exists = Lwt_unix.file_exists stale_path in
if exists then
let stale =
load_internal_index ~index_buffer_size ~readonly:true stale_path
in
load_stales (stale :: acc) (n + 1)
else return acc
in
let*! stales = load_stales [] 1 in
let scheduler = Lwt_idle_waiter.create () in
return
{
fresh;
stales;
scheduler;
readonly;
index_buffer_size;
path;
gc_status = No_gc;
}
let close_internal_index i = try I.close i.index with Index.Closed -> ()
let mv_internal_index store index dest =
let open Lwt_syntax in
close_internal_index index ;
let+ () = Lwt_unix.rename index.index_path dest in
load_internal_index
~index_buffer_size:store.index_buffer_size
~readonly:store.readonly
dest
let rm_internal_index index =
close_internal_index index ;
Lwt_utils_unix.remove_dir index.index_path
let close store =
protect @@ fun () ->
Lwt_idle_waiter.force_idle store.scheduler @@ fun () ->
let open Lwt_result_syntax in
(match store.gc_status with
| Ongoing {promise; _} -> Lwt.cancel promise
| No_gc -> ()) ;
close_internal_index store.fresh ;
List.iter close_internal_index store.stales ;
let*! () =
match store.gc_status with
| No_gc -> Lwt.return_unit
| Ongoing {tmp_index; _} -> rm_internal_index tmp_index
in
return_unit
let readonly x = (x :> [`Read] t)
(** A gc is initiated by moving the fresh index to the stale list and creating
a new fresh index, as well as creating a temporary index for the result of
the gc. *)
let initiate_gc store =
let open Lwt_syntax in
Lwt_idle_waiter.force_idle store.scheduler @@ fun () ->
let* () = Store_events.starting_gc N.name in
let tmp_index_path = tmp_path store.path in
let new_stale_path = stale_path store.path (List.length store.stales + 1) in
let* new_index_stale = mv_internal_index store store.fresh new_stale_path in
let new_index_fresh =
load_internal_index
~index_buffer_size:store.index_buffer_size
~readonly:store.readonly
store.path
in
let tmp_index =
load_internal_index
~index_buffer_size:store.index_buffer_size
~readonly:false
tmp_index_path
in
I.clear tmp_index.index ;
store.fresh <- new_index_fresh ;
store.stales <- new_index_stale :: store.stales ;
let promise, resolve = Lwt.task () in
store.gc_status <- Ongoing {tmp_index; promise} ;
return (tmp_index, promise, resolve)
(** If a gc operation fails, reverting simply consists in removing the
temporary index. We keep the two stale indexes as is, they will be merged
by the next successful gc. *)
let revert_failed_gc store =
let open Lwt_syntax in
match store.gc_status with
| No_gc -> return_unit
| Ongoing {tmp_index; promise} ->
Lwt.cancel promise ;
store.gc_status <- No_gc ;
rm_internal_index tmp_index
(** When the gc operation finishes, i.e. we have copied all elements to retain
to the temporary index, we can replace all the stale indexes by the
temporary one. *)
let finalize_gc store tmp_index =
let open Lwt_result_syntax in
protect @@ fun () ->
Lwt_idle_waiter.force_idle store.scheduler @@ fun () ->
let*! () = List.iter_s rm_internal_index store.stales in
let stale_path = stale_path store.path 1 in
let*! index_stale = mv_internal_index store tmp_index stale_path in
store.stales <- [index_stale] ;
store.gc_status <- No_gc ;
let*! () = Store_events.finished_gc N.name in
return_unit
(** Returns the elements of an index in an unspecified order. NOTE: the elements
are stored in memory. *)
let index_bindings i =
let acc = ref [] in
I.iter (fun k v -> acc := (k, v) :: !acc) i ;
!acc
(** The background task for a gc operation consists in copying all items that
satisfy [filter] from the stale indexes of [store] to the temporary one
[tmp_index]. While this is happening, the stale indexes can still be
queried and new bindings can still be added to the store because only the
fresh index is modified. *)
let gc_background_task store tmp_index filter resolve =
let open Lwt_syntax in
Lwt.dont_wait
(fun () ->
let* res =
trace (Gc_failed N.name) @@ protect
@@ fun () ->
let open Lwt_result_syntax in
let process_key_value (k, v) =
let* keep = filter k v in
if keep then I.replace tmp_index.index k v ;
return_unit
in
let process_internal_index i =
List.iter_es process_key_value (index_bindings i.index)
in
let stale_internal_indexes =
internal_indexes ~only_stale:true store |> List.rev
in
let* () =
List.iter_es process_internal_index stale_internal_indexes
in
finalize_gc store tmp_index
in
let* () =
match res with
| Ok () -> return_unit
| Error error ->
let* () = Store_events.failed_gc N.name error in
revert_failed_gc store
in
Lwt.wakeup_later resolve () ;
return_unit)
(fun exn ->
Format.eprintf
"Reverting GC for store %s failed because %s@."
N.name
(Printexc.to_string exn))
(** This function is called every time a gc operation starts. *)
let gc_internal ~async store filter =
let open Lwt_syntax in
match store.gc_status with
| Ongoing _ -> Store_events.ignore_gc N.name
| No_gc ->
let* tmp_index, promise, resolve = initiate_gc store in
gc_background_task store tmp_index filter resolve ;
if async then return_unit
else
Lwt.catch
(fun () -> promise)
(function Lwt.Canceled -> return_unit | e -> raise e)
let gc ?(async = true) store filter =
let open Lwt_result_syntax in
trace (Gc_failed N.name) @@ protect
@@ fun () ->
let*! () = gc_internal ~async store filter in
return_unit
let wait_gc_completion store =
match store.gc_status with
| No_gc -> Lwt.return_unit
| Ongoing {promise; _} ->
Lwt.catch
(fun () -> promise)
(function Lwt.Canceled -> Lwt.return_unit | e -> raise e)
let is_gc_finished store =
match store.gc_status with No_gc -> true | Ongoing _ -> false
end
module Make_indexable_removable (N : NAME) (K : INDEX_KEY) (V : Index.Value.S) =
struct
module V_opt = struct
type t = V.t option
let t = Repr.option V.t
let encoded_size = 1 + V.encoded_size
let encode v =
let dst = Bytes.create encoded_size in
let tag, value_bytes =
match v with
| None -> (0, Bytes.make V.encoded_size '\000')
| Some v -> (1, V.encode v |> Bytes.unsafe_of_string)
in
let offset = bytes_set_int8 ~dst ~src:tag 0 in
let _ = blit ~src:value_bytes ~dst offset in
Bytes.unsafe_to_string dst
let decode str offset =
let tag, offset = read_int8 str offset in
match tag with
| 0 -> None
| 1 ->
let value = V.decode str offset in
Some value
| _ -> assert false
end
include Make_indexable (N) (K) (V_opt)
let find store k =
let open Lwt_result_syntax in
let+ v = find store k in
match v with None | Some None -> None | Some (Some v) -> Some v
let mem store hash =
let open Lwt_result_syntax in
let+ b = find store hash in
Option.is_some b
let add ?flush store k v = add ?flush store k (Some v)
let remove ?(flush = true) store k =
let open Lwt_result_syntax in
trace (Cannot_write_to_store N.name)
@@ protect
@@ fun () ->
Lwt_idle_waiter.force_idle store.scheduler @@ fun () ->
let exists = unsafe_mem store k in
if not exists then return_unit
else (
I.replace store.fresh.index k None ;
if flush then I.flush store.fresh.index ;
return_unit)
let gc ?(async = true) store filter =
let open Lwt_result_syntax in
trace (Gc_failed N.name) @@ protect
@@ fun () ->
let filter k = function None -> return_false | Some v -> filter k v in
let*! () = gc_internal ~async store filter in
return_unit
end
module Make_singleton (S : sig
type t
val name : string
val encoding : t Data_encoding.t
end) : SINGLETON_STORE with type value := S.t = struct
type +'a t = {file : string; mutable cache : S.t option option}
let read_disk store =
let open Lwt_result_syntax in
trace (Cannot_read_from_store S.name)
@@ protect
@@ fun () ->
let*! exists = Lwt_unix.file_exists store.file in
match exists with
| false -> return_none
| true -> (
Lwt_io.with_file
~flags:[Unix.O_RDONLY; O_CLOEXEC]
~mode:Input
store.file
@@ fun channel ->
let*! raw_data = Lwt_io.read channel in
let data = Data_encoding.Binary.of_string S.encoding raw_data in
match data with
| Ok data -> return_some data
| Error err -> tzfail (Decoding_error err))
let read store =
let open Lwt_result_syntax in
match store.cache with
| Some v -> return v
| None ->
let* value = read_disk store in
store.cache <- Some value ;
return value
let write_disk store x =
let open Lwt_result_syntax in
trace (Cannot_write_to_store S.name)
@@ let*! res =
Lwt_utils_unix.with_atomic_open_out ~overwrite:true store.file
@@ fun fd ->
let block_bytes = Data_encoding.Binary.to_bytes_exn S.encoding x in
Lwt_utils_unix.write_bytes fd block_bytes
in
Result.bind_error res Lwt_utils_unix.tzfail_of_io_error |> Lwt.return
let write store x =
let open Lwt_result_syntax in
let+ () = write_disk store x in
store.cache <- Some (Some x)
let delete_disk store =
let open Lwt_result_syntax in
trace (Cannot_write_to_store S.name)
@@ protect
@@ fun () ->
let*! exists = Lwt_unix.file_exists store.file in
match exists with
| false -> return_unit
| true ->
let*! () = Lwt_unix.unlink store.file in
return_unit
let delete store =
let open Lwt_result_syntax in
let+ () = delete_disk store in
store.cache <- Some None
let load ~path _mode =
let open Lwt_result_syntax in
trace (Cannot_load_store {name = S.name; path})
@@ protect
@@ fun () ->
let*! () = Lwt_utils_unix.create_dir (Filename.dirname path) in
return {file = path; cache = None}
let readonly x = (x :> [`Read] t)
end
module Make_indexed_file (N : NAME) (K : INDEX_KEY) (V : ENCODABLE_VALUE_HEADER) =
struct
module Cache =
Aches_lwt.Lache.Make_result (Aches.Rache.Transfer (Aches.Rache.LRU) (K))
module Values_file = struct
let encoding = Data_encoding.dynamic_size ~kind:`Uint30 V.encoding
let pread_value fd ~file_offset =
let open Lwt_result_syntax in
trace (Cannot_read_from_store N.name)
@@ protect
@@ fun () ->
let length_bytes = Bytes.create 4 in
let*! () =
Lwt_utils_unix.read_bytes ~file_offset ~pos:0 ~len:4 fd length_bytes
in
let value_length_int32 = Bytes.get_int32_be length_bytes 0 in
let value_length = Int32.to_int value_length_int32 in
let value_bytes = Bytes.extend length_bytes 0 value_length in
let*! () =
Lwt_utils_unix.read_bytes
~file_offset:(file_offset + 4)
~pos:4
~len:value_length
fd
value_bytes
in
match Data_encoding.Binary.of_bytes encoding value_bytes with
| Ok value -> return (value, 4 + value_length)
| Error err -> tzfail (Decoding_error err)
end
type internal_store = {
index : Header_index.t;
fd : Lwt_unix.file_descr;
index_path : string;
data_path : string;
}
type gc_status =
| No_gc
| Ongoing of {tmp_store : internal_store; promise : unit Lwt.t}
(** In order to periodically clean up the store with the {!gc} function, each
store is split in multiple stores: one fresh store and multiple stale
stores (zero if no GC has ever occurred, one if the last GC was
successful, two if the GC is ongoing, and more in case some GC failed).
Adding new information to the store is always done on the fresh store
whereas queries are done on both the fresh and stale stores.
A gc operation starts by moving the fresh store to the stale list and
creates a new fresh store. The rest of the gc operation consists in,
asynchronously, merging the stale stores while removing data. See {!gc}
for more details.
*)
type _ t = {
mutable fresh : internal_store;
mutable stales : internal_store list;
scheduler : Lwt_idle_waiter.t;
readonly : bool;
index_buffer_size : int;
path : string;
cache : (V.t * V.Header.t, tztrace) Cache.t;
mutable gc_status : gc_status;
}
let internal_stores ?(only_stale = false) store =
if only_stale then store.stales else store.fresh :: store.stales
let unsafe_mem store k =
List.exists (fun s -> Header_index.mem s.index k) (internal_stores store)
let mem store key =
let open Lwt_result_syntax in
trace (Cannot_read_from_store IHeader.name)
@@ protect
@@ fun () ->
Lwt_idle_waiter.task store.scheduler @@ fun () ->
let cached =
Cache.bind store.cache key (fun v -> Lwt.return (Result.is_ok v))
in
let*! cached = Option.value cached ~default:Lwt.return_false in
return (cached || unsafe_mem store key)
let find_index i k = try Some (Header_index.find i k) with Not_found -> None
let ?only_stale store k =
List.find_map
(fun s ->
Option.map
(fun h -> (h, s))
(try find_index s.index k
with e ->
Format.kasprintf
Stdlib.failwith
"cannot access index %s : %s"
s.index_path
(Printexc.to_string e)))
(internal_stores ?only_stale store)
let store key =
let open Lwt_result_syntax in
trace (Cannot_read_from_store IHeader.name)
@@ protect
@@ fun () ->
Lwt_idle_waiter.task store.scheduler @@ fun () ->
let cached =
Cache.bind store.cache key @@ function
| Ok (_value, ) -> return header
| Error _ as e -> Lwt.return e
in
match cached with
| Some -> Lwt_result.map Option.some header
| None -> (
match unsafe_find_header store key with
| None -> return_none
| Some ({; _}, _store) -> return_some header)
let unsafe_read_from_disk_opt ?only_stale store key =
let open Lwt_result_syntax in
match unsafe_find_header ?only_stale store key with
| None -> return_none
| Some ({IHeader.offset; }, internal_store) ->
let+ value, _ofs =
Values_file.pread_value internal_store.fd ~file_offset:offset
in
Some (value, header)
let unsafe_read_from_disk store key =
let open Lwt_result_syntax in
let* r = unsafe_read_from_disk_opt store key in
match r with None -> tzfail (Exn Not_found) | Some r -> return r
let read store key =
trace (Cannot_read_from_store IHeader.name)
@@ protect
@@ fun () ->
Lwt_idle_waiter.task store.scheduler @@ fun () ->
let read_from_disk key = unsafe_read_from_disk store key in
let open Lwt_result_syntax in
Cache.bind_or_put store.cache key read_from_disk @@ function
| Ok value -> return_some value
| Error _ -> return_none
let locked_write_value store ~offset ~value ~key ~ =
trace_eval (fun () -> Cannot_write_to_store N.name)
@@ protect
@@ fun () ->
let open Lwt_result_syntax in
let value_bytes =
Data_encoding.Binary.to_bytes_exn Values_file.encoding value
in
let value_length = Bytes.length value_bytes in
let*! () =
Lwt_utils_unix.write_bytes ~pos:0 ~len:value_length store.fd value_bytes
in
Header_index.replace store.index key {offset; header} ;
return value_length
let unsafe_append_internal ?(flush = true) store ~key ~ ~value =
let open Lwt_result_syntax in
let*! offset = Lwt_unix.lseek store.fd 0 Unix.SEEK_END in
let*! _written_len = locked_write_value store ~offset ~value ~key ~header in
if flush then Header_index.flush store.index ;
return_unit
let append ?(flush = true) store ~key ~ ~value =
trace (Cannot_write_to_store N.name)
@@ protect
@@ fun () ->
let open Lwt_result_syntax in
Lwt_idle_waiter.force_idle store.scheduler @@ fun () ->
Cache.put store.cache key (return (value, header)) ;
unsafe_append_internal ~flush store.fresh ~key ~header ~value
let stale_path path n = Filename.concat path (string_of_int n)
let tmp_path path = Filename.concat path "tmp"
let data_path path = Filename.concat path "data"
let index_path path = Filename.concat path "index"
let load_internal_store ~index_buffer_size ~readonly path =
let open Lwt_syntax in
let flag = if readonly then Unix.O_RDONLY else Unix.O_RDWR in
let* () = Lwt_utils_unix.create_dir path in
let data_path = data_path path in
let* fd =
Lwt_unix.openfile data_path [Unix.O_CREAT; O_CLOEXEC; flag] 0o644
in
let index_path = index_path path in
let index =
Header_index.v ~log_size:index_buffer_size ~readonly index_path
in
return {index; fd; index_path; data_path}
let load (type a) ~path ~index_buffer_size ~cache_size (mode : a mode) :
a t tzresult Lwt.t =
let open Lwt_result_syntax in
trace (Cannot_load_store {name = N.name; path})
@@ protect
@@ fun () ->
let readonly = match mode with Read_only -> true | Read_write -> false in
let*! fresh = load_internal_store ~index_buffer_size ~readonly path in
let rec load_stales acc n =
let open Lwt_syntax in
let stale_path = stale_path path n in
let*! exists = Lwt_unix.file_exists stale_path in
if exists then
let*! stale =
load_internal_store ~index_buffer_size ~readonly:true stale_path
in
load_stales (stale :: acc) (n + 1)
else return acc
in
let*! stales = load_stales [] 1 in
let scheduler = Lwt_idle_waiter.create () in
let cache = Cache.create cache_size in
return
{
fresh;
stales;
scheduler;
readonly;
index_buffer_size;
path;
cache;
gc_status = No_gc;
}
let close_internal_store store =
(try Header_index.close store.index with Index.Closed -> ()) ;
Lwt_utils_unix.safe_close store.fd
let mv_internal_store store internal_store dest =
let open Lwt_result_syntax in
let* () = close_internal_store internal_store in
let*! () = Lwt_utils_unix.create_dir dest in
let*! () = Lwt_unix.rename internal_store.index_path (index_path dest) in
let*! () = Lwt_unix.rename internal_store.data_path (data_path dest) in
let*! new_store =
load_internal_store
~index_buffer_size:store.index_buffer_size
~readonly:store.readonly
dest
in
return new_store
let rm_internal_store store =
let path = Filename.dirname store.index_path in
let open Lwt_result_syntax in
let* () = close_internal_store store in
assert (path = Filename.dirname store.data_path) ;
let*! () = Lwt_utils_unix.remove_dir path in
return_unit
let close store =
protect @@ fun () ->
Lwt_idle_waiter.force_idle store.scheduler @@ fun () ->
let open Lwt_result_syntax in
(match store.gc_status with
| Ongoing {promise; _} -> Lwt.cancel promise
| No_gc -> ()) ;
let* () = close_internal_store store.fresh
and* () = List.iter_ep close_internal_store store.stales
and* () =
match store.gc_status with
| No_gc -> return_unit
| Ongoing {tmp_store; _} -> rm_internal_store tmp_store
in
return_unit
let readonly x = (x :> [`Read] t)
(** A gc is initiated by moving the fresh store to the stale list and creating
a new fresh store, as well as creating a temporary store for the result of
the gc. *)
let initiate_gc store =
let open Lwt_result_syntax in
Lwt_idle_waiter.force_idle store.scheduler @@ fun () ->
let*! () = Store_events.starting_gc N.name in
let tmp_store_path = tmp_path store.path in
let new_stale_path = stale_path store.path (List.length store.stales + 1) in
let* new_store_stale = mv_internal_store store store.fresh new_stale_path in
let*! new_store_fresh =
load_internal_store
~index_buffer_size:store.index_buffer_size
~readonly:store.readonly
store.path
in
let*! tmp_store =
load_internal_store
~index_buffer_size:store.index_buffer_size
~readonly:false
tmp_store_path
in
Header_index.clear tmp_store.index ;
let*! () = Lwt_unix.ftruncate tmp_store.fd 0 in
store.fresh <- new_store_fresh ;
store.stales <- new_store_stale :: store.stales ;
let promise, resolve = Lwt.task () in
store.gc_status <- Ongoing {tmp_store; promise} ;
return (tmp_store, promise, resolve)
(** If a gc operation fails, reverting simply consists in removing the
temporary store. We keep the two stale stores as is, they will be merged
by the next successful gc. *)
let revert_failed_gc store =
let open Lwt_syntax in
match store.gc_status with
| No_gc -> return_unit
| Ongoing {tmp_store; promise} -> (
Lwt.cancel promise ;
let+ res = rm_internal_store tmp_store in
match res with
| Ok () -> ()
| Error _e -> ())
(** When the gc operation finishes, i.e. we have copied all elements to retain
to the temporary store, we can replace all the stale stores by the
temporary one. *)
let finalize_gc store tmp_store =
let open Lwt_result_syntax in
protect @@ fun () ->
Lwt_idle_waiter.force_idle store.scheduler @@ fun () ->
let* () = List.iter_es rm_internal_store store.stales in
let stale_path = stale_path store.path 1 in
let* store_stale = mv_internal_store store tmp_store stale_path in
store.stales <- [store_stale] ;
store.gc_status <- No_gc ;
Cache.clear store.cache ;
let*! () = Store_events.finished_gc N.name in
return_unit
(** Returns the elements of an index in an unspecified order. NOTE: the elements
are stored in memory. *)
let i =
let acc = ref [] in
Header_index.iter (fun k v -> acc := (k, v) :: !acc) i ;
!acc
(** The background task for a gc operation consists in copying all items from
the stale stores of [store] that satisfy [filter] to the temporary one
[tmp_store]. While this is happening, the stale stores can still be
queried and new bindings can still be added to the store because only the
fresh store is modified. *)
let gc_background_task store tmp_store filter resolve =
let open Lwt_result_syntax in
Lwt.dont_wait
(fun () ->
let*! res =
trace (Gc_failed N.name) @@ protect
@@ fun () ->
let internal_store (key, {IHeader.offset; })
=
let* value, _ofs =
Values_file.pread_value internal_store.fd ~file_offset:offset
in
let* keep = filter key header value in
if keep then unsafe_append_internal tmp_store ~key ~header ~value
else return_unit
in
let process_internal_store internal_store =
List.iter_es
(process_key_header internal_store)
(index_header_bindings internal_store.index)
in
let stale_internal_stores =
internal_stores ~only_stale:true store |> List.rev
in
let* () = List.iter_es process_internal_store stale_internal_stores in
finalize_gc store tmp_store
in
let*! () =
let open Lwt_syntax in
match res with
| Ok () -> return_unit
| Error error ->
let* () = Store_events.failed_gc N.name error in
revert_failed_gc store
in
Lwt.wakeup_later resolve () ;
Lwt.return_unit)
(fun exn ->
Format.eprintf
"Reverting GC for store %s failed because %s@."
N.name
(Printexc.to_string exn))
let gc_internal ~async store filter =
let open Lwt_result_syntax in
match store.gc_status with
| Ongoing _ ->
let*! () = Store_events.ignore_gc N.name in
return_unit
| No_gc ->
let* tmp_store, promise, resolve = initiate_gc store in
gc_background_task store tmp_store filter resolve ;
if async then return_unit
else
Lwt.catch
(fun () ->
let*! () = promise in
return_unit)
(function Lwt.Canceled -> return_unit | e -> raise e)
let gc ?(async = true) store filter =
trace (Gc_failed N.name) @@ gc_internal ~async store filter
let wait_gc_completion store =
match store.gc_status with
| No_gc -> Lwt.return_unit
| Ongoing {promise; _} ->
Lwt.catch
(fun () -> promise)
(function Lwt.Canceled -> Lwt.return_unit | e -> raise e)
let is_gc_finished store =
match store.gc_status with No_gc -> true | Ongoing _ -> false
end
module Make_simple_indexed_file
(N : NAME)
(K : INDEX_KEY) (V : sig
include ENCODABLE_VALUE_HEADER
end) =
struct
include Make_indexed_file (N) (K) (V)
let append ?flush store ~key ~value =
append ?flush store ~key ~value ~header:(V.header value)
end