1 (* Title: Pure/Isar/outer_syntax.ML
3 Author: Markus Wenzel, TU Muenchen
5 The global Isabelle/Isar outer syntax.
8 signature BASIC_OUTER_SYNTAX =
12 val main: unit -> unit
13 val loop: unit -> unit
14 val sync_main: unit -> unit
15 val sync_loop: unit -> unit
19 signature OUTER_SYNTAX =
21 include BASIC_OUTER_SYNTAX
27 val thy_switch: string
29 val thy_heading: string
31 val thy_script: string
35 val qed_global: string
36 val prf_heading: string
44 val prf_asm_goal: string
45 val prf_script: string
46 val kinds: string list
50 val command: string -> string -> string ->
51 (token list -> (Toplevel.transition -> Toplevel.transition) * token list) -> parser
52 val markup_command: IsarOutput.markup -> string -> string -> string ->
53 (token list -> (Toplevel.transition -> Toplevel.transition) * token list) -> parser
54 val improper_command: string -> string -> string ->
55 (token list -> (Toplevel.transition -> Toplevel.transition) * token list) -> parser
56 val is_keyword: string -> bool
57 val dest_keywords: unit -> string list
58 val dest_parsers: unit -> (string * string * string * bool) list
59 val print_outer_syntax: unit -> unit
60 val print_commands: Toplevel.transition -> Toplevel.transition
61 val add_keywords: string list -> unit
62 val add_parsers: parser list -> unit
63 val check_text: string * Position.T -> bool -> Toplevel.state -> unit
64 val deps_thy: string -> bool -> Path.T -> string list * Path.T list
65 val load_thy: string -> bool -> bool -> Path.T -> unit
66 val isar: bool -> bool -> unit Toplevel.isar
67 val scan: string -> OuterLex.token list
68 val read: OuterLex.token list ->
69 (string * OuterLex.token list * Toplevel.transition) list
72 structure OuterSyntax : OUTER_SYNTAX =
75 structure T = OuterLex;
76 structure P = OuterParse;
81 (* command keyword classification *)
85 val control = "control";
87 val thy_begin = "theory-begin";
88 val thy_switch = "theory-switch";
89 val thy_end = "theory-end";
90 val thy_heading = "theory-heading";
91 val thy_decl = "theory-decl";
92 val thy_script = "theory-script";
93 val thy_goal = "theory-goal";
95 val qed_block = "qed-block";
96 val qed_global = "qed-global";
97 val prf_heading = "proof-heading";
98 val prf_goal = "proof-goal";
99 val prf_block = "proof-block";
100 val prf_open = "proof-open";
101 val prf_close = "proof-close";
102 val prf_chain = "proof-chain";
103 val prf_decl = "proof-decl";
104 val prf_asm = "proof-asm";
105 val prf_asm_goal = "proof-asm-goal";
106 val prf_script = "proof-script";
108 val kinds = [control, diag, thy_begin, thy_switch, thy_end, thy_heading, thy_decl, thy_script,
109 thy_goal, qed, qed_block, qed_global, prf_heading, prf_goal, prf_block, prf_open, prf_close,
110 prf_chain, prf_decl, prf_asm, prf_asm_goal, prf_script];
116 type token = T.token;
117 type parser_fn = token list -> (Toplevel.transition -> Toplevel.transition) * token list;
120 Parser of string * (string * string * IsarOutput.markup option) * bool * parser_fn;
122 fun parser int_only markup name comment kind parse =
123 Parser (name, (comment, kind, markup), int_only, parse);
130 fun terminate false = Scan.succeed ()
131 | terminate true = P.group "end of input" (Scan.option P.sync -- P.semicolon >> K ());
133 fun trace false parse = parse
134 | trace true parse = Scan.trace parse >> (fn (f, toks) => f o Toplevel.source toks);
136 fun body cmd trc (name, _) =
138 SOME (int_only, parse) =>
139 P.!!! (Scan.prompt (name ^ "# ") (trace trc parse >> pair int_only))
140 | NONE => sys_error ("no parser for outer syntax command " ^ quote name));
144 fun command do_terminate do_trace cmd =
145 P.semicolon >> K NONE ||
147 (P.position P.command :-- body cmd do_trace) --| terminate do_terminate
148 >> (fn ((name, pos), (int_only, f)) =>
149 SOME (Toplevel.empty |> Toplevel.name name |> Toplevel.position pos |>
150 Toplevel.interactive int_only |> f));
156 (** global outer syntax **)
160 val global_lexicons = ref (Scan.empty_lexicon, Scan.empty_lexicon);
162 ref (Symtab.empty: (((string * string) * (bool * parser_fn)) * IsarOutput.markup option)
164 val global_markups = ref ([]: (string * IsarOutput.markup) list);
166 fun change_lexicons f =
167 let val lexs = f (! global_lexicons) in
168 (case (op inter_string) (pairself Scan.dest_lexicon lexs) of
169 [] => global_lexicons := lexs
170 | bads => error ("Clash of outer syntax commands and keywords: " ^ commas_quote bads))
173 fun get_markup (ms, (name, (_, SOME m))) = (name, m) :: ms
174 | get_markup (ms, _) = ms;
176 fun make_markups () = global_markups := Symtab.foldl get_markup ([], ! global_parsers);
177 fun change_parsers f = (Library.change global_parsers f; make_markups ());
182 (* access current syntax *)
184 (*Note: the syntax for files is statically determined at the very
185 beginning; for interactive processing it may change dynamically.*)
187 fun get_lexicons () = ! global_lexicons;
188 fun get_parsers () = ! global_parsers;
189 fun get_parser () = Option.map (#2 o #1) o curry Symtab.lookup (! global_parsers);
191 fun is_markup kind name =
192 (case assoc (! global_markups, name) of SOME k => k = kind | NONE => false);
193 fun markup kind = Scan.one (T.is_kind T.Command andf is_markup kind o T.val_of);
198 fun add_keywords keywords = change_lexicons (apfst (fn lex =>
199 (Scan.extend_lexicon lex (map Symbol.explode keywords))));
201 fun add_parser (tab, Parser (name, (comment, kind, markup), int_only, parse)) =
202 (if is_none (Symtab.lookup (tab, name)) then ()
203 else warning ("Redefined outer syntax command " ^ quote name);
204 Symtab.update ((name, (((comment, kind), (int_only, parse)), markup)), tab));
206 fun add_parsers parsers =
207 (change_parsers (fn tab => Library.foldl add_parser (tab, parsers));
208 change_lexicons (apsnd (fn lex => Scan.extend_lexicon lex
209 (map (fn Parser (name, _, _, _) => Symbol.explode name) parsers))));
216 fun is_keyword s = Scan.is_literal (#1 (get_lexicons ())) (Symbol.explode s);
217 fun dest_keywords () = Scan.dest_lexicon (#1 (get_lexicons ()));
219 fun dest_parsers () =
220 map (fn (name, (((cmt, kind), (int_only, _)), _)) => (name, cmt, kind, int_only))
221 (Symtab.dest (get_parsers ()));
223 fun print_outer_syntax () =
225 fun pretty_cmd (name, comment, _, _) =
226 Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 2, Pretty.str comment];
227 val (int_cmds, cmds) = List.partition #4 (dest_parsers ());
229 [Pretty.strs ("syntax keywords:" :: map quote (dest_keywords ())),
230 Pretty.big_list "proper commands:" (map pretty_cmd cmds),
231 Pretty.big_list "improper commands (interactive-only):" (map pretty_cmd int_cmds)]
232 |> Pretty.chunks |> Pretty.writeln
235 val print_commands = Toplevel.imperative print_outer_syntax;
239 (** toplevel parsing **)
243 fun toplevel_source term trc do_recover cmd src =
246 Scan.unless P.semicolon (Scan.one (T.not_sync andf T.not_eof));
247 fun recover x = (Scan.prompt "recover# " (Scan.repeat no_terminator) >> K [NONE]) x;
251 |> Source.source T.stopper
252 (Scan.bulk (P.$$$ "--" -- P.!!! P.text >> K NONE || P.not_eof >> SOME))
253 (if do_recover then SOME recover else NONE)
254 |> Source.mapfilter I
255 |> Source.source T.stopper (Scan.bulk (fn xs => P.!!! (command term trc (cmd ())) xs))
256 (if do_recover then SOME recover else NONE)
257 |> Source.mapfilter I
261 (* interactive source of toplevel transformers *)
263 fun isar term no_pos =
265 |> Symbol.source true
266 |> T.source true get_lexicons
267 (if no_pos then Position.none else Position.line_name 1 "stdin")
268 |> toplevel_source term false true get_parser;
271 (* scan text, read tokens with trace (for Proof General) *)
275 |> Symbol.source false
276 |> T.source true get_lexicons Position.none
281 |> toplevel_source false true true get_parser
283 |> map (fn tr => (Toplevel.name_of tr, the (Toplevel.source_of tr), tr));
290 fun check_text s true state = (IsarOutput.eval_antiquote (#1 (get_lexicons ())) state s; ())
291 | check_text _ false _ = ();
296 fun deps_thy name ml path =
298 val src = Source.of_string (File.read path);
299 val pos = Path.position path;
300 val (name', parents, files) = ThyHeader.scan (src, pos);
301 val ml_path = ThyLoad.ml_path name;
302 val ml_file = if ml andalso is_some (ThyLoad.check_file NONE ml_path) then [ml_path] else [];
304 if name <> name' then
305 error ("Filename " ^ quote (Path.pack path) ^
306 " does not agree with theory name " ^ quote name')
307 else (parents, map (Path.unpack o #1) files @ ml_file)
315 fun try_ml_file name time =
317 val path = ThyLoad.ml_path name;
318 val tr = Toplevel.imperative (fn () => ThyInfo.load_file time path);
319 val tr_name = if time then "time_use" else "use";
321 if is_none (ThyLoad.check_file NONE path) then ()
322 else Toplevel.excursion [Toplevel.empty |> Toplevel.name tr_name |> tr]
327 |> toplevel_source false false false (K (get_parser ()))
330 fun run_thy name path =
332 val pos = Path.position path;
333 val text = Library.untabify (explode (File.read path));
334 val text_src = Source.of_list text;
335 fun present_text () = Source.exhaust (Symbol.source false text_src);
337 Present.init_theory name;
338 Present.verbatim_source name present_text;
339 if ThyHeader.is_old (text_src, pos) then (ThySyn.load_thy name text;
340 Present.old_symbol_source name present_text) (*note: text presented twice*)
343 val tok_src = text_src
344 |> Symbol.source false
345 |> T.source false (K (get_lexicons ())) pos
347 val out = Toplevel.excursion_result
348 (IsarOutput.parse_thy markup (#1 (get_lexicons ()))
349 (parse_thy tok_src) tok_src);
350 in Present.theory_output name (Buffer.content out) end
355 fun load_thy name ml time path =
358 (writeln ("\n**** Starting theory " ^ quote name ^ " ****");
360 writeln ("**** Finished theory " ^ quote name ^ " ****\n")))
361 else run_thy name path;
362 Context.context (ThyInfo.get_theory name);
363 if ml then try_ml_file name time else ());
369 (** the read-eval-print loop **)
373 fun gen_loop term no_pos =
374 (Context.reset_context ();
375 Toplevel.loop (isar term no_pos));
377 fun gen_main term no_pos =
378 (Toplevel.set_state Toplevel.toplevel;
379 writeln (Session.welcome ());
380 gen_loop term no_pos);
384 fun main () = gen_main false false;
385 fun loop () = gen_loop false false;
386 fun sync_main () = gen_main true true;
387 fun sync_loop () = gen_loop true true;
391 (*final declarations of this structure!*)
392 val command = parser false NONE;
393 val markup_command = parser false o SOME;
394 val improper_command = parser true NONE;
398 (*setup theory syntax dependent operations*)
399 ThyLoad.deps_thy_fn := OuterSyntax.deps_thy;
400 ThyLoad.load_thy_fn := OuterSyntax.load_thy;
401 structure ThyLoad: THY_LOAD = ThyLoad;
403 structure BasicOuterSyntax: BASIC_OUTER_SYNTAX = OuterSyntax;
404 open BasicOuterSyntax;