Source file block_directory.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
module Proof = Tezos_context_sigs.Context.Proof_types
let read_partial_context =
let open Lwt_syntax in
let init = Proof.Dir String.Map.empty in
fun context path depth ->
if depth = 0 then Lwt.return Proof.Cut
else
let* o = Context_ops.find context path in
match o with
| Some v -> Lwt.return (Proof.Key v)
| None ->
Context_ops.fold_value
~depth:(`Le depth)
context
path
~order:`Sorted
~init
~f:(fun k lazy_value acc ->
let open Block_services in
if List.compare_length_with k depth >= 0 then
Lwt.return (raw_context_insert (k, Cut) acc)
else
let+ o = lazy_value () in
match o with
| None -> acc
| Some v -> raw_context_insert (k, Key v) acc)
let (module Proto : Block_services.PROTO) =
let open Lwt_result_syntax in
let dir :
(Store.chain_store * Block_hash.t * Block_header.t) Tezos_rpc.Directory.t
ref =
ref Tezos_rpc.Directory.empty
in
let register0 s f =
dir :=
Tezos_rpc.Directory.register
!dir
(Tezos_rpc.Service.subst0 s)
(fun block p q -> f block p q)
in
let module Block_services = Block_services.Make (Proto) (Proto) in
let module S = Block_services.S in
register0 S.hash (fun (_, hash, _) () () -> return hash) ;
register0 S.header (fun (chain_store, hash, ) () () ->
let protocol_data =
Data_encoding.Binary.of_bytes_exn
Proto.block_header_data_encoding
header.protocol_data
in
return
{
Block_services.hash;
chain_id = Store.Chain.chain_id chain_store;
shell = header.shell;
protocol_data;
}) ;
register0 S.raw_header (fun (_, _, ) () () ->
return (Data_encoding.Binary.to_bytes_exn Block_header.encoding header)) ;
register0 S.Header.shell_header (fun (_, _, ) () () ->
return header.shell) ;
register0 S.Header.protocol_data (fun (_, _, ) () () ->
return
(Data_encoding.Binary.of_bytes_exn
Proto.block_header_data_encoding
header.protocol_data)) ;
register0 S.Header.raw_protocol_data (fun (_, _, ) () () ->
return header.protocol_data) ;
register0 S.resulting_context_hash (fun (chain_store, hash, _) () () ->
let*! block_opt = Store.Block.read_block_opt chain_store hash in
let block = WithExceptions.Option.to_exn ~none:Not_found block_opt in
Store.Block.resulting_context_hash chain_store block) ;
register0 S.Helpers.Forge.block_header (fun _block () ->
return (Data_encoding.Binary.to_bytes_exn Block_header.encoding header)) ;
register0 S.protocols (fun (chain_store, _hash, ) () () ->
let open Lwt_result_syntax in
let*! next_proto =
Store.Chain.find_protocol
chain_store
~protocol_level:header.shell.proto_level
in
let next_protocol_hash =
WithExceptions.Option.to_exn ~none:Not_found next_proto
in
let*! o =
Store.Block.read_block_opt chain_store header.shell.predecessor
in
match o with
| None ->
return
{
Tezos_shell_services.Block_services.current_protocol =
next_protocol_hash;
next_protocol = next_protocol_hash;
}
| Some pred_block ->
let = Store.Block.header pred_block in
let*! current_protocol =
Store.Chain.find_protocol
chain_store
~protocol_level:pred_header.shell.proto_level
in
let protocol_hash =
WithExceptions.Option.to_exn ~none:Not_found current_protocol
in
return
{
Tezos_shell_services.Block_services.current_protocol =
protocol_hash;
next_protocol = next_protocol_hash;
}) ;
!dir
let with_metadata ~force_metadata ~metadata =
match (force_metadata, metadata) with
| true, _ | _, Some `Always -> Some `Always
| _, Some `Never -> Some `Never
| _, None -> None
let build_raw_rpc_directory (module Proto : Block_services.PROTO)
(module Next_proto : Registered_protocol.T) =
let open Lwt_result_syntax in
let dir : (Store.chain_store * Store.Block.block) Tezos_rpc.Directory.t ref =
ref Tezos_rpc.Directory.empty
in
let merge d = dir := Tezos_rpc.Directory.merge d !dir in
let register0 s f =
dir :=
Tezos_rpc.Directory.register
!dir
(Tezos_rpc.Service.subst0 s)
(fun block p q -> f block p q)
in
let register1 s f =
dir :=
Tezos_rpc.Directory.register
!dir
(Tezos_rpc.Service.subst1 s)
(fun (block, a) p q -> f block a p q)
in
let register2 s f =
dir :=
Tezos_rpc.Directory.register
!dir
(Tezos_rpc.Service.subst2 s)
(fun ((block, a), b) p q -> f block a b p q)
in
let module Block_services = Block_services.Make (Proto) (Next_proto) in
let module S = Block_services.S in
register0 S.live_blocks (fun (chain_store, block) () () ->
let* live_blocks, _ =
Store.Chain.compute_live_blocks chain_store ~block
in
return live_blocks) ;
let block_metadata chain_store block =
let* metadata = Store.Block.get_block_metadata chain_store block in
let protocol_data =
Data_encoding.Binary.of_bytes_exn
Proto.block_header_metadata_encoding_with_legacy_attestation_name
(Store.Block.block_metadata metadata)
in
let* test_chain_status, _ =
Store.Block.testchain_status chain_store block
in
let max_operations_ttl = Store.Block.max_operations_ttl metadata in
return
{
Block_services.protocol_data;
test_chain_status;
max_operations_ttl;
max_operation_data_length = Next_proto.max_operation_data_length;
max_block_header_length = Next_proto.max_block_length;
operation_list_quota =
List.map
(fun {Tezos_protocol_environment.max_size; max_op} ->
{Tezos_shell_services.Block_services.max_size; max_op})
Next_proto.validation_passes;
}
in
register0 S.metadata (fun (chain_store, block) q () ->
let* res = block_metadata chain_store block in
return (q#version, res)) ;
let fail_opt = function None -> Lwt.fail Not_found | Some v -> return v in
register0 S.metadata_hash (fun (_, block) () () ->
fail_opt (Store.Block.block_metadata_hash block)) ;
let convert_with_metadata chain_id (op : Operation.t) metadata :
Block_services.operation =
let protocol_data =
Data_encoding.Binary.of_bytes_exn
Proto.operation_data_encoding_with_legacy_attestation_name
op.proto
in
let receipt =
match metadata with
| Block_validation.Metadata bytes ->
Block_services.Receipt
(Data_encoding.Binary.of_bytes_exn
Proto.operation_receipt_encoding_with_legacy_attestation_name
bytes)
| Too_large_metadata -> Too_large
in
{
Block_services.chain_id;
hash = Operation.hash op;
shell = op.shell;
protocol_data;
receipt;
}
in
let convert_without_metadata chain_id (op : Operation.t) =
let protocol_data =
Data_encoding.Binary.of_bytes_exn
Proto.operation_data_encoding_with_legacy_attestation_name
op.proto
in
{
Block_services.chain_id;
hash = Operation.hash op;
shell = op.shell;
protocol_data;
receipt = Empty;
}
in
let operations_without_metadata chain_store block =
let chain_id = Store.Chain.chain_id chain_store in
let ops = Store.Block.operations block in
return (List.map (List.map (convert_without_metadata chain_id)) ops)
in
let operations chain_store block =
let chain_id = Store.Chain.chain_id chain_store in
let ops = Store.Block.operations block in
let*! o = Store.Block.get_block_metadata_opt chain_store block in
match o with
| None ->
return (List.map (List.map (convert_without_metadata chain_id)) ops)
| Some metadata ->
Lwt.catch
(fun () ->
let ops_metadata = Store.Block.operations_metadata metadata in
List.map2_e
~when_different_lengths:()
(List.map2
~when_different_lengths:()
(convert_with_metadata chain_id))
ops
ops_metadata
|> function
| Ok v -> return v
| Error () -> raise Not_found)
(fun _ ->
return (List.map (List.map (convert_without_metadata chain_id)) ops))
in
let force_operation_metadata chain_id chain_store block =
let = Store.Block.header block in
let operations = Store.Block.operations block in
let* predecessor_block =
Store.Block.read_block chain_store (Store.Block.predecessor block)
in
let = Store.Block.header predecessor_block in
let* context = Store.Block.context chain_store predecessor_block in
let* predecessor_resulting_context =
Store.Block.resulting_context_hash chain_store predecessor_block
in
let* predecessor_context =
let*! ctxt =
Context_ops.checkout
(Context_ops.index context)
predecessor_resulting_context
in
match ctxt with Some c -> return c | None -> fail_with_exn Not_found
in
let predecessor_block_metadata_hash =
Store.Block.block_metadata_hash predecessor_block
in
let predecessor_ops_metadata_hash =
Store.Block.all_operations_metadata_hash predecessor_block
in
let operations =
List.map (List.map Block_validation.mk_operation) operations
in
let* _block_metadata, ops_metadata =
Block_validation.recompute_metadata
~chain_id
~predecessor_block_header:predecessor_header
~predecessor_context
~predecessor_block_metadata_hash
~predecessor_ops_metadata_hash
~block_header
~operations
~cache:`Lazy
in
let ops_metadata =
match ops_metadata with
| Block_validation.No_metadata_hash ops_metadata -> ops_metadata
| Block_validation.Metadata_hash ops_metadata ->
List.map (List.map fst) ops_metadata
in
return ops_metadata
in
register0 S.Operations.operations (fun (chain_store, block) q () ->
let with_metadata =
with_metadata ~force_metadata:q#force_metadata ~metadata:q#metadata
in
let* operations =
match with_metadata with
| Some `Always -> (
let chain_id = Store.Chain.chain_id chain_store in
let ops = Store.Block.operations block in
let* metadata = Store.Block.get_block_metadata chain_store block in
let ops_metadata = metadata.operations_metadata in
let* ops_metadata =
if
List.exists
(fun v ->
List.exists
(fun v -> v = Block_validation.Too_large_metadata)
v)
ops_metadata
then
force_operation_metadata chain_id chain_store block
else return ops_metadata
in
List.map2_e
~when_different_lengths:()
(List.map2
~when_different_lengths:()
(convert_with_metadata chain_id))
ops
ops_metadata
|> function
| Ok v -> return v
| Error () -> fail_with_exn Not_found)
| Some `Never -> operations_without_metadata chain_store block
| None -> operations chain_store block
in
return (q#version, operations)) ;
register1 S.Operations.operations_in_pass (fun (chain_store, block) i q () ->
let chain_id = Store.Chain.chain_id chain_store in
Lwt.catch
(fun () ->
let with_metadata =
with_metadata ~force_metadata:q#force_metadata ~metadata:q#metadata
in
let* operations =
match with_metadata with
| Some `Always -> (
let*! o =
Store.Block.get_block_metadata_opt chain_store block
in
let ops = fst @@ Store.Block.operations_path block i in
match o with
| None ->
return (List.map (convert_without_metadata chain_id) ops)
| Some metadata -> (
let opss_metadata =
Store.Block.operations_metadata metadata
in
let ops_metadata =
List.nth opss_metadata i
|> WithExceptions.Option.to_exn ~none:Not_found
in
let* ops_metadata =
if
List.exists
(fun v -> v = Block_validation.Too_large_metadata)
ops_metadata
then
let* opss_metadata =
force_operation_metadata chain_id chain_store block
in
let ops_metadata =
List.nth_opt opss_metadata i
|> WithExceptions.Option.to_exn ~none:Not_found
in
return ops_metadata
else return ops_metadata
in
List.map2
~when_different_lengths:()
(convert_with_metadata chain_id)
ops
ops_metadata
|> function
| Ok x -> return x
| _ -> fail_with_exn Not_found))
| Some `Never ->
let* ops = operations_without_metadata chain_store block in
return
(List.nth ops i
|> WithExceptions.Option.to_exn ~none:Not_found)
| None ->
let* ops = operations chain_store block in
return
(List.nth ops i
|> WithExceptions.Option.to_exn ~none:Not_found)
in
return (q#version, operations))
(fun _ -> fail_with_exn Not_found)) ;
register2 S.Operations.operation (fun (chain_store, block) i j q () ->
let chain_id = Store.Chain.chain_id chain_store in
Lwt.catch
(fun () ->
let ops = fst @@ Store.Block.operations_path block i in
let op =
List.nth ops j |> WithExceptions.Option.to_exn ~none:Not_found
in
let with_metadata =
with_metadata ~force_metadata:q#force_metadata ~metadata:q#metadata
in
let* operation =
match with_metadata with
| Some `Always -> (
let*! o =
Store.Block.get_block_metadata_opt chain_store block
in
match o with
| None -> return (convert_without_metadata chain_id op)
| Some metadata -> (
let opss_metadata =
Store.Block.operations_metadata metadata
in
let ops_metadata =
List.nth opss_metadata i
|> WithExceptions.Option.to_exn ~none:Not_found
in
let op_metadata =
List.nth ops_metadata j
|> WithExceptions.Option.to_exn ~none:Not_found
in
match op_metadata with
| Block_validation.Too_large_metadata ->
let* opss_metadata =
force_operation_metadata chain_id chain_store block
in
let ops_metadata =
List.nth_opt opss_metadata i
|> WithExceptions.Option.to_exn ~none:Not_found
in
let op_metadata =
List.nth ops_metadata j
|> WithExceptions.Option.to_exn ~none:Not_found
in
return ((convert_with_metadata chain_id) op op_metadata)
| Metadata _ ->
return (convert_with_metadata chain_id op op_metadata)))
| Some `Never ->
let* opss = operations_without_metadata chain_store block in
let ops =
List.nth opss i
|> WithExceptions.Option.to_exn ~none:Not_found
in
let op =
List.nth ops j |> WithExceptions.Option.to_exn ~none:Not_found
in
return op
| None ->
let* opss = operations chain_store block in
let ops =
List.nth opss i
|> WithExceptions.Option.to_exn ~none:Not_found
in
let op =
List.nth ops j |> WithExceptions.Option.to_exn ~none:Not_found
in
return op
in
return (q#version, operation))
(fun _ -> fail_with_exn Not_found)) ;
register0 S.Operation_hashes.operation_hashes (fun (_, block) () () ->
return (Store.Block.all_operation_hashes block)) ;
register1
S.Operation_hashes.operation_hashes_in_pass
(fun (_, block) i () () ->
return (Store.Block.operations_hashes_path block i |> fst)) ;
register2 S.Operation_hashes.operation_hash (fun (_, block) i j () () ->
Lwt.catch
(fun () ->
let ops, _ = Store.Block.operations_hashes_path block i in
return (List.nth ops j |> WithExceptions.Option.to_exn ~none:Not_found))
(fun _ -> Lwt.fail Not_found)) ;
register0 S.Operation_metadata_hashes.root (fun (_, block) () () ->
fail_opt (Store.Block.all_operations_metadata_hash block)) ;
register0
S.Operation_metadata_hashes.operation_metadata_hashes
(fun (_, block) () () ->
fail_opt (Store.Block.operations_metadata_hashes block)) ;
register1
S.Operation_metadata_hashes.operation_metadata_hashes_in_pass
(fun (_, block) i () () ->
let* ops_metadata_hashes =
fail_opt (Store.Block.operations_metadata_hashes block)
in
fail_opt (List.nth_opt ops_metadata_hashes i)) ;
register2
S.Operation_metadata_hashes.operation_metadata_hash
(fun (_, block) i j () () ->
Lwt.catch
(fun () ->
let* hashes =
fail_opt (Store.Block.operations_metadata_hashes_path block i)
in
return
(List.nth hashes j |> WithExceptions.Option.to_exn ~none:Not_found))
(fun _ -> Lwt.fail Not_found)) ;
register1 S.Context.read (fun (chain_store, block) path q () ->
let depth = Option.value ~default:max_int q#depth in
assert (depth >= 0) ;
let*! _, savepoint_level = Store.Chain.savepoint chain_store in
if Store.Block.level block >= savepoint_level then
let* context = Store.Block.context chain_store block in
let*! mem = Context_ops.mem context path in
let*! dir_mem = Context_ops.mem_tree context path in
if not (mem || dir_mem) then Lwt.fail Not_found
else
let*! v = read_partial_context context path depth in
Lwt.return_ok v
else Lwt.fail Not_found) ;
register1 S.Context.merkle_tree (fun (chain_store, block) path query () ->
let*! _, savepoint_level = Store.Chain.savepoint chain_store in
if Store.Block.level block >= savepoint_level then
let*! o = Store.Block.context_opt chain_store block in
match o with
| None -> return None
| Some context ->
let holey = Option.value ~default:false query#holey in
let leaf_kind =
let open Proof in
if holey then Hole else Raw_context
in
let*! v = Context_ops.merkle_tree context leaf_kind path in
return_some v
else Lwt.fail Not_found) ;
register1 S.Context.merkle_tree_v2 (fun (chain_store, block) path query () ->
let*! o = Store.Block.context_opt chain_store block in
match o with
| None -> return_none
| Some context ->
let holey = Option.value ~default:false query#holey in
let leaf_kind =
let open Proof in
if holey then Hole else Raw_context
in
let*! v = Context_ops.merkle_tree_v2 context leaf_kind path in
return_some v) ;
register0 S.info (fun (chain_store, block) q () ->
let chain_id = Store.Chain.chain_id chain_store in
let hash = Store.Block.hash block in
let = Store.Block.header block in
let shell = header.shell in
let protocol_data =
Data_encoding.Binary.of_bytes_exn
Proto.block_header_data_encoding
header.protocol_data
in
let* metadata =
let*! metadata = block_metadata chain_store block in
return (Option.of_result metadata)
in
let* operations =
let with_metadata =
with_metadata ~force_metadata:q#force_metadata ~metadata:q#metadata
in
match with_metadata with
| Some `Always -> (
let ops = Store.Block.operations block in
let* metadata = Store.Block.get_block_metadata chain_store block in
let ops_metadata = metadata.operations_metadata in
let* ops_metadata =
if
List.exists
(fun v ->
List.exists
(fun v -> v = Block_validation.Too_large_metadata)
v)
ops_metadata
then
force_operation_metadata chain_id chain_store block
else return ops_metadata
in
List.map2_e
~when_different_lengths:()
(List.map2
~when_different_lengths:()
(convert_with_metadata chain_id))
ops
ops_metadata
|> function
| Ok v -> return v
| Error () -> fail_with_exn Not_found)
| Some `Never -> operations_without_metadata chain_store block
| None -> operations chain_store block
in
return
( q#version,
{
Block_services.hash;
chain_id;
header = {shell; protocol_data};
metadata;
operations;
} )) ;
register0 S.Helpers.Preapply.block (fun (chain_store, block) q p ->
let timestamp =
match q#timestamp with
| None -> Time.System.to_protocol (Time.System.now ())
| Some time -> time
in
let protocol_data =
Data_encoding.Binary.to_bytes_exn
Next_proto.block_header_data_encoding
p.protocol_data
in
let operations =
List.map
(fun operations ->
let operations =
List.map
(fun op ->
let proto =
Data_encoding.Binary.to_bytes_exn
Next_proto
.operation_data_encoding_with_legacy_attestation_name
op.Next_proto.protocol_data
in
(op, {Operation.shell = op.shell; proto}))
operations
in
let operations =
if q#sort_operations then
List.sort
(fun (op, ops) (op', ops') ->
let oph, oph' = (Operation.hash ops, Operation.hash ops') in
Next_proto.compare_operations (oph, op) (oph', op'))
operations
else operations
in
List.map snd operations)
p.operations
in
let* bv =
try return (Block_validator.running_worker ())
with _ -> failwith "Block validator is not running"
in
Block_validator.preapply
bv
chain_store
~predecessor:block
~timestamp
~protocol_data
operations) ;
register0
S.Helpers.Preapply.operations
(fun (chain_store, block) params ops ->
let* ctxt = Store.Block.context chain_store block in
let chain_id = Store.Chain.chain_id chain_store in
let mode =
let predecessor_hash = Store.Block.hash block in
let timestamp = Time.System.to_protocol (Time.System.now ()) in
Next_proto.Partial_construction {predecessor_hash; timestamp}
in
let predecessor = Store.Block.shell_header block in
let* validation_state =
Next_proto.begin_validation ctxt chain_id mode ~predecessor ~cache:`Lazy
in
let* application_state =
Next_proto.begin_application
ctxt
chain_id
mode
~predecessor
~cache:`Lazy
in
let* hashed_ops =
List.map_es
(fun op ->
match
Data_encoding.Binary.to_bytes
Next_proto.operation_data_encoding_with_legacy_attestation_name
op.Next_proto.protocol_data
with
| Error _ ->
failwith "preapply_operations: cannot deserialize operation"
| Ok proto ->
let op_t = {Operation.shell = op.shell; proto} in
Lwt_result.return (Operation.hash op_t, op))
ops
in
let* _validation_state, _application_state, acc =
List.fold_left_es
(fun (validation_state, application_state, acc) (oph, op) ->
let* validation_state =
Next_proto.validate_operation validation_state oph op
in
let* application_state, result =
Next_proto.apply_operation application_state oph op
in
return
( validation_state,
application_state,
(op.protocol_data, result) :: acc ))
(validation_state, application_state, [])
hashed_ops
in
return (params#version, List.rev acc)) ;
register1 S.Helpers.complete (fun (chain_store, block) prefix () () ->
let* ctxt = Store.Block.context chain_store block in
let*! l1 = Tezos_crypto.Base58.complete prefix in
let*! l2 = Next_proto.complete_b58prefix ctxt prefix in
return (l1 @ l2)) ;
merge
(Tezos_rpc.Directory.map
(fun (chain_store, block) ->
let hash = Store.Block.hash block in
let = Store.Block.header block in
Lwt.return (chain_store, hash, header))
(build_raw_header_rpc_directory (module Proto))) ;
let proto_services =
match Protocol_plugin.find_rpc Next_proto.hash with
| Some (module RPC) -> RPC.rpc_services
| None -> Next_proto.rpc_services
in
merge
(Tezos_rpc.Directory.map
(fun (chain_store, block) ->
let*! r =
let*! context = Store.Block.context_exn chain_store block in
let predecessor_context = context in
let chain_id = Store.Chain.chain_id chain_store in
let Block_header.
{
timestamp = predecessor_timestamp;
level = predecessor_level;
fitness = predecessor_fitness;
_;
} =
Store.Block.shell_header block
in
let predecessor = Store.Block.hash block in
let timestamp = Time.System.to_protocol (Time.System.now ()) in
let* value_of_key =
Next_proto.value_of_key
~chain_id
~predecessor_context
~predecessor_timestamp
~predecessor_level
~predecessor_fitness
~predecessor
~timestamp
in
let* context =
Tezos_protocol_environment.Context.load_cache
predecessor
predecessor_context
`Lazy
value_of_key
in
return
{
Tezos_protocol_environment.block_hash = Store.Block.hash block;
block_header = Store.Block.shell_header block;
context;
}
in
match r with
| Ok result -> Lwt.return result
| Error _ -> Lwt.fail Not_found)
proto_services) ;
!dir
let get_protocol hash =
match Registered_protocol.get hash with
| None -> raise Not_found
| Some protocol -> protocol
let get_directory chain_store block =
let open Lwt_syntax in
let* o = Store.Chain.get_rpc_directory chain_store block in
match o with
| Some dir -> Lwt.return dir
| None -> (
let* next_protocol_hash =
Store.Block.protocol_hash_exn chain_store block
in
let (module Next_proto) = get_protocol next_protocol_hash in
let build_fake_rpc_directory () =
build_raw_rpc_directory
(module Block_services.Fake_protocol)
(module Next_proto)
in
if Store.Block.is_genesis chain_store (Store.Block.hash block) then
Lwt.return (build_fake_rpc_directory ())
else
let* (module Proto) =
let* o = Store.Block.read_predecessor_opt chain_store block in
match o with
| None ->
Lwt.return (module Next_proto : Registered_protocol.T)
| Some pred ->
let* _, savepoint_level = Store.Chain.savepoint chain_store in
let* protocol_hash =
if Compare.Int32.(Store.Block.level pred < savepoint_level) then
let* predecessor_protocol =
Store.Chain.find_protocol
chain_store
~protocol_level:(Store.Block.proto_level pred)
in
let protocol_hash =
WithExceptions.Option.to_exn
~none:Not_found
predecessor_protocol
in
Lwt.return protocol_hash
else Store.Block.protocol_hash_exn chain_store pred
in
Lwt.return (get_protocol protocol_hash)
in
let* o = Store.Chain.get_rpc_directory chain_store block in
match o with
| Some dir -> Lwt.return dir
| None ->
let dir =
build_raw_rpc_directory (module Proto) (module Next_proto)
in
let* () =
Store.Chain.set_rpc_directory
chain_store
~protocol_hash:Proto.hash
~next_protocol_hash:Next_proto.hash
dir
in
Lwt.return dir)
let build_rpc_directory chain_store block =
let open Lwt_syntax in
let* o = Store.Chain.block_of_identifier_opt chain_store block in
match o with
| None -> Lwt.fail Not_found
| Some b ->
let* dir = get_directory chain_store b in
Lwt.return
(Tezos_rpc.Directory.map (fun _ -> Lwt.return (chain_store, b)) dir)