2019-02-26 01:29:29 +04:00
|
|
|
(* Parsing the command-line option for testing the Ligo lexer and
|
|
|
|
parser *)
|
|
|
|
|
|
|
|
let printf = Printf.printf
|
|
|
|
let sprintf = Printf.sprintf
|
|
|
|
|
|
|
|
let abort msg =
|
|
|
|
Utils.highlight (sprintf "Command-line error: %s\n" msg); exit 1
|
|
|
|
|
|
|
|
(* Help *)
|
|
|
|
|
|
|
|
let help () =
|
|
|
|
let file = Filename.basename Sys.argv.(0) in
|
|
|
|
printf "Usage: %s [<option> ...] [<input>.li | \"-\"]\n" file;
|
|
|
|
print_endline "where <input>.li is the Ligo source file (default: stdin),";
|
|
|
|
print_endline "and each <option> (if any) is one of the following:";
|
2019-02-28 18:46:34 +04:00
|
|
|
print_endline " -c, --copy Print lexemes of tokens and markup (lexer)";
|
|
|
|
print_endline " -t, --tokens Print tokens (lexer)";
|
|
|
|
print_endline " -u, --units Print tokens and markup (lexer)";
|
|
|
|
print_endline " -q, --quiet No output, except errors (default)";
|
|
|
|
print_endline " --columns Columns for source locations";
|
|
|
|
print_endline " --bytes Bytes for source locations";
|
2019-03-10 16:55:24 +04:00
|
|
|
print_endline " --verbose=<stages> cmdline, ast";
|
2019-02-28 18:46:34 +04:00
|
|
|
print_endline " --version Commit hash on stdout";
|
|
|
|
print_endline " -h, --help This help";
|
2019-02-26 01:29:29 +04:00
|
|
|
exit 0
|
|
|
|
|
2019-02-28 18:46:34 +04:00
|
|
|
(* Version *)
|
|
|
|
|
|
|
|
let version () = printf "%s\n" Version.version; exit 0
|
|
|
|
|
2019-02-26 01:29:29 +04:00
|
|
|
(* Specifying the command-line options a la GNU *)
|
|
|
|
|
|
|
|
let copy = ref false
|
|
|
|
and tokens = ref false
|
|
|
|
and units = ref false
|
|
|
|
and quiet = ref false
|
|
|
|
and columns = ref false
|
|
|
|
and bytes = ref false
|
|
|
|
and verbose = ref Utils.String.Set.empty
|
|
|
|
and input = ref None
|
|
|
|
|
|
|
|
let split_at_colon = Str.(split (regexp ":"))
|
|
|
|
|
|
|
|
let add_verbose d =
|
|
|
|
verbose := List.fold_left (Utils.swap Utils.String.Set.add)
|
|
|
|
!verbose
|
|
|
|
(split_at_colon d)
|
|
|
|
|
|
|
|
let specs =
|
|
|
|
let open! Getopt in [
|
2019-02-28 18:46:34 +04:00
|
|
|
'c', "copy", set copy true, None;
|
|
|
|
't', "tokens", set tokens true, None;
|
|
|
|
'u', "units", set units true, None;
|
|
|
|
'q', "quiet", set quiet true, None;
|
|
|
|
noshort, "columns", set columns true, None;
|
|
|
|
noshort, "bytes", set bytes true, None;
|
|
|
|
noshort, "verbose", None, Some add_verbose;
|
|
|
|
'h', "help", Some help, None;
|
|
|
|
noshort, "version", Some version, None
|
2019-02-26 01:29:29 +04:00
|
|
|
]
|
|
|
|
;;
|
|
|
|
|
|
|
|
(* Handler of anonymous arguments *)
|
|
|
|
|
|
|
|
let anonymous arg =
|
|
|
|
match !input with
|
|
|
|
None -> input := Some arg
|
|
|
|
| Some _ -> abort (sprintf "Multiple inputs")
|
|
|
|
;;
|
|
|
|
|
|
|
|
(* Parsing the command-line options *)
|
|
|
|
|
|
|
|
try Getopt.parse_cmdline specs anonymous with
|
|
|
|
Getopt.Error msg -> abort msg
|
|
|
|
;;
|
|
|
|
|
|
|
|
(* Checking options and exporting them as non-mutable values *)
|
|
|
|
|
|
|
|
type command = Quiet | Copy | Units | Tokens
|
|
|
|
|
|
|
|
let cmd =
|
|
|
|
match !quiet, !copy, !units, !tokens with
|
|
|
|
false, false, false, false
|
|
|
|
| true, false, false, false -> Quiet
|
|
|
|
| false, true, false, false -> Copy
|
|
|
|
| false, false, true, false -> Units
|
|
|
|
| false, false, false, true -> Tokens
|
|
|
|
| _ -> abort "Choose one of -q, -c, -u, -t."
|
|
|
|
|
|
|
|
let string_of convert = function
|
|
|
|
None -> "None"
|
|
|
|
| Some s -> sprintf "Some %s" (convert s)
|
|
|
|
|
|
|
|
let quote s = sprintf "\"%s\"" s
|
|
|
|
|
|
|
|
let verbose_str =
|
|
|
|
let apply e a =
|
|
|
|
if a <> "" then sprintf "%s, %s" e a else e
|
|
|
|
in Utils.String.Set.fold apply !verbose ""
|
|
|
|
|
|
|
|
let print_opt () =
|
|
|
|
printf "COMMAND LINE\n";
|
|
|
|
printf "copy = %b\n" !copy;
|
|
|
|
printf "tokens = %b\n" !tokens;
|
|
|
|
printf "units = %b\n" !units;
|
|
|
|
printf "quiet = %b\n" !quiet;
|
|
|
|
printf "columns = %b\n" !columns;
|
|
|
|
printf "bytes = %b\n" !bytes;
|
|
|
|
printf "verbose = \"%s\"\n" verbose_str;
|
|
|
|
printf "input = %s\n" (string_of quote !input)
|
|
|
|
;;
|
|
|
|
|
|
|
|
if Utils.String.Set.mem "cmdline" !verbose then print_opt ();;
|
|
|
|
|
|
|
|
let input =
|
|
|
|
match !input with
|
|
|
|
None | Some "-" -> !input
|
|
|
|
| Some file_path ->
|
|
|
|
if Filename.check_suffix file_path ".li"
|
|
|
|
then if Sys.file_exists file_path
|
|
|
|
then Some file_path
|
|
|
|
else abort "Source file not found."
|
2019-02-28 18:46:34 +04:00
|
|
|
else abort "Source file lacks the extension .li."
|
2019-02-26 01:29:29 +04:00
|
|
|
|
|
|
|
(* Exporting remaining options as non-mutable values *)
|
|
|
|
|
|
|
|
let copy = !copy
|
|
|
|
and tokens = !tokens
|
|
|
|
and units = !units
|
|
|
|
and quiet = !quiet
|
|
|
|
and offsets = not !columns
|
|
|
|
and mode = if !bytes then `Byte else `Point
|
|
|
|
and verbose = !verbose
|
|
|
|
;;
|
|
|
|
|
|
|
|
if Utils.String.Set.mem "cmdline" verbose then
|
|
|
|
begin
|
|
|
|
printf "\nEXPORTED COMMAND LINE\n";
|
|
|
|
printf "copy = %b\n" copy;
|
|
|
|
printf "tokens = %b\n" tokens;
|
|
|
|
printf "units = %b\n" units;
|
|
|
|
printf "quiet = %b\n" quiet;
|
|
|
|
printf "offsets = %b\n" offsets;
|
|
|
|
printf "mode = %s\n" (if mode = `Byte then "`Byte" else "`Point");
|
|
|
|
printf "verbose = \"%s\"\n" verbose_str;
|
|
|
|
printf "input = %s\n" (string_of quote input)
|
|
|
|
end
|
|
|
|
;;
|