2017-02-24 20:17:53 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2017-02-24 20:17:53 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
module Message = Distributed_db_message
|
|
|
|
module Metadata = Distributed_db_metadata
|
|
|
|
|
|
|
|
type p2p = (Message.t, Metadata.t) P2p.net
|
|
|
|
type connection = (Message.t, Metadata.t) P2p.connection
|
|
|
|
|
|
|
|
type 'a request_param = {
|
|
|
|
data: 'a ;
|
|
|
|
active: unit -> P2p.Peer_id.Set.t ;
|
|
|
|
send: P2p.Peer_id.t -> Message.t -> unit ;
|
|
|
|
}
|
|
|
|
|
|
|
|
module Make_raw
|
2017-07-21 18:16:39 +04:00
|
|
|
(Hash : sig
|
|
|
|
type t
|
|
|
|
val name : string
|
|
|
|
val encoding : t Data_encoding.t
|
|
|
|
val pp : Format.formatter -> t -> unit
|
2017-11-13 19:34:00 +04:00
|
|
|
end)
|
2017-03-28 15:31:41 +04:00
|
|
|
(Disk_table :
|
|
|
|
Distributed_db_functors.DISK_TABLE with type key := Hash.t)
|
|
|
|
(Memory_table :
|
|
|
|
Distributed_db_functors.MEMORY_TABLE with type key := Hash.t)
|
2017-02-24 20:17:53 +04:00
|
|
|
(Request_message : sig
|
|
|
|
type param
|
|
|
|
val forge : param -> Hash.t list -> Message.t
|
2017-03-28 15:31:41 +04:00
|
|
|
end)
|
|
|
|
(Precheck : Distributed_db_functors.PRECHECK
|
|
|
|
with type key := Hash.t
|
|
|
|
and type value := Disk_table.value) = struct
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
module Request = struct
|
|
|
|
type param = Request_message.param request_param
|
|
|
|
let active { active } = active ()
|
|
|
|
let send { data ; send } gid keys =
|
|
|
|
send gid (Request_message.forge data keys)
|
|
|
|
end
|
|
|
|
|
|
|
|
module Scheduler =
|
|
|
|
Distributed_db_functors.Make_request_scheduler
|
|
|
|
(Hash) (Memory_table) (Request)
|
|
|
|
module Table =
|
|
|
|
Distributed_db_functors.Make_table
|
2017-03-28 15:31:41 +04:00
|
|
|
(Hash) (Disk_table) (Memory_table) (Scheduler) (Precheck)
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
type t = {
|
|
|
|
scheduler: Scheduler.t ;
|
|
|
|
table: Table.t ;
|
|
|
|
}
|
|
|
|
|
|
|
|
let create ?global_input request_param param =
|
|
|
|
let scheduler = Scheduler.create request_param in
|
|
|
|
let table = Table.create ?global_input scheduler param in
|
|
|
|
{ scheduler ; table }
|
|
|
|
|
|
|
|
let shutdown { scheduler } =
|
|
|
|
Scheduler.shutdown scheduler
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2017-04-19 23:46:10 +04:00
|
|
|
module Fake_operation_storage = struct
|
|
|
|
type store = State.Net.t
|
|
|
|
type value = Operation.t
|
|
|
|
let known _ _ = Lwt.return_false
|
|
|
|
let read _ _ = Lwt.return (Error_monad.error_exn Not_found)
|
|
|
|
let read_opt _ _ = Lwt.return_none
|
|
|
|
let read_exn _ _ = raise Not_found
|
2017-03-28 15:31:41 +04:00
|
|
|
end
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
module Raw_operation =
|
2017-03-28 15:31:41 +04:00
|
|
|
Make_raw
|
|
|
|
(Operation_hash)
|
2017-04-19 23:46:10 +04:00
|
|
|
(Fake_operation_storage)
|
2017-03-28 15:31:41 +04:00
|
|
|
(Operation_hash.Table)
|
|
|
|
(struct
|
2017-11-14 06:52:26 +04:00
|
|
|
type param = unit
|
|
|
|
let forge () keys = Message.Get_operations keys
|
2017-03-28 15:31:41 +04:00
|
|
|
end)
|
2017-04-19 23:46:10 +04:00
|
|
|
(struct
|
|
|
|
type param = unit
|
|
|
|
type notified_value = Operation.t
|
|
|
|
let precheck _ _ v = Some v
|
|
|
|
end)
|
|
|
|
|
|
|
|
module Block_header_storage = struct
|
|
|
|
type store = State.Net.t
|
|
|
|
type value = Block_header.t
|
|
|
|
let known = State.Block.known_valid
|
|
|
|
let read net_state h =
|
|
|
|
State.Block.read net_state h >>=? fun b ->
|
|
|
|
return (State.Block.header b)
|
|
|
|
let read_opt net_state h =
|
|
|
|
State.Block.read_opt net_state h >>= fun b ->
|
2017-11-27 09:13:12 +04:00
|
|
|
Lwt.return (Option.map ~f:State.Block.header b)
|
2017-04-19 23:46:10 +04:00
|
|
|
let read_exn net_state h =
|
|
|
|
State.Block.read_exn net_state h >>= fun b ->
|
|
|
|
Lwt.return (State.Block.header b)
|
|
|
|
end
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
module Raw_block_header =
|
2017-03-28 15:31:41 +04:00
|
|
|
Make_raw
|
|
|
|
(Block_hash)
|
2017-04-19 23:46:10 +04:00
|
|
|
(Block_header_storage)
|
2017-03-28 15:31:41 +04:00
|
|
|
(Block_hash.Table)
|
|
|
|
(struct
|
2017-11-14 06:52:26 +04:00
|
|
|
type param = unit
|
|
|
|
let forge () keys = Message.Get_block_headers keys
|
2017-03-28 15:31:41 +04:00
|
|
|
end)
|
2017-04-19 23:46:10 +04:00
|
|
|
(struct
|
|
|
|
type param = unit
|
|
|
|
type notified_value = Block_header.t
|
|
|
|
let precheck _ _ v = Some v
|
|
|
|
end)
|
|
|
|
|
|
|
|
module Operation_hashes_storage = struct
|
|
|
|
type store = State.Net.t
|
|
|
|
type value = Operation_hash.t list
|
|
|
|
let known net_state (h, _) = State.Block.known_valid net_state h
|
|
|
|
let read net_state (h, i) =
|
|
|
|
State.Block.read net_state h >>=? fun b ->
|
|
|
|
State.Block.operation_hashes b i >>= fun (ops, _) ->
|
|
|
|
return ops
|
|
|
|
let read_opt net_state (h, i) =
|
|
|
|
State.Block.read_opt net_state h >>= function
|
|
|
|
| None -> Lwt.return_none
|
|
|
|
| Some b ->
|
|
|
|
State.Block.operation_hashes b i >>= fun (ops, _) ->
|
|
|
|
Lwt.return (Some ops)
|
|
|
|
let read_exn net_state (h, i) =
|
|
|
|
State.Block.read_exn net_state h >>= fun b ->
|
|
|
|
State.Block.operation_hashes b i >>= fun (ops, _) ->
|
|
|
|
Lwt.return ops
|
|
|
|
end
|
2017-03-28 15:31:41 +04:00
|
|
|
|
2017-04-19 23:46:10 +04:00
|
|
|
module Operations_table =
|
2017-03-28 15:31:41 +04:00
|
|
|
Hashtbl.Make(struct
|
|
|
|
type t = Block_hash.t * int
|
|
|
|
let hash = Hashtbl.hash
|
|
|
|
let equal (b1, i1) (b2, i2) =
|
|
|
|
Block_hash.equal b1 b2 && i1 = i2
|
2017-02-24 20:17:53 +04:00
|
|
|
end)
|
|
|
|
|
2017-04-19 23:46:10 +04:00
|
|
|
module Raw_operation_hashes = struct
|
|
|
|
|
|
|
|
include
|
|
|
|
Make_raw
|
2017-07-21 18:16:39 +04:00
|
|
|
(struct
|
|
|
|
type t = Block_hash.t * int
|
2017-09-29 20:43:13 +04:00
|
|
|
let name = "operation_hashes"
|
2017-07-21 18:16:39 +04:00
|
|
|
let pp ppf (h, n) = Format.fprintf ppf "%a:%d" Block_hash.pp h n
|
|
|
|
let encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
obj2 (req "block" Block_hash.encoding) (req "index" uint16)
|
|
|
|
end)
|
2017-04-19 23:46:10 +04:00
|
|
|
(Operation_hashes_storage)
|
|
|
|
(Operations_table)
|
|
|
|
(struct
|
2017-11-14 06:52:26 +04:00
|
|
|
type param = unit
|
|
|
|
let forge () keys =
|
|
|
|
Message.Get_operation_hashes_for_blocks keys
|
2017-04-19 23:46:10 +04:00
|
|
|
end)
|
|
|
|
(struct
|
|
|
|
type param = Operation_list_list_hash.t
|
|
|
|
type notified_value =
|
|
|
|
Operation_hash.t list * Operation_list_list_hash.path
|
|
|
|
let precheck (_block, expected_ofs) expected_hash (ops, path) =
|
|
|
|
let received_hash, received_ofs =
|
|
|
|
Operation_list_list_hash.check_path path
|
|
|
|
(Operation_list_hash.compute ops) in
|
|
|
|
if
|
|
|
|
received_ofs = expected_ofs &&
|
|
|
|
Operation_list_list_hash.compare expected_hash received_hash = 0
|
|
|
|
then
|
|
|
|
Some ops
|
|
|
|
else
|
|
|
|
None
|
|
|
|
end)
|
|
|
|
|
|
|
|
let inject_all table hash operations =
|
|
|
|
Lwt_list.mapi_p
|
|
|
|
(fun i ops -> Table.inject table (hash, i) ops)
|
|
|
|
operations >>= Lwt_list.for_all_s (fun x -> Lwt.return x)
|
|
|
|
|
|
|
|
let read_all table hash n =
|
|
|
|
map_p (fun i -> Table.read table (hash, i)) (0 -- (n-1))
|
|
|
|
|
2017-06-09 19:54:08 +04:00
|
|
|
let clear_all table hash n =
|
2017-11-06 18:23:06 +04:00
|
|
|
List.iter (fun i -> Table.clear_or_cancel table (hash, i)) (0 -- (n-1))
|
2017-04-19 23:46:10 +04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Operations_storage = struct
|
|
|
|
type store = State.Net.t
|
|
|
|
type value = Operation.t list
|
|
|
|
let known net_state (h, _) = State.Block.known_valid net_state h
|
|
|
|
let read net_state (h, i) =
|
|
|
|
State.Block.read net_state h >>=? fun b ->
|
|
|
|
State.Block.operations b i >>= fun (ops, _) ->
|
|
|
|
return ops
|
|
|
|
let read_opt net_state (h, i) =
|
|
|
|
State.Block.read_opt net_state h >>= function
|
|
|
|
| None -> Lwt.return_none
|
|
|
|
| Some b ->
|
|
|
|
State.Block.operations b i >>= fun (ops, _) ->
|
|
|
|
Lwt.return (Some ops)
|
|
|
|
let read_exn net_state (h, i) =
|
|
|
|
State.Block.read_exn net_state h >>= fun b ->
|
|
|
|
State.Block.operations b i >>= fun (ops, _) ->
|
|
|
|
Lwt.return ops
|
|
|
|
end
|
|
|
|
|
|
|
|
module Raw_operations = struct
|
|
|
|
include
|
|
|
|
Make_raw
|
2017-07-21 18:16:39 +04:00
|
|
|
(struct
|
|
|
|
type t = Block_hash.t * int
|
2017-09-29 20:43:13 +04:00
|
|
|
let name = "operations"
|
2017-07-21 18:16:39 +04:00
|
|
|
let pp ppf (h, n) = Format.fprintf ppf "%a:%d" Block_hash.pp h n
|
|
|
|
let encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
obj2 (req "block" Block_hash.encoding) (req "index" uint16)
|
|
|
|
end)
|
2017-04-19 23:46:10 +04:00
|
|
|
(Operations_storage)
|
|
|
|
(Operations_table)
|
|
|
|
(struct
|
2017-11-14 06:52:26 +04:00
|
|
|
type param = unit
|
|
|
|
let forge () keys =
|
|
|
|
Message.Get_operations_for_blocks keys
|
2017-04-19 23:46:10 +04:00
|
|
|
end)
|
|
|
|
(struct
|
|
|
|
type param = Operation_list_list_hash.t
|
|
|
|
type notified_value = Operation.t list * Operation_list_list_hash.path
|
|
|
|
let precheck (_block, expected_ofs) expected_hash (ops, path) =
|
|
|
|
let received_hash, received_ofs =
|
|
|
|
Operation_list_list_hash.check_path path
|
|
|
|
(Operation_list_hash.compute
|
|
|
|
(List.map Operation.hash ops)) in
|
|
|
|
if
|
|
|
|
received_ofs = expected_ofs &&
|
|
|
|
Operation_list_list_hash.compare expected_hash received_hash = 0
|
|
|
|
then
|
|
|
|
Some ops
|
|
|
|
else
|
|
|
|
None
|
|
|
|
end)
|
|
|
|
|
|
|
|
let inject_all table hash operations =
|
|
|
|
Lwt_list.mapi_p
|
|
|
|
(fun i ops -> Table.inject table (hash, i) ops)
|
|
|
|
operations >>= Lwt_list.for_all_s (fun x -> Lwt.return x)
|
|
|
|
|
|
|
|
let read_all table hash n =
|
|
|
|
map_p (fun i -> Table.read table (hash, i)) (0 -- (n-1))
|
|
|
|
|
2017-06-09 19:54:08 +04:00
|
|
|
let clear_all table hash n =
|
2017-11-06 18:23:06 +04:00
|
|
|
List.iter (fun i -> Table.clear_or_cancel table (hash, i)) (0 -- (n-1))
|
2017-04-19 23:46:10 +04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Protocol_storage = struct
|
|
|
|
type store = State.t
|
|
|
|
type value = Protocol.t
|
|
|
|
let known = State.Protocol.known
|
|
|
|
let read = State.Protocol.read
|
|
|
|
let read_opt = State.Protocol.read_opt
|
|
|
|
let read_exn = State.Protocol.read_exn
|
|
|
|
end
|
2017-03-30 15:16:21 +04:00
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
module Raw_protocol =
|
2017-03-28 15:31:41 +04:00
|
|
|
Make_raw
|
|
|
|
(Protocol_hash)
|
2017-04-19 23:46:10 +04:00
|
|
|
(Protocol_storage)
|
2017-03-28 15:31:41 +04:00
|
|
|
(Protocol_hash.Table)
|
|
|
|
(struct
|
|
|
|
type param = unit
|
|
|
|
let forge () keys = Message.Get_protocols keys
|
|
|
|
end)
|
2017-04-19 23:46:10 +04:00
|
|
|
(struct
|
|
|
|
type param = unit
|
|
|
|
type notified_value = Protocol.t
|
|
|
|
let precheck _ _ v = Some v
|
|
|
|
end)
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
type callback = {
|
2017-11-11 06:34:12 +04:00
|
|
|
notify_branch:
|
|
|
|
P2p.Peer_id.t -> Block_locator.t -> unit ;
|
|
|
|
notify_head:
|
2017-11-13 17:33:39 +04:00
|
|
|
P2p.Peer_id.t -> Block_header.t -> Mempool.t -> unit ;
|
2017-02-24 20:17:53 +04:00
|
|
|
disconnection: P2p.Peer_id.t -> unit ;
|
|
|
|
}
|
|
|
|
|
|
|
|
type db = {
|
|
|
|
p2p: p2p ;
|
|
|
|
p2p_readers: p2p_reader P2p.Peer_id.Table.t ;
|
|
|
|
disk: State.t ;
|
2017-04-19 23:46:10 +04:00
|
|
|
active_nets: net_db Net_id.Table.t ;
|
2017-02-24 20:17:53 +04:00
|
|
|
protocol_db: Raw_protocol.t ;
|
2017-11-27 09:13:12 +04:00
|
|
|
block_input: (Block_hash.t * Block_header.t) Lwt_watcher.input ;
|
|
|
|
operation_input: (Operation_hash.t * Operation.t) Lwt_watcher.input ;
|
2017-02-24 20:17:53 +04:00
|
|
|
}
|
|
|
|
|
2017-04-19 23:46:10 +04:00
|
|
|
and net_db = {
|
|
|
|
net_state: State.Net.t ;
|
2017-02-24 20:17:53 +04:00
|
|
|
global_db: db ;
|
|
|
|
operation_db: Raw_operation.t ;
|
|
|
|
block_header_db: Raw_block_header.t ;
|
2017-04-19 23:46:10 +04:00
|
|
|
operation_hashes_db: Raw_operation_hashes.t ;
|
|
|
|
operations_db: Raw_operations.t ;
|
2017-09-29 20:43:13 +04:00
|
|
|
mutable callback: callback ;
|
2017-02-24 20:17:53 +04:00
|
|
|
active_peers: P2p.Peer_id.Set.t ref ;
|
|
|
|
active_connections: p2p_reader P2p.Peer_id.Table.t ;
|
|
|
|
}
|
|
|
|
|
|
|
|
and p2p_reader = {
|
|
|
|
gid: P2p.Peer_id.t ;
|
|
|
|
conn: connection ;
|
2017-04-19 23:46:10 +04:00
|
|
|
peer_active_nets: net_db Net_id.Table.t ;
|
2017-11-27 09:13:12 +04:00
|
|
|
canceler: Lwt_canceler.t ;
|
2017-02-24 20:17:53 +04:00
|
|
|
mutable worker: unit Lwt.t ;
|
|
|
|
}
|
|
|
|
|
2017-09-29 20:43:13 +04:00
|
|
|
let noop_callback = {
|
2017-11-13 19:34:00 +04:00
|
|
|
notify_branch = begin fun _gid _locator -> () end ;
|
|
|
|
notify_head = begin fun _gid _block _ops -> () end ;
|
|
|
|
disconnection = begin fun _gid -> () end ;
|
|
|
|
}
|
2017-09-29 20:43:13 +04:00
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
type t = db
|
|
|
|
|
2017-11-09 14:26:25 +04:00
|
|
|
let state { disk } = disk
|
|
|
|
let net_state { net_state } = net_state
|
|
|
|
let db { global_db } = global_db
|
2017-02-24 20:17:53 +04:00
|
|
|
|
2017-11-14 06:52:26 +04:00
|
|
|
let read_block_header { disk } h =
|
|
|
|
State.read_block disk h >>= function
|
|
|
|
| Some b ->
|
|
|
|
Lwt.return_some (State.Block.net_id b, State.Block.header b)
|
|
|
|
| None ->
|
|
|
|
Lwt.return_none
|
|
|
|
|
|
|
|
let find_pending_block_header { peer_active_nets } h =
|
2017-11-14 06:14:26 +04:00
|
|
|
Net_id.Table.fold
|
|
|
|
(fun _net_id net_db acc ->
|
|
|
|
match acc with
|
|
|
|
| Some _ -> acc
|
|
|
|
| None when Raw_block_header.Table.pending
|
|
|
|
net_db.block_header_db.table h ->
|
|
|
|
Some net_db
|
|
|
|
| None -> None)
|
2017-11-14 06:52:26 +04:00
|
|
|
peer_active_nets
|
2017-11-14 06:14:26 +04:00
|
|
|
None
|
|
|
|
|
2017-11-14 06:52:26 +04:00
|
|
|
let find_pending_operations { peer_active_nets } h i =
|
|
|
|
Net_id.Table.fold
|
|
|
|
(fun _net_id net_db acc ->
|
|
|
|
match acc with
|
|
|
|
| Some _ -> acc
|
|
|
|
| None when Raw_operations.Table.pending
|
|
|
|
net_db.operations_db.table (h, i) ->
|
|
|
|
Some net_db
|
|
|
|
| None -> None)
|
|
|
|
peer_active_nets
|
|
|
|
None
|
|
|
|
|
|
|
|
let find_pending_operation_hashes { peer_active_nets } h i =
|
|
|
|
Net_id.Table.fold
|
|
|
|
(fun _net_id net_db acc ->
|
|
|
|
match acc with
|
|
|
|
| Some _ -> acc
|
|
|
|
| None when Raw_operation_hashes.Table.pending
|
|
|
|
net_db.operation_hashes_db.table (h, i) ->
|
|
|
|
Some net_db
|
|
|
|
| None -> None)
|
|
|
|
peer_active_nets
|
|
|
|
None
|
|
|
|
|
|
|
|
let find_pending_operation { peer_active_nets } h =
|
2017-11-14 05:41:37 +04:00
|
|
|
Net_id.Table.fold
|
|
|
|
(fun _net_id net_db acc ->
|
|
|
|
match acc with
|
|
|
|
| Some _ -> acc
|
2017-11-14 06:14:26 +04:00
|
|
|
| None when Raw_operation.Table.pending
|
|
|
|
net_db.operation_db.table h ->
|
|
|
|
Some net_db
|
|
|
|
| None -> None)
|
2017-11-14 06:52:26 +04:00
|
|
|
peer_active_nets
|
2017-11-14 05:41:37 +04:00
|
|
|
None
|
|
|
|
|
2017-11-14 06:52:26 +04:00
|
|
|
let read_operation { active_nets } h =
|
|
|
|
Net_id.Table.fold
|
|
|
|
(fun net_id net_db acc ->
|
|
|
|
acc >>= function
|
|
|
|
| Some _ -> acc
|
|
|
|
| None ->
|
|
|
|
Raw_operation.Table.read_opt
|
|
|
|
net_db.operation_db.table h >>= function
|
|
|
|
| None -> Lwt.return_none
|
|
|
|
| Some bh -> Lwt.return_some (net_id, bh))
|
|
|
|
active_nets
|
|
|
|
Lwt.return_none
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
module P2p_reader = struct
|
|
|
|
|
|
|
|
let may_activate global_db state net_id f =
|
|
|
|
match Net_id.Table.find state.peer_active_nets net_id with
|
|
|
|
| net_db ->
|
|
|
|
f net_db
|
|
|
|
| exception Not_found ->
|
|
|
|
match Net_id.Table.find global_db.active_nets net_id with
|
|
|
|
| net_db ->
|
|
|
|
net_db.active_peers :=
|
|
|
|
P2p.Peer_id.Set.add state.gid !(net_db.active_peers) ;
|
|
|
|
P2p.Peer_id.Table.add net_db.active_connections
|
|
|
|
state.gid state ;
|
|
|
|
Net_id.Table.add state.peer_active_nets net_id net_db ;
|
|
|
|
f net_db
|
|
|
|
| exception Not_found ->
|
|
|
|
(* TODO decrease peer score. *)
|
|
|
|
Lwt.return_unit
|
|
|
|
|
|
|
|
let deactivate state net_db =
|
|
|
|
net_db.callback.disconnection state.gid ;
|
|
|
|
net_db.active_peers :=
|
|
|
|
P2p.Peer_id.Set.remove state.gid !(net_db.active_peers) ;
|
|
|
|
P2p.Peer_id.Table.remove net_db.active_connections state.gid
|
|
|
|
|
|
|
|
let may_handle state net_id f =
|
|
|
|
match Net_id.Table.find state.peer_active_nets net_id with
|
|
|
|
| exception Not_found ->
|
|
|
|
(* TODO decrease peer score *)
|
|
|
|
Lwt.return_unit
|
|
|
|
| net_db ->
|
|
|
|
f net_db
|
|
|
|
|
|
|
|
let may_handle_global global_db net_id f =
|
|
|
|
match Net_id.Table.find global_db.active_nets net_id with
|
|
|
|
| exception Not_found ->
|
|
|
|
Lwt.return_unit
|
|
|
|
| net_db ->
|
|
|
|
f net_db
|
|
|
|
|
|
|
|
let handle_msg global_db state msg =
|
|
|
|
|
|
|
|
let open Message in
|
2017-09-29 20:43:13 +04:00
|
|
|
let module Logging =
|
|
|
|
Logging.Make(struct let name = "node.distributed_db.p2p_reader" end) in
|
|
|
|
let open Logging in
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
lwt_debug "Read message from %a: %a"
|
|
|
|
P2p.Peer_id.pp_short state.gid Message.pp_json msg >>= fun () ->
|
|
|
|
|
|
|
|
match msg with
|
|
|
|
|
|
|
|
| Get_current_branch net_id ->
|
|
|
|
may_handle_global global_db net_id @@ fun net_db ->
|
|
|
|
if not (Net_id.Table.mem state.peer_active_nets net_id) then
|
|
|
|
ignore
|
|
|
|
@@ P2p.try_send global_db.p2p state.conn
|
|
|
|
@@ Get_current_branch net_id ;
|
2017-09-29 20:43:13 +04:00
|
|
|
Chain.head net_db.net_state >>= fun head ->
|
2017-09-29 20:43:13 +04:00
|
|
|
Block_locator.compute head 200 >>= fun locator ->
|
2017-02-24 20:17:53 +04:00
|
|
|
ignore
|
|
|
|
@@ P2p.try_send global_db.p2p state.conn
|
|
|
|
@@ Current_branch (net_id, locator) ;
|
|
|
|
Lwt.return_unit
|
|
|
|
|
|
|
|
| Current_branch (net_id, locator) ->
|
|
|
|
may_activate global_db state net_id @@ fun net_db ->
|
2017-11-11 06:34:12 +04:00
|
|
|
let head, hist = (locator :> Block_header.t * Block_hash.t list) in
|
2017-04-19 23:46:10 +04:00
|
|
|
Lwt_list.exists_p
|
|
|
|
(State.Block.known_invalid net_db.net_state)
|
2017-11-11 06:34:12 +04:00
|
|
|
(Block_header.hash head :: hist) >>= fun known_invalid ->
|
2017-04-19 23:46:10 +04:00
|
|
|
if not known_invalid then
|
|
|
|
net_db.callback.notify_branch state.gid locator ;
|
|
|
|
(* TODO Kickban *)
|
2017-02-24 20:17:53 +04:00
|
|
|
Lwt.return_unit
|
|
|
|
|
|
|
|
| Deactivate net_id ->
|
|
|
|
may_handle state net_id @@ fun net_db ->
|
|
|
|
deactivate state net_db ;
|
|
|
|
Net_id.Table.remove state.peer_active_nets net_id ;
|
|
|
|
Lwt.return_unit
|
|
|
|
|
|
|
|
| Get_current_head net_id ->
|
|
|
|
may_handle state net_id @@ fun net_db ->
|
2017-11-13 17:33:39 +04:00
|
|
|
Mempool.get net_db.net_state >>= fun (head, mempool) ->
|
|
|
|
(* TODO bound the sent mempool size *)
|
2017-02-24 20:17:53 +04:00
|
|
|
ignore
|
|
|
|
@@ P2p.try_send global_db.p2p state.conn
|
2017-11-13 17:33:39 +04:00
|
|
|
@@ Current_head (net_id, head, mempool) ;
|
2017-02-24 20:17:53 +04:00
|
|
|
Lwt.return_unit
|
|
|
|
|
2017-11-11 06:34:12 +04:00
|
|
|
| Current_head (net_id, header, mempool) ->
|
2017-02-24 20:17:53 +04:00
|
|
|
may_handle state net_id @@ fun net_db ->
|
2017-11-11 06:34:12 +04:00
|
|
|
let head = Block_header.hash header in
|
2017-04-19 23:46:10 +04:00
|
|
|
State.Block.known_invalid net_db.net_state head >>= fun known_invalid ->
|
|
|
|
if not known_invalid then
|
2017-11-11 06:34:12 +04:00
|
|
|
net_db.callback.notify_head state.gid header mempool ;
|
2017-04-19 23:46:10 +04:00
|
|
|
(* TODO Kickban *)
|
2017-02-24 20:17:53 +04:00
|
|
|
Lwt.return_unit
|
|
|
|
|
2017-11-14 06:52:26 +04:00
|
|
|
| Get_block_headers hashes ->
|
2017-02-24 20:17:53 +04:00
|
|
|
Lwt_list.iter_p
|
|
|
|
(fun hash ->
|
2017-11-14 06:52:26 +04:00
|
|
|
read_block_header global_db hash >>= function
|
|
|
|
| None ->
|
|
|
|
(* TODO: Blame request of unadvertised blocks ? *)
|
|
|
|
Lwt.return_unit
|
|
|
|
| Some (_net_id, header) ->
|
2017-02-24 20:17:53 +04:00
|
|
|
ignore @@
|
2017-11-14 06:52:26 +04:00
|
|
|
P2p.try_send global_db.p2p state.conn (Block_header header) ;
|
|
|
|
Lwt.return_unit)
|
2017-02-24 20:17:53 +04:00
|
|
|
hashes
|
|
|
|
|
2017-11-14 06:14:26 +04:00
|
|
|
| Block_header block -> begin
|
2017-04-19 21:21:23 +04:00
|
|
|
let hash = Block_header.hash block in
|
2017-11-14 06:52:26 +04:00
|
|
|
match find_pending_block_header state hash with
|
2017-11-14 06:14:26 +04:00
|
|
|
| None ->
|
|
|
|
(* TODO some penalty. *)
|
|
|
|
Lwt.return_unit
|
|
|
|
| Some net_db ->
|
|
|
|
Raw_block_header.Table.notify
|
|
|
|
net_db.block_header_db.table state.gid hash block >>= fun () ->
|
|
|
|
Lwt.return_unit
|
|
|
|
end
|
2017-02-24 20:17:53 +04:00
|
|
|
|
2017-11-14 06:52:26 +04:00
|
|
|
| Get_operations hashes ->
|
2017-02-24 20:17:53 +04:00
|
|
|
Lwt_list.iter_p
|
|
|
|
(fun hash ->
|
2017-11-14 06:52:26 +04:00
|
|
|
read_operation global_db hash >>= function
|
|
|
|
| None ->
|
|
|
|
(* TODO: Blame request of unadvertised operations ? *)
|
|
|
|
Lwt.return_unit
|
|
|
|
| Some (_net_id, op) ->
|
2017-02-24 20:17:53 +04:00
|
|
|
ignore @@
|
2017-11-14 06:52:26 +04:00
|
|
|
P2p.try_send global_db.p2p state.conn (Operation op) ;
|
|
|
|
Lwt.return_unit)
|
2017-02-24 20:17:53 +04:00
|
|
|
hashes
|
|
|
|
|
2017-11-14 05:41:37 +04:00
|
|
|
| Operation operation -> begin
|
2017-04-19 21:21:23 +04:00
|
|
|
let hash = Operation.hash operation in
|
2017-11-14 06:52:26 +04:00
|
|
|
match find_pending_operation state hash with
|
2017-11-14 05:41:37 +04:00
|
|
|
| None ->
|
|
|
|
(* TODO some penalty. *)
|
|
|
|
Lwt.return_unit
|
|
|
|
| Some net_db ->
|
|
|
|
Raw_operation.Table.notify
|
|
|
|
net_db.operation_db.table state.gid hash operation >>= fun () ->
|
|
|
|
Lwt.return_unit
|
|
|
|
end
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
| Get_protocols hashes ->
|
|
|
|
Lwt_list.iter_p
|
|
|
|
(fun hash ->
|
2017-11-14 06:52:26 +04:00
|
|
|
State.Protocol.read_opt global_db.disk hash >>= function
|
|
|
|
| None ->
|
|
|
|
(* TODO: Blame request of unadvertised protocol ? *)
|
|
|
|
Lwt.return_unit
|
2017-02-24 20:17:53 +04:00
|
|
|
| Some p ->
|
|
|
|
ignore @@
|
2017-11-14 06:52:26 +04:00
|
|
|
P2p.try_send global_db.p2p state.conn (Protocol p) ;
|
|
|
|
Lwt.return_unit)
|
2017-02-24 20:17:53 +04:00
|
|
|
hashes
|
|
|
|
|
|
|
|
| Protocol protocol ->
|
2017-04-19 21:21:23 +04:00
|
|
|
let hash = Protocol.hash protocol in
|
2017-02-24 20:17:53 +04:00
|
|
|
Raw_protocol.Table.notify
|
|
|
|
global_db.protocol_db.table state.gid hash protocol >>= fun () ->
|
|
|
|
Lwt.return_unit
|
|
|
|
|
2017-11-14 06:52:26 +04:00
|
|
|
| Get_operation_hashes_for_blocks blocks ->
|
2017-03-30 15:16:21 +04:00
|
|
|
Lwt_list.iter_p
|
2017-04-19 23:46:10 +04:00
|
|
|
(fun (hash, ofs) ->
|
2017-11-14 06:52:26 +04:00
|
|
|
State.read_block global_db.disk hash >>= function
|
2017-03-30 15:16:21 +04:00
|
|
|
| None -> Lwt.return_unit
|
2017-11-14 06:52:26 +04:00
|
|
|
| Some block ->
|
|
|
|
State.Block.operation_hashes
|
|
|
|
block ofs >>= fun (hashes, path) ->
|
2017-03-30 15:16:21 +04:00
|
|
|
ignore @@
|
2017-11-14 06:52:26 +04:00
|
|
|
P2p.try_send global_db.p2p state.conn @@
|
|
|
|
Operation_hashes_for_block (hash, ofs, hashes, path) ;
|
2017-03-30 15:16:21 +04:00
|
|
|
Lwt.return_unit)
|
2017-04-19 23:46:10 +04:00
|
|
|
blocks
|
2017-03-30 15:16:21 +04:00
|
|
|
|
2017-11-14 06:52:26 +04:00
|
|
|
| Operation_hashes_for_block (block, ofs, ops, path) -> begin
|
|
|
|
match find_pending_operation_hashes state block ofs with
|
|
|
|
| None ->
|
|
|
|
(* TODO some penalty. *)
|
|
|
|
Lwt.return_unit
|
|
|
|
| Some net_db ->
|
|
|
|
Raw_operation_hashes.Table.notify
|
|
|
|
net_db.operation_hashes_db.table state.gid
|
|
|
|
(block, ofs) (ops, path) >>= fun () ->
|
|
|
|
Lwt.return_unit
|
2017-04-19 23:46:10 +04:00
|
|
|
end
|
|
|
|
|
2017-11-14 06:52:26 +04:00
|
|
|
| Get_operations_for_blocks blocks ->
|
2017-04-19 23:46:10 +04:00
|
|
|
Lwt_list.iter_p
|
|
|
|
(fun (hash, ofs) ->
|
2017-11-14 06:52:26 +04:00
|
|
|
State.read_block global_db.disk hash >>= function
|
2017-04-19 23:46:10 +04:00
|
|
|
| None -> Lwt.return_unit
|
2017-11-14 06:52:26 +04:00
|
|
|
| Some block ->
|
|
|
|
State.Block.operations
|
|
|
|
block ofs >>= fun (ops, path) ->
|
2017-04-19 23:46:10 +04:00
|
|
|
ignore @@
|
2017-11-14 06:52:26 +04:00
|
|
|
P2p.try_send global_db.p2p state.conn @@
|
|
|
|
Operations_for_block (hash, ofs, ops, path) ;
|
2017-04-19 23:46:10 +04:00
|
|
|
Lwt.return_unit)
|
|
|
|
blocks
|
|
|
|
|
2017-11-14 06:52:26 +04:00
|
|
|
| Operations_for_block (block, ofs, ops, path) -> begin
|
|
|
|
match find_pending_operations state block ofs with
|
|
|
|
| None ->
|
|
|
|
(* TODO some penalty. *)
|
|
|
|
Lwt.return_unit
|
|
|
|
| Some net_db ->
|
|
|
|
Raw_operations.Table.notify
|
|
|
|
net_db.operations_db.table state.gid
|
|
|
|
(block, ofs) (ops, path) >>= fun () ->
|
|
|
|
Lwt.return_unit
|
|
|
|
end
|
2017-03-30 15:16:21 +04:00
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
let rec worker_loop global_db state =
|
|
|
|
Lwt_utils.protect ~canceler:state.canceler begin fun () ->
|
|
|
|
P2p.recv global_db.p2p state.conn
|
|
|
|
end >>= function
|
|
|
|
| Ok msg ->
|
|
|
|
handle_msg global_db state msg >>= fun () ->
|
|
|
|
worker_loop global_db state
|
|
|
|
| Error _ ->
|
|
|
|
Net_id.Table.iter
|
|
|
|
(fun _ -> deactivate state)
|
|
|
|
state.peer_active_nets ;
|
|
|
|
P2p.Peer_id.Table.remove global_db.p2p_readers state.gid ;
|
|
|
|
Lwt.return_unit
|
|
|
|
|
|
|
|
let run db gid conn =
|
2017-11-27 09:13:12 +04:00
|
|
|
let canceler = Lwt_canceler.create () in
|
2017-02-24 20:17:53 +04:00
|
|
|
let state = {
|
|
|
|
conn ; gid ; canceler ;
|
|
|
|
peer_active_nets = Net_id.Table.create 17 ;
|
|
|
|
worker = Lwt.return_unit ;
|
|
|
|
} in
|
|
|
|
Net_id.Table.iter (fun net_id _net_db ->
|
|
|
|
Lwt.async begin fun () ->
|
|
|
|
P2p.send db.p2p conn (Get_current_branch net_id)
|
|
|
|
end)
|
|
|
|
db.active_nets ;
|
|
|
|
state.worker <-
|
2017-11-11 06:34:12 +04:00
|
|
|
Lwt_utils.worker
|
|
|
|
(Format.asprintf "db_network_reader.%a"
|
|
|
|
P2p.Peer_id.pp_short gid)
|
2017-02-24 20:17:53 +04:00
|
|
|
~run:(fun () -> worker_loop db state)
|
2017-11-27 09:13:12 +04:00
|
|
|
~cancel:(fun () -> Lwt_canceler.cancel canceler) ;
|
2017-02-24 20:17:53 +04:00
|
|
|
P2p.Peer_id.Table.add db.p2p_readers gid state
|
|
|
|
|
|
|
|
let shutdown s =
|
2017-11-27 09:13:12 +04:00
|
|
|
Lwt_canceler.cancel s.canceler >>= fun () ->
|
2017-02-24 20:17:53 +04:00
|
|
|
s.worker
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
let active_peer_ids p2p () =
|
|
|
|
List.fold_left
|
|
|
|
(fun acc conn ->
|
|
|
|
let { P2p.Connection_info.peer_id } = P2p.connection_info p2p conn in
|
|
|
|
P2p.Peer_id.Set.add peer_id acc)
|
|
|
|
P2p.Peer_id.Set.empty
|
|
|
|
(P2p.connections p2p)
|
|
|
|
|
|
|
|
let raw_try_send p2p peer_id msg =
|
|
|
|
match P2p.find_connection p2p peer_id with
|
|
|
|
| None -> ()
|
|
|
|
| Some conn -> ignore (P2p.try_send p2p conn msg : bool)
|
|
|
|
|
|
|
|
let create disk p2p =
|
|
|
|
let global_request =
|
|
|
|
{ data = () ;
|
|
|
|
active = active_peer_ids p2p ;
|
|
|
|
send = raw_try_send p2p ;
|
|
|
|
} in
|
|
|
|
let protocol_db = Raw_protocol.create global_request disk in
|
|
|
|
let active_nets = Net_id.Table.create 17 in
|
|
|
|
let p2p_readers = P2p.Peer_id.Table.create 17 in
|
2017-11-27 09:13:12 +04:00
|
|
|
let block_input = Lwt_watcher.create_input () in
|
|
|
|
let operation_input = Lwt_watcher.create_input () in
|
2017-02-24 20:17:53 +04:00
|
|
|
let db =
|
|
|
|
{ p2p ; p2p_readers ; disk ;
|
|
|
|
active_nets ; protocol_db ;
|
|
|
|
block_input ; operation_input } in
|
|
|
|
P2p.on_new_connection p2p (P2p_reader.run db) ;
|
|
|
|
P2p.iter_connections p2p (P2p_reader.run db) ;
|
|
|
|
db
|
|
|
|
|
2017-09-29 20:43:13 +04:00
|
|
|
let activate ({ p2p ; active_nets } as global_db) net_state =
|
2017-04-19 23:46:10 +04:00
|
|
|
let net_id = State.Net.id net_state in
|
2017-02-24 20:17:53 +04:00
|
|
|
match Net_id.Table.find active_nets net_id with
|
|
|
|
| exception Not_found ->
|
|
|
|
let active_peers = ref P2p.Peer_id.Set.empty in
|
|
|
|
let p2p_request =
|
2017-11-14 06:52:26 +04:00
|
|
|
{ data = () ;
|
2017-02-24 20:17:53 +04:00
|
|
|
active = (fun () -> !active_peers) ;
|
|
|
|
send = raw_try_send p2p ;
|
|
|
|
} in
|
|
|
|
let operation_db =
|
|
|
|
Raw_operation.create
|
2017-04-19 23:46:10 +04:00
|
|
|
~global_input:global_db.operation_input p2p_request net_state in
|
2017-02-24 20:17:53 +04:00
|
|
|
let block_header_db =
|
|
|
|
Raw_block_header.create
|
2017-04-19 23:46:10 +04:00
|
|
|
~global_input:global_db.block_input p2p_request net_state in
|
|
|
|
let operation_hashes_db =
|
|
|
|
Raw_operation_hashes.create p2p_request net_state in
|
|
|
|
let operations_db =
|
|
|
|
Raw_operations.create p2p_request net_state in
|
2017-02-24 20:17:53 +04:00
|
|
|
let net = {
|
2017-04-19 23:46:10 +04:00
|
|
|
global_db ; operation_db ; block_header_db ;
|
|
|
|
operation_hashes_db ; operations_db ;
|
2017-09-29 20:43:13 +04:00
|
|
|
net_state ; callback = noop_callback ; active_peers ;
|
2017-02-24 20:17:53 +04:00
|
|
|
active_connections = P2p.Peer_id.Table.create 53 ;
|
|
|
|
} in
|
|
|
|
P2p.iter_connections p2p (fun _peer_id conn ->
|
2017-11-13 19:34:00 +04:00
|
|
|
Lwt.async begin fun () ->
|
|
|
|
P2p.send p2p conn (Get_current_branch net_id)
|
|
|
|
end) ;
|
2017-02-24 20:17:53 +04:00
|
|
|
Net_id.Table.add active_nets net_id net ;
|
|
|
|
net
|
|
|
|
| net ->
|
|
|
|
net
|
|
|
|
|
2017-09-29 20:43:13 +04:00
|
|
|
let set_callback net_db callback =
|
|
|
|
net_db.callback <- callback
|
|
|
|
|
2017-04-19 23:46:10 +04:00
|
|
|
let deactivate net_db =
|
|
|
|
let { active_nets ; p2p } = net_db.global_db in
|
|
|
|
let net_id = State.Net.id net_db.net_state in
|
2017-02-24 20:17:53 +04:00
|
|
|
Net_id.Table.remove active_nets net_id ;
|
|
|
|
P2p.Peer_id.Table.iter
|
|
|
|
(fun _peer_id reader ->
|
2017-04-19 23:46:10 +04:00
|
|
|
P2p_reader.deactivate reader net_db ;
|
2017-02-24 20:17:53 +04:00
|
|
|
Lwt.async begin fun () ->
|
|
|
|
P2p.send p2p reader.conn (Deactivate net_id)
|
|
|
|
end)
|
2017-04-19 23:46:10 +04:00
|
|
|
net_db.active_connections ;
|
|
|
|
Raw_operation.shutdown net_db.operation_db >>= fun () ->
|
|
|
|
Raw_block_header.shutdown net_db.block_header_db >>= fun () ->
|
2017-11-13 19:34:00 +04:00
|
|
|
Lwt.return_unit >>= fun () ->
|
2017-02-24 20:17:53 +04:00
|
|
|
Lwt.return_unit
|
|
|
|
|
|
|
|
let get_net { active_nets } net_id =
|
|
|
|
try Some (Net_id.Table.find active_nets net_id)
|
|
|
|
with Not_found -> None
|
|
|
|
|
2017-09-29 20:43:13 +04:00
|
|
|
let disconnect { global_db = { p2p } } peer_id =
|
|
|
|
match P2p.find_connection p2p peer_id with
|
|
|
|
| None -> Lwt.return_unit
|
|
|
|
| Some conn -> P2p.disconnect p2p conn
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
let shutdown { p2p ; p2p_readers ; active_nets } =
|
|
|
|
P2p.Peer_id.Table.fold
|
|
|
|
(fun _peer_id reader acc ->
|
|
|
|
P2p_reader.shutdown reader >>= fun () -> acc)
|
|
|
|
p2p_readers
|
|
|
|
Lwt.return_unit >>= fun () ->
|
|
|
|
Net_id.Table.fold
|
|
|
|
(fun _ net_db acc ->
|
2017-11-13 19:34:00 +04:00
|
|
|
Raw_operation.shutdown net_db.operation_db >>= fun () ->
|
|
|
|
Raw_block_header.shutdown net_db.block_header_db >>= fun () ->
|
|
|
|
acc)
|
2017-02-24 20:17:53 +04:00
|
|
|
active_nets
|
|
|
|
Lwt.return_unit >>= fun () ->
|
|
|
|
P2p.shutdown p2p >>= fun () ->
|
|
|
|
Lwt.return_unit
|
|
|
|
|
2017-11-11 06:34:12 +04:00
|
|
|
let clear_block net_db hash n =
|
|
|
|
Raw_operations.clear_all net_db.operations_db.table hash n ;
|
|
|
|
Raw_operation_hashes.clear_all net_db.operation_hashes_db.table hash n ;
|
|
|
|
Raw_block_header.Table.clear_or_cancel net_db.block_header_db.table hash
|
|
|
|
|
|
|
|
let commit_block net_db hash header operations result =
|
|
|
|
assert (Block_hash.equal hash (Block_header.hash header)) ;
|
|
|
|
assert (List.length operations = header.shell.validation_passes) ;
|
|
|
|
State.Block.store net_db.net_state header operations result >>=? fun res ->
|
|
|
|
clear_block net_db hash header.shell.validation_passes ;
|
2017-04-19 23:46:10 +04:00
|
|
|
return res
|
|
|
|
|
2017-10-31 20:59:02 +04:00
|
|
|
let commit_invalid_block net_db hash header errors =
|
2017-11-11 06:34:12 +04:00
|
|
|
assert (Block_hash.equal hash (Block_header.hash header)) ;
|
2017-10-31 20:59:02 +04:00
|
|
|
State.Block.store_invalid net_db.net_state header errors >>=? fun res ->
|
2017-11-11 06:34:12 +04:00
|
|
|
clear_block net_db hash header.shell.validation_passes ;
|
|
|
|
return res
|
|
|
|
|
2017-04-19 23:46:10 +04:00
|
|
|
let inject_operation net_db h op =
|
2017-11-14 05:41:37 +04:00
|
|
|
assert (Operation_hash.equal h (Operation.hash op)) ;
|
2017-04-19 23:46:10 +04:00
|
|
|
Raw_operation.Table.inject net_db.operation_db.table h op >>= fun res ->
|
|
|
|
return res
|
|
|
|
|
2017-11-11 06:34:12 +04:00
|
|
|
let commit_protocol db h p =
|
2017-04-19 23:46:10 +04:00
|
|
|
State.Protocol.store db.disk p >>= fun res ->
|
2017-11-06 18:23:06 +04:00
|
|
|
Raw_protocol.Table.clear_or_cancel db.protocol_db.table h ;
|
2017-04-19 23:46:10 +04:00
|
|
|
return (res <> None)
|
|
|
|
|
|
|
|
let watch_block_header { block_input } =
|
2017-11-27 09:13:12 +04:00
|
|
|
Lwt_watcher.create_stream block_input
|
2017-02-24 20:17:53 +04:00
|
|
|
let watch_operation { operation_input } =
|
2017-11-27 09:13:12 +04:00
|
|
|
Lwt_watcher.create_stream operation_input
|
2017-02-24 20:17:53 +04:00
|
|
|
|
|
|
|
module Raw = struct
|
|
|
|
let encoding = P2p.Raw.encoding Message.cfg.encoding
|
|
|
|
let supported_versions = Message.cfg.versions
|
|
|
|
end
|
2017-04-19 23:46:10 +04:00
|
|
|
|
|
|
|
module type DISTRIBUTED_DB = sig
|
|
|
|
type t
|
|
|
|
type key
|
|
|
|
type value
|
|
|
|
val known: t -> key -> bool Lwt.t
|
|
|
|
type error += Missing_data of key
|
|
|
|
val read: t -> key -> value tzresult Lwt.t
|
|
|
|
val read_opt: t -> key -> value option Lwt.t
|
|
|
|
val read_exn: t -> key -> value Lwt.t
|
2017-11-13 22:06:30 +04:00
|
|
|
type param
|
|
|
|
type error += Timeout of key
|
|
|
|
val fetch:
|
2017-11-10 23:30:29 +04:00
|
|
|
t ->
|
|
|
|
?peer:P2p.Peer_id.t ->
|
|
|
|
?timeout:float ->
|
2017-11-13 22:06:30 +04:00
|
|
|
key -> param -> value tzresult Lwt.t
|
|
|
|
val prefetch:
|
2017-11-08 15:52:10 +04:00
|
|
|
t ->
|
|
|
|
?peer:P2p.Peer_id.t ->
|
|
|
|
?timeout:float ->
|
2017-11-13 22:06:30 +04:00
|
|
|
key -> param -> unit
|
|
|
|
type error += Canceled of key
|
2017-11-06 18:23:06 +04:00
|
|
|
val clear_or_cancel: t -> key -> unit
|
2017-11-27 09:13:12 +04:00
|
|
|
val watch: t -> (key * value) Lwt_stream.t * Lwt_watcher.stopper
|
2017-04-19 23:46:10 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
module Make
|
|
|
|
(Table : Distributed_db_functors.DISTRIBUTED_DB)
|
|
|
|
(Kind : sig
|
|
|
|
type t
|
|
|
|
val proj: t -> Table.t
|
|
|
|
end) = struct
|
|
|
|
type key = Table.key
|
|
|
|
type value = Table.value
|
|
|
|
let known t k = Table.known (Kind.proj t) k
|
2017-09-29 20:43:13 +04:00
|
|
|
type error += Missing_data = Table.Missing_data
|
2017-11-08 15:42:09 +04:00
|
|
|
type error += Canceled = Table.Canceled
|
2017-11-08 15:52:10 +04:00
|
|
|
type error += Timeout = Table.Timeout
|
2017-04-19 23:46:10 +04:00
|
|
|
let read t k = Table.read (Kind.proj t) k
|
|
|
|
let read_opt t k = Table.read_opt (Kind.proj t) k
|
|
|
|
let read_exn t k = Table.read_exn (Kind.proj t) k
|
2017-11-10 23:30:29 +04:00
|
|
|
let prefetch t ?peer ?timeout k p =
|
|
|
|
Table.prefetch (Kind.proj t) ?peer ?timeout k p
|
2017-11-08 15:52:10 +04:00
|
|
|
let fetch t ?peer ?timeout k p =
|
|
|
|
Table.fetch (Kind.proj t) ?peer ?timeout k p
|
2017-11-06 18:23:06 +04:00
|
|
|
let clear_or_cancel t k = Table.clear_or_cancel (Kind.proj t) k
|
2017-04-19 23:46:10 +04:00
|
|
|
let inject t k v = Table.inject (Kind.proj t) k v
|
|
|
|
let watch t = Table.watch (Kind.proj t)
|
|
|
|
end
|
|
|
|
|
2017-11-13 22:06:30 +04:00
|
|
|
module Block_header = struct
|
|
|
|
type t = Block_header.t
|
|
|
|
include (Make (Raw_block_header.Table) (struct
|
|
|
|
type t = net_db
|
|
|
|
let proj net = net.block_header_db.table
|
|
|
|
end) : DISTRIBUTED_DB with type t := net_db
|
|
|
|
and type key := Block_hash.t
|
|
|
|
and type value := Block_header.t
|
|
|
|
and type param := unit)
|
|
|
|
end
|
2017-04-19 23:46:10 +04:00
|
|
|
|
|
|
|
module Operation_hashes =
|
|
|
|
Make (Raw_operation_hashes.Table) (struct
|
|
|
|
type t = net_db
|
|
|
|
let proj net = net.operation_hashes_db.table
|
|
|
|
end)
|
|
|
|
|
|
|
|
module Operations =
|
|
|
|
Make (Raw_operations.Table) (struct
|
|
|
|
type t = net_db
|
|
|
|
let proj net = net.operations_db.table
|
|
|
|
end)
|
|
|
|
|
2017-11-13 22:06:30 +04:00
|
|
|
module Operation = struct
|
2017-11-14 05:41:37 +04:00
|
|
|
include Operation
|
2017-11-13 22:06:30 +04:00
|
|
|
include (Make (Raw_operation.Table) (struct
|
|
|
|
type t = net_db
|
|
|
|
let proj net = net.operation_db.table
|
|
|
|
end) : DISTRIBUTED_DB with type t := net_db
|
|
|
|
and type key := Operation_hash.t
|
|
|
|
and type value := Operation.t
|
|
|
|
and type param := unit)
|
|
|
|
end
|
2017-04-19 23:46:10 +04:00
|
|
|
|
2017-11-13 22:06:30 +04:00
|
|
|
module Protocol = struct
|
|
|
|
type t = Protocol.t
|
|
|
|
include (Make (Raw_protocol.Table) (struct
|
|
|
|
type t = db
|
|
|
|
let proj db = db.protocol_db.table
|
|
|
|
end) : DISTRIBUTED_DB with type t := db
|
|
|
|
and type key := Protocol_hash.t
|
|
|
|
and type value := Protocol.t
|
|
|
|
and type param := unit)
|
|
|
|
end
|
2017-04-19 23:46:10 +04:00
|
|
|
|
2017-11-11 06:34:12 +04:00
|
|
|
|
|
|
|
let broadcast net_db msg =
|
|
|
|
P2p.Peer_id.Table.iter
|
|
|
|
(fun _peer_id state ->
|
|
|
|
ignore (P2p.try_send net_db.global_db.p2p state.conn msg))
|
|
|
|
net_db.active_connections
|
|
|
|
|
|
|
|
let try_send net_db peer_id msg =
|
|
|
|
try
|
|
|
|
let conn = P2p.Peer_id.Table.find net_db.active_connections peer_id in
|
|
|
|
ignore (P2p.try_send net_db.global_db.p2p conn.conn msg : bool)
|
|
|
|
with Not_found -> ()
|
|
|
|
|
|
|
|
let send net_db ?peer msg =
|
|
|
|
match peer with
|
|
|
|
| Some peer -> try_send net_db peer msg
|
|
|
|
| None -> broadcast net_db msg
|
|
|
|
|
|
|
|
module Request = struct
|
|
|
|
|
|
|
|
let current_head net_db ?peer () =
|
|
|
|
let net_id = State.Net.id net_db.net_state in
|
|
|
|
send net_db ?peer @@ Get_current_head net_id
|
|
|
|
|
|
|
|
let current_branch net_db ?peer () =
|
|
|
|
let net_id = State.Net.id net_db.net_state in
|
|
|
|
send net_db ?peer @@ Get_current_branch net_id
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Advertise = struct
|
|
|
|
|
2017-11-13 17:33:39 +04:00
|
|
|
let current_head net_db ?peer ?(mempool = Mempool.empty) head =
|
2017-11-11 06:34:12 +04:00
|
|
|
let net_id = State.Net.id net_db.net_state in
|
|
|
|
assert (Net_id.equal net_id (State.Block.net_id head)) ;
|
|
|
|
send net_db ?peer @@
|
|
|
|
Current_head (net_id, State.Block.header head, mempool)
|
|
|
|
|
|
|
|
let current_branch net_db ?peer head =
|
|
|
|
let net_id = State.Net.id net_db.net_state in
|
|
|
|
assert (Net_id.equal net_id (State.Block.net_id head)) ;
|
|
|
|
Block_locator.compute head 200 >>= fun locator ->
|
|
|
|
send net_db ?peer @@ Current_branch (net_id, locator) ;
|
|
|
|
Lwt.return_unit
|
|
|
|
|
|
|
|
end
|
|
|
|
|