author | wenzelm |
Thu, 30 Nov 2006 17:42:21 +0100 | |
changeset 21614 | 89105c15b436 |
parent 21529 | bfe99f603933 |
child 21664 | dd4e89123359 |
permissions | -rw-r--r-- |
18744 | 1 |
(* Title: Pure/Isar/local_theory.ML |
2 |
ID: $Id$ |
|
3 |
Author: Makarius |
|
4 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
5 |
Local theory operations, with abstract target context. |
18744 | 6 |
*) |
7 |
||
18951 | 8 |
type local_theory = Proof.context; |
9 |
||
18744 | 10 |
signature LOCAL_THEORY = |
11 |
sig |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
12 |
type operations |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
13 |
val target_of: local_theory -> Proof.context |
20960 | 14 |
val raw_theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory |
15 |
val raw_theory: (theory -> theory) -> local_theory -> local_theory |
|
21614 | 16 |
val full_name: local_theory -> bstring -> string |
20960 | 17 |
val theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory |
18951 | 18 |
val theory: (theory -> theory) -> local_theory -> local_theory |
20960 | 19 |
val target_result: (Proof.context -> 'a * Proof.context) -> local_theory -> 'a * local_theory |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
20 |
val target: (Proof.context -> Proof.context) -> local_theory -> local_theory |
21034 | 21 |
val assert: local_theory -> local_theory |
20960 | 22 |
val pretty: local_theory -> Pretty.T list |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
23 |
val consts: (string * typ -> bool) -> |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
24 |
((bstring * typ) * mixfix) list -> local_theory -> (term * thm) list * local_theory |
21433 | 25 |
val axioms: string -> ((bstring * Attrib.src list) * term list) list -> local_theory -> |
18951 | 26 |
(bstring * thm list) list * local_theory |
21433 | 27 |
val defs: string -> ((bstring * mixfix) * ((bstring * Attrib.src list) * term)) list -> |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
28 |
local_theory -> (term * (bstring * thm)) list * local_theory |
21433 | 29 |
val notes: string -> ((bstring * Attrib.src list) * (thm list * Attrib.src list) list) list -> |
18951 | 30 |
local_theory -> (bstring * thm list) list * local_theory |
21498
6382c3a1e7cf
uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents:
21433
diff
changeset
|
31 |
val type_syntax: (morphism -> Context.generic -> Context.generic) -> local_theory -> local_theory |
6382c3a1e7cf
uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents:
21433
diff
changeset
|
32 |
val term_syntax: (morphism -> Context.generic -> Context.generic) -> local_theory -> local_theory |
6382c3a1e7cf
uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents:
21433
diff
changeset
|
33 |
val declaration: (morphism -> Context.generic -> Context.generic) -> local_theory -> local_theory |
21433 | 34 |
val def: string -> (bstring * mixfix) * ((bstring * Attrib.src list) * term) -> |
18951 | 35 |
local_theory -> (term * (bstring * thm)) * local_theory |
21433 | 36 |
val note: string -> (bstring * Attrib.src list) * thm list -> |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
37 |
local_theory -> (bstring * thm list) * Proof.context |
21206
2af4c7b3f7ef
replaced const_syntax by notation, which operates on terms;
wenzelm
parents:
21034
diff
changeset
|
38 |
val notation: Syntax.mode -> (term * mixfix) list -> local_theory -> local_theory |
21529 | 39 |
val abbrevs: Syntax.mode -> ((bstring * mixfix) * term) list -> local_theory -> local_theory |
40 |
val target_morphism: local_theory -> morphism |
|
41 |
val target_name: local_theory -> bstring -> string |
|
42 |
val init: string -> operations -> Proof.context -> local_theory |
|
21273 | 43 |
val restore: local_theory -> local_theory |
21292 | 44 |
val reinit: local_theory -> theory -> local_theory |
45 |
val exit: local_theory -> Proof.context |
|
18744 | 46 |
end; |
47 |
||
48 |
structure LocalTheory: LOCAL_THEORY = |
|
49 |
struct |
|
50 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
51 |
(** local theory data **) |
19059
b4ca3100e818
init/exit no longer change the theory (no naming);
wenzelm
parents:
19032
diff
changeset
|
52 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
53 |
(* type lthy *) |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
54 |
|
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
55 |
type operations = |
20960 | 56 |
{pretty: local_theory -> Pretty.T list, |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
57 |
consts: (string * typ -> bool) -> ((bstring * typ) * mixfix) list -> local_theory -> |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
58 |
(term * thm) list * local_theory, |
21433 | 59 |
axioms: string -> ((bstring * Attrib.src list) * term list) list -> local_theory -> |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
60 |
(bstring * thm list) list * local_theory, |
21433 | 61 |
defs: string -> ((bstring * mixfix) * ((bstring * Attrib.src list) * term)) list -> |
62 |
local_theory -> (term * (bstring * thm)) list * local_theory, |
|
63 |
notes: string -> |
|
64 |
((bstring * Attrib.src list) * (thm list * Attrib.src list) list) list -> |
|
65 |
local_theory -> (bstring * thm list) list * local_theory, |
|
21498
6382c3a1e7cf
uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents:
21433
diff
changeset
|
66 |
type_syntax: (morphism -> Context.generic -> Context.generic) -> local_theory -> local_theory, |
6382c3a1e7cf
uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents:
21433
diff
changeset
|
67 |
term_syntax: (morphism -> Context.generic -> Context.generic) -> local_theory -> local_theory, |
6382c3a1e7cf
uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents:
21433
diff
changeset
|
68 |
declaration: (morphism -> Context.generic -> Context.generic) -> local_theory -> local_theory, |
21529 | 69 |
target_morphism: local_theory -> morphism, |
70 |
target_name: local_theory -> bstring -> string, |
|
21292 | 71 |
reinit: local_theory -> theory -> local_theory, |
72 |
exit: local_theory -> Proof.context}; |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
73 |
|
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
74 |
datatype lthy = LThy of |
21529 | 75 |
{theory_prefix: string, |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
76 |
operations: operations, |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
77 |
target: Proof.context}; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
78 |
|
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
79 |
fun make_lthy (theory_prefix, operations, target) = |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
80 |
LThy {theory_prefix = theory_prefix, operations = operations, target = target}; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
81 |
|
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
82 |
|
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
83 |
(* context data *) |
18744 | 84 |
|
85 |
structure Data = ProofDataFun |
|
86 |
( |
|
18876 | 87 |
val name = "Pure/local_theory"; |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
88 |
type T = lthy option; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
89 |
fun init _ = NONE; |
18744 | 90 |
fun print _ _ = (); |
91 |
); |
|
92 |
val _ = Context.add_setup Data.init; |
|
93 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
94 |
fun get_lthy lthy = |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
95 |
(case Data.get lthy of |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
96 |
NONE => error "No local theory context" |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
97 |
| SOME (LThy data) => data); |
18951 | 98 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
99 |
fun map_lthy f lthy = |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
100 |
let val {theory_prefix, operations, target} = get_lthy lthy |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
101 |
in Data.put (SOME (make_lthy (f (theory_prefix, operations, target)))) lthy end; |
18767 | 102 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
103 |
val target_of = #target o get_lthy; |
21034 | 104 |
val assert = tap target_of; |
18767 | 105 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
106 |
fun map_target f = map_lthy (fn (theory_prefix, operations, target) => |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
107 |
(theory_prefix, operations, f target)); |
18767 | 108 |
|
109 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
110 |
(* substructure mappings *) |
19661 | 111 |
|
20960 | 112 |
fun raw_theory_result f lthy = |
113 |
let |
|
114 |
val (res, thy') = f (ProofContext.theory_of lthy); |
|
115 |
val lthy' = lthy |
|
116 |
|> map_target (ProofContext.transfer thy') |
|
117 |
|> ProofContext.transfer thy'; |
|
118 |
in (res, lthy') end; |
|
119 |
||
120 |
fun raw_theory f = #2 o raw_theory_result (f #> pair ()); |
|
121 |
||
21614 | 122 |
fun full_name lthy = |
123 |
let |
|
124 |
val naming = Sign.naming_of (ProofContext.theory_of lthy) |
|
125 |
|> NameSpace.sticky_prefix (#theory_prefix (get_lthy lthy)) |
|
126 |
|> NameSpace.qualified_names; |
|
127 |
in NameSpace.full naming end; |
|
128 |
||
21529 | 129 |
fun theory_result f lthy = lthy |> raw_theory_result (fn thy => thy |
130 |
|> Sign.sticky_prefix (#theory_prefix (get_lthy lthy)) |
|
131 |
|> Sign.qualified_names |
|
132 |
|> f |
|
133 |
||> Sign.restore_naming thy); |
|
19661 | 134 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
135 |
fun theory f = #2 o theory_result (f #> pair ()); |
19661 | 136 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
137 |
fun target_result f lthy = |
18744 | 138 |
let |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
139 |
val (res, ctxt') = f (#target (get_lthy lthy)); |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
140 |
val thy' = ProofContext.theory_of ctxt'; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
141 |
val lthy' = lthy |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
142 |
|> map_target (K ctxt') |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
143 |
|> ProofContext.transfer thy'; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
144 |
in (res, lthy') end; |
18876 | 145 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
146 |
fun target f = #2 o target_result (f #> pair ()); |
18767 | 147 |
|
148 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
149 |
(* primitive operations *) |
18781 | 150 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
151 |
fun operation f lthy = f (#operations (get_lthy lthy)) lthy; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
152 |
fun operation1 f x = operation (fn ops => f ops x); |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
153 |
fun operation2 f x y = operation (fn ops => f ops x y); |
18781 | 154 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
155 |
val pretty = operation #pretty; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
156 |
val consts = operation2 #consts; |
21433 | 157 |
val axioms = operation2 #axioms; |
158 |
val defs = operation2 #defs; |
|
159 |
val notes = operation2 #notes; |
|
21498
6382c3a1e7cf
uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents:
21433
diff
changeset
|
160 |
val type_syntax = operation1 #type_syntax; |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
161 |
val term_syntax = operation1 #term_syntax; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
162 |
val declaration = operation1 #declaration; |
21529 | 163 |
val target_morphism = operation #target_morphism; |
164 |
val target_name = operation #target_name; |
|
18781 | 165 |
|
166 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
167 |
(* derived operations *) |
18781 | 168 |
|
21433 | 169 |
fun def kind arg lthy = lthy |> defs kind [arg] |>> hd; |
18781 | 170 |
|
21433 | 171 |
fun note kind (a, ths) lthy = lthy |> notes kind [(a, [(ths, [])])] |>> hd; |
18781 | 172 |
|
21529 | 173 |
fun notation mode args = term_syntax (fn phi => |
174 |
let val args' = args |> map (fn (t, mx) => (Morphism.term phi t, mx)) |
|
175 |
in Context.mapping (Sign.add_notation mode args') (ProofContext.add_notation mode args') end); |
|
18781 | 176 |
|
21529 | 177 |
fun abbrevs mode args = term_syntax (fn phi => |
178 |
let val args' = args |> map (fn ((c, mx), t) => ((Morphism.name phi c, mx), Morphism.term phi t)) |
|
179 |
in |
|
180 |
Context.mapping |
|
181 |
(snd o Sign.add_abbrevs mode args') (snd o ProofContext.add_abbrevs mode args') |
|
182 |
end); |
|
18805
18863b33c831
improved 'notes', including proper treatment of locale results;
wenzelm
parents:
18781
diff
changeset
|
183 |
|
20910 | 184 |
|
185 |
(* init -- exit *) |
|
186 |
||
187 |
fun init theory_prefix operations target = target |> Data.map |
|
188 |
(fn NONE => SOME (make_lthy (theory_prefix, operations, target)) |
|
189 |
| SOME _ => error "Local theory already initialized"); |
|
190 |
||
21273 | 191 |
fun restore lthy = |
20910 | 192 |
let val {theory_prefix, operations, target} = get_lthy lthy |
193 |
in init theory_prefix operations target end; |
|
194 |
||
21292 | 195 |
val reinit = operation #reinit; |
196 |
val exit = operation #exit; |
|
20910 | 197 |
|
18781 | 198 |
end; |