123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990(*****************************************************************************)(* *)(* Open Source License *)(* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)(* *)(* Permission is hereby granted, free of charge, to any person obtaining a *)(* copy of this software and associated documentation files (the "Software"),*)(* to deal in the Software without restriction, including without limitation *)(* the rights to use, copy, modify, merge, publish, distribute, sublicense, *)(* and/or sell copies of the Software, and to permit persons to whom the *)(* Software is furnished to do so, subject to the following conditions: *)(* *)(* The above copyright notice and this permission notice shall be included *)(* in all copies or substantial portions of the Software. *)(* *)(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *)(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *)(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *)(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *)(* DEALINGS IN THE SOFTWARE. *)(* *)(*****************************************************************************)(* Commands used to introspect the node's state *)letprint_invalid_blocksppf(b:Shell_services.Chain.invalid_block)=Format.fprintfppf"@[<v 2>Hash: %a@ Level: %ld@ %a@]"Block_hash.ppb.hashb.levelpp_print_traceb.errorsletcommands()=letopenLwt_result_syntaxinletopenTezos_clicinletgroup={name="report";title="Commands to report the node's status"}inletoutput_arg=default_arg~doc:"write to a file"~long:"output"~short:'o'~placeholder:"path"~default:"-"(parameter(fun_->function|"-"->returnFormat.std_formatter|file->letppf=Format.formatter_of_out_channel(open_outfile)inignoreTezos_clic.(setup_formatterppfPlainFull);returnppf))in[command~group~desc:"The last heads that have been considered by the node."(args1output_arg)(fixed["list";"heads"])(funppfcctxt->let*heads=Shell_services.Blocks.listcctxt()inFormat.fprintfppf"@[<v>%a@]@."(Format.pp_print_listBlock_hash.pp)(List.concatheads);return_unit);command~group~desc:"The blocks that have been marked invalid by the node."(args1output_arg)(fixed["list";"rejected";"blocks"])(funppfcctxt->let*invalid=Shell_services.Invalid_blocks.listcctxt()inmatchinvalidwith|[]->Format.fprintfppf"No invalid blocks.@.";return_unit|_::_->Format.fprintfppf"@[<v>%a@]@."(Format.pp_print_listprint_invalid_blocks)invalid;return_unit);]