package octez-l2-libs
Octez layer2 libraries
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/octez-l2-libs.layer2_store/irmin_context.ml.html
Source file irmin_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
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2021 Nomadic Labs, <contact@nomadic-labs.com> *) (* Copyright (c) 2023 Marigold <contact@marigold.dev> *) (* *) (* 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. *) (* *) (*****************************************************************************) open Store_sigs open Context_sigs module Context_encoding = Tezos_context_encoding.Context_binary (* We shadow [Tezos_context_encoding] to prevent accidentally using [Tezos_context_encoding.Context] instead of [Tezos_context_encoding.Context_binary] during a future refactoring.*) module Tezos_context_encoding = struct end module Maker = Irmin_pack_unix.Maker (Context_encoding.Conf) module IStore = struct include Maker.Make (Context_encoding.Schema) module Schema = Context_encoding.Schema end module IStoreTree = Tezos_context_helpers.Context.Make_tree (Context_encoding.Conf) (IStore) type repo = IStore.Repo.t type tree = IStore.tree type 'a raw_index = ('a, repo) Context_sigs.raw_index type 'a index = ('a, repo) Context_sigs.index type rw_index = [`Read | `Write] index type ro_index = [`Read] index type 'a t = ('a, repo, tree) Context_sigs.t type rw = [`Read | `Write] t type ro = [`Read] t type commit = IStore.commit type hash = Context_hash.t type path = string list module Tree : Tezos_context_sigs.Context.TREE with type tree = IStore.tree and type key = string list and type value = bytes and type t = rw = struct include IStoreTree type t = rw type tree = IStore.tree type key = string list type value = bytes end let () = assert (Context_hash.size = IStore.Hash.hash_size) let impl_name = "Irmin" let equality_witness : (repo, tree) Context_sigs.equality_witness = (Context_sigs.Equality_witness.make (), Context_sigs.Equality_witness.make ()) let hash_to_istore_hash h = Context_hash.to_string h |> IStore.Hash.unsafe_of_raw_string let istore_hash_to_hash h = IStore.Hash.to_raw_string h |> Context_hash.of_string_exn let load : type a. cache_size:int -> a mode -> string -> a raw_index Lwt.t = fun ~cache_size mode path -> let open Lwt_syntax in let readonly = match mode with Read_only -> true | Read_write -> false in let+ repo = IStore.Repo.v (Irmin_pack.config ~readonly (* Note that the use of GC in the context requires that * the [always] indexing strategy not be used. *) ~indexing_strategy:Irmin_pack.Indexing_strategy.minimal ~lru_size:cache_size path) in {path; repo} let close ctxt = let _interrupted_gc = IStore.Gc.cancel ctxt.repo in IStore.Repo.close ctxt.repo let readonly (index : [> `Read] index) = (index :> [`Read] index) let raw_commit ?(message = "") index tree = let info = IStore.Info.v ~author:"Tezos" 0L ~message in IStore.Commit.v index.repo ~info ~parents:[] tree let commit ?message ctxt = let open Lwt_syntax in let+ commit = raw_commit ?message ctxt.index ctxt.tree in IStore.Commit.hash commit |> istore_hash_to_hash let checkout index key = let open Lwt_syntax in let* o = IStore.Commit.of_hash index.repo (hash_to_istore_hash key) in match o with | None -> return_none | Some commit -> let tree = IStore.Commit.tree commit in return_some {index; tree} let checkout_exn index key = let open Lwt_syntax in let* context = checkout index key in match context with | Some context -> return context | None -> Lwt.fail_with "No store found" let empty index = {index; tree = IStore.Tree.empty ()} let is_empty ctxt = IStore.Tree.is_empty ctxt.tree let split ctxt = IStore.split ctxt.repo (* adapted from lib_context/disk/context.ml *) let gc index ?(callback : unit -> unit Lwt.t = fun () -> Lwt.return ()) (hash : hash) = let open Lwt_syntax in let repo = index.repo in let istore_hash = hash_to_istore_hash hash in let* commit_opt = IStore.Commit.of_hash index.repo istore_hash in match commit_opt with | None -> Fmt.failwith "%a: unknown context hash" Context_hash.pp hash | Some commit -> ( let finished = function | Ok (stats : Irmin_pack_unix.Stats.Latest_gc.stats) -> let total_duration = Irmin_pack_unix.Stats.Latest_gc.total_duration stats in let finalise_duration = Irmin_pack_unix.Stats.Latest_gc.finalise_duration stats in let* () = callback () in Event.ending_context_gc ( Time.System.Span.of_seconds_exn total_duration, Time.System.Span.of_seconds_exn finalise_duration ) | Error (`Msg err) -> Event.context_gc_failure err in let commit_key = IStore.Commit.key commit in let* launch_result = IStore.Gc.run ~finished repo commit_key in match launch_result with | Error (`Msg err) -> Event.context_gc_launch_failure err | Ok false -> Event.context_gc_already_launched () | Ok true -> Event.starting_context_gc hash) let wait_gc_completion index = let open Lwt_syntax in let* r = IStore.Gc.wait index.repo in match r with | Ok _stats_opt -> return_unit | Error (`Msg _msg) -> (* Logs will be printed by the [gc] caller. *) return_unit let is_gc_finished index = IStore.Gc.is_finished index.repo let index context = context.index let export_snapshot {path = _; repo} context_hash ~path = let open Lwt_result_syntax in let*! commit_opt = IStore.Commit.of_hash repo (hash_to_istore_hash context_hash) in match commit_opt with | None -> failwith "Cannot export context snapshot: unknown context hash %a" Context_hash.pp context_hash | Some commit -> let h = IStore.Commit.key commit in let*! () = IStore.create_one_commit_store repo h path in return_unit module Proof (Hash : sig type t val of_context_hash : Context_hash.t -> t end) (Proof_encoding : sig val proof_encoding : Tezos_context_sigs.Context.Proof_types.tree Tezos_context_sigs.Context.Proof_types.t Data_encoding.t end) = struct module IStoreProof = Tezos_context_helpers.Context.Make_proof (IStore) (Context_encoding.Conf) module Tree = struct include IStoreTree type t = rw_index type tree = IStore.tree type key = path type value = bytes end type tree = Tree.tree type proof = IStoreProof.Proof.tree IStoreProof.Proof.t let hash_tree tree = Hash.of_context_hash (Tree.hash tree) let proof_encoding = Proof_encoding.proof_encoding let proof_before proof = let (`Value hash | `Node hash) = proof.IStoreProof.Proof.before in Hash.of_context_hash hash let proof_after proof = let (`Value hash | `Node hash) = proof.IStoreProof.Proof.after in Hash.of_context_hash hash let produce_proof index tree step = let open Lwt_syntax in (* Committing the context is required by Irmin to produce valid proofs. *) let* _commit_key = raw_commit index tree in match Tree.kinded_key tree with | Some k -> let* p = IStoreProof.produce_tree_proof index.repo k step in return_some p | None -> return_none let verify_proof proof step = (* The rollup node is not supposed to verify proof. We keep this part in case this changes in the future. *) let open Lwt_syntax in let* result = IStoreProof.verify_tree_proof proof step in match result with | Ok v -> return_some v | Error _ -> (* We skip the error analysis here since proof verification is not a job for the rollup node. *) return_none end (** State of the PVM that this rollup node deals with. *) module PVMState = struct type value = tree let key = ["pvm_state"] let empty () = IStore.Tree.empty () let find ctxt = IStore.Tree.find_tree ctxt.tree key let get ctxt = let open Lwt_syntax in let* pvm_state = find ctxt in match pvm_state with | Some store -> return store | None -> Lwt.fail_with "No pvm_state found" let lookup tree path = IStore.Tree.find tree path let set ctxt state = let open Lwt_syntax in let+ tree = IStore.Tree.add_tree ctxt.tree key state in {ctxt with tree} end let load ~cache_size mode path = let open Lwt_result_syntax in let*! index = load ~cache_size mode path in return index module Internal_for_tests = struct let get_a_tree key = let tree = IStore.Tree.empty () in IStore.Tree.add tree [key] Bytes.empty end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>