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. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
(* Tezos Command line interface - RPC Calls *)
|
|
|
|
|
2017-04-05 01:35:41 +04:00
|
|
|
open Client_rpcs
|
2016-09-08 21:13:10 +04:00
|
|
|
module Services = Node_rpc_services
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
let errors cctxt =
|
|
|
|
call_service0 cctxt Services.Error.service ()
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2017-04-12 20:22:40 +04:00
|
|
|
let forge_block cctxt ?net_id ?level ?proto_level ?predecessor ?timestamp fitness ops header =
|
2016-12-03 16:05:02 +04:00
|
|
|
call_service0 cctxt Services.forge_block
|
2017-04-12 20:22:40 +04:00
|
|
|
(net_id, level, proto_level, predecessor, timestamp, fitness, ops, header)
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
let validate_block cctxt net block =
|
2017-04-05 01:35:41 +04:00
|
|
|
call_err_service0 cctxt Services.validate_block (net, block)
|
|
|
|
|
2017-03-30 15:16:21 +04:00
|
|
|
let inject_block cctxt ?(async = false) ?(force = false) raw operations =
|
2017-04-05 01:35:41 +04:00
|
|
|
call_err_service0 cctxt Services.inject_block
|
2017-03-30 15:16:21 +04:00
|
|
|
{ raw ; blocking = not async ; force ; operations }
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2017-03-30 15:08:33 +04:00
|
|
|
let inject_operation cctxt ?(async = false) ?force operation =
|
2017-04-05 01:35:41 +04:00
|
|
|
call_err_service0 cctxt Services.inject_operation
|
|
|
|
(operation, not async, force)
|
|
|
|
|
2017-03-30 15:08:33 +04:00
|
|
|
let inject_protocol cctxt ?(async = false) ?force protocol =
|
2017-04-05 01:35:41 +04:00
|
|
|
call_err_service0 cctxt Services.inject_protocol
|
|
|
|
(protocol, not async, force)
|
|
|
|
|
2017-02-28 03:48:22 +04:00
|
|
|
let bootstrapped cctxt =
|
|
|
|
call_streamed_service0 cctxt Services.bootstrapped ()
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
let complete cctxt ?block prefix =
|
2016-11-15 17:44:16 +04:00
|
|
|
match block with
|
|
|
|
| None ->
|
2016-12-03 16:05:02 +04:00
|
|
|
call_service1 cctxt Services.complete prefix ()
|
2016-11-15 17:44:16 +04:00
|
|
|
| Some block ->
|
2016-12-03 16:05:02 +04:00
|
|
|
call_service2 cctxt Services.Blocks.complete block prefix ()
|
2017-04-05 01:35:41 +04:00
|
|
|
|
|
|
|
let describe config ?recurse path =
|
|
|
|
call_describe0 config Services.describe path recurse
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
module Blocks = struct
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
type block = Services.Blocks.block
|
|
|
|
|
|
|
|
type block_info = Services.Blocks.block_info = {
|
|
|
|
hash: Block_hash.t ;
|
2017-04-10 19:06:11 +04:00
|
|
|
net_id: Net_id.t ;
|
2017-04-10 15:01:22 +04:00
|
|
|
level: Int32.t ;
|
2017-04-12 20:22:40 +04:00
|
|
|
proto_level: int ; (* uint8 *)
|
2016-09-08 21:13:10 +04:00
|
|
|
predecessor: Block_hash.t ;
|
|
|
|
timestamp: Time.t ;
|
2017-03-30 15:16:21 +04:00
|
|
|
operations_hash: Operation_list_list_hash.t ;
|
2017-04-10 19:06:11 +04:00
|
|
|
fitness: MBytes.t list ;
|
|
|
|
data: MBytes.t ;
|
2017-03-30 15:16:21 +04:00
|
|
|
operations: Operation_hash.t list list option ;
|
2017-04-10 19:06:11 +04:00
|
|
|
protocol: Protocol_hash.t ;
|
2017-04-10 23:14:17 +04:00
|
|
|
test_network: Context.test_network;
|
2016-09-08 21:13:10 +04:00
|
|
|
}
|
|
|
|
type preapply_param = Services.Blocks.preapply_param = {
|
|
|
|
operations: Operation_hash.t list ;
|
|
|
|
sort: bool ;
|
|
|
|
timestamp: Time.t option ;
|
|
|
|
}
|
|
|
|
type preapply_result = Services.Blocks.preapply_result = {
|
2016-10-20 20:54:16 +04:00
|
|
|
operations: error Prevalidation.preapply_result ;
|
2016-09-08 21:13:10 +04:00
|
|
|
fitness: MBytes.t list ;
|
|
|
|
timestamp: Time.t ;
|
|
|
|
}
|
2017-04-05 01:35:41 +04:00
|
|
|
let net cctxt h =
|
|
|
|
call_service1 cctxt Services.Blocks.net h ()
|
2017-04-10 15:01:22 +04:00
|
|
|
let level cctxt h =
|
|
|
|
call_service1 cctxt Services.Blocks.level h ()
|
2017-04-05 01:35:41 +04:00
|
|
|
let predecessor cctxt h =
|
|
|
|
call_service1 cctxt Services.Blocks.predecessor h ()
|
|
|
|
let predecessors cctxt h l =
|
|
|
|
call_service1 cctxt Services.Blocks.predecessors h l
|
|
|
|
let hash cctxt h =
|
|
|
|
call_service1 cctxt Services.Blocks.hash h ()
|
|
|
|
let timestamp cctxt h =
|
|
|
|
call_service1 cctxt Services.Blocks.timestamp h ()
|
|
|
|
let fitness cctxt h =
|
|
|
|
call_service1 cctxt Services.Blocks.fitness h ()
|
|
|
|
let operations cctxt h =
|
|
|
|
call_service1 cctxt Services.Blocks.operations h ()
|
|
|
|
let protocol cctxt h =
|
|
|
|
call_service1 cctxt Services.Blocks.protocol h ()
|
|
|
|
let test_network cctxt h =
|
|
|
|
call_service1 cctxt Services.Blocks.test_network h ()
|
2017-04-10 15:01:22 +04:00
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
let preapply cctxt h ?timestamp ?(sort = false) operations =
|
2017-04-05 01:35:41 +04:00
|
|
|
call_err_service1
|
|
|
|
cctxt Services.Blocks.preapply h
|
|
|
|
{ operations ; sort ; timestamp }
|
2016-12-03 16:05:02 +04:00
|
|
|
let pending_operations cctxt block =
|
|
|
|
call_service1 cctxt Services.Blocks.pending_operations block ()
|
2017-04-10 19:06:11 +04:00
|
|
|
let info cctxt ?(include_ops = true) h =
|
|
|
|
call_service1 cctxt Services.Blocks.info h include_ops
|
2016-12-03 16:05:02 +04:00
|
|
|
let complete cctxt block prefix =
|
|
|
|
call_service2 cctxt Services.Blocks.complete block prefix ()
|
2017-04-10 19:06:11 +04:00
|
|
|
let list cctxt ?(include_ops = false)
|
2017-03-22 20:21:52 +04:00
|
|
|
?length ?heads ?delay ?min_date ?min_heads () =
|
2016-12-03 16:05:02 +04:00
|
|
|
call_service0 cctxt Services.Blocks.list
|
2017-04-10 19:06:11 +04:00
|
|
|
{ include_ops ; length ; heads ; monitor = Some false ; delay ;
|
2016-09-21 18:22:43 +04:00
|
|
|
min_date ; min_heads }
|
2017-04-10 19:06:11 +04:00
|
|
|
let monitor cctxt ?(include_ops = false)
|
2017-03-22 20:21:52 +04:00
|
|
|
?length ?heads ?delay ?min_date ?min_heads () =
|
2016-12-03 16:05:02 +04:00
|
|
|
call_streamed_service0 cctxt Services.Blocks.list
|
2017-04-10 19:06:11 +04:00
|
|
|
{ include_ops ; length ; heads ; monitor = Some true ; delay ;
|
2016-09-21 18:22:43 +04:00
|
|
|
min_date ; min_heads }
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
module Operations = struct
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2017-03-30 16:31:16 +04:00
|
|
|
let contents cctxt hashes =
|
|
|
|
call_service1 cctxt Services.Operations.contents hashes ()
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
let monitor cctxt ?contents () =
|
|
|
|
call_streamed_service0 cctxt Services.Operations.list
|
2016-09-08 21:13:10 +04:00
|
|
|
{ monitor = Some true ; contents }
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
end
|
2016-10-25 21:00:03 +04:00
|
|
|
|
|
|
|
module Protocols = struct
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2017-03-30 16:31:16 +04:00
|
|
|
let contents cctxt hash =
|
|
|
|
call_service1 cctxt Services.Protocols.contents hash ()
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
let list cctxt ?contents () =
|
2017-04-05 01:35:41 +04:00
|
|
|
call_service0
|
|
|
|
cctxt Services.Protocols.list
|
|
|
|
{ contents; monitor = Some false }
|
|
|
|
|
2016-10-25 21:00:03 +04:00
|
|
|
end
|
2017-03-02 18:39:36 +04:00
|
|
|
|
|
|
|
module Network = struct
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2017-03-02 18:39:36 +04:00
|
|
|
let stat cctxt =
|
|
|
|
call_service0 cctxt Services.Network.stat ()
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2017-03-02 18:39:36 +04:00
|
|
|
let connections cctxt =
|
|
|
|
call_service0 cctxt Services.Network.Connection.list ()
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2017-03-02 18:39:36 +04:00
|
|
|
let peers cctxt =
|
|
|
|
call_service0 cctxt Services.Network.Peer_id.list []
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2017-03-02 18:39:36 +04:00
|
|
|
let points cctxt =
|
|
|
|
call_service0 cctxt Services.Network.Point.list []
|
2017-04-05 01:35:41 +04:00
|
|
|
|
2017-03-02 18:39:36 +04:00
|
|
|
end
|