2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
type ('a, 'b) lwt_format =
|
|
|
|
('a, Format.formatter, unit, 'b Lwt.t) format4
|
|
|
|
|
2017-03-15 04:17:20 +04:00
|
|
|
type cfg = {
|
2017-03-31 02:42:13 +04:00
|
|
|
base_dir : string ;
|
|
|
|
force : bool ;
|
|
|
|
block : Node_rpc_services.Blocks.block ;
|
2017-03-15 04:17:20 +04:00
|
|
|
}
|
|
|
|
|
2017-04-05 01:35:41 +04:00
|
|
|
type context = {
|
|
|
|
rpc_config : Client_rpcs.config ;
|
|
|
|
config : cfg ;
|
|
|
|
error : 'a 'b. ('a, 'b) lwt_format -> 'a ;
|
|
|
|
warning : 'a. ('a, unit) lwt_format -> 'a ;
|
|
|
|
message : 'a. ('a, unit) lwt_format -> 'a ;
|
|
|
|
answer : 'a. ('a, unit) lwt_format -> 'a ;
|
|
|
|
log : 'a. string -> ('a, unit) lwt_format -> 'a ;
|
|
|
|
}
|
2017-03-08 21:47:01 +04:00
|
|
|
(** This [context] allows the client {!command} handlers to work in
|
|
|
|
various modes (command line, batch mode, web client, etc.) by
|
|
|
|
abstracting some basic operations such as logging and reading
|
|
|
|
configuration options. It is passed as parameter to the command
|
|
|
|
handler when running a command, and must be transmitted to all
|
|
|
|
basic operations, also making client commands reantrant. *)
|
2016-12-03 16:05:02 +04:00
|
|
|
|
2017-03-15 04:17:20 +04:00
|
|
|
val default_base_dir : string
|
|
|
|
val default_cfg_of_base_dir : string -> cfg
|
|
|
|
val default_cfg : cfg
|
|
|
|
|
|
|
|
val make_context :
|
|
|
|
?config:cfg ->
|
2017-04-05 01:35:41 +04:00
|
|
|
?rpc_config:Client_rpcs.config ->
|
2017-03-15 04:17:20 +04:00
|
|
|
(string -> string -> unit Lwt.t) -> context
|
|
|
|
(** [make_context ?config log_fun] builds a context whose logging
|
|
|
|
callbacks call [log_fun section msg], and whose [error] function
|
|
|
|
fails with [Failure] and the given message. If not passed,
|
|
|
|
[config] is {!default_cfg}. *)
|
2016-12-03 16:05:02 +04:00
|
|
|
|
|
|
|
val ignore_context : context
|
2017-03-08 21:47:01 +04:00
|
|
|
(** [ignore_context] is a context whose logging callbacks do nothing,
|
|
|
|
and whose [error] function calls [Lwt.fail_with]. *)
|
2016-12-03 16:05:02 +04:00
|
|
|
|
2017-04-05 12:22:41 +04:00
|
|
|
type command = (context, unit) Cli_entries.command
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
exception Version_not_found
|
|
|
|
|
|
|
|
val register: Protocol_hash.t -> command list -> unit
|
|
|
|
val commands_for_version: Protocol_hash.t -> command list
|
|
|
|
val get_versions: unit -> (Protocol_hash.t * (command list)) list
|