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. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2017-09-19 13:31:35 +04:00
|
|
|
open Cli_entries
|
|
|
|
|
|
|
|
type error += Bad_tez_arg of string * string (* Arg_name * value *)
|
|
|
|
type error += Bad_max_priority of string
|
|
|
|
type error += Bad_endorsement_delay of string
|
|
|
|
|
|
|
|
let () =
|
|
|
|
register_error_kind
|
|
|
|
`Permanent
|
|
|
|
~id:"badTezArg"
|
|
|
|
~title:"Bad Tez Arg"
|
|
|
|
~description:("Invalid \xEA\x9C\xA9 notation in parameter.")
|
|
|
|
~pp:(fun ppf (arg_name, literal) ->
|
|
|
|
Format.fprintf ppf
|
|
|
|
"Invalid \xEA\x9C\xA9 notation in parameter %s: '%s'"
|
|
|
|
arg_name literal)
|
|
|
|
Data_encoding.(obj2
|
|
|
|
(req "parameter" string)
|
|
|
|
(req "literal" string))
|
|
|
|
(function Bad_tez_arg (parameter, literal) -> Some (parameter, literal) | _ -> None)
|
|
|
|
(fun (parameter, literal) -> Bad_tez_arg (parameter, literal)) ;
|
|
|
|
register_error_kind
|
|
|
|
`Permanent
|
|
|
|
~id:"badMaxPriorityArg"
|
|
|
|
~title:"Bad -max-priority arg"
|
|
|
|
~description:("invalid priority in -max-priority")
|
|
|
|
~pp:(fun ppf literal ->
|
|
|
|
Format.fprintf ppf "invalid priority '%s'in -max-priority" literal)
|
|
|
|
Data_encoding.(obj1 (req "parameter" string))
|
|
|
|
(function Bad_max_priority parameter -> Some parameter | _ -> None)
|
|
|
|
(fun parameter -> Bad_max_priority parameter) ;
|
|
|
|
register_error_kind
|
|
|
|
`Permanent
|
|
|
|
~id:"badEndorsementDelayArg"
|
|
|
|
~title:"Bad -endorsement-delay arg"
|
|
|
|
~description:("invalid priority in -endorsement-delay")
|
|
|
|
~pp:(fun ppf literal ->
|
|
|
|
Format.fprintf ppf "Bad argument value for -endorsement-delay. Expected an integer, but given '%s'" literal)
|
|
|
|
Data_encoding.(obj1 (req "parameter" string))
|
|
|
|
(function Bad_endorsement_delay parameter -> Some parameter | _ -> None)
|
|
|
|
(fun parameter -> Bad_endorsement_delay parameter)
|
2017-11-03 14:53:54 +04:00
|
|
|
|
2017-09-19 13:31:35 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
let tez_sym =
|
|
|
|
"\xEA\x9C\xA9"
|
|
|
|
|
2017-09-27 11:55:20 +04:00
|
|
|
let string_parameter =
|
2017-11-07 20:38:11 +04:00
|
|
|
parameter (fun (_ : Client_commands.full_context) x -> return x)
|
2017-09-27 11:55:20 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
let init_arg =
|
2017-09-19 13:31:35 +04:00
|
|
|
default_arg
|
|
|
|
~parameter:"-init"
|
|
|
|
~doc:"The initial value of the contract's storage."
|
|
|
|
~default:"Unit"
|
2017-09-27 11:55:20 +04:00
|
|
|
string_parameter
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
let arg_arg =
|
2017-09-19 13:31:35 +04:00
|
|
|
default_arg
|
|
|
|
~parameter:"-arg"
|
|
|
|
~doc:"The argument passed to the contract's script, if needed."
|
|
|
|
~default:"Unit"
|
2017-09-27 11:55:20 +04:00
|
|
|
string_parameter
|
2017-11-03 14:53:54 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
let delegate_arg =
|
2017-09-19 13:31:35 +04:00
|
|
|
arg
|
|
|
|
~parameter:"-delegate"
|
|
|
|
~doc:"Set the delegate of the contract.\
|
|
|
|
Must be a known identity."
|
2017-09-27 11:55:20 +04:00
|
|
|
string_parameter
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
let source_arg =
|
2017-09-19 13:31:35 +04:00
|
|
|
arg
|
|
|
|
~parameter:"-source"
|
|
|
|
~doc:"Set the source of the bonds to be paid.\
|
|
|
|
Must be a known identity."
|
2017-09-27 11:55:20 +04:00
|
|
|
string_parameter
|
2017-09-19 13:31:35 +04:00
|
|
|
|
2017-10-25 15:58:14 +04:00
|
|
|
let spendable_switch =
|
2017-09-19 13:31:35 +04:00
|
|
|
switch
|
2017-10-25 15:58:14 +04:00
|
|
|
~parameter:"-spendable"
|
|
|
|
~doc:"Set the created contract to be spendable"
|
2017-09-19 13:31:35 +04:00
|
|
|
|
|
|
|
let force_switch =
|
|
|
|
switch
|
|
|
|
~parameter:"-force"
|
|
|
|
~doc:"Force the injection of branch-invalid operation or force \
|
|
|
|
\ the injection of block without a fitness greater than the \
|
|
|
|
\ current head."
|
|
|
|
|
|
|
|
let delegatable_switch =
|
|
|
|
switch
|
|
|
|
~parameter:"-delegatable"
|
|
|
|
~doc:"Set the created contract to be delegatable"
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-07-19 13:35:01 +04:00
|
|
|
let tez_format = "text format: D,DDD,DDD.DD (centiles are optional, commas are optional)"
|
|
|
|
|
2017-09-27 11:55:20 +04:00
|
|
|
let tez_parameter param =
|
|
|
|
parameter
|
2017-09-19 13:31:35 +04:00
|
|
|
(fun _ s ->
|
|
|
|
match Tez.of_string s with
|
|
|
|
| Some tez -> return tez
|
2017-09-27 11:55:20 +04:00
|
|
|
| None -> fail (Bad_tez_arg (param, s)))
|
|
|
|
|
|
|
|
let tez_arg ~default ~parameter ~doc =
|
|
|
|
default_arg ~parameter ~doc ~default (tez_parameter parameter)
|
2017-07-19 13:35:01 +04:00
|
|
|
|
2016-11-22 17:23:40 +04:00
|
|
|
let tez_param ~name ~desc next =
|
2016-09-08 21:13:10 +04:00
|
|
|
Cli_entries.param
|
2017-11-13 17:29:28 +04:00
|
|
|
~name
|
|
|
|
~desc:(desc ^ " in \xEA\x9C\xA9\n" ^ tez_format)
|
2017-09-27 11:55:20 +04:00
|
|
|
(tez_parameter name)
|
2016-09-08 21:13:10 +04:00
|
|
|
next
|
|
|
|
|
2017-09-19 13:31:35 +04:00
|
|
|
let fee_arg =
|
2017-07-19 13:35:01 +04:00
|
|
|
tez_arg
|
|
|
|
~default:"0.05"
|
2017-09-19 13:31:35 +04:00
|
|
|
~parameter:"-fee"
|
2017-11-06 17:12:19 +04:00
|
|
|
~doc:"The fee in \xEA\x9C\xA9 to pay to the baker."
|
2017-07-19 13:35:01 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
let max_priority_arg =
|
2017-09-19 13:31:35 +04:00
|
|
|
arg
|
|
|
|
~parameter:"-max-priority"
|
2017-11-01 15:07:33 +04:00
|
|
|
~doc:"Set the max_priority used when looking for baking slot."
|
2017-09-27 11:55:20 +04:00
|
|
|
(parameter (fun _ s ->
|
|
|
|
try return (int_of_string s)
|
|
|
|
with _ -> fail (Bad_max_priority s)))
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-11-01 15:07:33 +04:00
|
|
|
let free_baking_switch =
|
2017-09-19 13:31:35 +04:00
|
|
|
switch
|
2017-11-01 15:07:33 +04:00
|
|
|
~parameter:"-free-baking"
|
|
|
|
~doc:"Only consider free baking slots."
|
2017-05-08 23:35:29 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
let endorsement_delay_arg =
|
2017-09-19 13:31:35 +04:00
|
|
|
default_arg
|
|
|
|
~parameter:"-endorsement-delay"
|
|
|
|
~doc:"Set the delay used before to endorse the current block."
|
|
|
|
~default:"15"
|
2017-09-27 11:55:20 +04:00
|
|
|
(parameter (fun _ s ->
|
|
|
|
try return (int_of_string s)
|
|
|
|
with _ -> fail (Bad_endorsement_delay s)))
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-11-03 14:53:54 +04:00
|
|
|
let no_print_source_flag =
|
|
|
|
switch
|
|
|
|
~parameter:"-no-print-source"
|
|
|
|
~doc:"Don't print the source code if an error is encountered.\
|
|
|
|
This should be enabled for extremely large programs"
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
module Daemon = struct
|
2017-11-01 15:07:33 +04:00
|
|
|
let baking_switch =
|
2017-09-19 13:31:35 +04:00
|
|
|
switch
|
2017-11-01 15:07:33 +04:00
|
|
|
~parameter:"-baking"
|
|
|
|
~doc:"Run the baking daemon"
|
2017-09-19 13:31:35 +04:00
|
|
|
let endorsement_switch =
|
|
|
|
switch
|
|
|
|
~parameter:"-endorsement"
|
|
|
|
~doc:"Run the endorsement daemon"
|
|
|
|
let denunciation_switch =
|
|
|
|
switch
|
|
|
|
~parameter:"-denunciation"
|
|
|
|
~doc:"Run the denunciation daemon"
|
2016-09-08 21:13:10 +04:00
|
|
|
end
|