| author | wenzelm | 
| Thu, 21 Dec 2023 21:03:02 +0100 | |
| changeset 79329 | 992c494bda25 | 
| parent 78797 | fc598652fb8a | 
| child 80632 | 3a196e63a80d | 
| 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
 | |
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 20 | 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 | 21 | val terminal_proof: Method.text_range * Method.text_range option -> | 
| 21350 | 22 | Toplevel.transition -> Toplevel.transition | 
| 23 | val default_proof: Toplevel.transition -> Toplevel.transition | |
| 24 | val immediate_proof: Toplevel.transition -> Toplevel.transition | |
| 25 | val done_proof: Toplevel.transition -> Toplevel.transition | |
| 26 | val skip_proof: Toplevel.transition -> Toplevel.transition | |
| 59064 | 27 | 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 | 28 | 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 | 29 |   val diag_goal: Proof.context -> {context: Proof.context, facts: thm list, goal: thm}
 | 
| 57605 | 30 | val pretty_theorems: bool -> Toplevel.state -> Pretty.T list | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
57934diff
changeset | 31 | val print_stmts: string list * (Facts.ref * Token.src list) list | 
| 19268 | 32 | -> Toplevel.transition -> Toplevel.transition | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
57934diff
changeset | 33 | val print_thms: string list * (Facts.ref * Token.src list) list | 
| 10581 | 34 | -> Toplevel.transition -> Toplevel.transition | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
57934diff
changeset | 35 | 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 | 36 | -> Toplevel.transition -> Toplevel.transition | 
| 12876 
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
 wenzelm parents: 
12758diff
changeset | 37 | 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 | 38 | val print_term: (string list * string) -> Toplevel.transition -> Toplevel.transition | 
| 48792 | 39 | val print_type: (string list * (string * string option)) -> | 
| 40 | Toplevel.transition -> Toplevel.transition | |
| 5831 | 41 | end; | 
| 42 | ||
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37198diff
changeset | 43 | structure Isar_Cmd: ISAR_CMD = | 
| 5831 | 44 | struct | 
| 45 | ||
| 46 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 47 | (** theory declarations **) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 48 | |
| 30461 | 49 | (* generic setup *) | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 50 | |
| 59930 | 51 | fun setup source = | 
| 69216 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 52 | ML_Context.expression (Input.pos_of source) | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 53 |     (ML_Lex.read "Theory.setup (" @ ML_Lex.read_source source @ ML_Lex.read ")")
 | 
| 26435 | 54 | |> Context.theory_map; | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 55 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 56 | fun local_setup source = | 
| 69216 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 57 | ML_Context.expression (Input.pos_of source) | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 58 |     (ML_Lex.read "Theory.local_setup (" @ ML_Lex.read_source source @ ML_Lex.read ")")
 | 
| 30461 | 59 | |> Context.proof_map; | 
| 60 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 61 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 62 | (* translation functions *) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 63 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 64 | fun parse_ast_translation source = | 
| 69216 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 65 | ML_Context.expression (Input.pos_of source) | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 66 |     (ML_Lex.read "Theory.setup (Sign.parse_ast_translation (" @
 | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 67 | ML_Lex.read_source source @ ML_Lex.read "))") | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 68 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 69 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 70 | fun parse_translation source = | 
| 69216 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 71 | ML_Context.expression (Input.pos_of source) | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 72 |     (ML_Lex.read "Theory.setup (Sign.parse_translation (" @
 | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 73 | ML_Lex.read_source source @ ML_Lex.read "))") | 
| 52143 | 74 | |> Context.theory_map; | 
| 75 | ||
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 76 | fun print_translation source = | 
| 69216 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 77 | ML_Context.expression (Input.pos_of source) | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 78 |     (ML_Lex.read "Theory.setup (Sign.print_translation (" @
 | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 79 | ML_Lex.read_source source @ ML_Lex.read "))") | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 80 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 81 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 82 | fun typed_print_translation source = | 
| 69216 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 83 | ML_Context.expression (Input.pos_of source) | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 84 |     (ML_Lex.read "Theory.setup (Sign.typed_print_translation (" @
 | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 85 | ML_Lex.read_source source @ ML_Lex.read "))") | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 86 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 87 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 88 | fun print_ast_translation source = | 
| 69216 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 89 | ML_Context.expression (Input.pos_of source) | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 90 |     (ML_Lex.read "Theory.setup (Sign.print_ast_translation (" @
 | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 91 | ML_Lex.read_source source @ ML_Lex.read "))") | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 92 | |> Context.theory_map; | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 93 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 94 | |
| 42204 | 95 | (* translation rules *) | 
| 96 | ||
| 97 | fun read_trrules thy raw_rules = | |
| 98 | let | |
| 42360 | 99 | val ctxt = Proof_Context.init_global thy; | 
| 56006 | 100 | val read_root = | 
| 101 |       #1 o dest_Type o Proof_Context.read_type_name {proper = true, strict = false} ctxt;
 | |
| 42204 | 102 | in | 
| 56006 | 103 | raw_rules | 
| 104 | |> map (Syntax.map_trrule (fn (r, s) => Syntax_Phases.parse_ast_pattern ctxt (read_root r, s))) | |
| 42204 | 105 | end; | 
| 106 | ||
| 107 | fun translations args thy = Sign.add_trrules (read_trrules thy args) thy; | |
| 108 | fun no_translations args thy = Sign.del_trrules (read_trrules thy args) thy; | |
| 109 | ||
| 110 | ||
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 111 | (* oracles *) | 
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 112 | |
| 59029 
c907cbe36713
more careful ML source positions, for improved PIDE markup;
 wenzelm parents: 
58991diff
changeset | 113 | fun oracle (name, range) source = | 
| 69263 | 114 | ML_Context.expression (Input.pos_of source) | 
| 115 | (ML_Lex.read "val " @ | |
| 73549 
a2c589d5e1e4
clarified signature: more detailed token positions for antiquotations;
 wenzelm parents: 
70839diff
changeset | 116 | ML_Lex.read_range range name @ | 
| 69263 | 117 | ML_Lex.read | 
| 78795 
f7e972d567f3
clarified signature: more concise variations on implicit theory setup;
 wenzelm parents: 
78792diff
changeset | 118 |       (" = snd (Theory.setup_result (Thm.add_oracle (" ^
 | 
| 69263 | 119 | ML_Syntax.make_binding (name, #1 range) ^ ", ") @ | 
| 78795 
f7e972d567f3
clarified signature: more concise variations on implicit theory setup;
 wenzelm parents: 
78792diff
changeset | 120 | ML_Lex.read_source source @ ML_Lex.read ")))") | 
| 69263 | 121 | |> Context.theory_map; | 
| 22116 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 122 | |
| 
6917be2e647d
added various ML setup functions (from sign.ML, pure_thy.ML);
 wenzelm parents: 
22087diff
changeset | 123 | |
| 22087 | 124 | (* declarations *) | 
| 125 | ||
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 126 | fun declaration {syntax, pervasive} source =
 | 
| 69216 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 127 | ML_Context.expression (Input.pos_of source) | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 128 | (ML_Lex.read | 
| 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 129 |       ("Theory.local_setup (Local_Theory.declaration {syntax = " ^
 | 
| 78095 | 130 | Bool.toString syntax ^ ", pervasive = " ^ Bool.toString pervasive ^ | 
| 131 |         ", pos = " ^ ML_Syntax.print_position (Position.thread_data ()) ^ "} (") @
 | |
| 69216 
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
 wenzelm parents: 
69187diff
changeset | 132 | ML_Lex.read_source source @ ML_Lex.read "))") | 
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26336diff
changeset | 133 | |> Context.proof_map; | 
| 22087 | 134 | |
| 135 | ||
| 21350 | 136 | (* local endings *) | 
| 137 | ||
| 29383 | 138 | fun local_qed m = Toplevel.proof (Proof.local_qed (m, true)); | 
| 60403 | 139 | val local_terminal_proof = Toplevel.proof o Proof.local_future_terminal_proof; | 
| 29383 | 140 | val local_default_proof = Toplevel.proof Proof.local_default_proof; | 
| 141 | val local_immediate_proof = Toplevel.proof Proof.local_immediate_proof; | |
| 142 | val local_done_proof = Toplevel.proof Proof.local_done_proof; | |
| 143 | val local_skip_proof = Toplevel.proof' Proof.local_skip_proof; | |
| 21350 | 144 | |
| 145 | ||
| 146 | (* global endings *) | |
| 147 | ||
| 148 | fun global_qed m = Toplevel.end_proof (K (Proof.global_qed (m, true))); | |
| 60403 | 149 | val global_terminal_proof = Toplevel.end_proof o K o Proof.global_future_terminal_proof; | 
| 21350 | 150 | val global_default_proof = Toplevel.end_proof (K Proof.global_default_proof); | 
| 151 | val global_immediate_proof = Toplevel.end_proof (K Proof.global_immediate_proof); | |
| 152 | val global_skip_proof = Toplevel.end_proof Proof.global_skip_proof; | |
| 153 | val global_done_proof = Toplevel.end_proof (K Proof.global_done_proof); | |
| 154 | ||
| 155 | ||
| 156 | (* common endings *) | |
| 157 | ||
| 60693 
044f8bb3dd30
more accurate skip_proofs nesting, e.g. relevant for 'subgoal' command;
 wenzelm parents: 
60405diff
changeset | 158 | fun qed m = local_qed m o global_qed m; | 
| 21350 | 159 | fun terminal_proof m = local_terminal_proof m o global_terminal_proof m; | 
| 160 | val default_proof = local_default_proof o global_default_proof; | |
| 161 | val immediate_proof = local_immediate_proof o global_immediate_proof; | |
| 162 | val done_proof = local_done_proof o global_done_proof; | |
| 163 | val skip_proof = local_skip_proof o global_skip_proof; | |
| 164 | ||
| 165 | ||
| 26489 | 166 | (* diagnostic ML evaluation *) | 
| 5831 | 167 | |
| 37305 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 168 | 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 | 169 | ( | 
| 69883 | 170 | type T = Toplevel.state option; | 
| 171 | fun init _ = NONE; | |
| 37305 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 172 | ); | 
| 
9763792e4ac7
diagnostic commands 'ML_val' and 'ML_command' may refer to antiquotations @{Isar.state} and @{Isar.goal};
 wenzelm parents: 
37216diff
changeset | 173 | |
| 55828 
42ac3cfb89f6
clarified language markup: added "delimited" property;
 wenzelm parents: 
53171diff
changeset | 174 | 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 | 175 | 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 | 176 | 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 | 177 | try Toplevel.generic_theory_of state | 
| 69883 | 178 | |> Option.map (Context.proof_of #> Diag_State.put (SOME 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 | 179 | 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 | 180 | 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 | 181 | |
| 69883 | 182 | fun diag_state ctxt = | 
| 183 | (case Diag_State.get ctxt of | |
| 184 | SOME st => st | |
| 76415 | 185 | | NONE => Toplevel.make_state NONE); | 
| 69883 | 186 | |
| 60094 | 187 | 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 | 188 | |
| 53171 | 189 | val _ = Theory.setup | 
| 67147 | 190 | (ML_Antiquotation.value (Binding.qualify true "Isar" \<^binding>\<open>state\<close>) | 
| 53171 | 191 | (Scan.succeed "Isar_Cmd.diag_state ML_context") #> | 
| 67147 | 192 | ML_Antiquotation.value (Binding.qualify true "Isar" \<^binding>\<open>goal\<close>) | 
| 53171 | 193 | (Scan.succeed "Isar_Cmd.diag_goal ML_context")); | 
| 5831 | 194 | |
| 195 | ||
| 56868 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 196 | (* theorems of theory or proof context *) | 
| 17066 | 197 | |
| 56868 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 198 | fun pretty_theorems verbose st = | 
| 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 199 | if Toplevel.is_proof st then | 
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59210diff
changeset | 200 | Proof_Context.pretty_local_facts verbose (Toplevel.context_of st) | 
| 56868 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 201 | else | 
| 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 202 | let | 
| 61266 | 203 | val ctxt = Toplevel.context_of st; | 
| 56868 
b5fb264d53ba
clarified print operations for "terms" and "theorems";
 wenzelm parents: 
56334diff
changeset | 204 | val prev_thys = | 
| 67391 | 205 | (case Toplevel.previous_theory_of st of | 
| 206 | SOME thy => [thy] | |
| 61266 | 207 | | NONE => Theory.parents_of (Proof_Context.theory_of ctxt)); | 
| 208 | in Proof_Display.pretty_theorems_diff verbose prev_thys ctxt end; | |
| 9513 | 209 | |
| 12060 | 210 | |
| 19268 | 211 | (* print theorems, terms, types etc. *) | 
| 212 | ||
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 213 | local | 
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 214 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 215 | fun string_of_stmts ctxt args = | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 216 | Attrib.eval_thms ctxt args | 
| 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 217 | |> map (Element.pretty_statement ctxt Thm.theoremK) | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 218 | |> Pretty.chunks2 |> Pretty.string_of; | 
| 5880 | 219 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 220 | fun string_of_thms ctxt args = | 
| 51583 | 221 |   Pretty.string_of (Proof_Context.pretty_fact ctxt ("", Attrib.eval_thms ctxt args));
 | 
| 5895 | 222 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 223 | 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 | 224 | 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 | 225 | (case arg of | 
| 15531 | 226 | NONE => | 
| 12125 
316d11f760f7
Commands prf and full_prf can now also be used to display proof term
 berghofe parents: 
12069diff
changeset | 227 | let | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 228 |           val {context = ctxt, goal = thm} = Proof.simple_goal (Toplevel.proof_of state);
 | 
| 70449 | 229 | val thy = Proof_Context.theory_of ctxt; | 
| 28814 | 230 | val prf = Thm.proof_of thm; | 
| 17066 | 231 | 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 | 232 | 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 | 233 | in | 
| 33388 | 234 | Proof_Syntax.pretty_proof ctxt | 
| 70449 | 235 | (if full then Proofterm.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 | 236 | end | 
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 237 | | SOME srcs => | 
| 63624 
994d1a1105ef
more informative 'prf' and 'full_prf', based on HOL/Proofs/ex/XML_Data.thy;
 wenzelm parents: 
62922diff
changeset | 238 | let | 
| 
994d1a1105ef
more informative 'prf' and 'full_prf', based on HOL/Proofs/ex/XML_Data.thy;
 wenzelm parents: 
62922diff
changeset | 239 | val ctxt = Toplevel.context_of state; | 
| 70839 
2136e4670ad2
clarified standard_proof_of: prefer expand_proof over somewhat adhoc strip_thm_proof;
 wenzelm parents: 
70449diff
changeset | 240 | val pretty_proof = Proof_Syntax.pretty_standard_proof_of ctxt full; | 
| 63624 
994d1a1105ef
more informative 'prf' and 'full_prf', based on HOL/Proofs/ex/XML_Data.thy;
 wenzelm parents: 
62922diff
changeset | 241 | in Pretty.chunks (map pretty_proof (Attrib.eval_thms ctxt srcs)) end); | 
| 11524 
197f2e14a714
Added functions for printing primitive proof terms.
 berghofe parents: 
11017diff
changeset | 242 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 243 | fun string_of_prop ctxt s = | 
| 5831 | 244 | let | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24314diff
changeset | 245 | val prop = Syntax.read_prop ctxt s; | 
| 70308 | 246 | val ctxt' = Proof_Context.augment prop ctxt; | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 247 | in Pretty.string_of (Pretty.quote (Syntax.pretty_term ctxt' prop)) end; | 
| 5831 | 248 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 249 | fun string_of_term ctxt s = | 
| 5831 | 250 | let | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24314diff
changeset | 251 | val t = Syntax.read_term ctxt s; | 
| 5831 | 252 | val T = Term.type_of t; | 
| 70308 | 253 | val ctxt' = Proof_Context.augment t ctxt; | 
| 5831 | 254 | in | 
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 255 | Pretty.string_of | 
| 26704 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 256 | (Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t), Pretty.fbrk, | 
| 
51ee753cc2e3
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26694diff
changeset | 257 | Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' T)]) | 
| 9128 | 258 | end; | 
| 5831 | 259 | |
| 48792 | 260 | fun string_of_type ctxt (s, NONE) = | 
| 261 | let val T = Syntax.read_typ ctxt s | |
| 262 | in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt T)) end | |
| 263 | | string_of_type ctxt (s1, SOME s2) = | |
| 264 | let | |
| 265 | val ctxt' = Config.put show_sorts true ctxt; | |
| 266 | val raw_T = Syntax.parse_typ ctxt' s1; | |
| 267 | val S = Syntax.read_sort ctxt' s2; | |
| 268 | val T = | |
| 269 | Syntax.check_term ctxt' | |
| 270 | (Logic.mk_type raw_T |> Type.constraint (Term.itselfT (Type_Infer.anyT S))) | |
| 271 | |> Logic.dest_type; | |
| 272 | in Pretty.string_of (Pretty.quote (Syntax.pretty_typ ctxt' T)) end; | |
| 9128 | 273 | |
| 23935 | 274 | 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 | 275 | 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 | 276 | |
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 277 | in | 
| 9128 | 278 | |
| 38331 
6e72f31999ac
prefer plain Attrib.eval_thms with plain Proof.context instead of Proof.state;
 wenzelm parents: 
38139diff
changeset | 279 | 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 | 280 | 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 | 281 | 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 | 282 | 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 | 283 | 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 | 284 | val print_type = print_item (string_of_type o Toplevel.context_of); | 
| 5831 | 285 | |
| 19385 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 286 | end; | 
| 
c0f2f8224ea8
print_term etc.: actually observe print mode in final output;
 wenzelm parents: 
19268diff
changeset | 287 | |
| 5831 | 288 | end; |