package tezos-shell
Tezos: core of `octez-node` (gossip, validation scheduling, mempool, ...)
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-16.0.tar.gz
sha256=ad9e08819871c75ba6f4530b125f7d157799398e4d77a1e6bfea9d91ff37ff55
sha512=c5dc4d40cc09bc6980fbbdb5c2e105bf4252cf9cfcb2b49660b0ebe4dc789f6709ec3b3bf2f87d81580d3eed9521eeb1c960f24d9b14eb0285aaba1f84d10a9b
doc/src/tezos-shell/prevalidator.ml.html
Source file prevalidator.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
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *) (* Copyright (c) 2018-2022 Nomadic Labs, <contact@nomadic-labs.com> *) (* *) (* Permission is hereby granted, free of charge, to any person obtaining a *) (* copy of this software and associated documentation files (the "Software"),*) (* to deal in the Software without restriction, including without limitation *) (* the rights to use, copy, modify, merge, publish, distribute, sublicense, *) (* and/or sell copies of the Software, and to permit persons to whom the *) (* Software is furnished to do so, subject to the following conditions: *) (* *) (* The above copyright notice and this permission notice shall be included *) (* in all copies or substantial portions of the Software. *) (* *) (* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*) (* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *) (* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *) (* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*) (* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *) (* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *) (* DEALINGS IN THE SOFTWARE. *) (* *) (*****************************************************************************) include Prevalidator_internal_common open Prevalidator_worker_state module ChainProto_registry = Map.Make (struct type t = Chain_id.t * Protocol_hash.t let compare (c1, p1) (c2, p2) = let pc = Protocol_hash.compare p1 p2 in if pc = 0 then Chain_id.compare c1 c2 else pc end) let chain_proto_registry : t ChainProto_registry.t ref = ref ChainProto_registry.empty let create limits (filter : Shell_plugin.filter_t) chain_db = let open Lwt_result_syntax in let chain_store = Distributed_db.chain_store chain_db in let chain_id = Store.Chain.chain_id chain_store in let proto_hash = match filter with | Recent (module Filter) -> Filter.Proto.hash | Legacy (module Filter) -> Filter.Proto.hash in match ChainProto_registry.find (chain_id, proto_hash) !chain_proto_registry with | None -> let prevalidator = match filter with | Recent (module Filter) -> Prevalidator_internal.make limits chain_db chain_id (module Filter) | Legacy (module Filter) -> Legacy_prevalidator_internal.make limits chain_db chain_id (module Filter) in let (module Prevalidator : T) = prevalidator in chain_proto_registry := ChainProto_registry.add Prevalidator.name prevalidator !chain_proto_registry ; return prevalidator | Some p -> return p let shutdown (t : t) = let module Prevalidator : T = (val t) in let w = Lazy.force Prevalidator.worker in chain_proto_registry := ChainProto_registry.remove Prevalidator.name !chain_proto_registry ; Prevalidator.Worker.shutdown w let flush (t : t) event head live_blocks live_operations = let open Lwt_result_syntax in let module Prevalidator : T = (val t) in let w = Lazy.force Prevalidator.worker in let*! r = Prevalidator.Worker.Queue.push_request_and_wait w (Request.Flush (head, event, live_blocks, live_operations)) in match r with | Ok r -> Lwt.return_ok r | Error (Closed None) -> fail [Worker_types.Terminated] | Error (Closed (Some errs)) -> fail errs | Error (Any exn) -> fail [Exn exn] | Error (Request_error error_trace) -> fail error_trace let notify_operations (t : t) peer mempool = let module Prevalidator : T = (val t) in let w = Lazy.force Prevalidator.worker in let open Lwt_result_syntax in let*! (_was_pushed : bool) = Prevalidator.Worker.Queue.push_request w (Request.Notify (peer, mempool)) in Lwt.return_unit let inject_operation (t : t) ~force op = let module Prevalidator : T = (val t) in let open Lwt_result_syntax in let w = Lazy.force Prevalidator.worker in let*! r = Prevalidator.Worker.Queue.push_request_and_wait w (Inject {op; force}) in match r with | Ok r -> Lwt.return_ok r | Error (Closed None) -> fail [Worker_types.Terminated] | Error (Closed (Some errs)) -> fail errs | Error (Any exn) -> fail [Exn exn] | Error (Request_error error_trace) -> fail error_trace let status (t : t) = let module Prevalidator : T = (val t) in let w = Lazy.force Prevalidator.worker in Prevalidator.Worker.status w let running_workers () = ChainProto_registry.fold (fun (id, proto) t acc -> (id, proto, t) :: acc) !chain_proto_registry [] let pending_requests (t : t) = let module Prevalidator : T = (val t) in let w = Lazy.force Prevalidator.worker in Prevalidator.Worker.Queue.pending_requests w let current_request (t : t) = let module Prevalidator : T = (val t) in let w = Lazy.force Prevalidator.worker in Prevalidator.Worker.current_request w let information (t : t) = let module Prevalidator : T = (val t) in let w = Lazy.force Prevalidator.worker in Prevalidator.Worker.information w let pipeline_length (t : t) = let module Prevalidator : T = (val t) in let w = Lazy.force Prevalidator.worker in Prevalidator.Worker.Queue.pending_requests_length w let empty_rpc_directory : unit Tezos_rpc.Directory.t = Tezos_rpc.Directory.gen_register Tezos_rpc.Directory.empty (Block_services.Empty.S.Mempool.pending_operations Tezos_rpc.Path.open_root) (fun _pv params () -> let pending_operations = { Block_services.Empty.Mempool.applied = []; 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 Block_services.Empty.Mempool.pending_operations_version_dispatcher ~version:params#version pending_operations) let rpc_directory : t option Tezos_rpc.Directory.t = Tezos_rpc.Directory.register_dynamic_directory Tezos_rpc.Directory.empty (Block_services.mempool_path Tezos_rpc.Path.open_root) (function | None -> Lwt.return (Tezos_rpc.Directory.map (fun _ -> Lwt.return_unit) empty_rpc_directory) | Some t -> let module Prevalidator : T = (val t : T) in let w = Lazy.force Prevalidator.worker in let pv = Prevalidator.Worker.state w in let pv_rpc_dir = Lazy.force (Prevalidator.get_rpc_directory pv) in Lwt.return (Tezos_rpc.Directory.map (fun _ -> Lwt.return pv) pv_rpc_dir))
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>