ligo/src/bin/cli.ml

163 lines
6.7 KiB
OCaml
Raw Normal View History

2019-05-13 00:56:22 +04:00
open Cmdliner
open Trace
open Cli_helpers
2019-05-13 00:56:22 +04:00
let main =
let term = Term.(const print_endline $ const "Ligo needs a command. Do ligo --help") in
(term , Term.info "ligo")
2019-06-09 16:08:37 +04:00
let source n =
2019-05-30 02:09:40 +04:00
let open Arg in
let info =
let docv = "SOURCE_FILE" in
let doc = "$(docv) is the path to the .ligo or .mligo file of the contract." in
2019-05-30 02:09:40 +04:00
info ~docv ~doc [] in
2019-06-09 16:08:37 +04:00
required @@ pos n (some string) None info
2019-05-30 02:09:40 +04:00
2019-06-09 16:08:37 +04:00
let entry_point n =
2019-05-30 02:09:40 +04:00
let open Arg in
let info =
let docv = "ENTRY_POINT" in
let doc = "$(docv) is entry-point that will be compiled." in
info ~docv ~doc [] in
2019-06-09 16:08:37 +04:00
required @@ pos n (some string) (Some "main") info
2019-05-30 02:09:40 +04:00
let expression purpose n =
2019-05-30 02:09:40 +04:00
let open Arg in
let docv = purpose ^ "_EXPRESSION" in
2019-05-30 02:09:40 +04:00
let doc = "$(docv) is the expression that will be compiled." in
let info = info ~docv ~doc [] in
2019-06-09 16:08:37 +04:00
required @@ pos n (some string) None info
2019-05-30 02:09:40 +04:00
let syntax =
let open Arg in
let info =
let docv = "SYNTAX" in
let doc = "$(docv) is the syntax that will be used. Currently supported syntaxes are \"pascaligo\" and \"cameligo\". By default, the syntax is guessed from the extension (.ligo and .mligo, respectively)." in
2019-06-06 13:30:29 +04:00
info ~docv ~doc ["syntax" ; "s"] in
value @@ opt string "auto" info
2019-05-30 02:09:40 +04:00
let bigmap =
let open Arg in
let info =
let docv = "BIGMAP" in
let doc = "$(docv) is necessary when your storage embeds a big_map." in
info ~docv ~doc ["bigmap"] in
value @@ flag info
2019-06-12 23:13:06 +04:00
let amount =
let open Arg in
let info =
let docv = "AMOUNT" in
let doc = "$(docv) is the amount the dry-run transaction will use." in
info ~docv ~doc ["amount"] in
value @@ opt string "0" info
2019-09-20 13:59:44 +04:00
let display_format =
let open Arg in
let info =
let docv = "DISPLAY_FORMAT" in
let doc = "$(docv) is the format that will be used by the CLI. Available formats are 'dev', 'json', and 'human-readable' (default). When human-readable lacks details (we are still tweaking it), please contact us and use another format in the meanwhile." in
info ~docv ~doc ["format" ; "display-format"] in
value @@ opt string "human-readable" info
2019-09-20 20:56:55 +04:00
let michelson_code_format =
let open Arg in
let info =
let docv = "MICHELSON_FORMAT" in
let doc = "$(docv) is the format that will be used by compile-contract for the resulting Michelson. Available formats are 'micheline', and 'michelson' (default). Micheline is the format used by [XXX]." in
info ~docv ~doc ["michelson-format"] in
value @@ opt string "michelson" info
2019-05-13 00:56:22 +04:00
let compile_file =
2019-09-20 20:56:55 +04:00
let f source entry_point syntax display_format michelson_format =
2019-09-20 13:59:44 +04:00
toplevel ~display_format @@
2019-09-20 20:56:55 +04:00
let%bind michelson_format = Main.Display.michelson_format_of_string michelson_format in
2019-05-13 00:56:22 +04:00
let%bind contract =
2019-06-05 21:16:54 +04:00
trace (simple_info "compiling contract to michelson") @@
2019-09-18 20:49:33 +04:00
Ligo.Compile.Of_source.compile_file_contract_entry source entry_point (Syntax_name syntax) in
2019-09-20 20:56:55 +04:00
ok @@ Format.asprintf "%a\n" (Main.Display.michelson_pp michelson_format) contract
2019-05-13 00:56:22 +04:00
in
let term =
2019-09-20 20:56:55 +04:00
Term.(const f $ source 0 $ entry_point 1 $ syntax $ display_format $ michelson_code_format) in
2019-06-05 21:17:42 +04:00
let cmdname = "compile-contract" in
let docs = "Subcommand: compile a contract. See `ligo " ^ cmdname ^ " --help' for a list of options specific to this subcommand." in
(term , Term.info ~docs cmdname)
2019-05-13 00:56:22 +04:00
let compile_parameter =
2019-09-20 13:59:44 +04:00
let f source entry_point expression syntax display_format =
toplevel ~display_format @@
2019-05-13 00:56:22 +04:00
let%bind value =
trace (simple_error "compile-input") @@
2019-09-18 20:49:33 +04:00
Ligo.Compile.Of_source.compile_file_contract_parameter source entry_point expression (Syntax_name syntax) in
2019-09-20 13:59:44 +04:00
ok @@ Format.asprintf "%a\n" Tezos_utils.Michelson.pp value
2019-05-13 00:56:22 +04:00
in
let term =
2019-09-20 13:59:44 +04:00
Term.(const f $ source 0 $ entry_point 1 $ expression "PARAMETER" 2 $ syntax $ display_format) in
2019-06-05 21:17:42 +04:00
let cmdname = "compile-parameter" in
let docs = "Subcommand: compile parameters to a michelson expression. The resulting michelson expression can be passed as an argument in a transaction which calls a contract. See `ligo " ^ cmdname ^ " --help' for a list of options specific to this subcommand." in
(term , Term.info ~docs cmdname)
2019-05-13 00:56:22 +04:00
let compile_storage =
2019-09-23 00:17:28 +04:00
let f source entry_point expression syntax display_format bigmap =
2019-09-20 13:59:44 +04:00
toplevel ~display_format @@
2019-05-13 00:56:22 +04:00
let%bind value =
trace (simple_error "compile-storage") @@
2019-09-23 00:17:28 +04:00
Ligo.Compile.Of_source.compile_file_contract_storage ~bigmap source entry_point expression (Syntax_name syntax) in
2019-09-20 13:59:44 +04:00
ok @@ Format.asprintf "%a\n" Tezos_utils.Michelson.pp value
2019-05-13 00:56:22 +04:00
in
let term =
2019-09-23 00:17:28 +04:00
Term.(const f $ source 0 $ entry_point 1 $ expression "STORAGE" 2 $ syntax $ display_format $ bigmap) in
2019-06-05 21:17:42 +04:00
let cmdname = "compile-storage" in
let docs = "Subcommand: compile an initial storage in ligo syntax to a michelson expression. The resulting michelson expression can be passed as an argument in a transaction which originates a contract. See `ligo " ^ cmdname ^ " --help' for a list of options specific to this subcommand." in
(term , Term.info ~docs cmdname)
2019-05-13 00:56:22 +04:00
2019-06-09 16:08:37 +04:00
let dry_run =
2019-09-23 00:17:28 +04:00
let f source entry_point storage input amount syntax display_format bigmap =
2019-09-20 13:59:44 +04:00
toplevel ~display_format @@
2019-06-09 16:08:37 +04:00
let%bind output =
2019-09-23 00:17:28 +04:00
Ligo.Run.Of_source.run_contract ~amount ~bigmap source entry_point storage input (Syntax_name syntax) in
2019-09-20 13:59:44 +04:00
ok @@ Format.asprintf "%a\n" Ast_simplified.PP.expression output
2019-06-09 16:08:37 +04:00
in
let term =
2019-09-23 00:17:28 +04:00
Term.(const f $ source 0 $ entry_point 1 $ expression "PARAMETER" 2 $ expression "STORAGE" 3 $ amount $ syntax $ display_format $ bigmap) in
2019-06-09 16:08:37 +04:00
let cmdname = "dry-run" in
let docs = "Subcommand: run a smart-contract with the given storage and input." in
(term , Term.info ~docs cmdname)
2019-05-13 00:56:22 +04:00
2019-06-11 21:57:07 +04:00
let run_function =
2019-09-20 13:59:44 +04:00
let f source entry_point parameter amount syntax display_format =
toplevel ~display_format @@
2019-06-11 21:57:07 +04:00
let%bind output =
2019-09-18 20:49:33 +04:00
Ligo.Run.Of_source.run_function ~amount source entry_point parameter (Syntax_name syntax) in
2019-09-20 13:59:44 +04:00
ok @@ Format.asprintf "%a\n" Ast_simplified.PP.expression output
2019-06-11 21:57:07 +04:00
in
let term =
2019-09-20 13:59:44 +04:00
Term.(const f $ source 0 $ entry_point 1 $ expression "PARAMETER" 2 $ amount $ syntax $ display_format) in
2019-06-11 21:57:07 +04:00
let cmdname = "run-function" in
let docs = "Subcommand: run a function with the given parameter." in
(term , Term.info ~docs cmdname)
let evaluate_value =
2019-09-20 13:59:44 +04:00
let f source entry_point amount syntax display_format =
toplevel ~display_format @@
2019-06-11 21:57:07 +04:00
let%bind output =
2019-09-18 20:49:33 +04:00
Ligo.Run.Of_source.evaluate ~amount source entry_point (Syntax_name syntax) in
2019-09-20 13:59:44 +04:00
ok @@ Format.asprintf "%a\n" Ast_simplified.PP.expression output
2019-06-11 21:57:07 +04:00
in
let term =
2019-09-20 13:59:44 +04:00
Term.(const f $ source 0 $ entry_point 1 $ amount $ syntax $ display_format) in
2019-06-11 21:57:07 +04:00
let cmdname = "evaluate-value" in
let docs = "Subcommand: evaluate a given definition." in
(term , Term.info ~docs cmdname)
let () = Term.exit @@ Term.eval_choice main [
compile_file ;
compile_parameter ;
compile_storage ;
dry_run ;
run_function ;
evaluate_value ;
]