| author | traytel | 
| Tue, 22 Mar 2016 07:18:36 +0100 | |
| changeset 62684 | cb20e8828196 | 
| parent 62169 | a6047f511de7 | 
| child 62913 | 13252110a6fe | 
| permissions | -rw-r--r-- | 
| 5831 | 1 | (* Title: Pure/Isar/isar_cmd.ML | 
| 2 | Author: Markus Wenzel, TU Muenchen | |
| 3 | ||
| 30805 | 4 | Miscellaneous Isar commands. | 
| 5831 | 5 | *) | 
| 6 | ||
| 7 | signature ISAR_CMD = | |
| 8 | sig | |
| 59930 | 9 | val setup: Input.source -> theory -> theory | 
| 59064 | 10 | val local_setup: Input.source -> Proof.context -> Proof.context | 
| 11 | val parse_ast_translation: Input.source -> theory -> theory | |
| 12 | val parse_translation: Input.source -> theory -> theory | |
| 13 | val print_translation: Input.source -> theory -> theory | |
| 14 | val typed_print_translation: Input.source -> theory -> theory | |
| 15 | val print_ast_translation: Input.source -> theory -> theory | |
| 42204 | 16 | val translations: (xstring * string) Syntax.trrule list -> theory -> theory | 
| 17 | val no_translations: (xstring * string) Syntax.trrule list -> theory -> theory | |
| 59064 | 18 | val oracle: bstring * Position.range -> Input.source -> theory -> theory | 
| 19 |   val declaration: {syntax: bool, pervasive: bool} -> Input.source -> local_theory -> local_theory
 | |
| 20 | val simproc_setup: string * Position.T -> string list -> Input.source -> | |
| 42464 | 21 | string list -> local_theory -> local_theory | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 22 | val qed: Method.text_range option -> Toplevel.transition -> Toplevel.transition | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 23 | val terminal_proof: Method.text_range * Method.text_range option -> | 
| 21350 | 24 | Toplevel.transition -> Toplevel.transition | 
| 25 | val default_proof: Toplevel.transition -> Toplevel.transition | |
| 26 | val immediate_proof: Toplevel.transition -> Toplevel.transition | |
| 27 | val done_proof: Toplevel.transition -> Toplevel.transition | |
| 28 | val skip_proof: Toplevel.transition -> Toplevel.transition | |
| 59064 | 29 | val ml_diag: bool -> Input.source -> Toplevel.transition -> Toplevel.transition | 
| 48776 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 30 | val diag_state: Proof.context -> Toplevel.state | 
| 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 31 |   val diag_goal: Proof.context -> {context: Proof.context, facts: thm list, goal: thm}
 | 
| 57605 | 32 | val pretty_theorems: bool -> Toplevel.state -> Pretty.T list | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
57934diff
changeset | 33 | val print_stmts: string list * (Facts.ref * Token.src list) list | 
| 19268 | 34 | -> Toplevel.transition -> Toplevel.transition | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
57934diff
changeset | 35 | val print_thms: string list * (Facts.ref * Token.src list) list | 
| 10581 | 36 | -> Toplevel.transition -> Toplevel.transition | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
57934diff
changeset | 37 | val print_prfs: bool -> string list * (Facts.ref * Token.src list) list option | 
| 11524 
197f2e14a714
Added functions for printing primitive proof terms.
 berghofe parents: 
11017diff
changeset | 38 | -> Toplevel.transition -> Toplevel.transition | 
| 12876 
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
 wenzelm parents: 
12758diff
changeset | 39 | val print_prop: (string list * string) -> Toplevel.transition -> Toplevel.transition | 
| 
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
 wenzelm parents: 
12758diff
changeset | 40 | val print_term: (string list * string) -> Toplevel.transition -> Toplevel.transition | 
| 48792 | 41 | val print_type: (string list * (string * string option)) -> | 
| 42 | Toplevel.transition -> Toplevel.transition | |
| 5831 | 43 | end; | 
| 44 | ||
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37198diff
changeset | 45 | structure Isar_Cmd: ISAR_CMD = | 
| 5831 | 46 | struct | 
| 47 | ||
| 48 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 49 | (** theory declarations **) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 50 | |
| 30461 | 51 | (* generic setup *) | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 52 | |
| 59930 | 53 | fun setup source = | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 54 | ML_Lex.read_source false source | 
| 59064 | 55 | |> ML_Context.expression (Input.range_of source) "setup" "theory -> theory" | 
| 58991 
92b6f4e68c5a
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58979diff
changeset | 56 | "Context.map_theory setup" | 
| 26435 | 57 | |> Context.theory_map; | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 58 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 59 | fun local_setup source = | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 60 | ML_Lex.read_source false source | 
| 59064 | 61 | |> ML_Context.expression (Input.range_of source) "local_setup" "local_theory -> local_theory" | 
| 58991 
92b6f4e68c5a
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58979diff
changeset | 62 | "Context.map_proof local_setup" | 
| 30461 | 63 | |> Context.proof_map; | 
| 64 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 65 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 66 | (* translation functions *) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 67 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 68 | fun parse_ast_translation source = | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 69 | ML_Lex.read_source false source | 
| 59064 | 70 | |> ML_Context.expression (Input.range_of source) "parse_ast_translation" | 
| 58991 
92b6f4e68c5a
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58979diff
changeset | 71 | "(string * (Proof.context -> Ast.ast list -> Ast.ast)) list" | 
| 52143 | 72 | "Context.map_theory (Sign.parse_ast_translation parse_ast_translation)" | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 73 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 74 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 75 | fun parse_translation source = | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 76 | ML_Lex.read_source false source | 
| 59064 | 77 | |> ML_Context.expression (Input.range_of source) "parse_translation" | 
| 58991 
92b6f4e68c5a
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58979diff
changeset | 78 | "(string * (Proof.context -> term list -> term)) list" | 
| 52143 | 79 | "Context.map_theory (Sign.parse_translation parse_translation)" | 
| 80 | |> Context.theory_map; | |
| 81 | ||
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 82 | fun print_translation source = | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 83 | ML_Lex.read_source false source | 
| 59064 | 84 | |> ML_Context.expression (Input.range_of source) "print_translation" | 
| 58991 
92b6f4e68c5a
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58979diff
changeset | 85 | "(string * (Proof.context -> term list -> term)) list" | 
| 52143 | 86 | "Context.map_theory (Sign.print_translation print_translation)" | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 87 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 88 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 89 | fun typed_print_translation source = | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 90 | ML_Lex.read_source false source | 
| 59064 | 91 | |> ML_Context.expression (Input.range_of source) "typed_print_translation" | 
| 58991 
92b6f4e68c5a
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58979diff
changeset | 92 | "(string * (Proof.context -> typ -> term list -> term)) list" | 
| 52143 | 93 | "Context.map_theory (Sign.typed_print_translation typed_print_translation)" | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 94 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 95 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 96 | fun print_ast_translation source = | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 97 | ML_Lex.read_source false source | 
| 59064 | 98 | |> ML_Context.expression (Input.range_of source) "print_ast_translation" | 
| 58991 
92b6f4e68c5a
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58979diff
changeset | 99 | "(string * (Proof.context -> Ast.ast list -> Ast.ast)) list" | 
| 52143 | 100 | "Context.map_theory (Sign.print_ast_translation print_ast_translation)" | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 101 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 102 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 103 | |
| 42204 | 104 | (* translation rules *) | 
| 105 | ||
| 106 | fun read_trrules thy raw_rules = | |
| 107 | let | |
| 42360 | 108 | val ctxt = Proof_Context.init_global thy; | 
| 56006 | 109 | val read_root = | 
| 110 |       #1 o dest_Type o Proof_Context.read_type_name {proper = true, strict = false} ctxt;
 | |
| 42204 | 111 | in | 
| 56006 | 112 | raw_rules | 
| 113 | |> map (Syntax.map_trrule (fn (r, s) => Syntax_Phases.parse_ast_pattern ctxt (read_root r, s))) | |
| 42204 | 114 | end; | 
| 115 | ||
| 116 | fun translations args thy = Sign.add_trrules (read_trrules thy args) thy; | |
| 117 | fun no_translations args thy = Sign.del_trrules (read_trrules thy args) thy; | |
| 118 | ||
| 119 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 120 | (* oracles *) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 121 | |
| 59029 
c907cbe36713
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58991diff
changeset | 122 | fun oracle (name, range) source = | 
| 27871 
4ef76f8788ad
oracle, header/local_theory/proof_markup: pass SymbolPos.text;
 wenzelm parents: 
27853diff
changeset | 123 | let | 
| 59064 | 124 | val body_range = Input.range_of source; | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 125 | val body = ML_Lex.read_source false source; | 
| 59029 
c907cbe36713
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58991diff
changeset | 126 | |
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 127 | val ants = | 
| 59067 | 128 | ML_Lex.read | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 129 |        ("local\n\
 | 
| 59029 
c907cbe36713
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58991diff
changeset | 130 | \ val binding = " ^ ML_Syntax.make_binding (name, #1 range) ^ ";\n\ | 
| 59067 | 131 | \ val") @ ML_Lex.read_set_range body_range "oracle" @ ML_Lex.read "=" @ body @ | 
| 132 |         ML_Lex.read (";\nin\n\
 | |
| 133 | \ val") @ ML_Lex.read_set_range range name @ ML_Lex.read "=\ | |
| 59029 
c907cbe36713
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58991diff
changeset | 134 | \ snd (Context.>>> (Context.map_theory_result (Thm.add_oracle (binding, oracle))));\n\ | 
| 
c907cbe36713
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58991diff
changeset | 135 | \end;\n"; | 
| 56304 
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
 wenzelm parents: 
56278diff
changeset | 136 | in | 
| 
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
 wenzelm parents: 
56278diff
changeset | 137 | Context.theory_map | 
| 59029 
c907cbe36713
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58991diff
changeset | 138 | (ML_Context.exec (fn () => ML_Context.eval ML_Compiler.flags (#1 body_range) ants)) | 
| 56304 
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
 wenzelm parents: 
56278diff
changeset | 139 | end; | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 140 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 141 | |
| 22087 | 142 | (* declarations *) | 
| 143 | ||
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 144 | fun declaration {syntax, pervasive} source =
 | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 145 | ML_Lex.read_source false source | 
| 59064 | 146 | |> ML_Context.expression (Input.range_of source) "declaration" "Morphism.declaration" | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
44338diff
changeset | 147 |     ("Context.map_proof (Local_Theory.declaration {syntax = " ^ Bool.toString syntax ^ ", \
 | 
| 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
44338diff
changeset | 148 | \pervasive = " ^ Bool.toString pervasive ^ "} declaration)") | 
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26336diff
changeset | 149 | |> Context.proof_map; | 
| 22087 | 150 | |
| 151 | ||
| 22202 | 152 | (* simprocs *) | 
| 153 | ||
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 154 | fun simproc_setup name lhss source identifier = | 
| 56278 
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
 wenzelm parents: 
56275diff
changeset | 155 | ML_Lex.read_source false source | 
| 59064 | 156 | |> ML_Context.expression (Input.range_of source) "proc" | 
| 58991 
92b6f4e68c5a
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58979diff
changeset | 157 | "Morphism.morphism -> Proof.context -> cterm -> thm option" | 
| 61144 | 158 |     ("Context.map_proof (Simplifier.define_simproc_cmd " ^
 | 
| 159 | ML_Syntax.atomic (ML_Syntax.make_binding name) ^ | |
| 160 |       "{lhss = " ^ ML_Syntax.print_strings lhss ^ ", proc = proc, \
 | |
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
37146diff
changeset | 161 | \identifier = Library.maps ML_Context.thms " ^ ML_Syntax.print_strings identifier ^ "})") | 
| 22202 | 162 | |> Context.proof_map; | 
| 163 | ||
| 164 | ||
| 21350 | 165 | (* local endings *) | 
| 166 | ||
| 29383 | 167 | fun local_qed m = Toplevel.proof (Proof.local_qed (m, true)); | 
| 60403 | 168 | val local_terminal_proof = Toplevel.proof o Proof.local_future_terminal_proof; | 
| 29383 | 169 | val local_default_proof = Toplevel.proof Proof.local_default_proof; | 
| 170 | val local_immediate_proof = Toplevel.proof Proof.local_immediate_proof; | |
| 171 | val local_done_proof = Toplevel.proof Proof.local_done_proof; | |
| 172 | val local_skip_proof = Toplevel.proof' Proof.local_skip_proof; | |
| 21350 | 173 | |
| 174 | ||
| 175 | (* global endings *) | |
| 176 | ||
| 177 | fun global_qed m = Toplevel.end_proof (K (Proof.global_qed (m, true))); | |
| 60403 | 178 | val global_terminal_proof = Toplevel.end_proof o K o Proof.global_future_terminal_proof; | 
| 21350 | 179 | val global_default_proof = Toplevel.end_proof (K Proof.global_default_proof); | 
| 180 | val global_immediate_proof = Toplevel.end_proof (K Proof.global_immediate_proof); | |
| 181 | val global_skip_proof = Toplevel.end_proof Proof.global_skip_proof; | |
| 182 | val global_done_proof = Toplevel.end_proof (K Proof.global_done_proof); | |
| 183 | ||
| 184 | ||
| 185 | (* common endings *) | |
| 186 | ||
| 60693 
044f8bb3dd30
more accurate skip_proofs nesting, e.g. relevant for 'subgoal' command;
 wenzelm parents: 
60405diff
changeset | 187 | fun qed m = local_qed m o global_qed m; | 
| 21350 | 188 | fun terminal_proof m = local_terminal_proof m o global_terminal_proof m; | 
| 189 | val default_proof = local_default_proof o global_default_proof; | |
| 190 | val immediate_proof = local_immediate_proof o global_immediate_proof; | |
| 191 | val done_proof = local_done_proof o global_done_proof; | |
| 192 | val skip_proof = local_skip_proof o global_skip_proof; | |
| 193 | ||
| 194 | ||
| 26489 | 195 | (* diagnostic ML evaluation *) | 
| 5831 | 196 | |
| 37305 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 197 | structure Diag_State = Proof_Data | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 198 | ( | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 199 | type T = Toplevel.state; | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 200 | fun init _ = Toplevel.toplevel; | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 201 | ); | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 202 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 203 | fun ml_diag verbose source = Toplevel.keep (fn state => | 
| 56304 
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
 wenzelm parents: 
56278diff
changeset | 204 | let | 
| 
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
 wenzelm parents: 
56278diff
changeset | 205 | val opt_ctxt = | 
| 
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
 wenzelm parents: 
56278diff
changeset | 206 | try Toplevel.generic_theory_of state | 
| 
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
 wenzelm parents: 
56278diff
changeset | 207 | |> Option.map (Context.proof_of #> Diag_State.put state); | 
| 
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
 wenzelm parents: 
56278diff
changeset | 208 | val flags = ML_Compiler.verbose verbose ML_Compiler.flags; | 
| 
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
 wenzelm parents: 
56278diff
changeset | 209 | in ML_Context.eval_source_in opt_ctxt flags source end); | 
| 37305 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 210 | |
| 48776 
37cd53e69840
faster compilation of ML with antiquotations: static ML_context is bound once in auxiliary structure Isabelle;
 wenzelm parents: 
47815diff
changeset | 211 | val diag_state = Diag_State.get; | 
| 60094 | 212 | val diag_goal = Proof.goal o Toplevel.proof_of o diag_state; | 
| 37305 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 213 | |
| 53171 | 214 | val _ = Theory.setup | 
| 56204 | 215 |   (ML_Antiquotation.value (Binding.qualify true "Isar" @{binding state})
 | 
| 53171 | 216 | (Scan.succeed "Isar_Cmd.diag_state ML_context") #> | 
| 56204 | 217 |    ML_Antiquotation.value (Binding.qualify true "Isar" @{binding goal})
 | 
| 53171 | 218 | (Scan.succeed "Isar_Cmd.diag_goal ML_context")); | 
| 5831 | 219 | |
| 220 | ||
| 56868 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 221 | (* theorems of theory or proof context *) | 
| 17066 | 222 | |
| 56868 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 223 | fun pretty_theorems verbose st = | 
| 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 224 | if Toplevel.is_proof st then | 
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59210diff
changeset | 225 | Proof_Context.pretty_local_facts verbose (Toplevel.context_of st) | 
| 56868 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 226 | else | 
| 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 227 | let | 
| 61266 | 228 | val ctxt = Toplevel.context_of st; | 
| 56868 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 229 | val prev_thys = | 
| 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 230 | (case Toplevel.previous_context_of st of | 
| 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 231 | SOME prev => [Proof_Context.theory_of prev] | 
| 61266 | 232 | | NONE => Theory.parents_of (Proof_Context.theory_of ctxt)); | 
| 233 | in Proof_Display.pretty_theorems_diff verbose prev_thys ctxt end; | |
| 9513 | 234 | |
| 12060 | 235 | |
| 19268 | 236 | (* print theorems, terms, types etc. *) | 
| 237 | ||
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 238 | local | 
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 239 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 240 | fun string_of_stmts ctxt args = | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 241 | Attrib.eval_thms ctxt args | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 242 | |> map (Element.pretty_statement ctxt Thm.theoremK) | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 243 | |> Pretty.chunks2 |> Pretty.string_of; | 
| 5880 | 244 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 245 | fun string_of_thms ctxt args = | 
| 51583 | 246 |   Pretty.string_of (Proof_Context.pretty_fact ctxt ("", Attrib.eval_thms ctxt args));
 | 
| 5895 | 247 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 248 | fun string_of_prfs full state arg = | 
| 32859 
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
 wenzelm parents: 
32804diff
changeset | 249 | Pretty.string_of | 
| 
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
 wenzelm parents: 
32804diff
changeset | 250 | (case arg of | 
| 15531 | 251 | NONE => | 
| 12125 
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
 berghofe parents: 
12069diff
changeset | 252 | let | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 253 |           val {context = ctxt, goal = thm} = Proof.simple_goal (Toplevel.proof_of state);
 | 
| 42360 | 254 | val thy = Proof_Context.theory_of ctxt; | 
| 28814 | 255 | val prf = Thm.proof_of thm; | 
| 17066 | 256 | val prop = Thm.full_prop_of thm; | 
| 32859 
204f749f35a9
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;
 wenzelm parents: 
32804diff
changeset | 257 | val prf' = Proofterm.rewrite_proof_notypes ([], []) prf; | 
| 12125 
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
 berghofe parents: 
12069diff
changeset | 258 | in | 
| 33388 | 259 | Proof_Syntax.pretty_proof ctxt | 
| 17066 | 260 | (if full then Reconstruct.reconstruct_proof thy prop prf' else prf') | 
| 12125 
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
 berghofe parents: 
12069diff
changeset | 261 | end | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 262 | | SOME srcs => | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 263 | let val ctxt = Toplevel.context_of state | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 264 | in map (Proof_Syntax.pretty_proof_of ctxt full) (Attrib.eval_thms ctxt srcs) end | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 265 | |> Pretty.chunks); | 
| 11524 
197f2e14a714
Added functions for printing primitive proof terms.
 berghofe parents: 
11017diff
changeset | 266 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 267 | fun string_of_prop ctxt s = | 
| 5831 | 268 | let | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24314diff
changeset | 269 | val prop = Syntax.read_prop ctxt s; | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 270 | val ctxt' = Variable.auto_fixes prop ctxt; | 
| 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 271 | in Pretty.string_of (Pretty.quote (Syntax.pretty_term ctxt' prop)) end; | 
| 5831 | 272 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 273 | fun string_of_term ctxt s = | 
| 5831 | 274 | let | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24314diff
changeset | 275 | val t = Syntax.read_term ctxt s; | 
| 5831 | 276 | val T = Term.type_of t; | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 277 | val ctxt' = Variable.auto_fixes t ctxt; | 
| 5831 | 278 | in | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 279 | Pretty.string_of | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 280 | (Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t), Pretty.fbrk, | 
| 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 281 | Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' T)]) | 
| 9128 | 282 | end; | 
| 5831 | 283 | |
| 48792 | 284 | fun string_of_type ctxt (s, NONE) = | 
| 285 | let val T = Syntax.read_typ ctxt s | |
| 286 | in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt T)) end | |
| 287 | | string_of_type ctxt (s1, SOME s2) = | |
| 288 | let | |
| 289 | val ctxt' = Config.put show_sorts true ctxt; | |
| 290 | val raw_T = Syntax.parse_typ ctxt' s1; | |
| 291 | val S = Syntax.read_sort ctxt' s2; | |
| 292 | val T = | |
| 293 | Syntax.check_term ctxt' | |
| 294 | (Logic.mk_type raw_T |> Type.constraint (Term.itselfT (Type_Infer.anyT S))) | |
| 295 | |> Logic.dest_type; | |
| 296 | in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt' T)) end; | |
| 9128 | 297 | |
| 23935 | 298 | fun print_item string_of (modes, arg) = Toplevel.keep (fn state => | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 299 | Print_Mode.with_modes modes (fn () => writeln (string_of state arg)) ()); | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 300 | |
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 301 | in | 
| 9128 | 302 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 303 | val print_stmts = print_item (string_of_stmts o Toplevel.context_of); | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 304 | val print_thms = print_item (string_of_thms o Toplevel.context_of); | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 305 | val print_prfs = print_item o string_of_prfs; | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 306 | val print_prop = print_item (string_of_prop o Toplevel.context_of); | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 307 | val print_term = print_item (string_of_term o Toplevel.context_of); | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 308 | val print_type = print_item (string_of_type o Toplevel.context_of); | 
| 5831 | 309 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 310 | end; | 
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 311 | |
| 5831 | 312 | end; |