Source file cemented_block_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
open Store_errors
module Cemented_block_level_index =
Index_unix.Make (Block_key) (Block_level) (Index.Cache.Unbounded)
module Cemented_block_hash_index =
Index_unix.Make (Block_level) (Block_key) (Index.Cache.Unbounded)
type cemented_metadata_file = {
start_level : int32;
end_level : int32;
metadata_file : [`Cemented_blocks_metadata] Naming.file;
}
module Metadata_fd_cache =
Aches.Rache.Borrow
(Aches.Rache.LRU)
(struct
include String
let hash = Stdlib.Hashtbl.hash
end)
type cemented_blocks_file = {
start_level : int32;
end_level : int32;
file : [`Cemented_blocks_file] Naming.file;
}
type metadata_handler = {fd : Zip.in_file; waiter : Lwt_idle_waiter.t}
type t = {
cemented_blocks_dir : [`Cemented_blocks_dir] Naming.directory;
cemented_block_level_index : Cemented_block_level_index.t;
cemented_block_hash_index : Cemented_block_hash_index.t;
mutable cemented_blocks_files : cemented_blocks_file array option;
metadata_fd_cache : metadata_handler Metadata_fd_cache.t;
}
type chunk_iterator = {
chunk_length : int;
reading_sequence : (Block_hash.t * int * bytes) tzresult Lwt.t Seq.t;
}
let make_chunk_iterator bl =
let chunk_length = List.length bl in
let reading_sequence =
List.to_seq bl
|> Seq.map (fun b ->
let open Lwt_result_syntax in
let hash = Block_repr.hash b in
let b = Data_encoding.Binary.to_bytes_exn Block_repr.encoding b in
return (hash, Bytes.length b, b))
in
{chunk_length; reading_sequence}
let cemented_blocks_files {cemented_blocks_files; _} = cemented_blocks_files
let cemented_blocks_file_length {start_level; end_level; _} =
Int32.(succ (sub end_level start_level))
let cemented_block_level_index {cemented_block_level_index; _} =
cemented_block_level_index
let cemented_block_hash_index {cemented_block_hash_index; _} =
cemented_block_hash_index
let default_index_log_size = 10_000
let default_compression_level = 9
let default_metadata_fd_cache_size = 5
let init_metadata_fd_cache () =
let destroyer _key {fd; waiter} =
Unit.catch (fun () ->
Lwt.dont_wait
(fun () ->
Lwt_idle_waiter.task waiter @@ fun () ->
Zip.close_in fd ;
Lwt.return_unit)
(fun _exn -> ()))
in
Metadata_fd_cache.create destroyer default_metadata_fd_cache_size
let create ~log_size cemented_blocks_dir =
let open Lwt_result_syntax in
protect (fun () ->
let cemented_blocks_dir_path = Naming.dir_path cemented_blocks_dir in
let cemented_blocks_metadata_dir =
cemented_blocks_dir |> Naming.cemented_blocks_metadata_dir
in
let cemented_blocks_metadata_dir_path =
Naming.dir_path cemented_blocks_metadata_dir
in
let* () =
Lwt.catch
(fun () ->
let*! () = Lwt_utils_unix.create_dir cemented_blocks_dir_path in
let*! () =
Lwt_utils_unix.create_dir cemented_blocks_metadata_dir_path
in
return_unit)
(function
| Failure s when s = "Not a directory" ->
tzfail
(Store_errors.Failed_to_init_cemented_block_store
cemented_blocks_dir_path)
| e -> Lwt.reraise e)
in
let cemented_block_level_index =
Cemented_block_level_index.v
~readonly:false
~log_size
(cemented_blocks_dir |> Naming.cemented_blocks_level_index_dir
|> Naming.dir_path)
in
let cemented_block_hash_index =
Cemented_block_hash_index.v
~readonly:false
~log_size
(cemented_blocks_dir |> Naming.cemented_blocks_hash_index_dir
|> Naming.dir_path)
in
let cemented_blocks_files = None in
let metadata_fd_cache = init_metadata_fd_cache () in
let cemented_store =
{
cemented_blocks_dir;
cemented_block_level_index;
cemented_block_hash_index;
cemented_blocks_files;
metadata_fd_cache;
}
in
return cemented_store)
let compare_cemented_files {start_level; _} {start_level = start_level'; _} =
Compare.Int32.compare start_level start_level'
let compare_cemented_metadata ({start_level; _} : cemented_metadata_file)
({start_level = start_level'; _} : cemented_metadata_file) =
Compare.Int32.compare start_level start_level'
let load_table cemented_blocks_dir =
let open Lwt_result_syntax in
protect (fun () ->
let cemented_blocks_dir_path = Naming.dir_path cemented_blocks_dir in
let*! dir_handle = Lwt_unix.opendir cemented_blocks_dir_path in
let rec loop acc =
let*! filename =
Option.catch_s
~catch_only:(function End_of_file -> true | _ -> false)
(fun () -> Lwt_unix.readdir dir_handle)
in
match filename with
| Some filename -> (
let levels = String.split_on_char '_' filename in
match levels with
| [start_level; end_level] -> (
let start_level_opt = Int32.of_string_opt start_level in
let end_level_opt = Int32.of_string_opt end_level in
match (start_level_opt, end_level_opt) with
| Some start_level, Some end_level ->
let file =
Naming.cemented_blocks_file
cemented_blocks_dir
~start_level
~end_level
in
loop ({start_level; end_level; file} :: acc)
| _ -> loop acc)
| _ -> loop acc)
| None -> Lwt.return acc
in
let*! cemented_files_list =
Lwt.finalize
(fun () -> loop [])
(fun () -> Lwt_unix.closedir dir_handle)
in
match cemented_files_list with
| [] -> return_none
| cemented_files_list ->
let cemented_files_array = Array.of_list cemented_files_list in
Array.sort compare_cemented_files cemented_files_array ;
return_some cemented_files_array)
let load_metadata_table cemented_blocks_dir =
let open Lwt_result_syntax in
protect (fun () ->
let cemented_metadata_dir =
Naming.cemented_blocks_metadata_dir cemented_blocks_dir
in
let metadata_dir_path = Naming.dir_path cemented_metadata_dir in
let*! exists = Lwt_unix.file_exists metadata_dir_path in
if exists then (
let*! dir_handle = Lwt_unix.opendir metadata_dir_path in
let rec loop acc =
let*! filename =
Option.catch_s
~catch_only:(function End_of_file -> true | _ -> false)
(fun () -> Lwt_unix.readdir dir_handle)
in
match filename with
| Some filename -> (
let levels =
String.split_on_char '_' (Filename.remove_extension filename)
in
match levels with
| [start_level; end_level] -> (
let start_level_opt = Int32.of_string_opt start_level in
let end_level_opt = Int32.of_string_opt end_level in
match (start_level_opt, end_level_opt) with
| Some start_level, Some end_level ->
let file =
Naming.cemented_blocks_file
cemented_blocks_dir
~start_level
~end_level
in
let metadata_file =
Naming.cemented_blocks_metadata_file
cemented_metadata_dir
file
in
loop ({start_level; end_level; metadata_file} :: acc)
| _ -> loop acc)
| _ -> loop acc)
| None -> Lwt.return acc
in
let*! cemented_files =
Lwt.finalize
(fun () -> loop [])
(fun () -> Lwt_unix.closedir dir_handle)
in
match cemented_files with
| [] -> return_none
| cemented_files_list ->
let cemented_files_array = Array.of_list cemented_files_list in
Array.sort compare_cemented_metadata cemented_files_array ;
return_some cemented_files_array)
else return_none)
let cemented_metadata_files cemented_block_store =
load_metadata_table cemented_block_store.cemented_blocks_dir
let load ~readonly ~log_size cemented_blocks_dir =
let open Lwt_result_syntax in
let cemented_block_level_index =
Cemented_block_level_index.v
~readonly
~log_size
(cemented_blocks_dir |> Naming.cemented_blocks_level_index_dir
|> Naming.dir_path)
in
let cemented_block_hash_index =
Cemented_block_hash_index.v
~readonly
~log_size
(cemented_blocks_dir |> Naming.cemented_blocks_hash_index_dir
|> Naming.dir_path)
in
let* cemented_blocks_files = load_table cemented_blocks_dir in
let metadata_fd_cache = init_metadata_fd_cache () in
let cemented_store =
{
cemented_blocks_dir;
cemented_block_level_index;
cemented_block_hash_index;
cemented_blocks_files;
metadata_fd_cache;
}
in
return cemented_store
let init ?(log_size = default_index_log_size) chain_dir ~readonly =
let open Lwt_result_syntax in
let cemented_blocks_dir = Naming.cemented_blocks_dir chain_dir in
let cemented_blocks_dir_path = Naming.dir_path cemented_blocks_dir in
let*! b = Lwt_unix.file_exists cemented_blocks_dir_path in
match b with
| true ->
let*! is_directory =
Lwt_utils_unix.is_directory cemented_blocks_dir_path
in
let* () =
fail_unless
is_directory
(Failed_to_init_cemented_block_store cemented_blocks_dir_path)
in
load ~readonly ~log_size cemented_blocks_dir
| false -> create ~log_size cemented_blocks_dir
let close cemented_store =
(try
Cemented_block_level_index.close cemented_store.cemented_block_level_index
with Index.Closed -> ()) ;
(try Cemented_block_hash_index.close cemented_store.cemented_block_hash_index
with Index.Closed -> ()) ;
Metadata_fd_cache.clear cemented_store.metadata_fd_cache
let offset_length = 4
let find_block_file cemented_store block_level =
try
if Compare.Int32.(block_level < 0l) then None
else
match cemented_store.cemented_blocks_files with
| None -> None
| Some cemented_blocks_files ->
let length = Array.length cemented_blocks_files in
let last_interval =
cemented_blocks_file_length cemented_blocks_files.(length - 1)
in
let heuristic_initial_pivot =
match block_level with
| 0l | 1l -> 0
| _ ->
Compare.Int.min
(length - 1)
(1 + Int32.(to_int (div (sub block_level 2l) last_interval)))
in
let rec loop (inf, sup) pivot =
if pivot < inf || pivot > sup || inf > sup then None
else
let ({start_level; end_level; _} as res) =
cemented_blocks_files.(pivot)
in
if
Compare.Int32.(
block_level >= start_level && block_level <= end_level)
then
Some res
else if Compare.Int32.(block_level > end_level) then
let new_pivot = pivot + max 1 ((sup - pivot) / 2) in
loop (pivot, sup) new_pivot
else
let new_pivot = pivot - max 1 ((pivot - inf) / 2) in
loop (inf, pivot) new_pivot
in
loop (0, length - 1) heuristic_initial_pivot
with _ -> None
let compute_location cemented_store block_level =
let open Option_syntax in
let+ {start_level; file; _} = find_block_file cemented_store block_level in
let level_delta = Int32.(to_int (sub block_level start_level)) in
(file, level_delta)
let is_cemented cemented_store hash =
try
Cemented_block_level_index.mem
cemented_store.cemented_block_level_index
hash
with Not_found -> false
let get_cemented_block_level cemented_store hash =
try
Some
(Cemented_block_level_index.find
cemented_store.cemented_block_level_index
hash)
with Not_found -> None
let get_cemented_block_hash cemented_store level =
try
Some
(Cemented_block_hash_index.find
cemented_store.cemented_block_hash_index
level)
with Not_found -> None
let read_block_metadata cemented_store metadata_file_path block_level =
let open Lwt_result_syntax in
let*! b = Lwt_unix.file_exists metadata_file_path in
match b with
| false -> return_none
| true ->
Lwt.catch
(fun () ->
let cache = cemented_store.metadata_fd_cache in
let mk_metadata_handler path =
let fd = Zip.open_in path in
let waiter = Lwt_idle_waiter.create () in
{fd; waiter}
in
let {fd; waiter} =
Metadata_fd_cache.borrow_or_make
cache
metadata_file_path
mk_metadata_handler
Fun.id
in
let*! metadata =
Lwt_idle_waiter.force_idle waiter (fun () ->
Lwt_preemptive.detach
(fun () ->
let entry =
Zip.find_entry fd (Int32.to_string block_level)
in
Zip.read_entry fd entry)
())
in
Block_repr.decode_metadata metadata |> return)
(fun exn ->
let*! () =
Store_events.(emit metadata_read_error (Printexc.to_string exn))
in
return_none)
let read_block_metadata ?location cemented_store block_level =
let open Lwt_result_syntax in
let location =
match location with
| Some _ -> location
| None -> compute_location cemented_store block_level
in
match location with
| None -> return_none
| Some (cemented_file, _block_number) ->
let metadata_file =
Naming.(
cemented_store.cemented_blocks_dir |> cemented_blocks_metadata_dir
|> fun d -> cemented_blocks_metadata_file d cemented_file |> file_path)
in
read_block_metadata cemented_store metadata_file block_level
let cement_blocks_metadata cemented_store blocks =
let open Lwt_result_syntax in
let cemented_metadata_dir =
cemented_store.cemented_blocks_dir |> Naming.cemented_blocks_metadata_dir
in
let cemented_metadata_dir_path = cemented_metadata_dir |> Naming.dir_path in
let*! () =
let*! b = Lwt_unix.file_exists cemented_metadata_dir_path in
match b with
| true -> Lwt.return_unit
| false -> Lwt_utils_unix.create_dir cemented_metadata_dir_path
in
let* () = fail_unless (blocks <> []) (Cannot_cement_blocks_metadata `Empty) in
match
find_block_file
cemented_store
(Block_repr.level
(List.hd blocks |> WithExceptions.Option.get ~loc:__LOC__))
with
| None -> tzfail (Cannot_cement_blocks_metadata `Not_cemented)
| Some {file; _} ->
let tmp_metadata_file_path =
Naming.cemented_blocks_tmp_metadata_file cemented_metadata_dir file
|> Naming.file_path
in
let*! out_file =
Lwt_preemptive.detach Zip.open_out tmp_metadata_file_path
in
let*! () =
Lwt.finalize
(fun () ->
List.iter_s
(fun block ->
let level = Block_repr.level block in
match Block_repr.metadata block with
| Some metadata ->
let metadata =
Data_encoding.Binary.to_string_exn
Block_repr.metadata_encoding
metadata
in
Lwt_preemptive.detach
(fun () ->
Zip.add_entry
~level:default_compression_level
metadata
out_file
(Int32.to_string level))
()
| None -> Lwt.return_unit)
blocks)
(fun () -> Lwt_preemptive.detach Zip.close_out out_file)
in
let metadata_file_path =
Naming.cemented_blocks_metadata_file cemented_metadata_dir file
|> Naming.file_path
in
let*! () = Lwt_unix.rename tmp_metadata_file_path metadata_file_path in
return_unit
let read_block fd block_number =
let open Lwt_syntax in
let* _ofs = Lwt_unix.lseek fd (block_number * offset_length) Unix.SEEK_SET in
let offset_buffer = Bytes.create offset_length in
let* () =
Lwt_utils_unix.read_bytes ~pos:0 ~len:offset_length fd offset_buffer
in
let offset =
let ofs = Bytes.get_int32_be offset_buffer 0 in
match Int32.unsigned_to_int ofs with
| Some v -> v
| None ->
Int32.to_int ofs
in
let* _ofs = Lwt_unix.lseek fd offset Unix.SEEK_SET in
let* block, _len = Block_repr_unix.read_next_block_exn fd in
Lwt.return block
let get_lowest_cemented_level cemented_store =
match cemented_store.cemented_blocks_files with
| None -> None
| Some cemented_blocks_files ->
let nb_cemented_blocks = Array.length cemented_blocks_files in
if nb_cemented_blocks > 0 then Some cemented_blocks_files.(0).start_level
else None
let get_highest_cemented_level cemented_store =
match cemented_store.cemented_blocks_files with
| None -> None
| Some cemented_blocks_files ->
let nb_cemented_blocks = Array.length cemented_blocks_files in
if nb_cemented_blocks > 0 then
Some cemented_blocks_files.(nb_cemented_blocks - 1).end_level
else
None
let get_cemented_block_by_level (cemented_store : t) ~read_metadata level =
let open Lwt_result_syntax in
match compute_location cemented_store level with
| None -> return_none
| Some ((filename, block_number) as location) ->
let file_path = Naming.file_path filename in
let*! fd = Lwt_unix.openfile file_path [Unix.O_RDONLY; O_CLOEXEC] 0o444 in
let*! block =
Lwt.finalize
(fun () -> read_block fd block_number)
(fun () ->
let*! _ = Lwt_utils_unix.safe_close fd in
Lwt.return_unit)
in
if read_metadata then
let* metadata = read_block_metadata ~location cemented_store level in
return_some {block with metadata}
else return_some block
let read_block_metadata cemented_store block_level =
read_block_metadata cemented_store block_level
let get_cemented_block_by_hash ~read_metadata (cemented_store : t) hash =
let open Lwt_result_syntax in
match get_cemented_block_level cemented_store hash with
| None -> return_none
| Some level ->
get_cemented_block_by_level ~read_metadata cemented_store level
let cement_blocks ?(check_consistency = true) (cemented_store : t)
~write_metadata ({chunk_length; reading_sequence} : chunk_iterator) =
let open Lwt_result_syntax in
let nb_blocks = chunk_length in
let preamble_length = nb_blocks * offset_length in
let* () = fail_when (nb_blocks = 0) (Cannot_cement_blocks `Empty) in
let* first_block_level =
let* _block_hash, _n, block_bytes =
match reading_sequence () with Cons (x, _) -> x | Nil -> assert false
in
return (Block_repr_unix.raw_get_block_level block_bytes)
in
let last_block_level =
Int32.(add first_block_level (of_int (nb_blocks - 1)))
in
let* () =
if check_consistency then
match get_highest_cemented_level cemented_store with
| None -> return_unit
| Some highest_cemented_block ->
fail_when
Compare.Int32.(
first_block_level <> Int32.succ highest_cemented_block)
(Cannot_cement_blocks `Higher_cemented)
else return_unit
in
let file =
Naming.cemented_blocks_file
cemented_store.cemented_blocks_dir
~start_level:first_block_level
~end_level:last_block_level
in
let final_path = Naming.file_path file in
let tmp_file_path = final_path ^ ".tmp" in
let*! exists = Lwt_unix.file_exists tmp_file_path in
let* () = fail_when exists (Temporary_cemented_file_exists tmp_file_path) in
let*! fd =
Lwt_unix.openfile
tmp_file_path
Unix.[O_CREAT; O_TRUNC; O_RDWR; O_CLOEXEC]
0o644
in
let* metadata_writer, metadata_finalizer =
if write_metadata then
let cemented_metadata_dir =
cemented_store.cemented_blocks_dir
|> Naming.cemented_blocks_metadata_dir
in
let cemented_metadata_dir_path =
cemented_metadata_dir |> Naming.dir_path
in
let*! () =
let*! b = Lwt_unix.file_exists cemented_metadata_dir_path in
match b with
| true -> Lwt.return_unit
| false -> Lwt_utils_unix.create_dir cemented_metadata_dir_path
in
let* () =
fail_when
(Seq.is_empty reading_sequence)
(Cannot_cement_blocks_metadata `Empty)
in
let tmp_metadata_file_path =
Naming.cemented_blocks_tmp_metadata_file cemented_metadata_dir file
|> Naming.file_path
in
let*! out_file =
Lwt_preemptive.detach Zip.open_out tmp_metadata_file_path
in
let metadata_writer
(block_bytes, total_block_length, block_level, metadata_offset) =
Lwt_preemptive.detach
(fun () ->
let add, finish =
Zip.add_entry_generator
out_file
~level:default_compression_level
(Int32.to_string block_level)
in
add
block_bytes
metadata_offset
(total_block_length - metadata_offset) ;
finish ())
()
in
let metadata_finalizer () =
let*! () = Lwt_preemptive.detach Zip.close_out out_file in
let metadata_file_path =
Naming.cemented_blocks_metadata_file cemented_metadata_dir file
|> Naming.file_path
in
let*! () = Lwt_unix.rename tmp_metadata_file_path metadata_file_path in
return_unit
in
return (metadata_writer, metadata_finalizer)
else return ((fun _ -> Lwt.return_unit), fun () -> return_unit)
in
let*! () =
Lwt.finalize
(fun () ->
let offsets_buffer = Bytes.create preamble_length in
let*! () =
Lwt_utils_unix.write_bytes
~pos:0
~len:preamble_length
fd
offsets_buffer
in
let first_offset = preamble_length in
let*! _ =
Seq.ES.fold_left
(fun (i, current_offset) block_read ->
let* block_hash, total_block_length, block_bytes = block_read in
let pruned_block_length =
Block_repr_unix.prune_raw_block_bytes block_bytes
in
Bytes.set_int32_be
offsets_buffer
(i * offset_length)
(Int32.of_int current_offset) ;
let*! () =
Lwt_utils_unix.write_bytes
~pos:0
~len:pruned_block_length
fd
block_bytes
in
let block_level = Int32.(add first_block_level (of_int i)) in
let* () =
protect (fun () ->
if total_block_length > pruned_block_length then
let*! () =
metadata_writer
( block_bytes,
total_block_length,
block_level,
pruned_block_length )
in
return_unit
else return_unit)
in
Cemented_block_level_index.replace
cemented_store.cemented_block_level_index
block_hash
block_level ;
Cemented_block_hash_index.replace
cemented_store.cemented_block_hash_index
block_level
block_hash ;
return (succ i, current_offset + pruned_block_length))
(0, first_offset)
reading_sequence
in
let*! _ofs = Lwt_unix.lseek fd 0 Unix.SEEK_SET in
Lwt_utils_unix.write_bytes ~pos:0 ~len:preamble_length fd offsets_buffer)
(fun () ->
let*! _ = Lwt_utils_unix.safe_close fd in
Lwt.return_unit)
in
let*! () = Lwt_unix.rename tmp_file_path final_path in
Cemented_block_level_index.flush
~with_fsync:true
cemented_store.cemented_block_level_index ;
Cemented_block_hash_index.flush
~with_fsync:true
cemented_store.cemented_block_hash_index ;
let cemented_block_interval =
{start_level = first_block_level; end_level = last_block_level; file}
in
let new_array =
match cemented_store.cemented_blocks_files with
| None -> [|cemented_block_interval|]
| Some arr ->
if not (Array.mem cemented_block_interval arr) then
Array.append arr [|cemented_block_interval|]
else arr
in
if not check_consistency then Array.sort compare_cemented_files new_array ;
cemented_store.cemented_blocks_files <- Some new_array ;
if write_metadata then metadata_finalizer () else return_unit
let trigger_full_gc cemented_store cemented_blocks_files offset =
let open Lwt_syntax in
let nb_files = Array.length cemented_blocks_files in
if nb_files <= offset then Lwt.return_unit
else
let cemented_files = Array.to_list cemented_blocks_files in
let files_to_remove, _files_to_keep =
List.split_n (nb_files - offset) cemented_files
in
List.iter_s
(fun {file; _} ->
let metadata_file_path =
Naming.(
cemented_blocks_metadata_file
(cemented_blocks_metadata_dir cemented_store.cemented_blocks_dir)
file
|> file_path)
in
let* () = Unit.catch_s (fun () -> Lwt_unix.unlink metadata_file_path) in
Metadata_fd_cache.remove
cemented_store.metadata_fd_cache
metadata_file_path ;
return_unit)
files_to_remove
let trigger_rolling_gc cemented_store cemented_blocks_files offset =
let open Lwt_syntax in
let nb_files = Array.length cemented_blocks_files in
if nb_files <= offset then Lwt.return_unit
else
let {end_level = last_level_to_purge; _} =
cemented_blocks_files.(nb_files - offset - 1)
in
let cemented_files = Array.to_list cemented_blocks_files in
Cemented_block_hash_index.filter
cemented_store.cemented_block_hash_index
(fun (level, _) -> Compare.Int32.(level > last_level_to_purge)) ;
Cemented_block_level_index.filter
cemented_store.cemented_block_level_index
(fun (_, level) -> Compare.Int32.(level > last_level_to_purge)) ;
let files_to_remove, _files_to_keep =
List.split_n (nb_files - offset) cemented_files
in
List.iter_s
(fun {file; _} ->
let metadata_file_path =
Naming.(
cemented_blocks_metadata_file
(cemented_blocks_metadata_dir cemented_store.cemented_blocks_dir)
file
|> file_path)
in
let* () = Unit.catch_s (fun () -> Lwt_unix.unlink metadata_file_path) in
Metadata_fd_cache.remove
cemented_store.metadata_fd_cache
metadata_file_path ;
let* () =
Unit.catch_s (fun () -> Lwt_unix.unlink (Naming.file_path file))
in
return_unit)
files_to_remove
let trigger_gc cemented_store history_mode =
let open Lwt_syntax in
let* () = Store_events.(emit start_store_garbage_collection) () in
match cemented_store.cemented_blocks_files with
| None -> return_unit
| Some cemented_blocks_files -> (
match history_mode with
| History_mode.Archive -> Lwt.return_unit
| Full offset ->
let offset =
(Option.value
offset
~default:History_mode.default_additional_cycles)
.offset
in
trigger_full_gc cemented_store cemented_blocks_files offset
| Rolling offset ->
let offset =
(Option.value
offset
~default:History_mode.default_additional_cycles)
.offset
in
trigger_rolling_gc cemented_store cemented_blocks_files offset)
let raw_iter_cemented_file f ({file; _} as cemented_blocks_file) =
let open Lwt_syntax in
let file_path = Naming.file_path file in
Lwt_io.with_file
~flags:[Unix.O_RDONLY; O_CLOEXEC]
~mode:Lwt_io.Input
file_path
(fun channel ->
let nb_blocks = cemented_blocks_file_length cemented_blocks_file in
let* first_block_offset = Lwt_io.BE.read_int channel in
let* () = Lwt_io.set_position channel (Int64.of_int first_block_offset) in
let rec loop n =
if n = 0 then Lwt.return_unit
else
let* length = Lwt_io.BE.read_int channel in
let full_length = 4 + length in
let block_bytes = Bytes.create full_length in
let* () = Lwt_io.read_into_exactly channel block_bytes 4 length in
Bytes.set_int32_be block_bytes 0 (Int32.of_int length) ;
let* () =
f
(Data_encoding.Binary.of_bytes_exn
Block_repr.encoding
block_bytes)
in
loop (pred n)
in
loop (Int32.to_int nb_blocks))
let iter_cemented_file f ({file; _} as cemented_blocks_file) =
let open Lwt_result_syntax in
Lwt.catch
(fun () ->
let*! () = raw_iter_cemented_file f cemented_blocks_file in
return_unit)
(fun exn ->
Format.kasprintf
(fun trace ->
tzfail (Inconsistent_cemented_file (Naming.file_path file, trace)))
"%s"
(Printexc.to_string exn))
let check_indexes_consistency ?(post_step = fun () -> Lwt.return_unit)
?genesis_hash cemented_store =
let open Lwt_result_syntax in
match cemented_store.cemented_blocks_files with
| None -> return_unit
| Some table ->
let len = Array.length table in
let rec check_contiguity i =
if i = len || i = len - 1 then return_unit
else
let* () =
fail_unless
Compare.Int32.(
Int32.succ table.(i).end_level = table.(i + 1).start_level)
(Inconsistent_cemented_store
(Missing_cycle
{
low_cycle = Naming.file_path table.(i).file;
high_cycle = Naming.file_path table.(i + 1).file;
}))
in
check_contiguity (succ i)
in
let* () = check_contiguity 0 in
let table_list = Array.to_list table in
let* () =
List.iter_es
(fun ({start_level = inf; file; _} as cemented_blocks_file) ->
let*! fd =
Lwt_unix.openfile
(Naming.file_path file)
[Unix.O_RDONLY; O_CLOEXEC]
0o444
in
Lwt.finalize
(fun () ->
let nb_blocks =
Int32.to_int
(cemented_blocks_file_length cemented_blocks_file)
in
let len_offset = nb_blocks * offset_length in
let bytes = Bytes.create len_offset in
let*! () = Lwt_utils_unix.read_bytes ~len:len_offset fd bytes in
let offsets =
Data_encoding.Binary.of_bytes_exn
Data_encoding.(Variable.array ~max_length:nb_blocks int32)
bytes
in
let rec iter_blocks ?pred_block n =
if n = nb_blocks then return_unit
else
let*! cur_offset = Lwt_unix.lseek fd 0 Unix.SEEK_CUR in
let* () =
fail_unless
Compare.Int32.(Int32.of_int cur_offset = offsets.(n))
(Inconsistent_cemented_store
(Bad_offset
{level = n; cycle = Naming.file_path file}))
in
let*! block, _ = Block_repr_unix.read_next_block_exn fd in
let* () =
fail_unless
Compare.Int32.(
Block_repr.level block = Int32.(add inf (of_int n)))
(Inconsistent_cemented_store
(Unexpected_level
{
block_hash = Block_repr.hash block;
expected = Int32.(add inf (of_int n));
got = Block_repr.level block;
}))
in
let* () =
Block_repr.check_block_consistency
?genesis_hash
?pred_block
block
in
let level = Block_repr.level block in
let hash = Block_repr.hash block in
let* () =
fail_unless
(Cemented_block_level_index.mem
cemented_store.cemented_block_level_index
hash
&& Cemented_block_hash_index.mem
cemented_store.cemented_block_hash_index
level)
(Inconsistent_cemented_store (Corrupted_index hash))
in
iter_blocks ~pred_block:block (succ n)
in
protect (fun () ->
let* () = iter_blocks 0 in
let*! () = post_step () in
return_unit))
(fun () ->
let*! _ = Lwt_utils_unix.safe_close fd in
Lwt.return_unit))
table_list
in
return_unit