1 (* Title: Doc/antiquote_setup.ML
4 Auxiliary antiquotations for the Isabelle manuals.
7 structure Antiquote_Setup: sig end =
12 fun translate f = Symbol.explode #> map f #> implode;
14 val clean_string = translate
27 fun clean_name "\<dots>" = "dots"
28 | clean_name ".." = "ddot"
29 | clean_name "." = "dot"
30 | clean_name "_" = "underscore"
31 | clean_name "{" = "braceleft"
32 | clean_name "}" = "braceright"
33 | clean_name s = s |> translate (fn "_" => "-" | "\<hyphen>" => "-" | c => c);
40 fun ml_val (toks1, []) = ML_Lex.read "fn _ => (" @ toks1 @ ML_Lex.read ");"
41 | ml_val (toks1, toks2) =
42 ML_Lex.read "fn _ => (" @ toks1 @ ML_Lex.read " : " @ toks2 @ ML_Lex.read ");";
44 fun ml_op (toks1, []) = ML_Lex.read "fn _ => (op " @ toks1 @ ML_Lex.read ");"
45 | ml_op (toks1, toks2) =
46 ML_Lex.read "fn _ => (op " @ toks1 @ ML_Lex.read " : " @ toks2 @ ML_Lex.read ");";
48 fun ml_type (toks1, []) = ML_Lex.read "val _ = NONE : (" @ toks1 @ ML_Lex.read ") option;"
49 | ml_type (toks1, toks2) =
50 ML_Lex.read "val _ = [NONE : (" @ toks1 @ ML_Lex.read ") option, NONE : (" @
51 toks2 @ ML_Lex.read ") option];";
53 fun ml_exception (toks1, []) = ML_Lex.read "fn _ => (" @ toks1 @ ML_Lex.read " : exn);"
54 | ml_exception (toks1, toks2) =
55 ML_Lex.read "fn _ => (" @ toks1 @ ML_Lex.read " : " @ toks2 @ ML_Lex.read " -> exn);";
57 fun ml_structure (toks, _) =
58 ML_Lex.read "functor XXX() = struct structure XX = " @ toks @ ML_Lex.read " end;";
60 fun ml_functor (Antiquote.Text tok :: _, _) =
61 ML_Lex.read "ML_Env.check_functor " @
62 ML_Lex.read (ML_Syntax.print_string (ML_Lex.content_of tok))
63 | ml_functor _ = raise Fail "Bad ML functor specification";
66 ML_Lex.kind_of #> (fn kind => kind = ML_Lex.Ident orelse kind = ML_Lex.Long_Ident);
69 (case filter is_name (ML_Lex.tokenize txt) of
70 toks as [_] => ML_Lex.flatten toks
71 | _ => error ("Single ML name expected in input: " ^ quote txt));
74 (Input.source_content source, ML_Lex.read_source false source);
76 fun index_ml name kind ml = Thy_Output.antiquotation name
77 (Scan.lift (Args.text_source_position -- Scan.option (Args.colon |-- Args.text_source_position)))
78 (fn {context = ctxt, ...} => fn (source1, opt_source2) =>
80 val (txt1, toks1) = prep_ml source1;
83 SOME source => prep_ml source
87 if txt2 = "" then txt1
88 else if kind = "type" then txt1 ^ " = " ^ txt2
89 else if kind = "exception" then txt1 ^ " of " ^ txt2
90 else if Symbol_Pos.is_identifier (Long_Name.base_name (ml_name txt1))
91 then txt1 ^ ": " ^ txt2
92 else txt1 ^ " : " ^ txt2;
93 val txt' = if kind = "" then txt else kind ^ " " ^ txt;
95 val pos = Input.pos_of source1;
97 ML_Context.eval_in (SOME ctxt) ML_Compiler.flags pos (ml (toks1, toks2))
98 handle ERROR msg => error (msg ^ Position.here pos);
99 val kind' = if kind = "" then "ML" else "ML " ^ kind;
101 "\\indexdef{}{" ^ kind' ^ "}{" ^ clean_string (ml_name txt1) ^ "}" ^
102 (Thy_Output.verbatim_text ctxt txt')
109 (index_ml @{binding index_ML} "" ml_val #>
110 index_ml @{binding index_ML_op} "infix" ml_op #>
111 index_ml @{binding index_ML_type} "type" ml_type #>
112 index_ml @{binding index_ML_exception} "exception" ml_exception #>
113 index_ml @{binding index_ML_structure} "structure" ml_structure #>
114 index_ml @{binding index_ML_functor} "functor" ml_functor);
122 Theory.setup (Thy_Output.antiquotation @{binding named_thms}
123 (Scan.repeat (Attrib.thm -- Scan.lift (Args.parens Args.name)))
124 (fn {context = ctxt, ...} =>
125 map (apfst (Thy_Output.pretty_thm ctxt))
126 #> (if Config.get ctxt Thy_Output.quotes then map (apfst Pretty.quote) else I)
127 #> (if Config.get ctxt Thy_Output.display
130 Output.output (Pretty.string_of (Pretty.indent (Config.get ctxt Thy_Output.indent) p)) ^
131 "\\rulename{" ^ Output.output (Pretty.str_of (Thy_Output.pretty_text ctxt name)) ^ "}")
132 #> space_implode "\\par\\smallskip%\n"
133 #> enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}"
136 Output.output (Pretty.str_of p) ^
137 "\\rulename{" ^ Output.output (Pretty.str_of (Thy_Output.pretty_text ctxt name)) ^ "}")
138 #> space_implode "\\par\\smallskip%\n"
139 #> enclose "\\isa{" "}")));
145 Theory.setup (Thy_Output.antiquotation @{binding thy_file} (Scan.lift Args.name)
146 (fn {context = ctxt, ...} =>
147 fn name => (Resources.check_thy Path.current name; Thy_Output.output ctxt [Pretty.str name])));
150 (* Isabelle/jEdit elements *)
154 fun parse_named a (XML.Elem ((b, props), _)) =
155 (case Properties.get props "NAME" of
156 SOME name => if a = b then [name] else []
158 | parse_named _ _ = [];
160 val isabelle_jedit_actions =
161 (case XML.parse (File.read @{path "~~/src/Tools/jEdit/src/actions.xml"}) of
162 XML.Elem (("ACTIONS", _), body) => maps (parse_named "ACTION") body
165 val isabelle_jedit_dockables =
166 (case XML.parse (File.read @{path "~~/src/Tools/jEdit/src/dockables.xml"}) of
167 XML.Elem (("DOCKABLES", _), body) => maps (parse_named "DOCKABLE") body
172 (case Isabelle_System.bash_output
173 "unzip -p \"$JEDIT_HOME/dist/jedit.jar\" org/gjt/sp/jedit/actions.xml" of
175 (case XML.parse txt of
176 XML.Elem (("ACTIONS", _), body) => maps (parse_named "ACTION") body
178 | (_, rc) => error ("Cannot unzip jedit.jar\nreturn code = " ^ string_of_int rc)));
183 member (op =) isabelle_jedit_actions a orelse
184 member (op =) isabelle_jedit_dockables a orelse
185 member (op =) (Lazy.force jedit_actions) a;
190 (* Isabelle/Isar entities (with index) *)
194 fun no_check _ _ = true;
196 fun is_keyword ctxt (name, _) =
197 Keyword.is_keyword (Thy_Header.get_keywords' ctxt) name;
199 fun check_command ctxt (name, pos) =
201 val thy = Proof_Context.theory_of ctxt;
202 val keywords = Thy_Header.get_keywords thy;
204 Keyword.is_command keywords name andalso
207 Token.explode keywords Position.none name
208 |> maps (Outer_Syntax.command_reports thy)
210 val _ = Context_Position.reports ctxt (map (pair pos) markup);
214 fun check_system_option ctxt (name, pos) =
215 (Context_Position.report ctxt pos (Options.default_markup (name, pos)); true)
216 handle ERROR _ => false;
218 fun check_tool ctxt (name, pos) =
221 let val path = Path.append dir (Path.basic name)
222 in if File.exists path then SOME path else NONE end;
224 (case get_first tool (Path.split (getenv "ISABELLE_TOOLS")) of
226 | SOME path => (Context_Position.report ctxt pos (Markup.path (Path.implode path)); true))
229 val arg = enclose "{" "}" o clean_string;
231 fun entity check markup binding index =
232 Thy_Output.antiquotation
233 (binding |> Binding.map_name (fn name => name ^
234 (case index of NONE => "" | SOME true => "_def" | SOME false => "_ref")))
235 (Scan.lift (Scan.optional (Args.parens Args.name) "" -- Parse.position Args.name))
236 (fn {context = ctxt, ...} => fn (logic, (name, pos)) =>
238 val kind = translate (fn "_" => " " | c => c) (Binding.name_of binding);
240 "{" ^ Long_Name.append kind (Long_Name.append logic (clean_name name)) ^ "}";
242 enclose ("\\hyperlink" ^ hyper_name ^ "{") "}" #>
243 index = SOME true ? enclose ("\\hypertarget" ^ hyper_name ^ "{") "}";
248 "\\index" ^ (if is_def then "def" else "ref") ^ arg logic ^ arg kind ^ arg name);
250 if check ctxt (name, pos) then
253 |> (if markup = "" then I else enclose ("\\" ^ markup ^ "{") "}")
254 |> (if Config.get ctxt Thy_Output.quotes then quote else I)
255 |> (if Config.get ctxt Thy_Output.display
256 then enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}"
257 else hyper o enclose "\\mbox{\\isa{" "}}"))
258 else error ("Bad " ^ kind ^ " " ^ quote name ^ Position.here pos)
261 fun entity_antiqs check markup kind =
262 entity check markup kind NONE #>
263 entity check markup kind (SOME true) #>
264 entity check markup kind (SOME false);
270 (entity_antiqs no_check "" @{binding syntax} #>
271 entity_antiqs check_command "isacommand" @{binding command} #>
272 entity_antiqs is_keyword "isakeyword" @{binding keyword} #>
273 entity_antiqs is_keyword "isakeyword" @{binding element} #>
274 entity_antiqs (can o Method.check_name) "" @{binding method} #>
275 entity_antiqs (can o Attrib.check_name) "" @{binding attribute} #>
276 entity_antiqs no_check "" @{binding fact} #>
277 entity_antiqs no_check "" @{binding variable} #>
278 entity_antiqs no_check "" @{binding case} #>
279 entity_antiqs (can o Thy_Output.check_command) "" @{binding antiquotation} #>
280 entity_antiqs (can o Thy_Output.check_option) "" @{binding antiquotation_option} #>
281 entity_antiqs no_check "isasystem" @{binding setting} #>
282 entity_antiqs check_system_option "isasystem" @{binding system_option} #>
283 entity_antiqs no_check "" @{binding inference} #>
284 entity_antiqs no_check "isasystem" @{binding executable} #>
285 entity_antiqs check_tool "isatool" @{binding tool} #>
286 entity_antiqs (can o ML_Context.check_antiquotation) "" @{binding ML_antiquotation} #>
287 entity_antiqs (K (is_action o #1)) "isasystem" @{binding action});