1 (* Title: Pure/Isar/theory_target.ML
5 Common theory/locale/class/instantiation/overloading targets.
8 signature THEORY_TARGET =
10 val peek: local_theory -> {target: string, is_locale: bool,
11 is_class: bool, instantiation: string list * (string * sort) list * sort,
12 overloading: (string * (string * typ) * bool) list}
13 val init: string option -> theory -> local_theory
14 val begin: string -> Proof.context -> local_theory
15 val context: xstring -> theory -> local_theory
16 val instantiation: string list * (string * sort) list * sort -> theory -> local_theory
17 val overloading: (string * (string * typ) * bool) list -> theory -> local_theory
18 val overloading_cmd: (string * string * bool) list -> theory -> local_theory
21 structure TheoryTarget: THEORY_TARGET =
26 datatype target = Target of {target: string, is_locale: bool,
27 is_class: bool, instantiation: string list * (string * sort) list * sort,
28 overloading: (string * (string * typ) * bool) list};
30 fun make_target target is_locale is_class instantiation overloading =
31 Target {target = target, is_locale = is_locale,
32 is_class = is_class, instantiation = instantiation, overloading = overloading};
34 val global_target = make_target "" false false ([], [], []) [];
36 structure Data = ProofDataFun
39 fun init _ = global_target;
42 val peek = (fn Target args => args) o Data.get;
47 fun pretty_thy ctxt target is_locale is_class =
49 val thy = ProofContext.theory_of ctxt;
50 val target_name = (if is_class then "class " else "locale ") ^ Locale.extern thy target;
51 val fixes = map (fn (x, T) => (Name.binding x, SOME T, NoSyn))
52 (#1 (ProofContext.inferred_fixes ctxt));
53 val assumes = map (fn A => (Attrib.no_binding, [(Thm.term_of A, [])]))
54 (Assumption.assms_of ctxt);
56 (if null fixes then [] else [Element.Fixes fixes]) @
57 (if null assumes then [] else [Element.Assumes assumes]);
59 if target = "" then []
60 else if null elems then [Pretty.str target_name]
61 else [Pretty.big_list (target_name ^ " =")
62 (map (Pretty.chunks o Element.pretty_ctxt ctxt) elems)]
65 fun pretty (Target {target, is_locale, is_class, instantiation, overloading}) ctxt =
66 Pretty.block [Pretty.str "theory", Pretty.brk 1,
67 Pretty.str (Context.theory_name (ProofContext.theory_of ctxt))] ::
68 (if not (null overloading) then [Overloading.pretty ctxt]
69 else if not (null (#1 instantiation)) then [Class.pretty_instantiation ctxt]
70 else pretty_thy ctxt target is_locale is_class);
73 (* target declarations *)
75 fun target_decl add (Target {target, is_class, ...}) d lthy =
77 val d' = Morphism.transform (LocalTheory.target_morphism lthy) d;
78 val d0 = Morphism.form d';
82 |> LocalTheory.theory (Context.theory_map d0)
83 |> LocalTheory.target (Context.proof_map d0)
86 |> LocalTheory.target (add target d')
89 val type_syntax = target_decl Locale.add_type_syntax;
90 val term_syntax = target_decl Locale.add_term_syntax;
91 val declaration = target_decl Locale.add_declaration;
93 fun class_target (Target {target, ...}) f =
94 LocalTheory.raw_theory f #>
95 LocalTheory.target (Class.refresh_syntax target);
100 fun import_export_proof ctxt (name, raw_th) =
102 val thy = ProofContext.theory_of ctxt;
103 val thy_ctxt = ProofContext.init thy;
104 val certT = Thm.ctyp_of thy;
105 val cert = Thm.cterm_of thy;
107 (*export assumes/defines*)
108 val th = Goal.norm_result raw_th;
109 val (defs, th') = LocalDefs.export ctxt thy_ctxt th;
110 val concl_conv = MetaSimplifier.rewrite true defs (Thm.cprop_of th);
111 val assms = map (MetaSimplifier.rewrite_rule defs o Thm.assume) (Assumption.assms_of ctxt);
112 val nprems = Thm.nprems_of th' - Thm.nprems_of th;
115 val tfrees = map TFree (Thm.fold_terms Term.add_tfrees th' []);
116 val frees = map Free (Thm.fold_terms Term.add_frees th' []);
117 val (th'' :: vs) = (th' :: map (Drule.mk_term o cert) (map Logic.mk_type tfrees @ frees))
118 |> Variable.export ctxt thy_ctxt
119 |> Drule.zero_var_indexes_list;
122 val result = PureThy.name_thm true true Position.none name th'';
126 chop (length tfrees) (map (Thm.term_of o Drule.dest_term) vs)
127 |>> map Logic.dest_type;
129 val instT = map_filter (fn (TVar v, T) => SOME (v, T) | _ => NONE) (tvars ~~ tfrees);
130 val inst = filter (is_Var o fst) (vars ~~ frees);
131 val cinstT = map (pairself certT o apfst TVar) instT;
132 val cinst = map (pairself (cert o Term.map_types (TermSubst.instantiateT instT))) inst;
133 val result' = Thm.instantiate (cinstT, cinst) result;
135 (*import assumes/defines*)
136 val assm_tac = FIRST' (map (fn assm => Tactic.compose_tac (false, assm, 0)) assms);
138 (case SINGLE (Seq.INTERVAL assm_tac 1 nprems) result' of
139 NONE => raise THM ("Failed to re-import result", 0, [result'])
140 | SOME res => LocalDefs.trans_props ctxt [res, Thm.symmetric concl_conv])
142 |> PureThy.name_thm false false Position.none name;
144 in (result'', result) end;
146 fun note_local kind facts ctxt =
148 |> ProofContext.qualified_names
149 |> ProofContext.note_thmss_i kind facts
150 ||> ProofContext.restore_naming ctxt;
152 fun notes (Target {target, is_locale, is_class, ...}) kind facts lthy =
154 val thy = ProofContext.theory_of lthy;
155 val full = LocalTheory.full_name lthy;
158 |> map (fn (a, bs) =>
159 (a, PureThy.burrow_fact (PureThy.name_multi (full (Name.name_of (fst a)))) bs))
160 |> PureThy.map_facts (import_export_proof lthy);
161 val local_facts = PureThy.map_facts #1 facts'
162 |> Attrib.map_facts (Attrib.attribute_i thy);
163 val target_facts = PureThy.map_facts #1 facts'
164 |> is_locale ? Element.facts_map (Element.morph_ctxt (LocalTheory.target_morphism lthy));
165 val global_facts = PureThy.map_facts #2 facts'
166 |> Attrib.map_facts (if is_locale then K I else Attrib.attribute_i thy);
168 lthy |> LocalTheory.theory
169 (Sign.qualified_names
170 #> PureThy.note_thmss_grouped kind (LocalTheory.group_of lthy) global_facts #> snd
171 #> Sign.restore_naming thy)
172 |> not is_locale ? LocalTheory.target (note_local kind global_facts #> snd)
173 |> is_locale ? LocalTheory.target (Locale.add_thmss target kind target_facts)
174 |> note_local kind local_facts
180 fun fork_mixfix (Target {is_locale, is_class, ...}) mx =
181 if not is_locale then (NoSyn, NoSyn, mx)
182 else if not is_class then (NoSyn, mx, NoSyn)
183 else (mx, NoSyn, NoSyn);
185 fun locale_const (Target {target, is_class, ...}) (prmode as (mode, _)) tags ((c, mx), rhs) phi =
187 val c' = Morphism.name phi c;
188 val rhs' = Morphism.term phi rhs;
189 val name = Name.name_of c;
190 val name' = Name.name_of c';
191 val legacy_arg = (name', Term.close_schematic_term (Logic.legacy_varify rhs'));
192 val arg = (name', Term.close_schematic_term rhs');
193 val similar_body = Type.similar_types (rhs, rhs');
194 (* FIXME workaround based on educated guess *)
195 val class_global = name = NameSpace.base name'
196 andalso Class.class_prefix target = hd (NameSpace.explode name');
198 not (is_class andalso (similar_body orelse class_global)) ?
199 (Context.mapping_result
200 (Sign.add_abbrev PrintMode.internal tags legacy_arg)
201 (ProofContext.add_abbrev PrintMode.internal tags arg)
202 #-> (fn (lhs' as Const (d, _), _) =>
204 (Context.mapping (Sign.revert_abbrev mode d) (ProofContext.revert_abbrev mode d) #>
205 Morphism.form (ProofContext.target_notation true prmode [(lhs', mx)]))))
208 fun declare_const (ta as Target {target, is_locale, is_class, ...}) depends ((b, T), mx) lthy =
210 val c = Name.name_of b;
211 val tags = LocalTheory.group_position_of lthy;
212 val xs = filter depends (#1 (ProofContext.inferred_fixes (LocalTheory.target_of lthy)));
213 val U = map #2 xs ---> T;
214 val (mx1, mx2, mx3) = fork_mixfix ta mx;
215 fun syntax_error c = error ("Illegal mixfix syntax for overloaded constant " ^ quote c);
217 (case Class.instantiation_param lthy c of
219 if mx3 <> NoSyn then syntax_error c'
220 else LocalTheory.theory_result (AxClass.declare_overloaded (c', U))
221 ##> Class.confirm_declaration c
223 (case Overloading.operation lthy c of
225 if mx3 <> NoSyn then syntax_error c'
226 else LocalTheory.theory_result (Overloading.declare (c', U))
227 ##> Overloading.confirm c
228 | NONE => LocalTheory.theory_result (Sign.declare_const tags ((b, U), mx3))));
229 val (const, lthy') = lthy |> declare_const;
230 val t = Term.list_comb (const, map Free xs);
233 |> is_locale ? term_syntax ta (locale_const ta Syntax.mode_default tags ((b, mx2), t))
234 |> is_class ? class_target ta (Class.declare target tags ((c, mx1), t))
235 |> LocalDefs.add_def ((b, NoSyn), t)
241 fun abbrev (ta as Target {target, is_locale, is_class, ...}) prmode ((b, mx), t) lthy =
243 val c = Name.name_of b;
244 val tags = LocalTheory.group_position_of lthy;
245 val thy_ctxt = ProofContext.init (ProofContext.theory_of lthy);
246 val target_ctxt = LocalTheory.target_of lthy;
248 val (mx1, mx2, mx3) = fork_mixfix ta mx;
249 val t' = Assumption.export_term lthy target_ctxt t;
250 val xs = map Free (rev (Variable.add_fixed target_ctxt t' []));
251 val u = fold_rev lambda xs t';
253 singleton (Variable.export_terms (Variable.declare_term u target_ctxt) thy_ctxt) u;
257 LocalTheory.theory_result (Sign.add_abbrev PrintMode.internal tags (c, global_rhs))
259 let val lhs' = Term.list_comb (Logic.unvarify lhs, xs) in
260 term_syntax ta (locale_const ta prmode tags ((b, mx2), lhs')) #>
261 is_class ? class_target ta (Class.abbrev target prmode tags ((c, mx1), t'))
265 (Sign.add_abbrev (#1 prmode) tags (c, global_rhs) #-> (fn (lhs, _) =>
266 Sign.notation true prmode [(lhs, mx3)])))
267 |> ProofContext.add_abbrev PrintMode.internal tags (c, t) |> snd
268 |> LocalDefs.fixed_abbrev ((b, NoSyn), t)
274 fun define (ta as Target {target, is_locale, is_class, ...})
275 kind ((b, mx), ((name, atts), rhs)) lthy =
277 val thy = ProofContext.theory_of lthy;
278 val thy_ctxt = ProofContext.init thy;
280 val c = Name.name_of b;
281 val name' = Name.map_name (Thm.def_name_optional c) name;
282 val (rhs', rhs_conv) =
283 LocalDefs.export_cterm lthy thy_ctxt (Thm.cterm_of thy rhs) |>> Thm.term_of;
284 val xs = Variable.add_fixed (LocalTheory.target_of lthy) rhs' [];
285 val T = Term.fastype_of rhs;
288 val ((lhs, local_def), lthy2) = lthy |> declare_const ta (member (op =) xs) ((b, T), mx);
289 val (_, lhs') = Logic.dest_equals (Thm.prop_of local_def);
293 (case Overloading.operation lthy c of
295 (fn name => fn (Const (c, _), rhs) => Overloading.define checked name (c, rhs))
297 if is_none (Class.instantiation_param lthy c)
298 then (fn name => fn eq => Thm.add_def false false (name, Logic.mk_equals eq))
299 else (fn name => fn (Const (c, _), rhs) => AxClass.define_overloaded name (c, rhs)));
300 val (global_def, lthy3) = lthy2
301 |> LocalTheory.theory_result (define_const (Name.name_of name') (lhs', rhs'));
302 val def = LocalDefs.trans_terms lthy3
303 [(*c == global.c xs*) local_def,
304 (*global.c xs == rhs'*) global_def,
305 (*rhs' == rhs*) Thm.symmetric rhs_conv];
308 val ([(res_name, [res])], lthy4) = lthy3
309 |> notes ta kind [((name', atts), [([def], [])])];
310 in ((lhs, (res_name, res)), lthy4) end;
317 fun init_target _ NONE = global_target
318 | init_target thy (SOME target) =
319 make_target target true (Class.is_class thy target) ([], [], []) [];
321 fun init_ctxt (Target {target, is_locale, is_class, instantiation, overloading}) =
322 if not (null (#1 instantiation)) then Class.init_instantiation instantiation
323 else if not (null overloading) then Overloading.init overloading
324 else if not is_locale then ProofContext.init
325 else if not is_class then Locale.init target
326 else Class.init target;
328 fun init_lthy (ta as Target {target, instantiation, overloading, ...}) =
330 LocalTheory.init (NameSpace.base target)
335 type_syntax = type_syntax ta,
336 term_syntax = term_syntax ta,
337 declaration = declaration ta,
338 reinit = fn lthy => init_lthy_ctxt ta (ProofContext.theory_of lthy),
339 exit = LocalTheory.target_of o
340 (if not (null (#1 instantiation)) then Class.conclude_instantiation
341 else if not (null overloading) then Overloading.conclude
343 and init_lthy_ctxt ta = init_lthy ta o init_ctxt ta;
345 fun gen_overloading prep_const raw_ops thy =
347 val ctxt = ProofContext.init thy;
348 val ops = raw_ops |> map (fn (name, const, checked) =>
349 (name, Term.dest_Const (prep_const ctxt const), checked));
350 in thy |> init_lthy_ctxt (make_target "" false false ([], [], []) ops) end;
354 fun init target thy = init_lthy_ctxt (init_target thy target) thy;
355 fun begin target ctxt = init_lthy (init_target (ProofContext.theory_of ctxt) (SOME target)) ctxt;
357 fun context "-" thy = init NONE thy
358 | context target thy = init (SOME (Locale.intern thy target)) thy;
360 fun instantiation arities = init_lthy_ctxt (make_target "" false false arities []);
362 val overloading = gen_overloading (fn ctxt => Syntax.check_term ctxt o Const);
363 val overloading_cmd = gen_overloading Syntax.read_term;