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
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
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
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
module GitStore = struct
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
module Store =
|
|
|
|
Irmin_unix.Irmin_git.FS
|
|
|
|
(MBytesContent) (Irmin.Ref.String) (Irmin.Hash.SHA1)
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
include Store
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
module View = Irmin.View (Store)
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-02-24 20:17:53 +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
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
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 current_protocol_key = ["protocol"]
|
2017-02-25 21:01:27 +04:00
|
|
|
let current_fitness_key = ["fitness"]
|
2017-03-03 16:05:20 +04:00
|
|
|
let current_timestamp_key = ["timestamp"]
|
2016-09-08 21:13:10 +04:00
|
|
|
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"]
|
|
|
|
|
2017-03-03 16:05:20 +04:00
|
|
|
let transient_commit_message_key = ["message"]
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
let exists { repo } key =
|
2016-09-08 21:13:10 +04:00
|
|
|
GitStore.of_branch_id
|
2017-02-24 20:17:53 +04:00
|
|
|
Irmin.Task.none (Block_hash.to_b58check key) repo >>= fun t ->
|
2016-09-08 21:13:10 +04:00
|
|
|
let store = t () in
|
2017-03-03 16:05:20 +04:00
|
|
|
GitStore.read store current_protocol_key >>= function
|
2016-09-08 21:13:10 +04:00
|
|
|
| Some _ ->
|
|
|
|
Lwt.return true
|
|
|
|
| None ->
|
2017-02-24 20:17:53 +04:00
|
|
|
Lwt.return false
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-02-24 20:17:53 +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
|
2017-02-24 20:17:53 +04:00
|
|
|
Irmin.Task.none (Block_hash.to_b58check key) index.repo >>= fun t ->
|
2016-09-08 21:13:10 +04:00
|
|
|
let store = t () in
|
2017-02-24 20:17:53 +04:00
|
|
|
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 () ->
|
2017-02-24 20:17:53 +04:00
|
|
|
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
|
2017-02-24 20:17:53 +04:00
|
|
|
| Some p -> Lwt.return p
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-02-24 20:17:53 +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
|
|
|
|
|
2017-03-03 16:05:20 +04:00
|
|
|
let get_and_erase_commit_message ctxt =
|
|
|
|
GitStore.FunView.get ctxt.view transient_commit_message_key >>= function
|
|
|
|
| None -> Lwt.return (None, ctxt)
|
|
|
|
| Some bytes ->
|
|
|
|
GitStore.FunView.del ctxt.view transient_commit_message_key >>= fun view ->
|
|
|
|
Lwt.return (Some (MBytes.to_string bytes), { ctxt with view })
|
|
|
|
let set_commit_message ctxt msg =
|
|
|
|
GitStore.FunView.set ctxt.view
|
|
|
|
transient_commit_message_key
|
|
|
|
(MBytes.of_string msg) >>= fun view ->
|
|
|
|
Lwt.return { ctxt with view }
|
|
|
|
|
|
|
|
let get_fitness { view } =
|
|
|
|
GitStore.FunView.get view current_fitness_key >>= function
|
|
|
|
| None -> assert false
|
|
|
|
| Some data ->
|
|
|
|
match Data_encoding.Binary.of_bytes Fitness.encoding data with
|
|
|
|
| None -> assert false
|
|
|
|
| Some data -> Lwt.return data
|
|
|
|
let set_fitness ctxt data =
|
|
|
|
GitStore.FunView.set ctxt.view current_fitness_key
|
|
|
|
(Data_encoding.Binary.to_bytes Fitness.encoding data) >>= fun view ->
|
|
|
|
Lwt.return { ctxt with view }
|
|
|
|
|
|
|
|
let get_timestamp { view } =
|
|
|
|
GitStore.FunView.get view current_timestamp_key >>= function
|
|
|
|
| None -> assert false
|
|
|
|
| Some time ->
|
|
|
|
Lwt.return (Time.of_notation_exn (MBytes.to_string time))
|
|
|
|
let set_timestamp ctxt time =
|
|
|
|
GitStore.FunView.set ctxt.view current_timestamp_key
|
|
|
|
(MBytes.of_string (Time.to_notation time)) >>= fun view ->
|
|
|
|
Lwt.return { ctxt with view }
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
exception Preexistent_context of Block_hash.t
|
|
|
|
exception Empty_head of Block_hash.t
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-03-03 16:05:20 +04:00
|
|
|
let commit key context =
|
|
|
|
get_timestamp context >>= fun timestamp ->
|
|
|
|
get_fitness context >>= fun fitness ->
|
2016-09-08 21:13:10 +04:00
|
|
|
let task =
|
2017-03-03 16:05:20 +04:00
|
|
|
Irmin.Task.create ~date:(Time.to_seconds timestamp) ~owner:"Tezos" in
|
2017-02-24 20:17:53 +04:00
|
|
|
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 ->
|
2017-03-03 16:05:20 +04:00
|
|
|
get_and_erase_commit_message context >>= fun (msg, context) ->
|
|
|
|
let msg = match msg with
|
|
|
|
| None ->
|
|
|
|
Format.asprintf "%a %a"
|
|
|
|
Fitness.pp fitness Block_hash.pp_short key
|
|
|
|
| Some msg -> msg in
|
2017-02-24 20:17:53 +04:00
|
|
|
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
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
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
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
let dir_mem ctxt key =
|
|
|
|
GitStore.FunView.dir_mem ctxt.view (data_key key) >>= fun v ->
|
2016-11-14 19:26:34 +04:00
|
|
|
Lwt.return v
|
|
|
|
|
2017-03-03 16:05:20 +04:00
|
|
|
let raw_get ctxt key = GitStore.FunView.get ctxt.view key
|
2016-09-08 21:13:10 +04:00
|
|
|
let get t key = raw_get t (data_key key)
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
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
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
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)
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
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
|
|
|
|
2017-02-24 20:17:53 +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
|
2017-02-24 20:17:53 +04:00
|
|
|
(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
|
2017-02-24 20:17:53 +04:00
|
|
|
}
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
let commit_genesis index ~id:block ~time ~protocol ~test_protocol =
|
2016-09-08 21:13:10 +04:00
|
|
|
GitStore.of_branch_id
|
2017-02-24 20:17:53 +04:00
|
|
|
Irmin.Task.none (Block_hash.to_b58check block)
|
|
|
|
index.repo >>= fun t ->
|
2016-09-08 21:13:10 +04:00
|
|
|
let store = t () in
|
2017-02-24 20:17:53 +04:00
|
|
|
GitStore.FunView.of_path store [] >>= fun view ->
|
2017-03-03 16:05:20 +04:00
|
|
|
GitStore.FunView.set view current_timestamp_key
|
2017-02-24 20:17:53 +04:00
|
|
|
(MBytes.of_string (Time.to_notation time)) >>= fun view ->
|
|
|
|
GitStore.FunView.set view current_protocol_key
|
|
|
|
(Protocol_hash.to_bytes protocol) >>= fun view ->
|
2017-02-25 21:01:27 +04:00
|
|
|
GitStore.FunView.set view current_fitness_key
|
|
|
|
(Data_encoding.Binary.to_bytes Fitness.encoding []) >>= fun view ->
|
2017-02-24 20:17:53 +04:00
|
|
|
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
|
2017-02-24 20:17:53 +04:00
|
|
|
| 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
|
2017-02-24 20:17:53 +04:00
|
|
|
| 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
|
2017-02-24 20:17:53 +04:00
|
|
|
| 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")
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
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 ->
|
2017-03-03 16:05:20 +04:00
|
|
|
set_timestamp v time >>= fun v ->
|
2017-02-24 20:17:53 +04:00
|
|
|
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
|
|
|
|
|