2020-03-23 22:43:06 +04:00
|
|
|
(* Parsing command-line options *)
|
|
|
|
|
|
|
|
(* The type [options] gathers the command-line options. *)
|
|
|
|
|
2020-04-03 21:06:35 +04:00
|
|
|
type language = [`PascaLIGO | `CameLIGO | `ReasonLIGO]
|
2020-03-23 22:43:06 +04:00
|
|
|
|
2020-03-31 21:44:10 +04:00
|
|
|
let lang_to_string = function
|
2020-04-03 21:06:35 +04:00
|
|
|
`PascaLIGO -> "PascaLIGO"
|
|
|
|
| `CameLIGO -> "CameLIGO"
|
|
|
|
| `ReasonLIGO -> "ReasonLIGO"
|
|
|
|
|
|
|
|
module SSet = Set.Make (String)
|
2020-03-26 19:51:08 +04:00
|
|
|
|
2020-03-23 22:43:06 +04:00
|
|
|
type options = <
|
2020-03-31 21:44:10 +04:00
|
|
|
input : string option;
|
2020-03-23 22:43:06 +04:00
|
|
|
libs : string list;
|
2020-03-31 21:44:10 +04:00
|
|
|
verbose : SSet.t;
|
2020-03-26 19:51:08 +04:00
|
|
|
offsets : bool;
|
2020-03-31 21:44:10 +04:00
|
|
|
lang : language;
|
|
|
|
ext : string (* ".ligo", ".mligo", ".religo" *)
|
2020-03-23 22:43:06 +04:00
|
|
|
>
|
|
|
|
|
2020-03-31 21:44:10 +04:00
|
|
|
let make ~input ~libs ~lang ~offsets ~verbose ~ext : options =
|
2020-03-23 22:43:06 +04:00
|
|
|
object
|
|
|
|
method input = input
|
|
|
|
method libs = libs
|
|
|
|
method lang = lang
|
|
|
|
method offsets = offsets
|
2020-03-26 19:51:08 +04:00
|
|
|
method verbose = verbose
|
2020-03-31 21:44:10 +04:00
|
|
|
method ext = ext
|
2020-03-23 22:43:06 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
(* Auxiliary functions and modules *)
|
|
|
|
|
|
|
|
let printf = Printf.printf
|
|
|
|
let sprintf = Printf.sprintf
|
|
|
|
let print = print_endline
|
|
|
|
|
|
|
|
(* Printing a string in red to standard error *)
|
|
|
|
|
|
|
|
let highlight msg = Printf.eprintf "\027[31m%s\027[0m%!" msg
|
|
|
|
|
|
|
|
(* Failure *)
|
|
|
|
|
|
|
|
let abort msg =
|
|
|
|
highlight (sprintf "Command-line error: %s\n" msg); exit 1
|
|
|
|
|
|
|
|
(* Help *)
|
|
|
|
|
2020-03-31 21:44:10 +04:00
|
|
|
let help lang ext () =
|
2020-03-23 22:43:06 +04:00
|
|
|
let file = Filename.basename Sys.argv.(0) in
|
2020-03-31 21:44:10 +04:00
|
|
|
printf "Usage: %s [<option> ...] [<input>%s | \"-\"]\n" file ext;
|
|
|
|
printf "where <input>%s is the %s source file (default: stdin),\n" ext lang;
|
2020-03-23 22:43:06 +04:00
|
|
|
print "and each <option> (if any) is one of the following:";
|
2020-03-25 21:52:23 +04:00
|
|
|
print " -I <paths> Inclusion paths (colon-separated)";
|
2020-03-26 19:51:08 +04:00
|
|
|
print " --columns Columns for source locations";
|
|
|
|
print " --verbose=<stages> preproc";
|
|
|
|
print " -h, --help This help";
|
2020-03-23 22:43:06 +04:00
|
|
|
exit 0
|
|
|
|
|
|
|
|
(* Specifying the command-line options a la GNU *)
|
|
|
|
|
|
|
|
let input = ref None
|
|
|
|
and libs = ref []
|
|
|
|
and columns = ref false
|
2020-03-26 19:51:08 +04:00
|
|
|
and verbose = ref SSet.empty
|
|
|
|
and verb_str = ref ""
|
2020-03-23 22:43:06 +04:00
|
|
|
|
|
|
|
let split_at_colon = Str.(split (regexp ":"))
|
|
|
|
|
|
|
|
let add_path p = libs := !libs @ split_at_colon p
|
|
|
|
|
2020-03-26 19:51:08 +04:00
|
|
|
let add_verbose d =
|
|
|
|
verbose := List.fold_left (fun x y -> SSet.add y x)
|
|
|
|
!verbose
|
|
|
|
(split_at_colon d)
|
2020-03-31 21:44:10 +04:00
|
|
|
let specs lang ext =
|
|
|
|
let lang_str = lang_to_string lang in
|
2020-03-23 22:43:06 +04:00
|
|
|
let open!Getopt in [
|
|
|
|
'I', nolong, None, Some add_path;
|
2020-03-31 21:44:10 +04:00
|
|
|
'h', "help", Some (help lang_str ext), None;
|
2020-03-26 19:51:08 +04:00
|
|
|
noshort, "columns", set columns true, None;
|
|
|
|
noshort, "verbose", None, Some add_verbose
|
2020-03-23 22:43:06 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
(* Handler of anonymous arguments *)
|
|
|
|
|
|
|
|
let anonymous arg =
|
|
|
|
match !input with
|
2020-03-31 21:44:10 +04:00
|
|
|
None -> input := Some arg
|
|
|
|
| Some _ -> abort (sprintf "Multiple inputs")
|
2020-03-23 22:43:06 +04:00
|
|
|
|
|
|
|
(* Checking options and exporting them as non-mutable values *)
|
|
|
|
|
2020-03-31 21:44:10 +04:00
|
|
|
let check lang ext =
|
2020-03-23 22:43:06 +04:00
|
|
|
let libs = !libs
|
|
|
|
|
|
|
|
and offsets = not !columns
|
|
|
|
|
2020-03-26 19:51:08 +04:00
|
|
|
and verbose = !verbose
|
|
|
|
|
2020-03-23 22:43:06 +04:00
|
|
|
and input =
|
|
|
|
match !input with
|
2020-04-09 18:18:26 +04:00
|
|
|
None | Some "-" -> None
|
2020-03-31 21:44:10 +04:00
|
|
|
| Some file_path ->
|
|
|
|
if Filename.check_suffix file_path ext
|
|
|
|
then if Sys.file_exists file_path
|
|
|
|
then Some file_path
|
|
|
|
else abort "Source file not found."
|
|
|
|
else abort ("Source file lacks the extension " ^ ext ^ ".")
|
2020-03-23 22:43:06 +04:00
|
|
|
|
2020-03-31 21:44:10 +04:00
|
|
|
in make ~input ~libs ~lang ~offsets ~verbose ~ext
|
2020-03-23 22:43:06 +04:00
|
|
|
|
|
|
|
(* Parsing the command-line options *)
|
|
|
|
|
2020-03-31 21:44:10 +04:00
|
|
|
let read ~lang:(lang : language) ~ext:(ext : string) =
|
2020-03-23 22:43:06 +04:00
|
|
|
try
|
2020-03-31 21:44:10 +04:00
|
|
|
Getopt.parse_cmdline (specs lang ext) anonymous;
|
2020-03-26 19:51:08 +04:00
|
|
|
(verb_str :=
|
|
|
|
let apply e a =
|
|
|
|
if a = "" then e else sprintf "%s, %s" e a
|
|
|
|
in SSet.fold apply !verbose "");
|
2020-03-31 21:44:10 +04:00
|
|
|
check lang ext
|
2020-03-23 22:43:06 +04:00
|
|
|
with Getopt.Error msg -> abort msg
|