2018-01-26 16:07:49 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-06 00:17:03 +04:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2018-01-26 16:07:49 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
open Data_encoding
|
|
|
|
|
|
|
|
module Prevalidators = struct
|
|
|
|
|
|
|
|
let (net_id_arg : Net_id.t RPC_arg.t) =
|
|
|
|
RPC_arg.make
|
|
|
|
~name:"net_id"
|
|
|
|
~descr:"The network identifier of whom the prevalidator is responsible."
|
|
|
|
~destruct:(fun s -> try
|
|
|
|
Ok (Net_id.of_b58check_exn s)
|
|
|
|
with Failure msg -> Error msg)
|
|
|
|
~construct:Net_id.to_b58check
|
|
|
|
()
|
|
|
|
|
|
|
|
let list =
|
|
|
|
RPC_service.post_service
|
|
|
|
~description:"Lists the Prevalidator workers and their status."
|
|
|
|
~query: RPC_query.empty
|
|
|
|
~input: empty
|
|
|
|
~output:
|
|
|
|
(list
|
|
|
|
(obj2
|
|
|
|
(req "net_id" Net_id.encoding)
|
|
|
|
(req "status" (Worker_types.worker_status_encoding RPC_error.encoding))))
|
|
|
|
RPC_path.(root / "workers" / "prevalidators")
|
|
|
|
|
|
|
|
let state =
|
|
|
|
let open Data_encoding in
|
|
|
|
RPC_service.post_service
|
|
|
|
~description:"Introspect the state of a prevalidator worker."
|
|
|
|
~query: RPC_query.empty
|
|
|
|
~input: empty
|
|
|
|
~output:
|
|
|
|
(Worker_types.full_status_encoding
|
|
|
|
Prevalidator_worker_state.Request.encoding
|
2018-01-25 14:32:51 +04:00
|
|
|
Prevalidator_worker_state.Event.encoding
|
2018-01-26 16:07:49 +04:00
|
|
|
RPC_error.encoding)
|
|
|
|
RPC_path.(root / "workers" / "prevalidators" /: net_id_arg )
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Block_validator = struct
|
|
|
|
|
|
|
|
let state =
|
|
|
|
let open Data_encoding in
|
|
|
|
RPC_service.post_service
|
|
|
|
~description:"Introspect the state of the block_validator worker."
|
|
|
|
~query: RPC_query.empty
|
|
|
|
~input: empty
|
|
|
|
~output:
|
|
|
|
(Worker_types.full_status_encoding
|
|
|
|
Block_validator_worker_state.Request.encoding
|
2018-01-25 14:32:51 +04:00
|
|
|
Block_validator_worker_state.Event.encoding
|
2018-01-26 16:07:49 +04:00
|
|
|
RPC_error.encoding)
|
|
|
|
RPC_path.(root / "workers" / "block_validator")
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Peer_validators = struct
|
|
|
|
|
|
|
|
let (net_id_arg : Net_id.t RPC_arg.t) =
|
|
|
|
RPC_arg.make
|
|
|
|
~name:"net_id"
|
|
|
|
~descr:"The network identifier the peer validator is associated to."
|
|
|
|
~destruct:(fun s -> try
|
|
|
|
Ok (Net_id.of_b58check_exn s)
|
|
|
|
with Failure msg -> Error msg)
|
|
|
|
~construct:Net_id.to_b58check
|
|
|
|
()
|
|
|
|
|
|
|
|
let (peer_id_arg : P2p_peer.Id.t RPC_arg.t) =
|
|
|
|
RPC_arg.make
|
|
|
|
~name:"peer_id"
|
|
|
|
~descr:"The peer identifier of whom the prevalidator is responsible."
|
|
|
|
~destruct:(fun s -> try
|
|
|
|
Ok (P2p_peer.Id.of_b58check_exn s)
|
|
|
|
with Failure msg -> Error msg)
|
|
|
|
~construct:P2p_peer.Id.to_b58check
|
|
|
|
()
|
|
|
|
|
|
|
|
let list =
|
|
|
|
RPC_service.post_service
|
|
|
|
~description:"Lists the peer validator workers and their status."
|
|
|
|
~query: RPC_query.empty
|
|
|
|
~input: empty
|
|
|
|
~output:
|
|
|
|
(list
|
|
|
|
(obj2
|
|
|
|
(req "peer_id" P2p_peer.Id.encoding)
|
|
|
|
(req "status" (Worker_types.worker_status_encoding RPC_error.encoding))))
|
|
|
|
RPC_path.(root / "workers" / "peer_validators" /: net_id_arg)
|
|
|
|
|
|
|
|
let state =
|
|
|
|
let open Data_encoding in
|
|
|
|
RPC_service.post_service
|
|
|
|
~description:"Introspect the state of a peer validator worker."
|
|
|
|
~query: RPC_query.empty
|
|
|
|
~input: empty
|
|
|
|
~output:
|
|
|
|
(Worker_types.full_status_encoding
|
|
|
|
Peer_validator_worker_state.Request.encoding
|
2018-01-25 14:32:51 +04:00
|
|
|
Peer_validator_worker_state.Event.encoding
|
2018-01-26 16:07:49 +04:00
|
|
|
RPC_error.encoding)
|
|
|
|
RPC_path.(root / "workers" / "peer_validators" /: net_id_arg /: peer_id_arg)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Net_validators = struct
|
|
|
|
|
|
|
|
let (net_id_arg : Net_id.t RPC_arg.t) =
|
|
|
|
RPC_arg.make
|
|
|
|
~name:"net_id"
|
|
|
|
~descr:"The network identifier of whom the net validator is responsible."
|
|
|
|
~destruct:(fun s -> try
|
|
|
|
Ok (Net_id.of_b58check_exn s)
|
|
|
|
with Failure msg -> Error msg)
|
|
|
|
~construct:Net_id.to_b58check
|
|
|
|
()
|
|
|
|
|
|
|
|
let list =
|
|
|
|
RPC_service.post_service
|
|
|
|
~description:"Lists the net validator workers and their status."
|
|
|
|
~query: RPC_query.empty
|
|
|
|
~input: empty
|
|
|
|
~output:
|
|
|
|
(list
|
|
|
|
(obj2
|
|
|
|
(req "net_id" Net_id.encoding)
|
|
|
|
(req "status" (Worker_types.worker_status_encoding RPC_error.encoding))))
|
|
|
|
RPC_path.(root / "workers" / "net_validators")
|
|
|
|
|
|
|
|
let state =
|
|
|
|
let open Data_encoding in
|
|
|
|
RPC_service.post_service
|
|
|
|
~description:"Introspect the state of a net validator worker."
|
|
|
|
~query: RPC_query.empty
|
|
|
|
~input: empty
|
|
|
|
~output:
|
|
|
|
(Worker_types.full_status_encoding
|
|
|
|
Net_validator_worker_state.Request.encoding
|
2018-01-25 14:32:51 +04:00
|
|
|
Net_validator_worker_state.Event.encoding
|
2018-01-26 16:07:49 +04:00
|
|
|
RPC_error.encoding)
|
|
|
|
RPC_path.(root / "workers" / "net_validators" /: net_id_arg )
|
|
|
|
|
|
|
|
end
|