package octez-shell-libs
Octez shell libraries
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/octez-shell-libs.shell/prevalidator_bounding.ml.html
Source file prevalidator_bounding.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
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2023 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. *) (* *) (*****************************************************************************) type config = {max_operations : int; max_total_bytes : int} let default_max_operations = 10_000 let default_max_total_bytes = 10_000_000 let default_config = { max_operations = default_max_operations; max_total_bytes = default_max_total_bytes; } let config_encoding : config Data_encoding.t = let open Data_encoding in conv (fun {max_operations; max_total_bytes} -> (max_operations, max_total_bytes)) (fun (max_operations, max_total_bytes) -> {max_operations; max_total_bytes}) (obj2 (dft "max_operations" uint16 default_config.max_operations) (dft "max_total_bytes" (uint_like_n ()) default_config.max_total_bytes)) open Shell_operation (* Interface for a [Bounding] module. *) module type T = sig type state val empty : state type protocol_operation val add_operation : state -> config -> protocol_operation operation -> (state * Operation_hash.t list, protocol_operation operation option) result val remove_operation : state -> Operation_hash.t -> state end (* Include [T] but additionally aware of the state's exact definition: this is useful for the tests. *) module type T_for_tests = sig type protocol_operation type operation := protocol_operation Shell_operation.operation module Opset : Set.S with type elt = operation type state = { opset : Opset.t; ophmap : operation Operation_hash.Map.t; minop : operation option; cardinal : int; total_bytes : int; } include T with type protocol_operation := protocol_operation and type state := state end (* Build a [Bounding] module. *) module Make (Proto : Tezos_protocol_environment.PROTOCOL) : T_for_tests with type protocol_operation = Proto.operation = struct type protocol_operation = Proto.operation type operation = protocol_operation Shell_operation.operation let compare_ops op1 op2 = Proto.compare_operations (op1.hash, op1.protocol) (op2.hash, op2.protocol) module Opset = Set.Make (struct type t = operation let compare = compare_ops end) (** Internal overview of all the valid operations present in the mempool. Structural invariants: - [opset] and [ophmap] contain the same operations. - [minop] is the minimum of [opset] (or [None] when [opset] is empty). - [cardinal] is the cardinal of [opset]. - [total_bytes] is the sum of the byte sizes of all elements in [opset]. Bound invariants: - [cardinal <= config.max_operations] - [total_bytes <= config.max_total_bytes] *) type state = { opset : Opset.t; (** Ordered set of valid operations in the mempool. Note that the operations are ordered by the protocol's [compare_operations] function, NOT by the size of their bytes. *) ophmap : operation Operation_hash.Map.t; (** Contain the same elements as [opset], indexed by their hash. *) minop : operation option; (** The smallest operation in [opset] according to the protocol's [compare_operations] function (not necessarily the one with the least bytes). This is [None] if and only if [opset] is empty. *) cardinal : int; (** The number of operations in [opset]. *) total_bytes : int; (** The sum of the sizes in bytes of all the operations in [opset]. *) } let empty = { opset = Opset.empty; ophmap = Operation_hash.Map.empty; minop = None; cardinal = 0; total_bytes = 0; } (* Precondition: [op] is present in the [state]. *) let remove_present state op = let opset = Opset.remove op state.opset in let minop = match state.minop with | None -> None (* This is impossible since [op] was in the [state]. *) | Some minop -> if compare_ops op minop <= 0 then (* The removed [op] was the minimum. *) Opset.min_elt opset else state.minop in { opset; ophmap = Operation_hash.Map.remove op.hash state.ophmap; minop; cardinal = state.cardinal - 1; total_bytes = state.total_bytes - op.size; } (* Remove [oph] if it is in the [state], otherwise do nothing. *) let remove_operation state oph = match Operation_hash.Map.find oph state.ophmap with | Some op -> remove_present state op | None -> state let check_bound_invariants state config = state.cardinal <= config.max_operations && state.total_bytes <= config.max_total_bytes (* Remove the minimal operation until the bound invariants are restored. Return the updated state and the list of removed operation hashes. *) let enforce_bound_invariants state config = let rec aux state removed = if check_bound_invariants state config then (state, removed) else (* Invariants are broken: remove the minimal operation. *) match state.minop with | None -> (* Should not happen: the empty set cannot break the invariants. *) (state, removed) | Some minop -> aux (remove_present state minop) (minop.hash :: removed) in aux state [] (* Remove the minimal operation until there is room for [op], and return the last operation removed this way. Precondition: the [state] satisfies the invariants but does not already have room for [op]. We don't need to check the [config.max_operations] bound because removing one operation is always enough to add [op] without breaking it. Note that this can only return [None] when removing all operations is still not enough to make room for [op] -- ie., when [op.size > config.max_total_bytes]. *) let rec find_op_to_overtake config state op = match state.minop with | None -> None | Some minop -> if state.total_bytes - minop.size + op.size <= config.max_total_bytes then Some minop else find_op_to_overtake config (remove_present state minop) op (* Precondition: [op] is valid (otherwise calling [Proto.compare_operations] on it may return an error). *) let add_operation state config op = if Operation_hash.Map.mem op.hash state.ophmap then Ok (state, []) else let state = { opset = Opset.add op state.opset; ophmap = Operation_hash.Map.add op.hash op state.ophmap; minop = (match state.minop with | None -> Some op | Some minop -> if compare_ops op minop < 0 then Some op else state.minop); cardinal = state.cardinal + 1; total_bytes = state.total_bytes + op.size; } in let state, removed = enforce_bound_invariants state config in if List.mem ~equal:Operation_hash.equal op.hash removed then (* If the new operation needs to be immediately removed in order to maintain the mempool bound invariants, then it should actually be rejected. We feed to [find_op_to_overtake] the [state] returned by [enforce_bound_invariants] to avoid handling again the operations removed by it: we already know that removing them is not enough to make room for [op]. *) let op_to_overtake = find_op_to_overtake config state op in Error op_to_overtake else Ok (state, removed) end module Internal_for_tests = struct module type T = T_for_tests module Make = Make end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>