ligo/lib_client_base/client_protocols.ml

68 lines
2.9 KiB
OCaml
Raw Normal View History

(**************************************************************************)
(* *)
2017-11-14 03:36:14 +04:00
(* Copyright (c) 2014 - 2017. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
let group =
{ Cli_entries.name = "protocols" ;
title = "Commands for managing protocols" }
2016-10-25 21:00:03 +04:00
let commands () =
let open Cli_entries in
let check_dir _ dn =
if Sys.is_directory dn then
return dn
else
failwith "%s is not a directory" dn in
2017-09-27 11:55:20 +04:00
let check_dir_parameter = parameter check_dir in
2016-10-25 21:00:03 +04:00
[
command ~group ~desc: "list known protocols"
no_options
2016-10-25 21:00:03 +04:00
(prefixes [ "list" ; "protocols" ] stop)
2017-11-07 20:38:11 +04:00
(fun () (cctxt : Client_commands.full_context) ->
Client_node_rpcs.Protocols.list cctxt ~contents:false () >>=? fun protos ->
Lwt_list.iter_s (fun (ph, _p) -> cctxt#message "%a" Protocol_hash.pp ph) protos >>= fun () ->
return ()
2016-10-25 21:00:03 +04:00
);
command ~group ~desc: "inject a new protocol to the shell database"
no_options
2016-10-25 21:00:03 +04:00
(prefixes [ "inject" ; "protocol" ]
2017-09-27 11:55:20 +04:00
@@ param ~name:"dir" ~desc:"directory containing a protocol" check_dir_parameter
2016-10-25 21:00:03 +04:00
@@ stop)
2017-11-07 20:38:11 +04:00
(fun () dirname (cctxt : Client_commands.full_context) ->
2016-10-25 21:00:03 +04:00
Lwt.catch
(fun () ->
let _hash, proto = Protocol.read_dir dirname in
2017-11-07 20:38:11 +04:00
Client_node_rpcs.inject_protocol cctxt proto >>= function
2016-10-25 21:00:03 +04:00
| Ok hash ->
2017-11-07 20:38:11 +04:00
cctxt#message "Injected protocol %a successfully" Protocol_hash.pp_short hash >>= fun () ->
return ()
2016-10-25 21:00:03 +04:00
| Error err ->
2017-11-07 20:38:11 +04:00
cctxt#error "Error while injecting protocol from %s: %a"
dirname Error_monad.pp_print_error err >>= fun () ->
return ())
2016-10-25 21:00:03 +04:00
(fun exn ->
2017-11-07 20:38:11 +04:00
cctxt#error "Error while injecting protocol from %s: %a"
dirname Error_monad.pp_print_error [Error_monad.Exn exn] >>= fun () ->
return ())
2016-10-25 21:00:03 +04:00
);
command ~group ~desc: "dump a protocol from the shell database"
no_options
2016-10-25 21:00:03 +04:00
(prefixes [ "dump" ; "protocol" ]
@@ Protocol_hash.param ~name:"protocol hash" ~desc:""
2016-10-25 21:00:03 +04:00
@@ stop)
2017-11-07 20:38:11 +04:00
(fun () ph (cctxt : Client_commands.full_context) ->
Client_node_rpcs.Protocols.contents cctxt ph >>=? fun proto ->
Protocol.write_dir (Protocol_hash.to_short_b58check ph) ~hash:ph proto >>= fun () ->
2017-11-07 20:38:11 +04:00
cctxt#message "Extracted protocol %a" Protocol_hash.pp_short ph >>= fun () ->
return ()
) ;
2016-10-25 21:00:03 +04:00
]