package irmin-pack
Irmin backend which stores values in a pack file
Install
Dune Dependency
Authors
Maintainers
Sources
irmin-3.6.1.tbz
sha256=11fc2570bdbfd48478c89113fc801084a84a9a2c12d9bf8c64e05ce64ae19bd7
sha512=2171699ca24dec5c9c908a2676b272e034c14eb17f7052a794535e52af0be40be68a689e59c0a640ee244b11703320483f4d0c261542e6242ba23a8f1272b9b0
doc/src/irmin-pack/pack_value.ml.html
Source file pack_value.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
(* * Copyright (c) 2018-2022 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 include Pack_value_intf module Kind = struct type t = | Commit_v1 | Commit_v2 | Contents | Inode_v1_unstable | Inode_v1_stable | Inode_v2_root | Inode_v2_nonroot | Dangling_parent_commit let to_magic = function | Commit_v1 -> 'C' | Commit_v2 -> 'D' | Contents -> 'B' | Inode_v1_unstable -> 'I' | Inode_v1_stable -> 'N' | Inode_v2_root -> 'R' | Inode_v2_nonroot -> 'O' | Dangling_parent_commit -> 'P' let of_magic_exn = function | 'C' -> Commit_v1 | 'D' -> Commit_v2 | 'B' -> Contents | 'I' -> Inode_v1_unstable | 'N' -> Inode_v1_stable | 'R' -> Inode_v2_root | 'O' -> Inode_v2_nonroot | 'P' -> Dangling_parent_commit | c -> Fmt.failwith "Kind.of_magic: unexpected magic char %C" c let all = [ Commit_v1; Commit_v2; Contents; Inode_v1_unstable; Inode_v1_stable; Inode_v2_root; Inode_v2_nonroot; Dangling_parent_commit; ] let to_enum = function | Commit_v1 -> 0 | Commit_v2 -> 1 | Contents -> 2 | Inode_v1_unstable -> 3 | Inode_v1_stable -> 4 | Inode_v2_root -> 5 | Inode_v2_nonroot -> 6 | Dangling_parent_commit -> 7 let pp = Fmt.of_to_string (function | Commit_v1 -> "Commit_v1" | Commit_v2 -> "Commit_v2" | Contents -> "Contents" | Inode_v1_unstable -> "Inode_v1_unstable" | Inode_v1_stable -> "Inode_v1_stable" | Inode_v2_root -> "Inode_v2_root" | Inode_v2_nonroot -> "Inode_v2_nonroot" | Dangling_parent_commit -> "Dangling_parent_commit") let length_header_exn : t -> length_header = let some_varint = Some `Varint in function | Commit_v1 | Inode_v1_unstable | Inode_v1_stable -> None | Commit_v2 | Inode_v2_root | Inode_v2_nonroot | Dangling_parent_commit -> some_varint | Contents -> Fmt.failwith "Can't determine length header for user-defined codec Contents" let t = Irmin.Type.map ~pp Irmin.Type.char of_magic_exn to_magic end type ('h, 'a) value = { hash : 'h; kind : Kind.t; v : 'a } [@@deriving irmin] module type S = S with type kind := Kind.t let get_dynamic_sizer_exn : type a. a Irmin.Type.t -> string -> int -> int = fun typ -> match Irmin.Type.(Size.of_encoding typ) with | Unknown -> Fmt.failwith "Type must have a recoverable encoded length: %a" Irmin.Type.pp_ty typ | Static n -> fun _ _ -> n | Dynamic f -> f module Of_contents (Conf : Config) (Hash : Irmin.Hash.S) (Key : T) (Data : Irmin.Type.S) = struct module Hash = Irmin.Hash.Typed (Hash) (Data) type t = Data.t [@@deriving irmin ~size_of] type key = Key.t type hash = Hash.t let hash = Hash.hash let kind = Kind.Contents let length_header = Fun.const Conf.contents_length_header let value = [%typ: (Hash.t, Data.t) value] let encode_value = Irmin.Type.(unstage (encode_bin value)) let decode_value = Irmin.Type.(unstage (decode_bin value)) let encode_bin ~dict:_ ~offset_of_key:_ hash v f = encode_value { kind; hash; v } f let decode_bin ~dict:_ ~key_of_offset:_ ~key_of_hash:_ s off = let t = decode_value s off in t.v let decode_bin_length = get_dynamic_sizer_exn value let kind _ = kind let weight = (* Normalise the weight of the blob, assuming that the 'average' size for a blob is 1k bytes. *) let normalise n = max 1 (n / 1_000) in match Irmin.Type.Size.of_value t with | Unknown -> (* this should not happen unless the user has specified a very weird content type. *) Fun.const max_int | Dynamic f -> fun v -> normalise (f v) | Static n -> Fun.const (normalise n) end module Of_commit (Hash : Irmin.Hash.S) (Key : Irmin.Key.S with type hash = Hash.t) (Commit : Irmin.Commit.Generic_key.S with type node_key = Key.t and type commit_key = Key.t) = struct module Hash = Irmin.Hash.Typed (Hash) (Commit) type t = Commit.t [@@deriving irmin] type key = Key.t type hash = Hash.t [@@deriving irmin ~encode_bin ~decode_bin] let hash = Hash.hash let kind _ = Kind.Commit_v2 let weight _ = 1 (* A commit implementation that uses integer offsets for addresses where possible. *) module Commit_direct = struct type address = Offset of int63 | Hash of Hash.t [@@deriving irmin] type t = { node_offset : address; parent_offsets : address list; info : Commit.Info.t; } [@@deriving irmin ~encode_bin ~to_bin_string ~decode_bin] let size_of = match Irmin.Type.Size.of_value t with | Dynamic f -> f | Static _ | Unknown -> assert false end module Entry = struct module V0 = struct type t = (hash, Commit.t) value [@@deriving irmin ~decode_bin] end module V1 = struct type data = { length : int; v : Commit_direct.t } [@@deriving irmin] type t = (hash, data) value [@@deriving irmin ~encode_bin ~decode_bin] end end let length_header = function | Kind.Contents -> assert false | x -> Kind.length_header_exn x let encode_bin ~dict:_ ~offset_of_key hash v f = let address_of_key k : Commit_direct.address = match offset_of_key k with | None -> Hash (Key.to_hash k) | Some k -> Offset k in let v = let info = Commit.info v in let node_offset = address_of_key (Commit.node v) in let parent_offsets = List.map address_of_key (Commit.parents v) in { Commit_direct.node_offset; parent_offsets; info } in let length = Commit_direct.size_of v in Entry.V1.encode_bin { hash; kind = Commit_v2; v = { length; v } } f let decode_bin ~dict:_ ~key_of_offset ~key_of_hash s off = let key_of_address : Commit_direct.address -> Key.t = function | Offset x -> key_of_offset x | Hash x -> key_of_hash x in match Kind.of_magic_exn s.[!off + Hash.hash_size] with | Commit_v1 -> (Entry.V0.decode_bin s off).v | Commit_v2 -> let { v = { Entry.V1.v = commit; _ }; _ } = Entry.V1.decode_bin s off in let info = commit.info in let node = key_of_address commit.node_offset in let parents = List.map key_of_address commit.parent_offsets in Commit.v ~info ~node ~parents | _ -> assert false let decode_bin_length = let of_v0_entry = get_dynamic_sizer_exn Entry.V0.t and of_v1_entry = get_dynamic_sizer_exn Entry.V1.t in fun s off -> match Kind.of_magic_exn s.[off + Hash.hash_size] with | Commit_v1 -> of_v0_entry s off | Commit_v2 -> of_v1_entry s off | _ -> assert false end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>