2017-02-24 20:17:53 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
type t
|
|
|
|
type db = t
|
|
|
|
|
|
|
|
module Message = Distributed_db_message
|
|
|
|
module Metadata = Distributed_db_metadata
|
|
|
|
|
|
|
|
type p2p = (Message.t, Metadata.t) P2p.net
|
|
|
|
|
|
|
|
val create: State.t -> p2p -> t
|
|
|
|
val shutdown: t -> unit Lwt.t
|
|
|
|
|
2017-04-19 23:46:10 +04:00
|
|
|
type net_db
|
2017-02-24 20:17:53 +04:00
|
|
|
|
2017-04-19 23:46:10 +04:00
|
|
|
val state: net_db -> State.Net.t
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
type callback = {
|
|
|
|
notify_branch: P2p.Peer_id.t -> Block_hash.t list -> unit ;
|
|
|
|
current_branch: int -> Block_hash.t list Lwt.t ;
|
|
|
|
notify_head: P2p.Peer_id.t -> Block_hash.t -> Operation_hash.t list -> unit ;
|
|
|
|
current_head: int -> (Block_hash.t * Operation_hash.t list) Lwt.t ;
|
|
|
|
disconnection: P2p.Peer_id.t -> unit ;
|
|
|
|
}
|
|
|
|
|
2017-04-19 23:46:10 +04:00
|
|
|
val activate: callback:callback -> t -> State.Net.t -> net_db
|
|
|
|
val deactivate: net_db -> unit Lwt.t
|
|
|
|
|
|
|
|
val broadcast_head:
|
|
|
|
net_db -> Block_hash.t -> Operation_hash.t list -> unit
|
|
|
|
|
|
|
|
type operation =
|
|
|
|
| Blob of Operation.t
|
|
|
|
| Hash of Operation_hash.t
|
|
|
|
|
|
|
|
val resolve_operation:
|
|
|
|
net_db -> operation -> (Operation_hash.t * Operation.t) tzresult Lwt.t
|
|
|
|
|
|
|
|
val commit_block:
|
|
|
|
net_db -> Block_hash.t -> int -> Updater.validation_result ->
|
|
|
|
State.Block.t option tzresult Lwt.t
|
|
|
|
val commit_invalid_block:
|
|
|
|
net_db -> Block_hash.t -> int ->
|
|
|
|
bool tzresult Lwt.t
|
|
|
|
val inject_block:
|
|
|
|
t -> MBytes.t -> operation list list ->
|
|
|
|
(Block_hash.t * Block_header.t) tzresult Lwt.t
|
|
|
|
val remove_block: net_db -> Block_hash.t -> int -> unit Lwt.t
|
|
|
|
|
|
|
|
val inject_operation:
|
|
|
|
net_db -> Operation_hash.t -> Operation.t -> bool tzresult Lwt.t
|
|
|
|
|
|
|
|
val commit_protocol:
|
|
|
|
db -> Protocol_hash.t -> bool tzresult Lwt.t
|
|
|
|
val inject_protocol:
|
|
|
|
db -> Protocol_hash.t -> Protocol.t -> bool Lwt.t
|
|
|
|
|
|
|
|
val watch_block_header:
|
|
|
|
t -> (Block_hash.t * Block_header.t) Lwt_stream.t * Watcher.stopper
|
|
|
|
val watch_operation:
|
|
|
|
t -> (Operation_hash.t * Operation.t) Lwt_stream.t * Watcher.stopper
|
|
|
|
val watch_protocol:
|
|
|
|
t -> (Protocol_hash.t * Protocol.t) Lwt_stream.t * Watcher.stopper
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
module type DISTRIBUTED_DB = sig
|
|
|
|
type t
|
|
|
|
type key
|
|
|
|
type value
|
2017-04-19 23:46:10 +04:00
|
|
|
type param
|
2017-02-24 20:17:53 +04:00
|
|
|
val known: t -> key -> bool Lwt.t
|
2017-04-19 23:46:10 +04:00
|
|
|
type error += Missing_data of key
|
|
|
|
val read: t -> key -> value tzresult Lwt.t
|
|
|
|
val read_opt: t -> key -> value option Lwt.t
|
2017-02-24 20:17:53 +04:00
|
|
|
val read_exn: t -> key -> value Lwt.t
|
|
|
|
val watch: t -> (key * value) Lwt_stream.t * Watcher.stopper
|
2017-04-19 23:46:10 +04:00
|
|
|
val prefetch: t -> ?peer:P2p.Peer_id.t -> key -> param -> unit
|
|
|
|
val fetch: t -> ?peer:P2p.Peer_id.t -> key -> param -> value Lwt.t
|
2017-02-24 20:17:53 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
module Block_header :
|
2017-04-19 23:46:10 +04:00
|
|
|
DISTRIBUTED_DB with type t = net_db
|
2017-02-24 20:17:53 +04:00
|
|
|
and type key := Block_hash.t
|
2017-04-19 21:21:23 +04:00
|
|
|
and type value := Block_header.t
|
2017-04-19 23:46:10 +04:00
|
|
|
and type param := unit
|
|
|
|
|
|
|
|
module Operations :
|
|
|
|
DISTRIBUTED_DB with type t = net_db
|
|
|
|
and type key = Block_hash.t * int
|
|
|
|
and type value = Operation.t list
|
|
|
|
and type param := Operation_list_list_hash.t
|
|
|
|
|
|
|
|
module Operation_hashes :
|
|
|
|
DISTRIBUTED_DB with type t = net_db
|
|
|
|
and type key = Block_hash.t * int
|
|
|
|
and type value = Operation_hash.t list
|
|
|
|
and type param := Operation_list_list_hash.t
|
|
|
|
|
|
|
|
module Operation :
|
|
|
|
DISTRIBUTED_DB with type t = net_db
|
|
|
|
and type key := Operation_hash.t
|
|
|
|
and type value := Operation.t
|
|
|
|
and type param := unit
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
module Protocol :
|
|
|
|
DISTRIBUTED_DB with type t = db
|
|
|
|
and type key := Protocol_hash.t
|
2017-04-19 21:21:23 +04:00
|
|
|
and type value := Protocol.t
|
2017-04-19 23:46:10 +04:00
|
|
|
and type param := unit
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
module Raw : sig
|
|
|
|
val encoding: Message.t P2p.Raw.t Data_encoding.t
|
|
|
|
val supported_versions: P2p_types.Version.t list
|
|
|
|
end
|