Source file local_services.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
module Directory = Resto_directory.Make (Tezos_rpc.Encoding)
open Tezos_shell_services
type error += Injection_not_possible
type error += Cannot_parse_op
type error += Cannot_parse_proto_data
type callback_writer =
Tezos_protocol_environment.rpc_context -> bytes -> unit tzresult Lwt.t
let () =
register_error_kind
`Temporary
~id:"local_services.Injection_not_possible"
~title:"Injection_not_possible"
~description:"Injection not possible"
~pp:(fun ppf () ->
Format.pp_print_string
ppf
"Injection not possible in mockup mode without on-disk mockup context.")
Data_encoding.unit
(function Injection_not_possible -> Some () | _ -> None)
(fun () -> Canceled)
let () =
register_error_kind
`Temporary
~id:"local_services.Cannot_parse_op"
~title:"Cannot_parse_op"
~description:"Cannot parse operation"
~pp:(fun ppf () -> Format.pp_print_string ppf "Cannot parse operation.")
Data_encoding.unit
(function Cannot_parse_op -> Some () | _ -> None)
(fun () -> Cannot_parse_op)
let () =
register_error_kind
`Temporary
~id:"local_services.Cannot_parse_proto_data"
~title:"Cannot_parse_proto_data"
~description:"Cannot parse protocol data"
~pp:(fun ppf () -> Format.pp_print_string ppf "Cannot parse protocol data.")
Data_encoding.unit
(function Cannot_parse_proto_data -> Some () | _ -> None)
(fun () -> Cannot_parse_proto_data)
module type MENV = sig
include Registration.MOCKUP
val chain_id : Chain_id.t
val rpc_context : Tezos_protocol_environment.rpc_context
val base_dir : string
val protocol_data : bytes
end
module Make (E : MENV) = struct
let init_fake_p2p =
let open Tezos_p2p in
let peer_meta_config =
{
P2p_params.peer_meta_encoding = Tezos_p2p_services.Peer_metadata.encoding;
peer_meta_initial = Tezos_p2p_services.Peer_metadata.empty;
score = (fun _ -> 0.0);
}
in
let message_config : unit P2p_params.message_config =
{
encoding = [];
chain_name = Distributed_db_version.Name.of_string "TEZOS_CLIENT_MOCKUP";
distributed_db_versions = Distributed_db_version.[zero; one];
}
in
fun () ->
P2p.faked_network
message_config
peer_meta_config
Tezos_p2p_services.Connection_metadata.
{disable_mempool = true; private_node = true}
let p2p () =
let fake_p2p = init_fake_p2p () in
Tezos_p2p.P2p_directory.build_rpc_directory fake_p2p
let chain () =
Directory.prefix
Tezos_shell_services.Chain_services.path
(Directory.register
Directory.empty
Tezos_shell_services.Chain_services.S.chain_id
(fun _ () () -> Tezos_rpc.Answer.return E.chain_id))
let protocols protocol_hash =
let path =
let open Tezos_rpc.Path in
prefix Block_services.chain_path Block_services.path
in
let service =
Tezos_rpc.Service.prefix path Block_services.Empty.S.protocols
in
Directory.register Directory.empty service (fun _prefix () () ->
let current_protocol =
if Compare.Int32.(E.rpc_context.block_header.level = 0l) then
Protocol_hash.zero
else protocol_hash
in
Lwt.return
(`Ok {Block_services.current_protocol; next_protocol = protocol_hash}))
let monitor () =
let open Tezos_protocol_environment in
let {block_hash; ; _} = E.rpc_context in
Tezos_rpc.Directory.gen_register
Directory.empty
Monitor_services.S.bootstrapped
(fun () () () ->
Tezos_rpc.Answer.return (block_hash, block_header.timestamp))
let chain_chain_id = function
| `Main -> Chain_id.hash_string ["main"]
| `Test -> Chain_id.hash_string ["test"]
| `Hash cid -> cid
let check_chain ?caller_name (chain : Block_services.chain) =
unless
(Chain_id.equal E.chain_id (chain_chain_id chain))
(fun () ->
let msg =
let open Format in
asprintf
"Mismatched chain id %a: got %a but this mockup client expected %a."
(Format.pp_print_option (fun ppf v -> Format.fprintf ppf "(%s)" v))
caller_name
(fun ppf chain ->
match chain with
| `Main ->
fprintf
ppf
"main (%a)"
Chain_id.pp
(Chain_id.hash_string ["main"])
| `Test ->
fprintf
ppf
"test (%a)"
Chain_id.pp
(Chain_id.hash_string ["test"])
| `Hash chain_id -> Chain_id.pp ppf chain_id)
chain
Chain_id.pp
E.chain_id
in
Lwt.fail_with msg)
let () =
Data_encoding.Binary.of_bytes_opt
E.Protocol.block_header_data_encoding
E.protocol_data
let begin_validation_and_application ctxt chain_id mode ~predecessor ~cache =
let open Lwt_result_syntax in
let* validation_state =
E.Protocol.begin_validation ctxt chain_id mode ~predecessor ~cache
in
let* application_state =
E.Protocol.begin_application ctxt chain_id mode ~predecessor ~cache
in
return (validation_state, application_state)
let validate_and_apply_operation (validation_state, application_state) oph op
=
let open Lwt_result_syntax in
let* validation_state =
E.Protocol.validate_operation validation_state oph op
in
let* application_state, receipt =
E.Protocol.apply_operation application_state oph op
in
return ((validation_state, application_state), receipt)
let finalize_validation_and_application (validation_state, application_state)
=
let open Lwt_result_syntax in
let* () = E.Protocol.finalize_validation validation_state in
E.Protocol.finalize_application application_state shell_header
let partial_construction ~cache () =
let predecessor_hash = E.rpc_context.block_hash in
let predecessor = E.rpc_context.block_header in
let predecessor_context = E.rpc_context.context in
let timestamp = Time.System.to_protocol @@ Tezos_base.Time.System.now () in
begin_validation_and_application
predecessor_context
E.chain_id
(Partial_construction {predecessor_hash; timestamp})
~predecessor
~cache
let full_construction ?timestamp ~protocol_data ~cache () =
let predecessor_hash = E.rpc_context.block_hash in
let predecessor = E.rpc_context.block_header in
let predecessor_context = E.rpc_context.context in
let timestamp =
let default () =
Time.System.to_protocol @@ Tezos_base.Time.System.now ()
in
Option.value_f timestamp ~default
in
begin_validation_and_application
predecessor_context
E.chain_id
(Construction
{predecessor_hash; timestamp; block_header_data = protocol_data})
~predecessor
~cache
let op_data_encoding =
E.Protocol.operation_data_encoding_with_legacy_attestation_name
let op_encoding =
Data_encoding.(
dynamic_size
@@ obj2
(req "shell_header" Operation.shell_header_encoding)
(req "protocol_data" op_data_encoding))
let ops_encoding = Data_encoding.Variable.list op_encoding
module L = struct
module S = Internal_event.Simple
let section = ["mockup"; "local_services"]
let warn_trashpool_append =
let pp1 ppf l =
match List.length l with
| 0 -> Format.pp_print_string ppf "nothing"
| 1 -> Format.pp_print_string ppf "1 operation"
| n -> Format.fprintf ppf "%d operations" n
in
S.declare_1
~section
~name:"thraspool_append"
~msg:"Appending {operations} to trashpool"
~level:Internal_event.Warning
~pp1
("operations", ops_encoding)
let warn_mempool_mem =
S.declare_0
~section
~name:"mempool_mem"
~msg:
"This operation already exists in the mempool and will thus be \
ignored."
~level:Internal_event.Warning
()
let warn msg =
S.declare_0
~section
~name:(Printf.sprintf "local_services_warn_%s" msg)
~msg:(Printf.sprintf "warning: %s" msg)
~level:Internal_event.Warning
()
end
type write_mode = Append | Zero_truncate
module Rw (File_accessor : Files.ACCESSOR) = struct
let file = (File_accessor.get ~dirname:E.base_dir :> string)
let unsafe_read () =
let open Lwt_result_syntax in
let* json = Tezos_stdlib_unix.Lwt_utils_unix.Json.read_file file in
return @@ Data_encoding.Json.destruct ops_encoding json
let read () =
let open Lwt_syntax in
let* b = File_accessor.exists ~dirname:E.base_dir in
match b with true -> unsafe_read () | false -> return_ok []
let write ~mode operations =
let open Lwt_result_syntax in
let* ops =
match mode with
| Append ->
let* ops = read () in
return (ops @ operations)
| Zero_truncate -> return operations
in
let json = Data_encoding.Json.construct ops_encoding ops in
Tezos_stdlib_unix.Lwt_utils_unix.Json.write_file file json
let append = write ~mode:Append
end
module Mempool = Rw (Files.Mempool)
module Trashpool = Rw (Files.Trashpool)
let to_validated (, operation_data) =
let open Lwt_result_syntax in
let op =
{E.Protocol.shell = shell_header; protocol_data = operation_data}
in
match Data_encoding.Binary.to_bytes op_data_encoding operation_data with
| Error _ -> failwith "mockup pending_operations"
| Ok proto ->
let operation_hash =
Operation.hash {Operation.shell = shell_header; proto}
in
return (operation_hash, op)
let with_chain ?caller_name chain k =
let open Lwt_syntax in
let* r = check_chain ?caller_name chain in
match r with Error errs -> Tezos_rpc.Answer.fail errs | Ok () -> k ()
let pending_operations () =
let open Lwt_result_syntax in
Directory.register
Directory.empty
(E.Block_services.S.Mempool.pending_operations
@@ Block_services.mempool_path Block_services.chain_path)
(fun ((), chain) params () ->
let*! pending_operations =
let* () = check_chain chain in
let* pooled_operations = Mempool.read () in
let* validated = List.map_es to_validated pooled_operations in
let pending_operations =
{
E.Block_services.Mempool.validated;
refused = Operation_hash.Map.empty;
outdated = Operation_hash.Map.empty;
branch_refused = Operation_hash.Map.empty;
branch_delayed = Operation_hash.Map.empty;
unprocessed = Operation_hash.Map.empty;
}
in
return pending_operations
in
match pending_operations with
| Error errs -> Tezos_rpc.Answer.fail errs
| Ok pending_operations ->
Tezos_rpc.Answer.return (params#version, pending_operations))
let () =
Directory.prefix
(Tezos_rpc.Path.prefix
Tezos_shell_services.Chain_services.path
Block_services.path)
@@ Directory.register
Directory.empty
E.Block_services.S.Header.shell_header
(fun _prefix () () ->
Tezos_rpc.Answer.return E.rpc_context.block_header)
let block_hash () =
let path =
let open Tezos_rpc.Path in
prefix Block_services.chain_path Block_services.path
in
let service = Tezos_rpc.Service.prefix path Block_services.Empty.S.hash in
Directory.register Directory.empty service (fun _prefix () () ->
Tezos_rpc.Answer.return E.rpc_context.block_hash)
let live_blocks () =
Directory.prefix
(Tezos_rpc.Path.prefix
Tezos_shell_services.Chain_services.path
Block_services.path)
@@ Directory.register
Directory.empty
E.Block_services.S.live_blocks
(fun (((), chain), _block) () () ->
with_chain ~caller_name:"live blocks" chain (fun () ->
let set = Block_hash.Set.singleton E.rpc_context.block_hash in
Tezos_rpc.Answer.return set))
let simulate_operation (state, preapply_result) op =
let open Lwt_result_syntax in
match
Data_encoding.Binary.to_bytes op_data_encoding op.E.Protocol.protocol_data
with
| Error _ -> failwith "mockup preapply_block: cannot deserialize operation"
| Ok proto -> (
let op_t = {Operation.shell = op.shell; proto} in
let hash = Operation.hash op_t in
let*! r = validate_and_apply_operation state hash op in
match r with
| Error e ->
let open Preapply_result in
return
( state,
{
preapply_result with
refused =
Operation_hash.Map.add
hash
(op_t, e)
preapply_result.refused;
} )
| Ok (state, _) ->
let open Preapply_result in
return
( state,
{
preapply_result with
applied = (hash, op_t) :: preapply_result.applied;
} ))
let preapply_block () =
let open Lwt_result_syntax in
Directory.prefix
(Tezos_rpc.Path.prefix
Tezos_shell_services.Chain_services.path
Block_services.path)
@@ Directory.register
Directory.empty
E.Block_services.S.Helpers.Preapply.block
(fun (((), chain), _block) o {operations; protocol_data} ->
with_chain ~caller_name:"preapply_block" chain (fun () ->
let*! r =
let timestamp = o#timestamp in
let* proto_state =
full_construction
~cache:`Lazy
?timestamp:o#timestamp
~protocol_data
()
in
let* validation_passes, proto_state, preapply_results =
List.fold_left_es
(fun (validation_passes, proto_state, validation_result)
operations ->
let* state, result =
List.fold_left_es
simulate_operation
(proto_state, Preapply_result.empty)
operations
in
let open Preapply_result in
let p_result =
{result with applied = List.rev result.applied}
in
return
( succ validation_passes,
state,
p_result :: validation_result ))
(0, proto_state, [])
operations
in
let* validation_result, _metadata =
finalize_validation_and_application
proto_state
(Some E.rpc_context.block_header)
in
let operations_hash =
let open Preapply_result in
Operation_list_list_hash.compute
@@ List.rev_map
(fun x ->
Operation_list_hash.compute @@ List.map fst x.applied)
preapply_results
in
let timestamp =
Option.value_f
~default:(fun () ->
Time.System.to_protocol (Time.System.now ()))
timestamp
in
let =
{
E.rpc_context.block_header with
level = Int32.succ E.rpc_context.block_header.level;
predecessor = E.rpc_context.block_hash;
timestamp
;
operations_hash;
validation_passes;
fitness = validation_result.fitness;
context = Context_hash.zero ;
}
in
return (shell_header, List.rev preapply_results)
in
match r with
| Error errs -> Tezos_rpc.Answer.fail errs
| Ok v -> Tezos_rpc.Answer.return v))
let hash_protocol_operation op =
match
Data_encoding.Binary.to_bytes op_data_encoding op.E.Protocol.protocol_data
with
| Error _ ->
failwith "mockup preapply_operations: cannot deserialize operation"
| Ok proto ->
let op_t = {Operation.shell = op.shell; proto} in
Lwt_result.return (Operation.hash op_t)
let preapply () =
let open Lwt_result_syntax in
Directory.prefix
(Tezos_rpc.Path.prefix
Tezos_shell_services.Chain_services.path
Block_services.path)
(Directory.register
Directory.empty
E.Block_services.S.Helpers.Preapply.operations
(fun ((_, chain), _block) params op_list ->
with_chain ~caller_name:"preapply operations" chain (fun () ->
let*! outcome =
let* proto_state = partial_construction ~cache:`Lazy () in
let* proto_state, acc =
List.fold_left_es
(fun (proto_state, acc) op ->
let* oph = hash_protocol_operation op in
let* proto_state, result =
validate_and_apply_operation proto_state oph op
in
return (proto_state, (op.protocol_data, result) :: acc))
(proto_state, [])
op_list
in
let* _ =
finalize_validation_and_application proto_state None
in
return (List.rev acc)
in
match outcome with
| Ok result -> Tezos_rpc.Answer.return (params#version, result)
| Error errs -> Tezos_rpc.Answer.fail errs)))
let hash_op (shell, proto) =
let proto = Data_encoding.Binary.to_bytes_exn op_data_encoding proto in
Operation.hash {shell; proto}
let equal_op (, a_operation_data)
(, b_operation_data) =
Block_hash.equal
a_shell_header.Operation.branch
b_shell_header.Operation.branch
&&
Stdlib.compare a_operation_data b_operation_data = 0
let need_operation op =
let open Lwt_result_syntax in
let* mempool_operations = Mempool.read () in
if List.mem ~equal:equal_op op mempool_operations then return `Equal
else
let operations = op :: mempool_operations in
let* proto_state = partial_construction ~cache:`Lazy () in
let* proto_state, preapply_result =
List.fold_left_es
(fun rstate (shell, protocol_data) ->
simulate_operation rstate E.Protocol.{shell; protocol_data})
(proto_state, Preapply_result.empty)
operations
in
if Operation_hash.Map.is_empty preapply_result.refused then
let* _ = finalize_validation_and_application proto_state None in
return `Applicable
else return `Refused
let append_to_thraspool ~notification_msg op =
let open Lwt_result_syntax in
let* () = Trashpool.append [op] in
failwith "%s" notification_msg
let inject_operation_with_mempool operation_bytes =
let open Lwt_result_syntax in
match Data_encoding.Binary.of_bytes Operation.encoding operation_bytes with
| Error _ -> Tezos_rpc.Answer.fail [Cannot_parse_op]
| Ok ({Operation.shell = ; proto} as op) -> (
let operation_hash = Operation.hash op in
let proto_op_opt =
Data_encoding.Binary.of_bytes op_data_encoding proto
in
match proto_op_opt with
| Error _ -> Tezos_rpc.Answer.fail [Cannot_parse_op]
| Ok operation_data -> (
let op = (shell_header, operation_data) in
let*! r =
let* n = need_operation op in
match n with
| `Applicable -> Mempool.append [op]
| `Equal ->
let*! () = L.(S.emit warn_mempool_mem) () in
append_to_thraspool
~notification_msg:"Last operation is a duplicate"
op
| `Refused ->
append_to_thraspool
~notification_msg:"Last operation is refused"
op
in
match r with
| Ok _ -> Tezos_rpc.Answer.return operation_hash
| Error errs -> (
let*! r = Trashpool.append [op] in
match r with
| Ok _ -> Tezos_rpc.Answer.fail errs
| Error errs2 -> Tezos_rpc.Answer.fail (errs @ errs2))))
let inject_operation_without_mempool
(write_context_callback : callback_writer) operation_bytes =
let open Lwt_result_syntax in
match Data_encoding.Binary.of_bytes Operation.encoding operation_bytes with
| Error _ -> Tezos_rpc.Answer.fail [Cannot_parse_op]
| Ok ({Operation.shell = ; proto} as op) -> (
let operation_hash = Operation.hash op in
let proto_op_opt =
Data_encoding.Binary.of_bytes op_data_encoding proto
in
match proto_op_opt with
| Error _ -> Tezos_rpc.Answer.fail [Cannot_parse_op]
| Ok operation_data -> (
let op =
{E.Protocol.shell = shell_header; protocol_data = operation_data}
in
let*! result =
let* proto_state = partial_construction ~cache:`Lazy () in
let* proto_state, receipt =
validate_and_apply_operation proto_state operation_hash op
in
let* validation_result, =
finalize_validation_and_application proto_state None
in
return (validation_result, receipt)
in
match result with
| Ok ({context; _}, _receipt) -> (
let rpc_context = {E.rpc_context with context} in
let*! result = write_context_callback rpc_context proto in
match result with
| Ok () -> Tezos_rpc.Answer.return operation_hash
| Error errs -> Tezos_rpc.Answer.fail errs)
| Error errs -> Tezos_rpc.Answer.fail errs))
let inject_block_generic (write_context_callback : callback_writer)
(update_mempool_callback : Operation.t list list -> unit tzresult Lwt.t) =
let open Lwt_result_syntax in
let reconstruct (operations : Operation.t list list)
( : Block_header.t) =
match
Data_encoding.Binary.of_bytes_opt
E.Protocol.block_header_data_encoding
block_header.protocol_data
with
| None -> assert false
| Some protocol_data ->
let predecessor = E.rpc_context.block_header in
let predecessor_context = E.rpc_context.context in
let mode =
E.Protocol.Application {shell = block_header.shell; protocol_data}
in
let* proto_state =
begin_validation_and_application
predecessor_context
E.chain_id
mode
~predecessor
~cache:`Lazy
in
let* proto_state, _ =
List.fold_left_es
(List.fold_left_es (fun (proto_state, results) op ->
match
Data_encoding.Binary.of_bytes
op_data_encoding
op.Operation.proto
with
| Error _ -> failwith "Cannot parse"
| Ok operation_data ->
let oph = Operation.hash op in
let op =
{
E.Protocol.shell = op.shell;
protocol_data = operation_data;
}
in
let* proto_state, receipt =
validate_and_apply_operation proto_state oph op
in
return (proto_state, receipt :: results)))
(proto_state, [])
operations
in
finalize_validation_and_application
proto_state
(Some block_header.shell)
in
Directory.register
Directory.empty
Tezos_shell_services.Injection_services.S.block
(fun () _ (bytes, operations) ->
let block_hash = Block_hash.hash_bytes [bytes] in
match Block_header.of_bytes bytes with
| None -> Tezos_rpc.Answer.fail [Cannot_parse_op]
| Some -> (
let*! r =
let* {context; _}, _ = reconstruct operations block_header in
let rpc_context =
Tezos_protocol_environment.
{
context;
block_hash;
block_header =
block_header.shell;
}
in
let* () =
write_context_callback rpc_context block_header.protocol_data
in
update_mempool_callback operations
in
match r with
| Error errs -> Tezos_rpc.Answer.fail errs
| Ok () -> Tezos_rpc.Answer.return block_hash))
(** [inject_block] is a feature that assumes that the mockup is on-disk
and uses a mempool. *)
let inject_block (write_context_callback : callback_writer) =
inject_block_generic write_context_callback (fun operations ->
let open Lwt_result_syntax in
let* mempool_operations = Mempool.read () in
let* mempool_map =
List.fold_left_es
(fun map ((, operation_data) as v) ->
match
Data_encoding.Binary.to_bytes op_data_encoding operation_data
with
| Error _ ->
failwith "mockup inject block: byte encoding operation failed"
| Ok proto ->
let h =
Operation.hash {Operation.shell = shell_header; proto}
in
return @@ Operation_hash.Map.add h v map)
Operation_hash.Map.empty
mempool_operations
in
let refused_map =
List.fold_left
(List.fold_left (fun mempool op ->
Operation_hash.Map.remove (Operation.hash op) mempool))
mempool_map
operations
in
let* () =
unless (Operation_hash.Map.is_empty refused_map) (fun () ->
let refused_ops =
Operation_hash.Map.fold (fun _k v l -> v :: l) refused_map []
in
let*! () = L.(S.emit warn_trashpool_append) refused_ops in
Trashpool.append refused_ops)
in
Mempool.write ~mode:Zero_truncate [])
let inject_operation (mem_only : bool)
(write_context_callback : callback_writer) =
let open Lwt_syntax in
Directory.register
Directory.empty
Tezos_shell_services.Injection_services.S.operation
(fun _q _contents operation_bytes ->
if mem_only then Tezos_rpc.Answer.fail [Injection_not_possible]
else
let* b = Files.Mempool.exists ~dirname:E.base_dir in
match b with
| true -> inject_operation_with_mempool operation_bytes
| false ->
inject_operation_without_mempool
write_context_callback
operation_bytes)
let monitor_validated_blocks () =
Directory.register
Directory.empty
Tezos_shell_services.Monitor_services.S.validated_blocks
(fun () q () ->
let chain =
match List.hd q#chains with None -> `Main | Some chain -> chain
in
with_chain ~caller_name:"monitor validated blocks" chain (fun () ->
let =
Block_header.
{
shell = E.rpc_context.block_header;
protocol_data = E.protocol_data;
}
in
let block_hash = E.rpc_context.block_hash in
Tezos_rpc.Answer.return
(E.chain_id, block_hash, block_header, [[]; []; []; []])))
let monitor_heads () =
Directory.register
Directory.empty
Tezos_shell_services.Monitor_services.S.heads
(fun ((), chain) _next_protocol () ->
with_chain ~caller_name:"monitor heads" chain (fun () ->
let =
Block_header.
{
shell = E.rpc_context.block_header;
protocol_data = E.protocol_data;
}
in
let block_hash = E.rpc_context.block_hash in
Tezos_rpc.Answer.return (block_hash, block_header)))
let () =
Directory.prefix
(Tezos_rpc.Path.prefix Chain_services.path Block_services.path)
(Directory.register
Directory.empty
E.Block_services.S.raw_header
(fun (((), chain), _block) () () ->
with_chain ~caller_name:"raw header" chain (fun () ->
let =
Data_encoding.Binary.to_bytes_exn
Tezos_base.Block_header.encoding
{
shell = E.rpc_context.block_header;
protocol_data = E.protocol_data;
}
in
Tezos_rpc.Answer.return block_header_b)))
let () =
Directory.prefix
(Tezos_rpc.Path.prefix Chain_services.path Block_services.path)
(Directory.register
Directory.empty
E.Block_services.S.header
(fun (((), chain), _block) () () ->
with_chain ~caller_name:"header" chain (fun () ->
match proto_data_bytes_to_block_header_opt () with
| None -> assert false
| Some protocol_data ->
let =
E.Block_services.
{
chain_id = E.chain_id;
hash = E.rpc_context.block_hash;
shell = E.rpc_context.block_header;
protocol_data;
}
in
Tezos_rpc.Answer.return block_header)))
let resulting_context_hash () =
Directory.prefix
(Tezos_rpc.Path.prefix Chain_services.path Block_services.path)
(Directory.register
Directory.empty
E.Block_services.S.resulting_context_hash
(fun (((), chain), _block) () () ->
with_chain ~caller_name:"resulting_context_hash" chain (fun () ->
Tezos_rpc.Answer.return E.rpc_context.block_header.context)))
let protocol_data_raw () =
Directory.prefix
(Tezos_rpc.Path.prefix Chain_services.path Block_services.path)
(Directory.register
Directory.empty
E.Block_services.S.Header.raw_protocol_data
(fun (((), chain), _block) () () ->
with_chain ~caller_name:"protocol_data_raw" chain (fun () ->
Tezos_rpc.Answer.return E.protocol_data)))
let operations () =
Directory.prefix
(Tezos_rpc.Path.prefix Chain_services.path Block_services.path)
@@ Directory.register
Directory.empty
E.Block_services.S.Operations.operations
(fun (((), chain), _block) query () ->
with_chain ~caller_name:"operations" chain (fun () ->
Tezos_rpc.Answer.return (query#version, [[]; []; []; []])))
let monitor_operations () =
let open Lwt_syntax in
Directory.register
Directory.empty
(E.Block_services.S.Mempool.monitor_operations
@@ Block_services.mempool_path Block_services.chain_path)
(fun (_, chain) o () ->
with_chain ~caller_name:"monitor operations" chain (fun () ->
let on b msg =
if b then L.(S.emit (warn msg)) () else Lwt.return_unit
in
let* () = on o#branch_delayed "branch_delayed ignored" in
let* () = on o#branch_refused "branch_refused ignored" in
let* () = on o#refused "refused ignored" in
let _ = o#validated in
Tezos_rpc.Answer.(
return_stream
{next = (fun () -> Lwt.return_none); shutdown = (fun () -> ())})))
let build_shell_directory (mem_only : bool)
(write_context_callback : callback_writer) =
let merge = Directory.merge in
Directory.empty
|> merge (p2p ())
|> merge (chain ())
|> merge (shell_header ())
|> merge (monitor ())
|> merge (protocols E.Protocol.hash)
|> merge (block_hash ())
|> merge (preapply ())
|> merge (pending_operations ())
|> merge (inject_operation mem_only write_context_callback)
|> merge (inject_block write_context_callback)
|> merge (live_blocks ())
|> merge (preapply_block ())
|> merge (monitor_validated_blocks ())
|> merge (monitor_heads ())
|> merge (raw_header ())
|> merge (header ())
|> merge (operations ())
|> merge (resulting_context_hash ())
|> merge (protocol_data_raw ())
|> merge (monitor_operations ())
end
let build_shell_directory (base_dir : string)
(mockup_env : Registration.mockup_environment) chain_id
(rpc_context : Tezos_protocol_environment.rpc_context)
(protocol_data : bytes) (mem_only : bool)
(write_context_callback : callback_writer) =
let (module Mockup_environment) = mockup_env in
let module M = Make (struct
include Mockup_environment
let chain_id = chain_id
let base_dir = base_dir
let rpc_context = rpc_context
let protocol_data = protocol_data
end) in
M.build_shell_directory mem_only write_context_callback
(** The directory of RPCs that the mockup client honors. Parameters are:
[mem_only] specifies whether the mockup uses a persistent state.
[mockup_env] is the implementation provided by the protocol.
[chain_id] is the only chain that the mockup honors.
[rpc_context] is data used when honoring an RPC.
*)
let build_directory (base_dir : string) (mem_only : bool)
(mockup_env : Registration.mockup_environment) (chain_id : Chain_id.t)
(rpc_context : Tezos_protocol_environment.rpc_context) protocol_data :
unit Tezos_rpc.Directory.t =
let write_context rpc_context protocol_data =
let (module Mockup_environment) = mockup_env in
Persistence.overwrite_mockup
~chain_id
~protocol_hash:Mockup_environment.protocol_hash
~protocol_data
~rpc_context
~base_dir
in
let (module Mockup_environment) = mockup_env in
let proto_directory =
Directory.prefix
Tezos_shell_services.Chain_services.path
(Directory.prefix
Tezos_shell_services.Block_services.path
(Directory.map
(fun (_chain, _block) -> Lwt.return rpc_context)
Mockup_environment.directory))
in
let shell_directory =
let (module Mockup_environment) = mockup_env in
build_shell_directory
base_dir
mockup_env
chain_id
rpc_context
protocol_data
mem_only
write_context
in
let base = Directory.merge shell_directory proto_directory in
Tezos_rpc.Directory.register_describe_directory_service
base
Tezos_rpc.Service.description_service