-
Notifications
You must be signed in to change notification settings - Fork 1
/
lexer.mll
executable file
·308 lines (274 loc) · 9.93 KB
/
lexer.mll
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
(*
* Haxe Compiler
* Copyright (c)2005 Nicolas Cannasse
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*)
{
open Lexing
open Ast
type error_msg =
| Invalid_character of char
| Unterminated_string
| Unterminated_regexp
| Unclosed_comment
| Invalid_escape
| Invalid_option
exception Error of error_msg * pos
let error_msg = function
| Invalid_character c when int_of_char c > 32 && int_of_char c < 128 -> Printf.sprintf "Invalid character '%c'" c
| Invalid_character c -> Printf.sprintf "Invalid character 0x%.2X" (int_of_char c)
| Unterminated_string -> "Unterminated string"
| Unterminated_regexp -> "Unterminated regular expression"
| Unclosed_comment -> "Unclosed comment"
| Invalid_escape -> "Invalid escape sequence"
| Invalid_option -> "Invalid regular expression option"
type lexer_file = {
lfile : string;
mutable lline : int;
mutable lmaxline : int;
mutable llines : (int * int) list;
mutable lrlines : (int * int) list;
}
let make_file file =
{
lfile = file;
lline = 1;
lmaxline = 1;
llines = [];
lrlines = [];
}
let cur = ref (make_file "")
let all_files = Hashtbl.create 0
let buf = Buffer.create 100
let error e pos =
raise (Error (e,{ pmin = pos; pmax = pos; pfile = !cur.lfile }))
let keywords =
let h = Hashtbl.create 3 in
List.iter (fun k -> Hashtbl.add h (s_keyword k) k)
[Function;Class;Static;Var;If;Else;While;Do;For;
Break;Return;Continue;Extends;Implements;Import;
Switch;Case;Default;Public;Private;Try;Untyped;
Catch;New;This;Throw;Extern;Enum;In;Interface;
Cast;Override;Dynamic;Typedef;Package;Callback;
Inline;Using];
h
let init file =
let f = make_file file in
cur := f;
Hashtbl.add all_files file f
let save() =
!cur
let restore c =
cur := c
let newline lexbuf =
let cur = !cur in
cur.llines <- (lexeme_end lexbuf,cur.lline) :: cur.llines;
cur.lline <- cur.lline + 1
let find_line p f =
let rec loop delta = function
| [] -> f.lmaxline, p - delta
| (lp,line) :: l when lp > p -> line, p - delta
| (lp,_) :: l -> loop lp l
in
if f.lmaxline <> f.lline then begin
f.lmaxline <- f.lline;
f.lrlines <- List.rev f.llines;
end;
loop 0 f.lrlines
let get_error_line p =
let file = (try Hashtbl.find all_files p.pfile with Not_found -> make_file p.pfile) in
let l, _ = find_line p.pmin file in
l
let get_error_pos printer p =
if p.pmin = -1 then
"(unknown)"
else
let file = (try Hashtbl.find all_files p.pfile with Not_found -> make_file p.pfile) in
let l1, p1 = find_line p.pmin file in
let l2, p2 = find_line p.pmax file in
if l1 = l2 then begin
let s = (if p1 = p2 then Printf.sprintf " %d" p1 else Printf.sprintf "s %d-%d" p1 p2) in
Printf.sprintf "%s character%s" (printer p.pfile l1) s
end else
Printf.sprintf "%s lines %d-%d" (printer p.pfile l1) l1 l2
(* helper to get a file from a position *)
let get_file_from_pos p = (try Hashtbl.find all_files p.pfile with Not_found -> make_file p.pfile)
let reset() = Buffer.reset buf
let contents() = Buffer.contents buf
let store lexbuf = Buffer.add_string buf (lexeme lexbuf)
let add c = Buffer.add_string buf c
let mk_tok t pmin pmax =
t , { pfile = !cur.lfile; pmin = pmin; pmax = pmax }
let mk lexbuf t =
mk_tok t (lexeme_start lexbuf) (lexeme_end lexbuf)
let mk_ident lexbuf =
let s = lexeme lexbuf in
mk lexbuf (try Kwd (Hashtbl.find keywords s) with Not_found -> Const (Ident s))
let invalid_char lexbuf =
error (Invalid_character (lexeme_char lexbuf 0)) (lexeme_start lexbuf)
}
let ident = ('_'* ['a'-'z'] ['_' 'a'-'z' 'A'-'Z' '0'-'9']* | '_'+ | '_'+ ['0'-'9'] ['_' 'a'-'z' 'A'-'Z' '0'-'9']* )
let idtype = '_'* ['A'-'Z'] ['_' 'a'-'z' 'A'-'Z' '0'-'9']*
rule skip_header = parse
| "\239\187\191" { skip_header lexbuf }
| "#!" [^'\n' '\r']* { skip_header lexbuf }
| "" | eof { }
and token = parse
| eof { mk lexbuf Eof }
| [' ' '\t']+ { token lexbuf }
| "\r\n" { newline lexbuf; token lexbuf }
| '\n' | '\r' { newline lexbuf; token lexbuf }
| "0x" ['0'-'9' 'a'-'f' 'A'-'F']+ { mk lexbuf (Const (Int (lexeme lexbuf))) }
| ['0'-'9']+ { mk lexbuf (Const (Int (lexeme lexbuf))) }
| ['0'-'9']+ '.' ['0'-'9']+ { mk lexbuf (Const (Float (lexeme lexbuf))) }
| '.' ['0'-'9']+ { mk lexbuf (Const (Float (lexeme lexbuf))) }
| ['0'-'9']+ ['e' 'E'] ['+' '-']? ['0'-'9']+ { mk lexbuf (Const (Float (lexeme lexbuf))) }
| ['0'-'9']+ '.' ['0'-'9']* ['e' 'E'] ['+' '-']? ['0'-'9']+ { mk lexbuf (Const (Float (lexeme lexbuf))) }
| ['0'-'9']+ "..." {
let s = lexeme lexbuf in
mk lexbuf (IntInterval (String.sub s 0 (String.length s - 3)))
}
| "//" [^'\n' '\r']* {
let s = lexeme lexbuf in
mk lexbuf (CommentLine (String.sub s 2 ((String.length s)-2)))
}
| "++" { mk lexbuf (Unop Increment) }
| "--" { mk lexbuf (Unop Decrement) }
| "~" { mk lexbuf (Unop NegBits) }
| "%=" { mk lexbuf (Binop (OpAssignOp OpMod)) }
| "&=" { mk lexbuf (Binop (OpAssignOp OpAnd)) }
| "|=" { mk lexbuf (Binop (OpAssignOp OpOr)) }
| "^=" { mk lexbuf (Binop (OpAssignOp OpXor)) }
| "+=" { mk lexbuf (Binop (OpAssignOp OpAdd)) }
| "-=" { mk lexbuf (Binop (OpAssignOp OpSub)) }
| "*=" { mk lexbuf (Binop (OpAssignOp OpMult)) }
| "/=" { mk lexbuf (Binop (OpAssignOp OpDiv)) }
| "<<=" { mk lexbuf (Binop (OpAssignOp OpShl)) }
(*//| ">>=" { mk lexbuf (Binop (OpAssignOp OpShr)) } *)
(*//| ">>>=" { mk lexbuf (Binop (OpAssignOp OpUShr)) } *)
| "==" { mk lexbuf (Binop OpEq) }
| "!=" { mk lexbuf (Binop OpNotEq) }
| "<=" { mk lexbuf (Binop OpLte) }
(*//| ">=" { mk lexbuf (Binop OpGte) }*)
| "&&" { mk lexbuf (Binop OpBoolAnd) }
| "||" { mk lexbuf (Binop OpBoolOr) }
| "<<" { mk lexbuf (Binop OpShl) }
| "->" { mk lexbuf Arrow }
| "..." { mk lexbuf (Binop OpInterval) }
| "!" { mk lexbuf (Unop Not) }
| "<" { mk lexbuf (Binop OpLt) }
| ">" { mk lexbuf (Binop OpGt) }
| ";" { mk lexbuf Semicolon }
| ":" { mk lexbuf DblDot }
| "," { mk lexbuf Comma }
| "." { mk lexbuf Dot }
| "%" { mk lexbuf (Binop OpMod) }
| "&" { mk lexbuf (Binop OpAnd) }
| "|" { mk lexbuf (Binop OpOr) }
| "^" { mk lexbuf (Binop OpXor) }
| "+" { mk lexbuf (Binop OpAdd) }
| "*" { mk lexbuf (Binop OpMult) }
| "/" { mk lexbuf (Binop OpDiv) }
| "-" { mk lexbuf (Binop OpSub) }
| "=" { mk lexbuf (Binop OpAssign) }
| "[" { mk lexbuf BkOpen }
| "]" { mk lexbuf BkClose }
| "{" { mk lexbuf BrOpen }
| "}" { mk lexbuf BrClose }
| "(" { mk lexbuf POpen }
| ")" { mk lexbuf PClose }
| "?" { mk lexbuf Question }
| "@" { mk lexbuf At }
| "/*" {
reset();
let pmin = lexeme_start lexbuf in
let pmax = (try comment lexbuf with Exit -> error Unclosed_comment pmin) in
mk_tok (Comment (contents())) pmin pmax;
}
| '"' {
reset();
let pmin = lexeme_start lexbuf in
let pmax = (try string lexbuf with Exit -> error Unterminated_string pmin) in
let str = (try unescape (contents()) with Exit -> error Invalid_escape pmin) in
mk_tok (Const (String str)) pmin pmax;
}
| "'" {
reset();
let pmin = lexeme_start lexbuf in
let pmax = (try string2 lexbuf with Exit -> error Unterminated_string pmin) in
let str = (try unescape (contents()) with Exit -> error Invalid_escape pmin) in
mk_tok (Const (String str)) pmin pmax;
}
| "~/" {
reset();
let pmin = lexeme_start lexbuf in
let options, pmax = (try regexp lexbuf with Exit -> error Unterminated_regexp pmin) in
let str = contents() in
mk_tok (Const (Regexp (str,options))) pmin pmax;
}
| '#' ident {
let v = lexeme lexbuf in
let v = String.sub v 1 (String.length v - 1) in
mk lexbuf (Macro v)
}
| '$' ['_' 'a'-'z' 'A'-'Z' '0'-'9']* {
let v = lexeme lexbuf in
let v = String.sub v 1 (String.length v - 1) in
mk lexbuf (Dollar v)
}
| ident { mk_ident lexbuf }
| idtype { mk lexbuf (Const (Type (lexeme lexbuf))) }
| _ { invalid_char lexbuf }
and comment = parse
| eof { raise Exit }
| '\n' | '\r' | "\r\n" { newline lexbuf; store lexbuf; comment lexbuf }
| "*/" { lexeme_end lexbuf }
| '*' { store lexbuf; comment lexbuf }
| [^'*' '\n' '\r']+ { store lexbuf; comment lexbuf }
and string = parse
| eof { raise Exit }
| '\n' | '\r' | "\r\n" { newline lexbuf; store lexbuf; string lexbuf }
| "\\\"" { store lexbuf; string lexbuf }
| "\\\\" { store lexbuf; string lexbuf }
| '\\' { store lexbuf; string lexbuf }
| '"' { lexeme_end lexbuf }
| [^'"' '\\' '\r' '\n']+ { store lexbuf; string lexbuf }
and string2 = parse
| eof { raise Exit }
| '\n' | '\r' | "\r\n" { newline lexbuf; store lexbuf; string2 lexbuf }
| '\\' { store lexbuf; string2 lexbuf }
| "\\\\" { store lexbuf; string2 lexbuf }
| "\\'" { store lexbuf; string2 lexbuf }
| "'" { lexeme_end lexbuf }
| [^'\'' '\\' '\r' '\n']+ { store lexbuf; string2 lexbuf }
and regexp = parse
| eof | '\n' | '\r' { raise Exit }
| '\\' '/' { add "/"; regexp lexbuf }
| '\\' 'r' { add "\r"; regexp lexbuf }
| '\\' 'n' { add "\n"; regexp lexbuf }
| '\\' 't' { add "\t"; regexp lexbuf }
| '\\' ['\\' '$' '.' '*' '+' '^' '|' '{' '}' '[' ']' '(' ')' '?' '-' '0'-'9'] { add (lexeme lexbuf); regexp lexbuf }
| '\\' ['w' 'W' 'b' 'B' 's' 'S' 'd' 'D' 'x'] { add (lexeme lexbuf); regexp lexbuf }
| '\\' [^ '\\'] { error (Invalid_character (lexeme lexbuf).[1]) (lexeme_end lexbuf - 1) }
| '/' { regexp_options lexbuf, lexeme_end lexbuf }
| [^ '\\' '/' '\r' '\n']+ { store lexbuf; regexp lexbuf }
and regexp_options = parse
| 'g' | 'i' | 'm' | 's' | 'u' {
let l = lexeme lexbuf in
l ^ regexp_options lexbuf
}
| ['a' - 'z'] { error Invalid_option (lexeme_start lexbuf) }
| "" { "" }