1 (* Title: Pure/Thy/thy_parse.ML
3 Author: Markus Wenzel, TU Muenchen
5 The parser for theory files.
8 infix 5 -- --$$ $$-- ^^;
15 val !! : ('a -> 'b * 'c) -> 'a -> 'b * 'c
16 val >> : ('a -> 'b * 'c) * ('b -> 'd) -> 'a -> 'd * 'c
17 val || : ('a -> 'b) * ('a -> 'b) -> 'a -> 'b
18 val -- : ('a -> 'b * 'c) * ('c -> 'd * 'e) -> 'a -> ('b * 'd) * 'e
19 val ^^ : ('a -> string * 'b) * ('b -> string * 'c) -> 'a -> string * 'c
20 val $$ : string -> token list -> string * token list
21 val $$-- : string * (token list -> 'b * 'c) -> token list -> 'b * 'c
22 val --$$ : ('a -> 'b * token list) * string -> 'a -> 'b * token list
23 val ident: token list -> string * token list
24 val long_ident: token list -> string * token list
25 val long_id: token list -> string * token list
26 val type_var: token list -> string * token list
27 val type_args: token list -> string list * token list
28 val nat: token list -> string * token list
29 val string: token list -> string * token list
30 val verbatim: token list -> string * token list
31 val empty: 'a -> 'b list * 'a
32 val optional: ('a -> 'b * 'a) -> 'b -> 'a -> 'b * 'a
33 val repeat: ('a -> 'b * 'a) -> 'a -> 'b list * 'a
34 val repeat1: ('a -> 'b * 'a) -> 'a -> 'b list * 'a
35 val enum: string -> (token list -> 'a * token list)
36 -> token list -> 'a list * token list
37 val enum1: string -> (token list -> 'a * token list)
38 -> token list -> 'a list * token list
39 val list: (token list -> 'a * token list)
40 -> token list -> 'a list * token list
41 val list1: (token list -> 'a * token list)
42 -> token list -> 'a list * token list
43 val name: token list -> string * token list
44 val sort: token list -> string * token list
45 val typ: token list -> string * token list
46 val opt_infix: token list -> string * token list
47 val opt_mixfix: token list -> string * token list
48 val opt_witness: token list -> string * token list
49 val const_decls: token list -> string * token list
51 val make_syntax: string list ->
52 (string * (token list -> (string * string) * token list)) list -> syntax
53 val parse_thy: syntax -> string -> string -> string
54 val section: string -> string -> (token list -> string * token list)
55 -> (string * (token list -> (string * string) * token list))
56 val axm_section: string -> string
57 -> (token list -> (string * string list) * token list)
58 -> (string * (token list -> (string * string) * token list))
59 val pure_keywords: string list
61 (string * (token list -> (string * string) * token list)) list
62 (*items for building strings*)
63 val cat: string -> string -> string
64 val parens: string -> string
65 val brackets: string -> string
66 val mk_list: string list -> string
67 val mk_big_list: string list -> string
68 val mk_pair: string * string -> string
69 val mk_triple: string * string * string -> string
70 val mk_triple1: (string * string) * string -> string
71 val mk_triple2: string * (string * string) -> string
72 val strip_quotes: string -> string
76 structure ThyParse : THY_PARSE=
82 (** parser toolbox **)
84 type token = token_kind * string * int;
89 exception SYNTAX_ERROR of string * string * int;
91 fun syn_err s1 s2 n = raise SYNTAX_ERROR (s1, s2, n);
93 fun eof_err () = error "Unexpected end-of-file";
95 (*Similar to Prolog's cut: reports any syntax error instead of backtracking
96 through a superior || *)
97 fun !! parse toks = parse toks
98 handle SYNTAX_ERROR (s1, s2, n) => error ("Syntax error on line " ^
99 string_of_int n ^ ": " ^ s1 ^ " expected and " ^ s2 ^ " was found");
102 (* parser combinators *)
104 fun (parse >> f) toks = apfst f (parse toks);
106 fun (parse1 || parse2) toks =
107 parse1 toks handle SYNTAX_ERROR _ => parse2 toks;
109 fun (parse1 -- parse2) toks =
111 val (x, toks') = parse1 toks;
112 val (y, toks'') = parse2 toks';
117 fun (parse1 ^^ parse2) = parse1 -- parse2 >> op ^;
120 (* generic parsers *)
122 fun $$ a ((k, b, n) :: toks) =
123 if k = Keyword andalso a = b then (a, toks)
124 else syn_err (quote a) (quote b) n
125 | $$ _ [] = eof_err ();
127 fun (a $$-- parse) = $$ a -- parse >> #2;
129 fun (parse --$$ a) = parse -- $$ a >> #1;
132 fun kind k1 ((k2, s, n) :: toks) =
133 if k1 = k2 then (s, toks)
134 else syn_err (name_of_kind k1) (quote s) n
135 | kind _ [] = eof_err ();
137 val ident = kind Ident;
138 val long_ident = kind LongIdent;
139 val long_id = ident || long_ident;
140 val type_var = kind TypeVar >> quote;
142 val string = kind String;
143 val verbatim = kind Verbatim;
146 fun empty toks = ([], toks);
148 fun optional parse def = parse || empty >> K def;
150 fun repeat parse toks = (parse -- repeat parse >> op :: || empty) toks;
151 fun repeat1 parse = parse -- repeat parse >> op ::;
153 fun enum1 sep parse = parse -- repeat (sep $$-- parse) >> op ::;
154 fun enum sep parse = enum1 sep parse || empty;
156 fun list1 parse = enum1 "," parse;
157 fun list parse = enum "," parse;
161 (** theory parsers **)
165 fun cat s1 s2 = s1 ^ " " ^ s2;
167 val parens = enclose "(" ")";
168 val brackets = enclose "[" "]";
170 val mk_list = brackets o commas;
171 val mk_big_list = brackets o space_implode ",\n ";
173 fun mk_pair (x, y) = parens (commas [x, y]);
174 fun mk_triple (x, y, z) = parens (commas [x, y, z]);
175 fun mk_triple1 ((x, y), z) = mk_triple (x, y, z);
176 fun mk_triple2 (x, (y, z)) = mk_triple (x, y, z);
178 fun split_decls l = flat (map (fn (xs, y) => map (rpair y) xs) l);
180 fun strip_quotes str =
181 implode (tl (take (size str - 1, explode str)));
186 val name = ident >> quote || string;
187 val names = list name;
188 val names1 = list1 name;
189 val name_list = names >> mk_list;
190 val name_list1 = names1 >> mk_list;
195 fun empty_decl toks = (empty >> K "") toks;
200 val subclass = name -- optional ("<" $$-- !! name_list1) "[]";
202 val class_decls = repeat1 (subclass >> mk_pair) >> mk_big_list;
209 "{" $$-- name_list --$$ "}";
211 val sort_list1 = list1 sort >> mk_list;
214 val arity = optional ("(" $$-- !! (sort_list1 --$$")")) "[]" -- sort;
216 val arity_decls = repeat1 (names1 --$$ "::" -- !! arity)
217 >> (mk_big_list o map mk_triple2 o split_decls);
220 (* mixfix annotations *)
223 "infixl" $$-- !! (nat >> cat "Infixl" || string -- nat >> (cat "InfixlName" o mk_pair));
225 "infixr" $$-- !! (nat >> cat "Infixr" || string -- nat >> (cat "InfixrName" o mk_pair));
227 val binder = "binder" $$--
228 !! (string -- (("[" $$-- nat --$$ "]") -- nat || nat >> (fn n => (n, n))))
229 >> (cat "Binder" o mk_triple2);
231 val opt_pris = optional ("[" $$-- !! (list nat --$$ "]")) [] >> mk_list;
233 val mixfix = string -- !! (opt_pris -- optional nat "max_pri")
234 >> (cat "Mixfix" o mk_triple2);
236 fun opt_syn fx = optional ("(" $$-- fx --$$ ")") "NoSyn";
238 val opt_infix = opt_syn (infxl || infxr);
239 val opt_mixfix = opt_syn (mixfix || infxl || infxr || binder);
246 (*Parse an identifier, but only if it is not followed by "::", "=" or ",";
247 the exclusion of a postfix comma can be controlled to allow expressions
248 like "(id, id)" but disallow ones like "'a => id id,id :: ..."*)
249 fun ident_no_colon _ [] = eof_err()
250 | ident_no_colon allow_comma ((Ident, s, n) :: (rest as (Keyword, s2, n2) ::
252 if s2 = "::" orelse s2 = "=" orelse (not allow_comma andalso s2 = ",")
253 then syn_err (name_of_kind Ident) (quote s2) n2
255 | ident_no_colon _ ((Ident, s, n) :: toks) = (s, toks)
256 | ident_no_colon _ ((k, s, n) :: _) =
257 syn_err (name_of_kind Ident) (quote s) n;
259 (*type used in types, consts and syntax sections*)
260 fun const_type allow_comma toks =
263 (ident || kind TypeVar ^^ optional ($$ "::" ^^ ident) "") --
264 repeat (ident_no_colon allow_comma)
265 >> (fn (args, ts) => cat args (space_implode " " ts)) ||
266 ("(" $$-- (list1 (const_type true)) --$$ ")" >> (parens o commas)) --
267 repeat1 (ident_no_colon allow_comma)
268 >> (fn (args, ts) => cat args (space_implode " " ts));
271 simple_type || "(" $$-- const_type true --$$ ")" >> parens ||
272 "[" $$-- (list1 (const_type true)) --$$ "]" --$$ "=>" --
273 const_type allow_comma >>
274 (fn (src, dest) => mk_list src ^ " => " ^ dest);
275 in ("[" $$-- (list1 (const_type true)) --$$ "]" --$$ "=>" --
276 const_type allow_comma >>
277 (fn (src, dest) => mk_list src ^ " => " ^ dest) ||
278 repeat1 (appl_param --$$ "=>") -- const_type allow_comma >>
279 (fn (src, dest) => space_implode " => " (src@[dest])) ||
281 "(" $$-- const_type true --$$ ")" >> parens) toks
284 val typ = string || (const_type false >> quote);
287 fun mk_old_type_decl ((ts, n), syn) =
288 map (fn t => (mk_triple (t, n, syn), false)) ts;
290 fun mk_type_decl (((xs, t), None), syn) =
291 [(mk_triple (t, string_of_int (length xs), syn), false)]
292 | mk_type_decl (((xs, t), Some rhs), syn) =
293 [(parens (commas [t, mk_list xs, rhs, syn]), true)];
295 fun mk_type_decls tys =
296 "|> Theory.add_types\n" ^ mk_big_list (keyfilter tys false) ^ "\n\n\
297 \|> Theory.add_tyabbrs\n" ^ mk_big_list (keyfilter tys true);
300 val old_type_decl = names1 -- nat -- opt_infix >> mk_old_type_decl;
303 type_var >> (fn x => [x]) ||
304 "(" $$-- !! (list1 type_var --$$ ")") ||
307 val type_decl = type_args -- name --
308 optional ("=" $$-- typ >> Some) None -- opt_infix >> mk_type_decl;
311 repeat1 (old_type_decl || type_decl) >> (mk_type_decls o flat);
317 repeat1 (names1 --$$ "::" -- !! (typ -- opt_mixfix))
318 >> (mk_big_list o map mk_triple2 o split_decls);
322 ("(" $$-- !! (name -- optional ($$ "output" >> K "false") "true" --$$ ")"))
326 val syntax_decls = opt_mode -- const_decls >> (fn (mode, txt) => mode ^ "\n" ^ txt);
332 optional ("(" $$-- !! (name --$$ ")")) "\"logic\"" -- string >> mk_pair;
335 $$ "=>" >> K "Syntax.ParseRule " ||
336 $$ "<=" >> K "Syntax.PrintRule " ||
337 $$ "==" >> K "Syntax.ParsePrintRule ";
340 trans_pat -- !! (trans_arrow -- trans_pat)
341 >> (fn (left, (arr, right)) => arr ^ mk_pair (left, right));
343 val trans_decls = repeat1 trans_line >> mk_big_list;
346 (* ML translations *)
349 " val parse_ast_translation = [];\n\
350 \ val parse_translation = [];\n\
351 \ val print_translation = [];\n\
352 \ val typed_print_translation = [];\n\
353 \ val print_ast_translation = [];\n\
354 \ val token_translation = [];";
357 "(parse_ast_translation, parse_translation, \
358 \print_translation, print_ast_translation)";
363 val mk_axms = mk_big_list o map (mk_pair o apfst quote);
365 fun mk_axiom_decls axms = (mk_axms axms, map fst axms);
367 val axiom_decls = repeat1 (ident -- !! string) >> mk_axiom_decls;
372 val oracle_decl = (name --$$ "=" -- long_id) >> mk_pair;
375 (* combined consts and axioms *)
377 fun mk_constaxiom_decls x =
379 val (axms_defs, axms_names) =
380 mk_axiom_decls (map (fn ((id, _), def) => (id ^ "_def", def)) x);
381 in ((mk_big_list o map mk_triple2 o map (apfst quote o fst)) x ^
382 "\n\n|> (PureThy.add_defs o map Attribute.none)\n" ^ axms_defs, axms_names)
385 val constaxiom_decls =
386 repeat1 (ident --$$ "::" -- !! (typ -- opt_mixfix) -- !! string)
387 >> mk_constaxiom_decls;
392 fun mk_axclass_decl ((c, cs), axms) =
393 (mk_pair (c, cs) ^ "\n" ^ mk_axms axms,
394 (strip_quotes c ^ "I") :: map fst axms);
396 val axclass_decl = subclass -- repeat (ident -- !! string) >> mk_axclass_decl;
401 fun mk_witness (axths, opt_tac) =
402 mk_list (keyfilter axths false) ^ "\n" ^
403 mk_list (keyfilter axths true) ^ "\n" ^
407 string >> rpair false ||
408 long_id >> rpair true;
412 optional ("(" $$-- list1 axm_or_thm --$$ ")") [] --
413 optional (verbatim >> (parens o cat "Some" o parens)) "None"
417 (name --$$ "<" -- name >> (pair "|> AxClass.add_inst_subclass" o mk_pair) ||
418 name --$$ "::" -- arity >> (pair "|> AxClass.add_inst_arity" o mk_triple2))
420 >> (fn ((x, y), z) => (cat_lines [x, y, z]));
428 (repeat (name --$$ "::" -- !! (typ -- opt_mixfix)) >> (mk_big_list o map mk_triple2))) --
429 ("assumes" $$-- (repeat ((ident >> quote) -- !! string) >> (mk_list o map mk_pair))) --
430 ("defines" $$-- (repeat ((ident >> quote) -- !! string) >> (mk_list o map mk_pair)))
431 >> (fn (((nm, cs), asms), defs) => cat_lines [nm, cs, asms, defs]);
435 (** theory syntax **)
438 Scan.lexicon * (token list -> (string * string) * token list) Symtab.table;
440 fun make_syntax keywords sects =
442 val dups = duplicates (map fst sects);
443 val sects' = gen_distinct eq_fst sects;
444 val keys = map Symbol.explode (map fst sects' @ keywords);
447 else warning ("Duplicate declaration of theory file sections:\n" ^ commas_quote dups);
448 (Scan.make_lexicon keys, Symtab.make sects')
454 fun mk_header (thy_name, bases) =
455 (thy_name, "mk_base " ^ mk_list bases ^ " " ^ quote thy_name);
458 ident >> (cat "Thy" o quote) ||
459 string >> cat "File";
461 val header = ident --$$ "=" -- enum1 "+" base >> mk_header;
466 fun mk_extension (txts, mltxt) =
468 val cat_sects = space_implode "\n\n" o filter_out (equal "");
469 val (extxts, postxts) = split_list txts;
471 (cat_sects extxts, cat_sects postxts, mltxt)
474 fun sect tab ((Keyword, s, n) :: toks) =
475 (case Symtab.lookup (tab, s) of
476 Some parse => !! parse toks
477 | None => syn_err "section" s n)
478 | sect _ ((_, s, n) :: _) = syn_err "section" s n
479 | sect _ [] = eof_err ();
481 fun extension sectab = "+" $$-- !!
482 (repeat (sect sectab) --$$ "end" -- optional verbatim "")
485 fun opt_extension sectab = optional (extension sectab) ("", "", "");
488 (* theory definition *)
490 fun mk_structure tname ((thy_name, old_thys), (extxt, postxt, mltxt)) =
491 if thy_name <> tname then
492 error ("Filename \"" ^ tname ^ ".thy\" and theory name "
493 ^ quote thy_name ^ " are different")
495 "val thy = " ^ old_thys ^ ";\n\n\
496 \structure " ^ thy_name ^ " =\n\
506 \|> PureThy.put_name " ^ quote thy_name ^ "\n\
507 \|> PureThy.local_path\n\
508 \|> Theory.add_trfuns\n"
510 \|> Theory.add_trfunsT typed_print_translation\n\
511 \|> Theory.add_tokentrfuns token_translation\n\
515 \|> PureThy.end_theory\n\
517 \val _ = store_theory thy;\n\
518 \val _ = context thy;\n\
526 \open " ^ thy_name ^ ";\n\
529 fun theory_defn sectab tname =
530 header -- opt_extension sectab -- eof >> (mk_structure tname o #1);
532 fun parse_thy (lex, sectab) tname str =
533 #1 (!! (theory_defn sectab tname) (tokenize lex str));
536 (* standard sections *)
538 fun mk_val ax = "val " ^ ax ^ " = get_axiom thy " ^ quote ax ^ ";";
539 val mk_vals = cat_lines o map mk_val;
541 fun mk_axm_sect "" (txt, axs) = (txt, mk_vals axs)
542 | mk_axm_sect pretxt (txt, axs) = (pretxt ^ "\n" ^ txt, mk_vals axs);
544 fun axm_section name pretxt parse =
545 (name, parse >> mk_axm_sect pretxt);
547 fun section name pretxt parse =
548 axm_section name pretxt (parse >> rpair []);
552 ["end", "ML", "mixfix", "infixr", "infixl", "binder", "output", "=",
553 "+", ",", "<", "{", "}", "(", ")", "[", "]", "::", "==", "=>",
554 "<=", "fixes", "assumes", "defines"];
557 [section "classes" "|> Theory.add_classes" class_decls,
558 section "default" "|> Theory.add_defsort" sort,
559 section "types" "" type_decls,
560 section "nonterminals" "|> Theory.add_nonterminals" (repeat1 name >> mk_list),
561 section "arities" "|> Theory.add_arities" arity_decls,
562 section "consts" "|> Theory.add_consts" const_decls,
563 section "syntax" "|> Theory.add_modesyntax" syntax_decls,
564 section "translations" "|> Theory.add_trrules" trans_decls,
565 axm_section "rules" "|> (PureThy.add_axioms o map Attribute.none)" axiom_decls,
566 axm_section "defs" "|> (PureThy.add_defs o map Attribute.none)" axiom_decls,
567 section "oracle" "|> Theory.add_oracle" oracle_decl,
568 axm_section "constdefs" "|> Theory.add_consts" constaxiom_decls,
569 axm_section "axclass" "|> AxClass.add_axclass" axclass_decl,
570 section "instance" "" instance_decl,
571 section "path" "|> Theory.add_path" name,
572 section "global" "|> PureThy.global_path" empty_decl,
573 section "local" "|> PureThy.local_path" empty_decl,
574 section "setup" "|> Theory.apply" long_id,
575 section "MLtext" "" verbatim,
576 section "locale" "|> Locale.add_locale" locale_decl];