7807f7aa4d
Get rid of the old SHA1 that was used by git...
85 lines
2.8 KiB
OCaml
85 lines
2.8 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
(** Tezos - Versioned, block indexed (key x value) store *)
|
|
|
|
(** A block-indexed (key x value) store directory. *)
|
|
type index
|
|
|
|
(** A (key x value) store for a given block. *)
|
|
type t
|
|
type context = t
|
|
|
|
(** Open or initialize a versioned store at a given path. *)
|
|
val init:
|
|
?patch_context:(context -> context Lwt.t) ->
|
|
root:string ->
|
|
index Lwt.t
|
|
|
|
val commit_genesis:
|
|
index ->
|
|
net_id:Net_id.t ->
|
|
time:Time.t ->
|
|
protocol:Protocol_hash.t ->
|
|
Context_hash.t Lwt.t
|
|
|
|
val commit_test_network_genesis:
|
|
index -> Block_hash.t -> Time.t -> context ->
|
|
(Net_id.t * Block_hash.t * Context_hash.t) tzresult Lwt.t
|
|
|
|
(** {2 Generic interface} ****************************************************)
|
|
|
|
type key = string list
|
|
type value = MBytes.t
|
|
|
|
val mem: context -> key -> bool Lwt.t
|
|
val dir_mem: context -> key -> bool Lwt.t
|
|
val get: context -> key -> value option Lwt.t
|
|
val set: context -> key -> value -> t Lwt.t
|
|
val del: context -> key -> t Lwt.t
|
|
val remove_rec: context -> key -> t Lwt.t
|
|
|
|
val fold:
|
|
context -> key -> init:'a ->
|
|
f:([ `Key of key | `Dir of key ] -> 'a -> 'a Lwt.t) ->
|
|
'a Lwt.t
|
|
|
|
val keys: context -> key -> key list Lwt.t
|
|
val fold_keys:
|
|
context -> key -> init:'a -> f:(key -> 'a -> 'a Lwt.t) -> 'a Lwt.t
|
|
|
|
(** {2 Accessing and Updating Versions} **************************************)
|
|
|
|
val exists: index -> Context_hash.t -> bool Lwt.t
|
|
val checkout: index -> Context_hash.t -> context option Lwt.t
|
|
val checkout_exn: index -> Context_hash.t -> context Lwt.t
|
|
val commit:
|
|
time:Time.t ->
|
|
message:string ->
|
|
context ->
|
|
Context_hash.t Lwt.t
|
|
val set_head: index -> Net_id.t -> Context_hash.t -> unit Lwt.t
|
|
val set_master: index -> Context_hash.t -> unit Lwt.t
|
|
|
|
(** {2 Predefined Fields} ****************************************************)
|
|
|
|
val get_protocol: context -> Protocol_hash.t Lwt.t
|
|
val set_protocol: context -> Protocol_hash.t -> context Lwt.t
|
|
|
|
val get_test_network: context -> Test_network_status.t Lwt.t
|
|
val set_test_network: context -> Test_network_status.t -> context Lwt.t
|
|
|
|
val del_test_network: context -> context Lwt.t
|
|
|
|
val reset_test_network: context -> Block_hash.t -> Time.t -> context Lwt.t
|
|
|
|
val fork_test_network:
|
|
context -> protocol:Protocol_hash.t -> expiration:Time.t -> context Lwt.t
|
|
val clear_test_network: index -> Net_id.t -> unit Lwt.t
|