forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpparse_driver.ml
72 lines (63 loc) · 2.04 KB
/
pparse_driver.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
(* Optionally preprocess a source file *)
let call_external_preprocessor sourcefile pp =
let tmpfile = Filename.temp_file "ocamlpp" "" in
let comm =
Printf.sprintf "%s %s > %s" pp (Filename.quote sourcefile) tmpfile
in
if Ccomp.command comm <> 0 then (
Misc.remove_file tmpfile;
Cmd_ast_exception.cannot_run comm);
tmpfile
let preprocess sourcefile =
match !Clflags.preprocessor with
| None -> sourcefile
| Some pp -> call_external_preprocessor sourcefile pp
let remove_preprocessed inputfile =
if !Clflags.preprocessor <> None then Misc.remove_file inputfile
(* Parse a file or get a dumped syntax tree from it *)
let parse (type a) (kind : a Ml_binary.kind) : _ -> a =
match kind with
| Ml_binary.Ml -> Parse.implementation
| Ml_binary.Mli -> Parse.interface
let file_aux inputfile (type a) (parse_fun : _ -> a) (kind : a Ml_binary.kind) :
a =
let ast_magic = Ml_binary.magic_of_kind kind in
let ic = open_in_bin inputfile in
let is_ast_file =
match really_input_string ic (String.length ast_magic) with
| exception _ -> false
| buffer ->
if buffer = ast_magic then true
else if Ext_string.starts_with buffer "Caml1999" then
Cmd_ast_exception.wrong_magic buffer
else false
in
let ast =
try
if is_ast_file then (
Location.set_input_name (input_value ic : string);
(input_value ic : a))
else (
seek_in ic 0;
let lexbuf = Lexing.from_channel ic in
Location.init lexbuf inputfile;
parse_fun lexbuf)
with x ->
close_in ic;
raise x
in
close_in ic;
ast
let parse_file (type a) (kind : a Ml_binary.kind) (sourcefile : string) : a =
Location.set_input_name sourcefile;
let inputfile = preprocess sourcefile in
let ast =
try file_aux inputfile (parse kind) kind
with exn ->
remove_preprocessed inputfile;
raise exn
in
remove_preprocessed inputfile;
ast
let parse_implementation sourcefile = parse_file Ml sourcefile
let parse_interface sourcefile = parse_file Mli sourcefile