2019-12-13 17:28:15 +01:00
|
|
|
(** Driver for the LIGO lexer *)
|
2019-12-10 13:47:31 +00:00
|
|
|
|
2019-12-13 17:28:15 +01:00
|
|
|
let extension = ".religo"
|
|
|
|
let options = EvalOpt.read "ReasonLIGO" extension
|
2019-12-10 13:47:31 +00:00
|
|
|
|
2019-12-13 17:28:15 +01:00
|
|
|
(** Error printing and exception tracing
|
|
|
|
*)
|
2019-12-10 13:47:31 +00:00
|
|
|
let () = Printexc.record_backtrace true
|
|
|
|
|
|
|
|
let external_ text =
|
|
|
|
Utils.highlight (Printf.sprintf "External error: %s" text); exit 1;;
|
|
|
|
|
2019-12-13 17:28:15 +01:00
|
|
|
(** {1 Preprocessing the input source and opening the input channels} *)
|
2019-12-10 13:47:31 +00:00
|
|
|
|
2019-12-13 17:28:15 +01:00
|
|
|
(** Path for CPP inclusions (#include)
|
|
|
|
*)
|
2019-12-10 13:47:31 +00:00
|
|
|
let lib_path =
|
2019-12-13 17:28:15 +01:00
|
|
|
match options#libs with
|
2019-12-10 13:47:31 +00:00
|
|
|
[] -> ""
|
|
|
|
| libs -> let mk_I dir path = Printf.sprintf " -I %s%s" dir path
|
|
|
|
in List.fold_right mk_I libs ""
|
|
|
|
|
|
|
|
let prefix =
|
2019-12-13 17:28:15 +01:00
|
|
|
match options#input with
|
2019-12-10 13:47:31 +00:00
|
|
|
None | Some "-" -> "temp"
|
|
|
|
| Some file -> Filename.(file |> basename |> remove_extension)
|
|
|
|
|
2019-12-13 17:28:15 +01:00
|
|
|
let suffix = ".pp" ^ extension
|
2019-12-10 13:47:31 +00:00
|
|
|
|
|
|
|
let pp_input =
|
2019-12-13 17:28:15 +01:00
|
|
|
if Utils.String.Set.mem "cpp" options#verbose
|
2019-12-10 13:47:31 +00:00
|
|
|
then prefix ^ suffix
|
|
|
|
else let pp_input, pp_out = Filename.open_temp_file prefix suffix
|
|
|
|
in close_out pp_out; pp_input
|
|
|
|
|
|
|
|
let cpp_cmd =
|
2019-12-13 17:28:15 +01:00
|
|
|
match options#input with
|
2019-12-10 13:47:31 +00:00
|
|
|
None | Some "-" ->
|
|
|
|
Printf.sprintf "cpp -traditional-cpp%s - > %s"
|
|
|
|
lib_path pp_input
|
|
|
|
| Some file ->
|
|
|
|
Printf.sprintf "cpp -traditional-cpp%s %s > %s"
|
|
|
|
lib_path file pp_input
|
|
|
|
|
|
|
|
let () =
|
2019-12-13 17:28:15 +01:00
|
|
|
if Utils.String.Set.mem "cpp" options#verbose
|
2019-12-10 13:47:31 +00:00
|
|
|
then Printf.eprintf "%s\n%!" cpp_cmd;
|
|
|
|
if Sys.command cpp_cmd <> 0 then
|
|
|
|
external_ (Printf.sprintf "the command \"%s\" failed." cpp_cmd)
|
|
|
|
|
2019-12-13 17:28:15 +01:00
|
|
|
(** {1 Running the lexer on the input file} *)
|
2019-12-10 13:47:31 +00:00
|
|
|
|
2019-12-13 17:28:15 +01:00
|
|
|
module Log = LexerLog.Make (Lexer.Make (LexToken))
|
2019-12-10 13:47:31 +00:00
|
|
|
|
2019-12-13 17:28:15 +01:00
|
|
|
let () = Log.trace ~offsets:options#offsets
|
|
|
|
options#mode (Some pp_input) options#cmd
|