ligo/src/client/client_node_rpcs.ml

219 lines
9.2 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. *)
(* *)
(**************************************************************************)
(* Tezos Command line interface - RPC Calls *)
open Lwt
open Cli_entries
open Client_commands
2016-09-08 21:13:10 +04:00
open Logging.RPC
let log_request { log } cpt url req =
log "requests" ">>>>%d: %s\n%s\n" cpt url req
2016-09-08 21:13:10 +04:00
let log_response { log } cpt code ans =
log "requests" "<<<<%d: %s\n%s\n" cpt (Cohttp.Code.string_of_status code) ans
2016-09-08 21:13:10 +04:00
let cpt = ref 0
let make_request cctxt service json =
2016-09-08 21:13:10 +04:00
incr cpt ;
let cpt = !cpt in
2016-12-02 01:42:28 +04:00
let scheme = if Client_config.tls#get then "https" else "http" in
let host = Client_config.incoming_addr#get in
let port = Client_config.incoming_port#get in
let path = String.concat "/" service in
let uri = Uri.make ~scheme ~host ~port ~path () in
let string_uri = Uri.to_string uri in
let reqbody = Data_encoding_ezjsonm.to_string json in
2016-09-08 21:13:10 +04:00
let tzero = Unix.gettimeofday () in
catch
(fun () ->
let body = Cohttp_lwt_body.of_string reqbody in
Cohttp_lwt_unix.Client.post ~body uri >>= fun (code, ansbody) ->
log_request cctxt cpt string_uri reqbody >>= fun () ->
2016-09-08 21:13:10 +04:00
return (cpt, Unix.gettimeofday () -. tzero,
code.Cohttp.Response.status, ansbody))
(fun e ->
let msg = match e with
| Unix.Unix_error (e, _, _) -> Unix.error_message e
| e -> Printexc.to_string e in
cctxt.error "cannot connect to the RPC server (%s)" msg)
2016-09-08 21:13:10 +04:00
let get_streamed_json cctxt service json =
make_request cctxt service json >>= fun (_cpt, time, code, ansbody) ->
2016-09-08 21:13:10 +04:00
let ansbody = Cohttp_lwt_body.to_stream ansbody in
match code, ansbody with
| #Cohttp.Code.success_status, ansbody ->
(if Client_config.print_timings#get then
cctxt.message "Request to /%s succeeded in %gs"
(String.concat "/" service) time
else Lwt.return ()) >>= fun () ->
2016-09-08 21:13:10 +04:00
Lwt.return (
Lwt_stream.filter_map_s
(function
| Ok v -> Lwt.return (Some v)
| Error msg ->
lwt_log_error
"Failed to parse json: %s" msg >>= fun () ->
Lwt.return None)
(Data_encoding_ezjsonm.from_stream ansbody))
2016-09-08 21:13:10 +04:00
| err, _ansbody ->
(if Client_config.print_timings#get then
cctxt.message "Request to /%s failed in %gs"
(String.concat "/" service) time
else Lwt.return ()) >>= fun () ->
cctxt.message "Request to /%s failed, server returned %s"
(String.concat "/" service) (Cohttp.Code.string_of_status err) >>= fun () ->
cctxt.error "the RPC server returned a non-success status (%s)"
2016-09-08 21:13:10 +04:00
(Cohttp.Code.string_of_status err)
let get_json cctxt service json =
make_request cctxt service json >>= fun (cpt, time, code, ansbody) ->
2016-09-08 21:13:10 +04:00
Cohttp_lwt_body.to_string ansbody >>= fun ansbody ->
match code, ansbody with
| #Cohttp.Code.success_status, ansbody -> begin
(if Client_config.print_timings#get then
cctxt.message "Request to /%s succeeded in %gs"
(String.concat "/" service) time
else Lwt.return ()) >>= fun () ->
log_response cctxt cpt code ansbody >>= fun () ->
2016-09-08 21:13:10 +04:00
if ansbody = "" then Lwt.return `Null
else match Data_encoding_ezjsonm.from_string ansbody with
| Error _ -> cctxt.error "the RPC server returned malformed JSON"
2016-09-08 21:13:10 +04:00
| Ok res -> Lwt.return res
end
| err, _ansbody ->
(if Client_config.print_timings#get then
cctxt.message "Request to /%s failed in %gs"
(String.concat "/" service) time
else Lwt.return ()) >>= fun () ->
cctxt.message "Request to /%s failed, server returned %s"
(String.concat "/" service) (Cohttp.Code.string_of_status err) >>= fun () ->
cctxt.error "the RPC server returned a non-success status (%s)"
2016-09-08 21:13:10 +04:00
(Cohttp.Code.string_of_status err)
exception Unknown_error of Data_encoding.json
let parse_answer cctxt service path json =
2016-09-08 21:13:10 +04:00
match RPC.read_answer service json with
| Error msg -> (* TODO print_error *)
cctxt.error "request to /%s returned wrong JSON (%s)\n%s"
(String.concat "/" path) msg (Data_encoding_ezjsonm.to_string json)
2016-09-08 21:13:10 +04:00
| Ok v -> return v
let call_service0 cctxt service arg =
2016-09-08 21:13:10 +04:00
let path, arg = RPC.forge_request service () arg in
get_json cctxt path arg >>= fun json ->
parse_answer cctxt service path json
2016-09-08 21:13:10 +04:00
let call_service1 cctxt service a1 arg =
2016-09-08 21:13:10 +04:00
let path, arg = RPC.forge_request service ((), a1) arg in
get_json cctxt path arg >>= fun json ->
parse_answer cctxt service path json
2016-09-08 21:13:10 +04:00
let call_service2 cctxt service a1 a2 arg =
2016-09-08 21:13:10 +04:00
let path, arg = RPC.forge_request service (((), a1), a2) arg in
get_json cctxt path arg >>= fun json ->
parse_answer cctxt service path json
2016-09-08 21:13:10 +04:00
let call_streamed_service0 cctxt service arg =
2016-09-08 21:13:10 +04:00
let path, arg = RPC.forge_request service () arg in
get_streamed_json cctxt path arg >|= fun st ->
Lwt_stream.map_s (parse_answer cctxt service path) st
2016-09-08 21:13:10 +04:00
module Services = Node_rpc_services
let errors cctxt =
call_service0 cctxt Services.Error.service ()
let forge_block cctxt ?net ?predecessor ?timestamp fitness ops header =
call_service0 cctxt Services.forge_block
2016-09-08 21:13:10 +04:00
(net, predecessor, timestamp, fitness, ops, header)
let validate_block cctxt net block =
call_service0 cctxt Services.validate_block (net, block)
let inject_block cctxt ?(wait = true) ?force block =
call_service0 cctxt Services.inject_block (block, wait, force)
let inject_operation cctxt ?(wait = true) ?force operation =
call_service0 cctxt Services.inject_operation (operation, wait, force)
let inject_protocol cctxt ?(wait = true) ?force protocol =
call_service0 cctxt Services.inject_protocol (protocol, wait, force)
let complete cctxt ?block prefix =
2016-11-15 17:44:16 +04:00
match block with
| None ->
call_service1 cctxt Services.complete prefix ()
2016-11-15 17:44:16 +04:00
| Some block ->
call_service2 cctxt Services.Blocks.complete block prefix ()
let describe cctxt ?recurse path =
2016-09-08 21:13:10 +04:00
let prefix, arg = RPC.forge_request Services.describe () recurse in
get_json cctxt (prefix @ path) arg >>=
parse_answer cctxt Services.describe prefix
2016-09-08 21:13:10 +04:00
module Blocks = struct
type block = Services.Blocks.block
type block_info = Services.Blocks.block_info = {
hash: Block_hash.t ;
predecessor: Block_hash.t ;
fitness: MBytes.t list ;
timestamp: Time.t ;
protocol: Protocol_hash.t option ;
operations: Operation_hash.t list option ;
net: Updater.Net_id.t ;
2016-09-08 21:13:10 +04:00
test_protocol: Protocol_hash.t option ;
test_network: (Updater.Net_id.t * Time.t) option ;
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 = {
operations: error Updater.preapply_result ;
fitness: MBytes.t list ;
timestamp: Time.t ;
}
let net cctxt h = call_service1 cctxt Services.Blocks.net h ()
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_protocol cctxt h = call_service1 cctxt Services.Blocks.test_protocol h ()
let test_network cctxt h = call_service1 cctxt Services.Blocks.test_network h ()
let preapply cctxt h ?timestamp ?(sort = false) operations =
call_service1 cctxt Services.Blocks.preapply h { operations ; sort ; timestamp }
let pending_operations cctxt block =
call_service1 cctxt Services.Blocks.pending_operations block ()
let info cctxt ?(operations = false) h =
call_service1 cctxt Services.Blocks.info h operations
let complete cctxt block prefix =
call_service2 cctxt Services.Blocks.complete block prefix ()
let list cctxt ?operations ?length ?heads ?delay ?min_date ?min_heads () =
call_service0 cctxt Services.Blocks.list
2016-09-21 18:22:43 +04:00
{ operations; length ; heads ; monitor = Some false ; delay ;
min_date ; min_heads }
let monitor cctxt ?operations ?length ?heads ?delay ?min_date ?min_heads () =
call_streamed_service0 cctxt Services.Blocks.list
2016-09-21 18:22:43 +04:00
{ operations; length ; heads ; monitor = Some true ; delay ;
min_date ; min_heads }
2016-09-08 21:13:10 +04:00
end
module Operations = struct
let monitor cctxt ?contents () =
call_streamed_service0 cctxt Services.Operations.list
2016-09-08 21:13:10 +04:00
{ monitor = Some true ; contents }
end
2016-10-25 21:00:03 +04:00
module Protocols = struct
let bytes cctxt hash =
call_service1 cctxt Services.Protocols.bytes hash ()
let list cctxt ?contents () =
call_service0 cctxt Services.Protocols.list { contents; monitor = Some false }
2016-10-25 21:00:03 +04:00
end