ligo/lib_client_base/client_helpers.ml

56 lines
2.2 KiB
OCaml
Raw Normal View History

2016-10-16 23:57:56 +04:00
(**************************************************************************)
(* *)
2017-11-14 03:36:14 +04:00
(* Copyright (c) 2014 - 2017. *)
2016-10-16 23:57:56 +04:00
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
let unique_switch =
Cli_entries.switch
~parameter:"-unique"
~doc:"Fail when there is more than one possible completion."
2016-10-16 23:57:56 +04:00
let commands () = Cli_entries.[
command
~desc: "Lookup for the possible completion of a \
given prefix of Base58Check-encoded hash. This actually \
2016-11-15 17:44:16 +04:00
works only for blocks, operations, public key and contract \
identifiers."
(args1 unique_switch)
(prefixes [ "complete" ] @@
string
~name: "prefix"
~desc: "the prefix of the Base58Check-encoded hash to be completed" @@
stop)
2017-11-07 20:38:11 +04:00
(fun unique prefix (cctxt : Client_commands.full_context) ->
Client_node_rpcs.complete
2017-11-07 20:38:11 +04:00
cctxt ~block:cctxt#block prefix >>=? fun completions ->
2016-10-16 23:57:56 +04:00
match completions with
| [] -> Pervasives.exit 3
| _ :: _ :: _ when unique -> Pervasives.exit 3
2016-10-16 23:57:56 +04:00
| completions ->
List.iter print_endline completions ;
return ()) ;
command
~desc: "Wait for the node to be bootstrapped."
no_options
(prefixes [ "bootstrapped" ] @@
stop)
2017-11-07 20:38:11 +04:00
(fun () (cctxt : Client_commands.full_context) ->
Client_node_rpcs.bootstrapped cctxt >>=? fun stream ->
Lwt_stream.iter_s (function
| Ok (hash, time) ->
2017-11-07 20:38:11 +04:00
cctxt#message "Current head: %a (%a)"
Block_hash.pp_short hash
Time.pp_hum time
| Error err ->
2017-11-07 20:38:11 +04:00
cctxt#error "Error: %a"
pp_print_error err
) stream >>= fun () ->
2017-11-07 20:38:11 +04:00
cctxt#answer "Bootstrapped." >>= fun () ->
return ()
)
]