package tezos-protocol-011-PtHangz2
Tezos protocol 011-PtHangz2 package
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/tezos_raw_protocol_011_PtHangz2/alpha_context.ml.html
Source file alpha_context.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
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *) (* Copyright (c) 2019-2020 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 t = Raw_context.t type context = t module type BASIC_DATA = sig type t include Compare.S with type t := t val encoding : t Data_encoding.t val pp : Format.formatter -> t -> unit end module Tez = Tez_repr module Period = Period_repr module Timestamp = struct include Time_repr let current = Raw_context.current_timestamp let predecessor = Raw_context.predecessor_timestamp end include Operation_repr module Operation = struct type 'kind t = 'kind operation = { shell : Operation.shell_header; protocol_data : 'kind protocol_data; } type packed = packed_operation let unsigned_encoding = unsigned_operation_encoding include Operation_repr end module Block_header = Block_header_repr module Vote = struct include Vote_repr include Vote_storage end module Raw_level = Raw_level_repr module Cycle = Cycle_repr module Script_string = Script_string_repr module Script_int = Script_int_repr module Script_timestamp = struct include Script_timestamp_repr let now ctxt = let {Constants_repr.minimal_block_delay; _} = Raw_context.constants ctxt in let current_timestamp = Raw_context.predecessor_timestamp ctxt in Time.add current_timestamp (Period_repr.to_seconds minimal_block_delay) |> Timestamp.to_seconds |> of_int64 end module Script = struct include Michelson_v1_primitives include Script_repr let force_decode_in_context ctxt lexpr = Raw_context.consume_gas ctxt (Script_repr.force_decode_cost lexpr) >>? fun ctxt -> Script_repr.force_decode lexpr >|? fun v -> (v, ctxt) let force_bytes_in_context ctxt lexpr = Raw_context.consume_gas ctxt (Script_repr.force_bytes_cost lexpr) >>? fun ctxt -> Script_repr.force_bytes lexpr >|? fun v -> (v, ctxt) end module Fees = Fees_storage type public_key = Signature.Public_key.t type public_key_hash = Signature.Public_key_hash.t type signature = Signature.t module Constants = struct include Constants_repr include Constants_storage let all ctxt = all (parametric ctxt) end module Voting_period = struct include Voting_period_repr include Voting_period_storage end module Gas = struct include Gas_limit_repr type error += Gas_limit_too_high = Raw_context.Gas_limit_too_high type error += Block_quota_exceeded = Raw_context.Block_quota_exceeded type error += Operation_quota_exceeded = Raw_context.Operation_quota_exceeded let check_limit_is_valid = Raw_context.check_gas_limit_is_valid let set_limit = Raw_context.set_gas_limit let consume_limit_in_block = Raw_context.consume_gas_limit_in_block let set_unlimited = Raw_context.set_gas_unlimited let consume = Raw_context.consume_gas let remaining_operation_gas = Raw_context.remaining_operation_gas let update_remaining_operation_gas = Raw_context.update_remaining_operation_gas let gas_exhausted_error = Raw_context.gas_exhausted_error let level = Raw_context.gas_level let consumed = Raw_context.gas_consumed let block_level = Raw_context.block_gas_level (* Necessary to inject costs for Storage_costs into Gas.cost *) let cost_of_repr cost = cost end module Level = struct include Level_repr include Level_storage end module Lazy_storage = struct module Kind = Lazy_storage_kind module IdSet = Kind.IdSet include Lazy_storage_diff let legacy_big_map_diff_encoding = Data_encoding.conv Contract_storage.Legacy_big_map_diff.of_lazy_storage_diff Contract_storage.Legacy_big_map_diff.to_lazy_storage_diff Contract_storage.Legacy_big_map_diff.encoding end module Contract = struct include Contract_repr include Contract_storage let originate c contract ~balance ~script ~delegate = raw_originate c contract ~balance ~script ~delegate let init_origination_nonce = Raw_context.init_origination_nonce let unset_origination_nonce = Raw_context.unset_origination_nonce end module Global_constants_storage = Global_constants_storage module Big_map = struct module Big_map = Lazy_storage_kind.Big_map module Id = struct type t = Big_map.Id.t let encoding = Big_map.Id.encoding let rpc_arg = Big_map.Id.rpc_arg let parse_z = Big_map.Id.parse_z let unparse_to_z = Big_map.Id.unparse_to_z end let fresh ~temporary c = Lazy_storage.fresh Big_map ~temporary c let mem c m k = Storage.Big_map.Contents.mem (c, m) k let get_opt c m k = Storage.Big_map.Contents.find (c, m) k let list_values ?offset ?length c m = Storage.Big_map.Contents.list_values ?offset ?length (c, m) let exists c id = Raw_context.consume_gas c (Gas_limit_repr.read_bytes_cost 0) >>?= fun c -> Storage.Big_map.Key_type.find c id >>=? fun kt -> match kt with | None -> return (c, None) | Some kt -> Storage.Big_map.Value_type.get c id >|=? fun kv -> (c, Some (kt, kv)) type update = Big_map.update = { key : Script_repr.expr; key_hash : Script_expr_hash.t; value : Script_repr.expr option; } type updates = Big_map.updates type alloc = Big_map.alloc = { key_type : Script_repr.expr; value_type : Script_repr.expr; } end module Sapling = struct module Sapling_state = Lazy_storage_kind.Sapling_state module Id = struct type t = Sapling_state.Id.t let encoding = Sapling_state.Id.encoding let rpc_arg = Sapling_state.Id.rpc_arg let parse_z = Sapling_state.Id.parse_z let unparse_to_z = Sapling_state.Id.unparse_to_z end include Sapling_repr include Sapling_storage include Sapling_validator let fresh ~temporary c = Lazy_storage.fresh Sapling_state ~temporary c type updates = Sapling_state.updates type alloc = Sapling_state.alloc = {memo_size : Sapling_repr.Memo_size.t} end module Receipt = Receipt_repr module Delegate = Delegate_storage module Roll = struct include Roll_repr include Roll_storage end module Nonce = Nonce_storage module Seed = struct include Seed_repr include Seed_storage end module Fitness = struct include Fitness_repr include Fitness type fitness = t include Fitness_storage end module Bootstrap = Bootstrap_storage module Commitment = struct include Commitment_repr include Commitment_storage end module Global = struct let get_block_priority = Storage.Block_priority.get let set_block_priority = Storage.Block_priority.update end module Migration = Migration_repr let prepare_first_block = Init_storage.prepare_first_block let prepare = Init_storage.prepare (* The rationale behind the value of this constant is that an operation should be considered as alive for about one hour: minimal_block_delay context * max_operations_ttl = 3600 To avoid an unecessary computation, we have hard-coded the value of this constant. *) let max_operations_ttl = 120 let finalize ?commit_message:message c = let fitness = Fitness.from_int64 (Fitness.current c) in let context = Raw_context.recover c in { Updater.context; fitness; message; max_operations_ttl; last_allowed_fork_level = Raw_level.to_int32 @@ Level.last_allowed_fork_level c; } let activate = Raw_context.activate let record_endorsement = Raw_context.record_endorsement let allowed_endorsements = Raw_context.allowed_endorsements let init_endorsements = Raw_context.init_endorsements let included_endorsements = Raw_context.included_endorsements let reset_internal_nonce = Raw_context.reset_internal_nonce let fresh_internal_nonce = Raw_context.fresh_internal_nonce let record_internal_nonce = Raw_context.record_internal_nonce let internal_nonce_already_recorded = Raw_context.internal_nonce_already_recorded let add_fees = Raw_context.add_fees let add_rewards = Raw_context.add_rewards let get_fees = Raw_context.get_fees let get_rewards = Raw_context.get_rewards let description = Raw_context.description module Parameters = Parameters_repr module Liquidity_baking = Liquidity_baking_repr module Cache = struct type index = int type size = int type identifier = string type namespace = string let compare_namespace = Compare.String.compare type internal_identifier = {namespace : namespace; id : identifier} let separator = '@' let sanitize namespace = if String.contains namespace separator then invalid_arg (Format.asprintf "Invalid cache namespace: '%s'. Character %c is forbidden." namespace separator) else namespace let string_of_internal_identifier {namespace; id} = namespace ^ String.make 1 separator ^ id let internal_identifier_of_string raw = match String.split_on_char separator raw with | [] -> assert false | namespace :: id -> (* An identifier may contain [separator], hence we concatenate possibly splitted parts of [id]. *) {namespace = sanitize namespace; id = String.concat "" id} let internal_identifier_of_key key = let raw = Raw_context.Cache.identifier_of_key key in internal_identifier_of_string raw let key_of_internal_identifier ~cache_index identifier = let raw = string_of_internal_identifier identifier in Raw_context.Cache.key_of_identifier ~cache_index raw let make_key = let namespaces = ref [] in fun ~cache_index ~namespace -> let namespace = sanitize namespace in if List.mem ~equal:String.equal namespace !namespaces then invalid_arg (Format.sprintf "Cache key namespace %s already exist." (namespace :> string)) else ( namespaces := namespace :: !namespaces ; fun ~id -> let identifier = {namespace; id} in key_of_internal_identifier ~cache_index identifier) module NamespaceMap = Map.Make (struct type t = namespace let compare = compare_namespace end) type partial_key_handler = t -> string -> Context.Cache.value tzresult Lwt.t let value_of_key_handlers : partial_key_handler NamespaceMap.t ref = ref NamespaceMap.empty module Admin = struct include Raw_context.Cache let list_keys context ~cache_index = Raw_context.Cache.list_keys context ~cache_index let key_rank context key = Raw_context.Cache.key_rank context key let value_of_key ctxt key = (* [value_of_key] is a maintainance operation: it is typically run when a node reboots. For this reason, this operation is not carbonated. *) let ctxt = Gas.set_unlimited ctxt in let {namespace; id} = internal_identifier_of_key key in match NamespaceMap.find namespace !value_of_key_handlers with | Some value_of_key -> value_of_key ctxt id | None -> failwith (Format.sprintf "No handler for key `%s%c%s'" namespace separator id) end module type CLIENT = sig val cache_index : int val namespace : namespace type cached_value val value_of_identifier : t -> identifier -> cached_value tzresult Lwt.t end module type INTERFACE = sig type cached_value val update : t -> identifier -> (cached_value * int) option -> t tzresult val find : t -> identifier -> cached_value option tzresult Lwt.t val list_identifiers : t -> (identifier * int) list val identifier_rank : t -> identifier -> int option val size : context -> size val size_limit : context -> size end let register_exn (type cvalue) (module C : CLIENT with type cached_value = cvalue) : (module INTERFACE with type cached_value = cvalue) = if Compare.Int.( C.cache_index < 0 || C.cache_index >= List.length Constants_repr.cache_layout) then invalid_arg "Cache index is invalid" ; let mk = make_key ~cache_index:C.cache_index ~namespace:C.namespace in (module struct type cached_value = C.cached_value type Admin.value += K of cached_value let () = let voi ctxt i = C.value_of_identifier ctxt i >>=? fun v -> return (K v) in value_of_key_handlers := NamespaceMap.add C.namespace voi !value_of_key_handlers let size ctxt = Option.value ~default:max_int @@ Admin.cache_size ctxt ~cache_index:C.cache_index let size_limit ctxt = Option.value ~default:max_int @@ Admin.cache_size_limit ctxt ~cache_index:C.cache_index let update ctxt id v = let cache_size_in_bytes = size ctxt in Raw_context.consume_gas ctxt (Cache_costs.cache_update ~cache_size_in_bytes) >|? fun ctxt -> let v = Option.map (fun (v, size) -> (K v, size)) v in Admin.update ctxt (mk ~id) v let find ctxt id = let cache_size_in_bytes = size ctxt in Raw_context.consume_gas ctxt (Cache_costs.cache_update ~cache_size_in_bytes) >>?= fun ctxt -> Admin.find ctxt (mk ~id) >>= function | None -> return None | Some (K v) -> return (Some v) | _ -> (* This execution path is impossible because all the keys of C's namespace (which is unique to C) are constructed with [K]. This [assert false] could have been pushed into the environment in exchange for extra complexity. The argument that justifies this [assert false] seems simple enough to keep the current design though. *) assert false let list_identifiers ctxt = Admin.list_keys ctxt ~cache_index:C.cache_index |> function | None -> (* `cache_index` is valid. *) assert false | Some list -> List.filter_map (fun (key, age) -> let {namespace; id} = internal_identifier_of_key key in if String.equal namespace C.namespace then Some (id, age) else None) list let identifier_rank ctxt id = Admin.key_rank ctxt (mk ~id) end) end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>