ligo/src/lib_client_commands/client_report_commands.ml

91 lines
3.3 KiB
OCaml

(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
(* Commands used to introspect the node's state *)
let skip_line ppf =
Format.pp_print_newline ppf ();
return @@ Format.pp_print_newline ppf ()
let print_heads ppf heads =
Format.pp_print_list ~pp_sep:Format.pp_print_newline
(fun ppf blocks ->
Format.pp_print_list
~pp_sep:Format.pp_print_newline
Block_services.pp_block_info
ppf
blocks)
ppf heads
let print_rejected ppf = function
| [] -> Format.fprintf ppf "No invalid blocks."
| invalid ->
Format.pp_print_list
(fun ppf (hash, level, errors) ->
Format.fprintf ppf
"@[<v 2>Hash: %a\
@ Level: %ld\
@ Errors: @[<v>%a@]@]"
Block_hash.pp hash
level
(Format.pp_print_list ~pp_sep:Format.pp_print_newline
Error_monad.pp)
errors)
ppf
invalid
let commands () =
let open Cli_entries in
let group = { name = "report" ;
title = "Commands to report the node's status" } in
let output_arg =
default_arg
~doc:"write to a file"
~long:"output"
~short:'o'
~placeholder:"path"
~default: "-"
(parameter (fun _ -> function
| "-" -> return Format.std_formatter
| file ->
let ppf = Format.formatter_of_out_channel (open_out file) in
ignore Cli_entries.(setup_formatter ppf Plain Full) ;
return ppf)) in
[
command ~group
~desc: "The last heads that have been considered by the node."
(args1 output_arg)
(fixed [ "list" ; "heads" ])
(fun ppf cctxt ->
Block_services.list ~include_ops:true ~length:1 cctxt >>=? fun heads ->
Format.fprintf ppf "%a@." print_heads heads ;
return ()) ;
command ~group ~desc: "The blocks that have been marked invalid by the node."
(args1 output_arg)
(fixed [ "list" ; "rejected" ; "blocks" ])
(fun ppf cctxt ->
Block_services.list_invalid cctxt >>=? fun invalid ->
Format.fprintf ppf "%a@." print_rejected invalid ;
return ()) ;
command ~group ~desc: "A full report of the node's state."
(args1 output_arg)
(fixed [ "full" ; "report" ])
(fun ppf cctxt ->
Block_services.list ~include_ops:true ~length:1 cctxt >>=? fun heads ->
Block_services.list_invalid cctxt >>=? fun invalid ->
Format.fprintf ppf
"@[<v 0>@{<title>Date@} %a@,\
@[<v 2>@{<title>Heads@}@,%a@]@,\
@[<v 2>@{<title>Rejected blocks@}@,%a@]@]"
Time.pp_hum (Time.now ())
print_heads heads
print_rejected invalid ;
return ()) ;
]