package irmin-pack
Irmin backend which stores values in a pack file
Install
Dune Dependency
Authors
Maintainers
Sources
irmin-3.3.1.tbz
sha256=535254ca443858bfc9e540535977fed63e9206d4b78c5cac0239d1e6657b5c78
sha512=fa18557fcf808121a0495de707c6f7bff4a69197b310480816648adafd4a659b5673a1f5bbf4574f517b7d93253735ef7798b0c365d87afac60675007ef19b54
doc/src/irmin-pack.mem/irmin_pack_mem.ml.html
Source file irmin_pack_mem.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
(* * Copyright (c) 2018-2021 Tarides <contact@tarides.com> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *) open! Import module Atomic_write (K : Irmin.Type.S) (V : Irmin.Hash.S) = struct module AW = Irmin_mem.Atomic_write (K) (V) include AW let v () = AW.v (Irmin_mem.config ()) let flush _t = () end module Indexable_mem (Hash : Irmin.Hash.S) (Value : Irmin_pack.Pack_value.S with type hash := Hash.t and type key = Hash.t) = struct module Pack = Indexable.Maker (Hash) module Indexable_mem = Pack.Make (Value) include Irmin_pack.Indexable.Closeable (Indexable_mem) let v x = Indexable_mem.v x >|= make_closeable end module Maker (Config : Irmin_pack.Conf.S) = struct type endpoint = unit include Irmin.Key.Store_spec.Hash_keyed module Make (Schema : Irmin.Schema.Extended) = struct module H = Schema.Hash module C = Schema.Contents module P = Schema.Path module M = Schema.Metadata module B = Schema.Branch module Pack = Indexable.Maker (H) module XKey = struct include Irmin.Key.Of_hash (H) let unfindable_of_hash x = x end module X = struct module Schema = Schema module Hash = H module Info = Schema.Info module Contents = struct module Pack_value = Irmin_pack.Pack_value.Of_contents (Config) (H) (XKey) (C) module Indexable = Indexable_mem (H) (Pack_value) include Irmin.Contents.Store_indexable (Indexable) (H) (C) end module Node = struct module Value = Schema.Node (XKey) (XKey) module Indexable = struct module Inter = Irmin_pack.Inode.Make_internal (Config) (H) (XKey) (Value) module CA = Pack.Make (Inter.Raw) include Irmin_pack.Inode.Make (H) (XKey) (Value) (Inter) (CA) let v = CA.v end include Irmin.Node.Generic_key.Store (Contents) (Indexable) (H) (Indexable.Val) (M) (P) end module Node_portable = Node.Indexable.Val.Portable module Commit = struct module Value = struct include Schema.Commit (Node.Key) (XKey) module Info = Schema.Info type hash = Hash.t [@@deriving irmin] end module Pack_value = Irmin_pack.Pack_value.Of_commit (H) (XKey) (Value) module Indexable = Indexable_mem (H) (Pack_value) include Irmin.Commit.Generic_key.Store (Info) (Node) (Indexable) (H) (Value) end module Commit_portable = Irmin.Commit.Portable.Of_commit (Commit.Value) module Branch = struct module Key = B module Val = struct include H include Commit.Key end module AW = Atomic_write (Key) (Val) include Irmin_pack.Atomic_write.Closeable (AW) let v () = AW.v () >|= make_closeable end module Slice = Irmin.Backend.Slice.Make (Contents) (Node) (Commit) module Remote = Irmin.Backend.Remote.None (H) (B) module Repo = struct type t = { config : Irmin.Backend.Conf.t; contents : read Contents.Indexable.t; node : read Node.Indexable.t; commit : read Commit.Indexable.t; branch : Branch.t; } let contents_t t : 'a Contents.t = t.contents let node_t t : 'a Node.t = (contents_t t, t.node) let commit_t t : 'a Commit.t = (node_t t, t.commit) let branch_t t = t.branch let config t = t.config let batch t f = Commit.Indexable.batch t.commit (fun commit -> Node.Indexable.batch t.node (fun node -> Contents.Indexable.batch t.contents (fun contents -> let contents : 'a Contents.t = contents in let node : 'a Node.t = (contents, node) in let commit : 'a Commit.t = (node, commit) in f contents node commit))) let v config = let root = Irmin_pack.Conf.root config in let* contents = Contents.Indexable.v root in let* node = Node.Indexable.v root in let* commit = Commit.Indexable.v root in let+ branch = Branch.v () in { contents; node; commit; branch; config } let close t = Contents.Indexable.close (contents_t t) >>= fun () -> Node.Indexable.close (snd (node_t t)) >>= fun () -> Commit.Indexable.close (snd (commit_t t)) >>= fun () -> Branch.close t.branch (* An in-memory store is always in reload. *) let reload _ = () let flush _ = () end end include Irmin.Of_backend (X) module Snapshot = struct include X.Node.Indexable.Inter.Snapshot type t = Inode of inode | Blob of Backend.Contents.Val.t [@@deriving irmin] let export ?on_disk:_ _ _ ~root_key:_ = Fmt.failwith "not implemented" module Import = struct type process = unit let v ?on_disk:_ _ = Fmt.failwith "not implemented" let save_elt _ _ = Fmt.failwith "not implemented" let close _ = Fmt.failwith "not implemented" end end let integrity_check_inodes ?heads:_ _ = Lwt.return (Error (`Msg "Not supported: integrity checking of in-memory inodes")) let reload = X.Repo.reload let flush = X.Repo.flush let integrity_check ?ppf:_ ~auto_repair:_ _t = Ok `No_error let traverse_pack_file _ _ = () let test_traverse_pack_file _ _ = () let stats ~dump_blob_paths_to:_ ~commit:_ _ = Lwt.return_unit end end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>