1 (* Copyright (C) 2005, HELM Team.
3 * This file is part of HELM, an Hypertextual, Electronic
4 * Library of Mathematics, developed at the Computer Science
5 * Department, University of Bologna, Italy.
7 * HELM is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * HELM is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with HELM; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
30 exception Error of int * int * string
32 let regexp number = xml_digit+
33 let regexp utf8_blank = " " | "\r\n" | "\n" | "\t" | [160] (* this is a nbsp *)
34 let regexp percentage =
35 ('-' | "") [ '0' - '9' ] + '%'
36 let regexp floatwithunit =
37 ('-' | "") [ '0' - '9' ] + ["."] [ '0' - '9' ] + ([ 'a' - 'z' ] + | "" )
38 let regexp color = "#" [ '0' - '9' 'a' - 'f' 'A' - 'F' ] [ '0' - '9' 'a' - 'f'
39 'A' - 'F' ] [ '0' - '9' 'a' - 'f' 'A' - 'F' ] [ '0' - '9' 'a' - 'f' 'A' - 'F' ]
40 [ '0' - '9' 'a' - 'f' 'A' - 'F' ] [ '0' - '9' 'a' - 'f' 'A' - 'F' ]
42 (* ZACK: breaks unicode's binder followed by an ascii letter without blank *)
43 (* let regexp ident_letter = xml_letter *)
45 let regexp ident_letter = [ 'a' - 'z' 'A' - 'Z' ]
47 (* must be in sync with "is_ligature_char" below *)
48 let regexp ligature_char = [ "'`~!?@*()[]<>-+=|:;.,/\"" ]
49 let regexp ligature = ligature_char ligature_char+
51 let is_ligature_char =
52 (* must be in sync with "regexp ligature_char" above *)
53 let chars = "'`~!?@*()[]<>-+=|:;.,/\"" in
56 ignore (String.index chars char);
58 with Not_found -> false))
60 let regexp we_proved = "we" utf8_blank+ "proved"
61 let regexp we_have = "we" utf8_blank+ "have"
62 let regexp let_rec = "let" utf8_blank+ "rec"
63 let regexp let_corec = "let" utf8_blank+ "corec"
64 let regexp ident_decoration = '\'' | '?' | '`'
65 let regexp ident_cont = ident_letter | xml_digit | '_'
66 let regexp ident = ident_letter ident_cont* ident_decoration*
68 let regexp tex_token = '\\' ident
70 let regexp delim_begin = "\\["
71 let regexp delim_end = "\\]"
73 let regexp qkeyword = "'" ident "'"
75 let regexp implicit = '?'
76 let regexp placeholder = '%'
77 let regexp meta = implicit number
79 let regexp csymbol = '\'' ident
81 let regexp begin_group = "@{" | "${"
82 let regexp end_group = '}'
83 let regexp wildcard = "$_"
84 let regexp ast_ident = "@" ident
85 let regexp ast_csymbol = "@" csymbol
86 let regexp meta_ident = "$" ident
87 let regexp meta_anonymous = "$_"
88 let regexp qstring = '"' [^ '"']* '"'
90 let regexp begincomment = "(**" utf8_blank
91 let regexp beginnote = "(*"
92 let regexp endcomment = "*)"
93 (* let regexp comment_char = [^'*'] | '*'[^')']
94 let regexp note = "|+" ([^'*'] | "**") comment_char* "+|" *)
99 "over"; "atop"; "frac";
103 let level1_keywords =
104 [ "hbox"; "hvbox"; "hovbox"; "vbox";
106 "list0"; "list1"; "sep";
108 "term"; "ident"; "number"; "mstyle" ; "mpadded"
111 let level2_meta_keywords =
112 [ "if"; "then"; "elCicNotationParser.se";
113 "fold"; "left"; "right"; "rec";
116 "anonymous"; "ident"; "number"; "term"; "fresh"
119 (* (string, unit) Hashtbl.t, to exploit multiple bindings *)
120 let initial_level2_ast_keywords () = Hashtbl.create 23;;
122 let level2_ast_keywords = ref (initial_level2_ast_keywords ())
124 let initialize_keywords () =
125 List.iter (fun k -> Hashtbl.add !level2_ast_keywords k ())
126 [ "CProp"; "Prop"; "Type"; "Set"; "let"; "match";
127 "with"; "in"; "and"; "to"; "as"; "on"; "return"; "done" ]
130 let _ = initialize_keywords ();;
132 let add_level2_ast_keyword k = Hashtbl.add !level2_ast_keywords k ()
133 let remove_level2_ast_keyword k = Hashtbl.remove !level2_ast_keywords k
135 (* (string, int) Hashtbl.t, with multiple bindings.
136 * int is the unicode codepoint *)
137 let ligatures = Hashtbl.create 23
141 (fun (ligature, symbol) -> Hashtbl.add ligatures ligature symbol)
142 [ ("->", <:unicode<to>>); ("=>", <:unicode<Rightarrow>>);
143 ("<=", <:unicode<leq>>); (">=", <:unicode<geq>>);
144 ("<>", <:unicode<neq>>); (":=", <:unicode<def>>);
145 ("==", <:unicode<equiv>>);
148 let regexp uri_step = [ 'a' - 'z' 'A' - 'Z' '0' - '9' '_' '-' ''' ]+
151 ("cic:/" | "theory:/") (* schema *)
152 (* ident ('/' ident)* |+ path +| *)
153 uri_step ('/' uri_step)* (* path *)
154 ('.' ident)+ (* ext *)
155 ("#xpointer(" number ('/' number)+ ")")? (* xpointer *)
157 let error lexbuf msg =
158 let begin_cnum, end_cnum = Ulexing.loc lexbuf in
159 raise (Error (begin_cnum, end_cnum, msg))
160 let error_at_end lexbuf msg =
161 let begin_cnum, end_cnum = Ulexing.loc lexbuf in
162 raise (Error (begin_cnum, end_cnum, msg))
164 let return_with_loc token begin_cnum end_cnum =
165 let flocation = HExtlib.floc_of_loc (begin_cnum,end_cnum) in
168 let return lexbuf token =
169 let begin_cnum, end_cnum = Ulexing.loc lexbuf in
170 return_with_loc token begin_cnum end_cnum
172 let return_lexeme lexbuf name = return lexbuf (name, Ulexing.utf8_lexeme lexbuf)
174 let return_symbol lexbuf s = return lexbuf ("SYMBOL", s)
175 let return_eoi lexbuf = return lexbuf ("EOI", "")
177 let remove_quotes s = String.sub s 1 (String.length s - 2)
180 let tok_func stream =
181 (* let lexbuf = Ulexing.from_utf8_stream stream in *)
182 (** XXX Obj.magic rationale.
184 * camlp5 constraints the tok_func field of Token.glexer to have type:
185 * Stream.t char -> (Stream.t 'te * flocation_function)
186 * In order to use ulex we have (in theory) to instantiate a new lexbuf each
187 * time a char Stream.t is passed, destroying the previous lexbuf which may
188 * have consumed a character from the old stream which is lost forever :-(
190 * Instead of passing to camlp5 a char Stream.t we pass a lexbuf, casting it to
191 * char Stream.t with Obj.magic where needed.
193 let lexbuf = Obj.magic stream in
194 Token.make_stream_and_location
199 | Ulexing.Error -> error_at_end lexbuf "Unexpected character"
200 | Ulexing.InvalidCodepoint p ->
201 error_at_end lexbuf (sprintf "Invalid code point: %d" p))
204 Token.tok_func = tok_func;
205 Token.tok_using = (fun _ -> ());
206 Token.tok_removing = (fun _ -> ());
207 Token.tok_match = Token.default_match;
208 Token.tok_text = Token.lexer_text;
209 Token.tok_comm = None;
212 let expand_macro lexbuf =
214 Ulexing.utf8_sub_lexeme lexbuf 1 (Ulexing.lexeme_length lexbuf - 1)
217 ("SYMBOL", Utf8Macro.expand macro)
218 with Utf8Macro.Macro_not_found _ -> "SYMBOL", Ulexing.utf8_lexeme lexbuf
220 let remove_quotes s = String.sub s 1 (String.length s - 2)
221 let remove_left_quote s = String.sub s 1 (String.length s - 1)
223 let rec level2_pattern_token_group counter buffer =
226 if (counter > 0) then
227 Buffer.add_string buffer (Ulexing.utf8_lexeme lexbuf) ;
228 snd (Ulexing.loc lexbuf)
230 Buffer.add_string buffer (Ulexing.utf8_lexeme lexbuf) ;
231 ignore (level2_pattern_token_group (counter + 1) buffer lexbuf) ;
232 level2_pattern_token_group counter buffer lexbuf
234 Buffer.add_string buffer (Ulexing.utf8_lexeme lexbuf) ;
235 level2_pattern_token_group counter buffer lexbuf
237 let read_unparsed_group token_name lexbuf =
238 let buffer = Buffer.create 16 in
239 let begin_cnum, _ = Ulexing.loc lexbuf in
240 let end_cnum = level2_pattern_token_group 0 buffer lexbuf in
241 return_with_loc (token_name, Buffer.contents buffer) begin_cnum end_cnum
243 let rec level2_meta_token =
245 | utf8_blank+ -> level2_meta_token lexbuf
247 let s = Ulexing.utf8_lexeme lexbuf in
249 if List.mem s level2_meta_keywords then
250 return lexbuf ("", s)
252 return lexbuf ("IDENT", s)
254 | "@{" -> read_unparsed_group "UNPARSED_AST" lexbuf
256 return lexbuf ("UNPARSED_AST",
257 remove_left_quote (Ulexing.utf8_lexeme lexbuf))
259 return lexbuf ("UNPARSED_AST",
260 remove_left_quote (Ulexing.utf8_lexeme lexbuf))
261 | eof -> return_eoi lexbuf
263 let rec comment_token acc depth =
266 let acc = acc ^ Ulexing.utf8_lexeme lexbuf in
267 comment_token acc (depth + 1) lexbuf
269 let acc = acc ^ Ulexing.utf8_lexeme lexbuf in
272 else comment_token acc (depth - 1) lexbuf
274 let acc = acc ^ Ulexing.utf8_lexeme lexbuf in
275 comment_token acc depth lexbuf
277 (** @param k continuation to be invoked when no ligature has been found *)
278 let rec ligatures_token k =
281 let lexeme = Ulexing.utf8_lexeme lexbuf in
282 (match List.rev (Hashtbl.find_all ligatures lexeme) with
283 | [] -> (* ligature not found, rollback and try default lexer *)
284 Ulexing.rollback lexbuf;
286 | default_lig :: _ -> (* ligatures found, use the default one *)
287 return_symbol lexbuf default_lig)
288 | eof -> return_eoi lexbuf
289 | _ -> (* not a ligature, rollback and try default lexer *)
290 Ulexing.rollback lexbuf;
293 and level2_ast_token =
295 | let_rec -> return lexbuf ("LETREC","")
296 | let_corec -> return lexbuf ("LETCOREC","")
297 | we_proved -> return lexbuf ("WEPROVED","")
298 | we_have -> return lexbuf ("WEHAVE","")
299 | utf8_blank+ -> ligatures_token level2_ast_token lexbuf
301 let s = Ulexing.utf8_lexeme lexbuf in
302 return lexbuf ("META", String.sub s 1 (String.length s - 1))
303 | implicit -> return lexbuf ("IMPLICIT", "")
304 | placeholder -> return lexbuf ("PLACEHOLDER", "")
306 let lexeme = Ulexing.utf8_lexeme lexbuf in
307 if Hashtbl.mem !level2_ast_keywords lexeme then
308 return lexbuf ("", lexeme)
310 return lexbuf ("IDENT", lexeme)
311 | number -> return lexbuf ("NUMBER", Ulexing.utf8_lexeme lexbuf)
312 | tex_token -> return lexbuf (expand_macro lexbuf)
313 | uri -> return lexbuf ("URI", Ulexing.utf8_lexeme lexbuf)
315 return lexbuf ("QSTRING", remove_quotes (Ulexing.utf8_lexeme lexbuf))
317 return lexbuf ("CSYMBOL", remove_left_quote (Ulexing.utf8_lexeme lexbuf))
318 | "${" -> read_unparsed_group "UNPARSED_META" lexbuf
319 | "@{" -> read_unparsed_group "UNPARSED_AST" lexbuf
320 | '(' -> return lexbuf ("LPAREN", "")
321 | ')' -> return lexbuf ("RPAREN", "")
323 return lexbuf ("UNPARSED_META",
324 remove_left_quote (Ulexing.utf8_lexeme lexbuf))
325 | meta_anonymous -> return lexbuf ("UNPARSED_META", "anonymous")
327 let _comment = comment_token (Ulexing.utf8_lexeme lexbuf) 0 lexbuf in
329 Ulexing.utf8_sub_lexeme lexbuf 2 (Ulexing.lexeme_length lexbuf - 4)
331 return lexbuf ("NOTE", comment) *)
332 ligatures_token level2_ast_token lexbuf
333 | begincomment -> return lexbuf ("BEGINCOMMENT","")
334 | endcomment -> return lexbuf ("ENDCOMMENT","")
335 | eof -> return_eoi lexbuf
336 | _ -> return_symbol lexbuf (Ulexing.utf8_lexeme lexbuf)
338 and level1_pattern_token =
340 | utf8_blank+ -> ligatures_token level1_pattern_token lexbuf
341 | number -> return lexbuf ("NUMBER", Ulexing.utf8_lexeme lexbuf)
343 let s = Ulexing.utf8_lexeme lexbuf in
345 if List.mem s level1_keywords then
346 return lexbuf ("", s)
348 return lexbuf ("IDENT", s)
350 | color -> return lexbuf ("COLOR", Ulexing.utf8_lexeme lexbuf)
352 return lexbuf ("PERCENTAGE", Ulexing.utf8_lexeme lexbuf)
354 return lexbuf ("FLOATWITHUNIT", Ulexing.utf8_lexeme lexbuf)
355 | tex_token -> return lexbuf (expand_macro lexbuf)
357 return lexbuf ("QKEYWORD", remove_quotes (Ulexing.utf8_lexeme lexbuf))
358 | '(' -> return lexbuf ("LPAREN", "")
359 | ')' -> return lexbuf ("RPAREN", "")
360 | eof -> return_eoi lexbuf
361 | _ -> return_symbol lexbuf (Ulexing.utf8_lexeme lexbuf)
363 let level1_pattern_token = ligatures_token level1_pattern_token
364 let level2_ast_token = ligatures_token level2_ast_token
366 (* API implementation *)
368 let initial_level1_pattern_lexer () = mk_lexer level1_pattern_token
369 let initial_level2_ast_lexer () = mk_lexer level2_ast_token
370 let initial_level2_meta_lexer () = mk_lexer level2_meta_token
373 let level1_pattern_lexer_ref = ref (initial_level1_pattern_lexer ())
374 let level2_ast_lexer_ref = ref (initial_level2_ast_lexer ())
375 let level2_meta_lexer_ref = ref (initial_level2_meta_lexer ())
377 let level1_pattern_lexer () = !level1_pattern_lexer_ref
378 let level2_ast_lexer () = !level2_ast_lexer_ref
379 let level2_meta_lexer () = !level2_meta_lexer_ref
381 let lookup_ligatures lexeme =
384 then [ Utf8Macro.expand (String.sub lexeme 1 (String.length lexeme - 1)) ]
385 else List.rev (Hashtbl.find_all ligatures lexeme)
386 with Invalid_argument _ | Utf8Macro.Macro_not_found _ -> []
389 let history = ref [];;
393 (!level2_ast_keywords,!level1_pattern_lexer_ref,
394 !level2_ast_lexer_ref,!level2_meta_lexer_ref) :: !history;
395 level2_ast_keywords := initial_level2_ast_keywords ();
396 initialize_keywords ();
397 level1_pattern_lexer_ref := initial_level1_pattern_lexer ();
398 level2_ast_lexer_ref := initial_level2_ast_lexer ();
399 level2_meta_lexer_ref := initial_level2_meta_lexer ();
405 | (kwd,pl,al,ml) :: tl ->
406 level2_ast_keywords := kwd;
407 level1_pattern_lexer_ref := pl;
408 level2_ast_lexer_ref := al;
409 level2_meta_lexer_ref := ml;