ligo/src/node/net/p2p.mli

194 lines
5.9 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. *)
(* *)
(**************************************************************************)
(** A peer connection address *)
2017-01-14 16:14:17 +04:00
type addr = Ipaddr.V6.t
2016-09-08 21:13:10 +04:00
(** A peer connection port *)
type port = int
2016-11-07 17:32:10 +04:00
(** A p2p protocol version *)
2017-01-14 16:14:17 +04:00
module Version = P2p_types.Version
(** A global identifier for a peer, a.k.a. an identity *)
module Gid = P2p_types.Gid
module Identity = P2p_types.Identity
module Point = P2p_types.Point
module Id_point = P2p_types.Id_point
module Connection_info = P2p_types.Connection_info
module Stat = P2p_types.Stat
2016-09-08 21:13:10 +04:00
type 'meta meta_config = {
encoding : 'meta Data_encoding.t;
initial : 'meta;
}
type 'msg app_message_encoding = Encoding : {
tag: int ;
encoding: 'a Data_encoding.t ;
wrap: 'a -> 'msg ;
unwrap: 'msg -> 'a option ;
max_length: int option ;
} -> 'msg app_message_encoding
type 'msg message_config = {
encoding : 'msg app_message_encoding list ;
versions : Version.t list;
}
2016-09-08 21:13:10 +04:00
(** Network configuration *)
type config = {
2017-01-14 16:14:17 +04:00
listening_port : port option;
2016-09-08 21:13:10 +04:00
(** Tells if incoming connections accepted, precising the TCP port
2016-11-07 17:32:10 +04:00
on which the peer can be reached *)
2017-01-14 16:14:17 +04:00
listening_addr : addr option;
(** When incoming connections are accepted, precising on which
IP adddress the node listen (default: [[::]]). *)
trusted_points : Point.t list ;
(** List of hard-coded known peers to bootstrap the network from. *)
2016-09-08 21:13:10 +04:00
peers_file : string ;
2017-01-14 16:14:17 +04:00
(** The path to the JSON file where the metadata associated to
gids are loaded / stored. *)
2016-09-08 21:13:10 +04:00
closed_network : bool ;
2017-01-14 16:14:17 +04:00
(** If [true], the only accepted connections are from peers whose
addresses are in [trusted_peers]. *)
identity : Identity.t ;
(** Cryptographic identity of the peer. *)
proof_of_work_target : Crypto_box.target ;
(** Expected level of proof of work of peers' identity. *)
2016-09-08 21:13:10 +04:00
}
(** Network capacities *)
type limits = {
2017-01-14 16:14:17 +04:00
authentification_timeout : float ;
(** Delay granted to a peer to perform authentication, in seconds. *)
2016-09-08 21:13:10 +04:00
min_connections : int ;
2017-01-14 16:14:17 +04:00
(** Strict minimum number of connections (triggers an urgent maintenance) *)
expected_connections : int ;
(** Targeted number of connections to reach when bootstraping / maitening *)
2016-09-08 21:13:10 +04:00
max_connections : int ;
2017-01-14 16:14:17 +04:00
(** Maximum number of connections (exceeding peers are disconnected) *)
2016-09-08 21:13:10 +04:00
2017-01-14 16:14:17 +04:00
backlog : int ;
(** Argument of [Lwt_unix.accept].*)
max_incoming_connections : int ;
(** Maximum not-yet-authentified incoming connections. *)
2017-01-14 16:14:17 +04:00
max_download_speed : int option ;
(** Hard-limit in the number of bytes received per second. *)
2016-11-07 17:32:10 +04:00
2017-01-14 16:14:17 +04:00
max_upload_speed : int option ;
(** Hard-limit in the number of bytes sent per second. *)
2016-11-07 17:32:10 +04:00
2017-01-14 16:14:17 +04:00
read_buffer_size : int ;
(** Size in bytes of the buffer passed to [Lwt_unix.read]. *)
2016-11-07 17:32:10 +04:00
2017-01-14 16:14:17 +04:00
read_queue_size : int option ;
write_queue_size : int option ;
incoming_app_message_queue_size : int option ;
incoming_message_queue_size : int option ;
outgoing_message_queue_size : int option ;
(** Various bounds for internal queues. *)
2016-11-15 04:52:39 +04:00
2017-01-14 16:14:17 +04:00
}
2016-11-15 04:52:39 +04:00
type ('msg, 'meta) t
type ('msg, 'meta) net = ('msg, 'meta) t
2016-11-07 17:32:10 +04:00
(** A faked p2p layer, which do not initiate any connection
nor open any listening socket *)
val faked_network : ('msg, 'meta) net
2016-11-15 04:52:39 +04:00
(** Main network initialisation function *)
val bootstrap :
config:config -> limits:limits ->
'meta meta_config -> 'msg message_config -> ('msg, 'meta) net Lwt.t
2016-11-07 17:32:10 +04:00
(** Return one's gid *)
val gid : ('msg, 'meta) net -> Gid.t
2016-11-15 04:52:39 +04:00
(** A maintenance operation : try and reach the ideal number of peers *)
val maintain : ('msg, 'meta) net -> unit Lwt.t
2016-11-07 17:32:10 +04:00
(** Voluntarily drop some peers and replace them by new buddies *)
val roll : ('msg, 'meta) net -> unit Lwt.t
2016-11-07 17:32:10 +04:00
(** Close all connections properly *)
val shutdown : ('msg, 'meta) net -> unit Lwt.t
2016-11-07 17:32:10 +04:00
(** A connection to a peer *)
type ('msg, 'meta) connection
2016-11-29 02:01:37 +04:00
(** Access the domain of active peers *)
val connections : ('msg, 'meta) net -> ('msg, 'meta) connection list
2016-11-07 17:32:10 +04:00
(** Return the active peer with identity [gid] *)
val find_connection : ('msg, 'meta) net -> Gid.t -> ('msg, 'meta) connection option
2016-11-07 17:32:10 +04:00
(** Access the info of an active peer, if available *)
val connection_info :
('msg, 'meta) net -> ('msg, 'meta) connection -> Connection_info.t
val connection_stat :
('msg, 'meta) net -> ('msg, 'meta) connection -> Stat.t
val global_stat : ('msg, 'meta) net -> Stat.t
2016-11-07 17:32:10 +04:00
(** Accessors for meta information about a global identifier *)
val get_metadata : ('msg, 'meta) net -> Gid.t -> 'meta option
val set_metadata : ('msg, 'meta) net -> Gid.t -> 'meta -> unit
2016-09-08 21:13:10 +04:00
(** Wait for a message from a given connection. *)
val recv :
('msg, 'meta) net -> ('msg, 'meta) connection -> 'msg tzresult Lwt.t
2016-09-08 21:13:10 +04:00
(** Wait for a message from any active connections. *)
val recv_any :
('msg, 'meta) net -> (('msg, 'meta) connection * 'msg) Lwt.t
2016-09-08 21:13:10 +04:00
(** [send net peer msg] is a thread that returns when [msg] has been
successfully enqueued in the send queue. *)
val send :
('msg, 'meta) net -> ('msg, 'meta) connection -> 'msg -> unit Lwt.t
2016-09-08 21:13:10 +04:00
(** [try_send net peer msg] is [true] if [msg] has been added to the
send queue for [peer], [false] otherwise *)
val try_send :
('msg, 'meta) net -> ('msg, 'meta) connection -> 'msg -> bool
2016-09-08 21:13:10 +04:00
(** Send a message to all peers *)
val broadcast : ('msg, 'meta) net -> 'msg -> unit
2016-11-15 04:52:39 +04:00
(**/**)
module Raw : sig
type 'a t =
| Bootstrap
| Advertise of P2p_types.Point.t list
| Message of 'a
| Disconnect
val encoding: 'msg app_message_encoding list -> 'msg t Data_encoding.t
2016-11-07 17:32:10 +04:00
end