(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. *) (* *) (* Permission is hereby granted, free of charge, to any person obtaining a *) (* copy of this software and associated documentation files (the "Software"),*) (* to deal in the Software without restriction, including without limitation *) (* the rights to use, copy, modify, merge, publish, distribute, sublicense, *) (* and/or sell copies of the Software, and to permit persons to whom the *) (* Software is furnished to do so, subject to the following conditions: *) (* *) (* The above copyright notice and this permission notice shall be included *) (* in all copies or substantial portions of the Software. *) (* *) (* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*) (* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *) (* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *) (* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*) (* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *) (* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *) (* DEALINGS IN THE SOFTWARE. *) (* *) (*****************************************************************************) open Data_encoding module Prevalidators = struct module S = struct let list = RPC_service.get_service ~description:"Lists the Prevalidator workers and their status." ~query: RPC_query.empty ~output: (list (obj2 (req "chain_id" Chain_id.encoding) (req "status" (Worker_types.worker_status_encoding RPC_error.encoding)))) RPC_path.(root / "workers" / "prevalidators") let state = RPC_service.get_service ~description:"Introspect the state of a prevalidator worker." ~query: RPC_query.empty ~output: (Worker_types.full_status_encoding Prevalidator_worker_state.Request.encoding Prevalidator_worker_state.Event.encoding RPC_error.encoding) RPC_path.(root / "workers" / "prevalidators" /: Chain_services.chain_arg ) end open RPC_context let list ctxt = make_call S.list ctxt () () () let state ctxt h = make_call1 S.state ctxt h () () end module Block_validator = struct module S = struct let state = RPC_service.get_service ~description:"Introspect the state of the block_validator worker." ~query: RPC_query.empty ~output: (Worker_types.full_status_encoding Block_validator_worker_state.Request.encoding Block_validator_worker_state.Event.encoding RPC_error.encoding) RPC_path.(root / "workers" / "block_validator") end open RPC_context let state ctxt = make_call S.state ctxt () () () end module Peer_validators = struct module S = struct let list = RPC_service.get_service ~description:"Lists the peer validator workers and their status." ~query: RPC_query.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" / "chain_validators" /: Chain_services.chain_arg / "peers_validators" ) let state = RPC_service.get_service ~description:"Introspect the state of a peer validator worker." ~query: RPC_query.empty ~output: (Worker_types.full_status_encoding Peer_validator_worker_state.Request.encoding Peer_validator_worker_state.Event.encoding RPC_error.encoding) RPC_path.(root / "workers" / "chain_validators" /: Chain_services.chain_arg / "peers_validators" /: P2p_peer.Id.rpc_arg) end open RPC_context let list ctxt n = make_call1 S.list ctxt n () () let state ctxt n h = make_call2 S.state ctxt n h () () end module Chain_validators = struct module S = struct let list = RPC_service.get_service ~description:"Lists the chain validator workers and their status." ~query: RPC_query.empty ~output: (list (obj2 (req "chain_id" Chain_id.encoding) (req "status" (Worker_types.worker_status_encoding RPC_error.encoding)))) RPC_path.(root / "workers" / "chain_validators") let state = RPC_service.get_service ~description:"Introspect the state of a chain validator worker." ~query: RPC_query.empty ~output: (Worker_types.full_status_encoding Chain_validator_worker_state.Request.encoding Chain_validator_worker_state.Event.encoding RPC_error.encoding) RPC_path.(root / "workers" / "chain_validators" /: Chain_services.chain_arg ) end open RPC_context let list ctxt = make_call S.list ctxt () () () let state ctxt h = make_call1 S.state ctxt h () () end