ligo/src/node/db/context.ml

280 lines
9.1 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
2016-10-06 14:55:38 +04:00
(** Tezos - Versioned (key x value) store (over Irmin) *)
2016-09-08 21:13:10 +04:00
open Logging.Db
module IrminPath = Irmin.Path.String_list
module MBytesContent = struct
module Tc_S0 =
(val Tc.biject Tc.cstruct Cstruct.to_bigarray Cstruct.of_bigarray)
include Tc_S0
module Path = Irmin.Path.String_list
let merge =
let fn = Irmin.Merge.(option (module Tc_S0) (default (module Tc_S0))) in
fun _path -> fn
end
2016-09-08 21:13:10 +04:00
module GitStore = struct
2016-09-08 21:13:10 +04:00
module Store =
Irmin_unix.Irmin_git.FS
(MBytesContent) (Irmin.Ref.String) (Irmin.Hash.SHA1)
2016-09-08 21:13:10 +04:00
include Store
2016-09-08 21:13:10 +04:00
module View = Irmin.View (Store)
2016-09-08 21:13:10 +04:00
module FunView = struct
include Ir_funview.Make (Store)
type v = t
let get = read
let del = remove
let set = update
let list v k = Lwt_list.map_p (list v) k >|= List.flatten
2016-09-08 21:13:10 +04:00
end
end
type index = {
path: string ;
repo: GitStore.Repo.t ;
patch_context: context -> context Lwt.t ;
}
and context = {
index: index ;
store: GitStore.t ;
view: GitStore.FunView.t ;
}
type t = context
2016-09-08 21:13:10 +04:00
(*-- Version Access and Update -----------------------------------------------*)
let genesis_block_key = ["genesis";"block"]
let genesis_protocol_key = ["genesis";"protocol"]
let genesis_time_key = ["genesis";"time"]
let current_protocol_key = ["protocol"]
let current_test_protocol_key = ["test_protocol"]
let current_test_network_key = ["test_network"]
let current_test_network_expiration_key = ["test_network_expiration"]
let current_fork_test_network_key = ["fork_test_network"]
let exists { repo } key =
2016-09-08 21:13:10 +04:00
GitStore.of_branch_id
Irmin.Task.none (Block_hash.to_b58check key) repo >>= fun t ->
2016-09-08 21:13:10 +04:00
let store = t () in
GitStore.read store genesis_block_key >>= function
| Some _ ->
Lwt.return true
| None ->
Lwt.return false
2016-09-08 21:13:10 +04:00
let checkout index key =
2016-09-08 21:13:10 +04:00
lwt_debug "-> Context.checkout %a"
Block_hash.pp_short key >>= fun () ->
exists index key >>= fun exists ->
if not exists then
Lwt.return None
else
GitStore.of_branch_id
Irmin.Task.none (Block_hash.to_b58check key) index.repo >>= fun t ->
2016-09-08 21:13:10 +04:00
let store = t () in
GitStore.FunView.of_path store [] >>= fun view ->
let ctxt = { index ; store ; view } in
index.patch_context ctxt >>= fun ctxt ->
2016-09-08 21:13:10 +04:00
lwt_debug "<- Context.checkout %a OK"
Block_hash.pp_short key >>= fun () ->
Lwt.return (Some ctxt)
2016-09-08 21:13:10 +04:00
let checkout_exn index key =
checkout index key >>= function
| None -> Lwt.fail Not_found
| Some p -> Lwt.return p
2016-09-08 21:13:10 +04:00
let exists index key =
2016-09-08 21:13:10 +04:00
lwt_debug "-> Context.exists %a"
Block_hash.pp_short key >>= fun () ->
exists index key >>= fun exists ->
lwt_debug "<- Context.exists %a %B"
Block_hash.pp_short key exists >>= fun () ->
Lwt.return exists
exception Preexistent_context of Block_hash.t
exception Empty_head of Block_hash.t
2016-09-08 21:13:10 +04:00
let commit block key context =
2016-09-08 21:13:10 +04:00
let task =
Irmin.Task.create
~date:(Time.to_seconds block.Store.Block_header.shell.timestamp)
~owner:"tezos" in
GitStore.clone task context.store (Block_hash.to_b58check key) >>= function
| `Empty_head -> Lwt.fail (Empty_head key)
| `Duplicated_branch -> Lwt.fail (Preexistent_context key)
2016-09-08 21:13:10 +04:00
| `Ok store ->
let msg =
Format.asprintf "%a %a"
Fitness.pp block.shell.fitness
Block_hash.pp_short key in
GitStore.FunView.update_path (store msg) [] context.view
2016-09-08 21:13:10 +04:00
(*-- Generic Store Primitives ------------------------------------------------*)
type key = string list
let data_key key = "data" :: key
let undata_key = function
| "data" :: key -> key
| _ -> assert false
let mem ctxt key =
GitStore.FunView.mem ctxt.view (data_key key) >>= fun v ->
2016-09-08 21:13:10 +04:00
Lwt.return v
let dir_mem ctxt key =
GitStore.FunView.dir_mem ctxt.view (data_key key) >>= fun v ->
Lwt.return v
let raw_get ctxt key =
GitStore.FunView.get ctxt.view key >>= function
2016-09-08 21:13:10 +04:00
| None -> Lwt.return_none
| Some bytes -> Lwt.return (Some bytes)
let get t key = raw_get t (data_key key)
let raw_set ctxt key data =
GitStore.FunView.set ctxt.view key data >>= fun view ->
Lwt.return { ctxt with view }
2016-09-08 21:13:10 +04:00
let set t key data = raw_set t (data_key key) data
let raw_del ctxt key =
GitStore.FunView.del ctxt.view key >>= fun view ->
Lwt.return { ctxt with view }
2016-09-08 21:13:10 +04:00
let del t key = raw_del t (data_key key)
let list ctxt keys =
GitStore.FunView.list ctxt.view (List.map data_key keys) >>= fun keys ->
Lwt.return (List.map undata_key keys)
2016-09-08 21:13:10 +04:00
let remove_rec ctxt key =
GitStore.FunView.remove_rec ctxt.view (data_key key) >>= fun view ->
Lwt.return { ctxt with view }
2016-09-08 21:13:10 +04:00
(*-- Initialisation ----------------------------------------------------------*)
let init ?patch_context ~root =
GitStore.Repo.create
(Irmin_unix.Irmin_git.config ~root ~bare:true ()) >>= fun repo ->
Lwt.return {
path = root ;
repo ;
patch_context =
2016-09-08 21:13:10 +04:00
match patch_context with
| None -> (fun ctxt -> Lwt.return ctxt)
| Some patch_context -> patch_context
}
2016-09-08 21:13:10 +04:00
let commit_genesis index ~id:block ~time ~protocol ~test_protocol =
2016-09-08 21:13:10 +04:00
GitStore.of_branch_id
Irmin.Task.none (Block_hash.to_b58check block)
index.repo >>= fun t ->
2016-09-08 21:13:10 +04:00
let store = t () in
GitStore.FunView.of_path store [] >>= fun view ->
GitStore.FunView.set view genesis_block_key
(Block_hash.to_bytes block) >>= fun view ->
GitStore.FunView.set view genesis_protocol_key
(Protocol_hash.to_bytes protocol) >>= fun view ->
GitStore.FunView.set view genesis_time_key
(MBytes.of_string (Time.to_notation time)) >>= fun view ->
GitStore.FunView.set view current_protocol_key
(Protocol_hash.to_bytes protocol) >>= fun view ->
GitStore.FunView.set view current_test_protocol_key
(Protocol_hash.to_bytes test_protocol) >>= fun view ->
let ctxt = { index ; store ; view } in
index.patch_context ctxt >>= fun ctxt ->
GitStore.FunView.update_path ctxt.store [] ctxt.view >>= fun () ->
2016-09-08 21:13:10 +04:00
Lwt.return ctxt
(*-- Predefined Fields -------------------------------------------------------*)
let get_protocol v =
raw_get v current_protocol_key >>= function
| None -> assert false
| Some data -> Lwt.return (Protocol_hash.of_bytes_exn data)
2016-09-08 21:13:10 +04:00
let set_protocol v key =
raw_set v current_protocol_key (Protocol_hash.to_bytes key)
let get_test_protocol v =
raw_get v current_test_protocol_key >>= function
| None -> assert false
| Some data -> Lwt.return (Protocol_hash.of_bytes_exn data)
2016-09-08 21:13:10 +04:00
let set_test_protocol v data =
raw_set v current_test_protocol_key (Protocol_hash.to_bytes data)
let get_test_network v =
raw_get v current_test_network_key >>= function
| None -> Lwt.return_none
| Some data -> Lwt.return (Some (Store.Net_id.of_bytes_exn data))
let set_test_network v id =
raw_set v current_test_network_key (Store.Net_id.to_bytes id)
2016-09-08 21:13:10 +04:00
let del_test_network v = raw_del v current_test_network_key
let get_test_network_expiration v =
raw_get v current_test_network_expiration_key >>= function
| None -> Lwt.return_none
| Some data -> Lwt.return (Time.of_notation @@ MBytes.to_string data)
let set_test_network_expiration v data =
raw_set v current_test_network_expiration_key
(MBytes.of_string @@ Time.to_notation data)
let del_test_network_expiration v =
raw_del v current_test_network_expiration_key
let read_and_reset_fork_test_network v =
raw_get v current_fork_test_network_key >>= function
| None -> Lwt.return (false, v)
| Some _ ->
raw_del v current_fork_test_network_key >>= fun v ->
Lwt.return (true, v)
let fork_test_network v =
raw_set v current_fork_test_network_key (MBytes.of_string "fork")
let get_genesis_block v =
raw_get v genesis_block_key >>= function
| None -> assert false
| Some block -> Lwt.return (Block_hash.of_bytes_exn block)
2016-09-08 21:13:10 +04:00
let get_genesis_time v =
raw_get v genesis_time_key >>= function
| None -> assert false
| Some time -> Lwt.return (Time.of_notation_exn (MBytes.to_string time))
let init_test_network v ~time ~genesis =
get_test_protocol v >>= fun test_protocol ->
del_test_network_expiration v >>= fun v ->
set_protocol v test_protocol >>= fun v ->
raw_set v genesis_time_key
(MBytes.of_string (Time.to_notation time)) >>= fun v ->
raw_set v genesis_block_key (Block_hash.to_bytes genesis) >>= fun v ->
let task =
Irmin.Task.create
~date:(Time.to_seconds time)
~owner:"tezos" in
GitStore.clone task v.store (Block_hash.to_b58check genesis) >>= function
| `Empty_head -> Lwt.return (Error [Exn (Empty_head genesis)])
| `Duplicated_branch -> Lwt.return (Error [Exn (Preexistent_context genesis)])
| `Ok store ->
let msg =
Format.asprintf "Fake block. Forking testnet: %a."
Block_hash.pp_short genesis in
GitStore.FunView.update_path (store msg) [] v.view >>= fun () ->
return v