src/Pure/Isar/locale.ML
author ballarin
Wed, 27 Aug 2008 17:54:31 +0200
changeset 28024 d1c2fa105443
parent 28020 1ff5167592ba
child 28053 a2106c0d8c45
permissions -rw-r--r--
Consistent naming of theorems in interpretation.
wenzelm@12014
     1
(*  Title:      Pure/Isar/locale.ML
wenzelm@11896
     2
    ID:         $Id$
ballarin@15206
     3
    Author:     Clemens Ballarin, TU Muenchen; Markus Wenzel, LMU/TU Muenchen
wenzelm@11896
     4
wenzelm@12058
     5
Locales -- Isar proof contexts as meta-level predicates, with local
wenzelm@12529
     6
syntax and implicit structures.
wenzelm@12529
     7
ballarin@19942
     8
Draws basic ideas from Florian Kammueller's original version of
wenzelm@12529
     9
locales, but uses the richer infrastructure of Isar instead of the raw
ballarin@20035
    10
meta-logic.  Furthermore, structured import of contexts (with merge
ballarin@20035
    11
and rename operations) are provided, as well as type-inference of the
wenzelm@13375
    12
signature parts, and predicate definitions of the specification text.
ballarin@14446
    13
ballarin@17437
    14
Interpretation enables the reuse of theorems of locales in other
ballarin@17437
    15
contexts, namely those defined by theories, structured proofs and
ballarin@17437
    16
locales themselves.
ballarin@17437
    17
ballarin@14446
    18
See also:
ballarin@14446
    19
ballarin@14446
    20
[1] Clemens Ballarin. Locales and Locale Expressions in Isabelle/Isar.
ballarin@14446
    21
    In Stefano Berardi et al., Types for Proofs and Programs: International
ballarin@15099
    22
    Workshop, TYPES 2003, Torino, Italy, LNCS 3085, pages 34-50, 2004.
ballarin@19942
    23
[2] Clemens Ballarin. Interpretation of Locales in Isabelle: Managing
ballarin@19942
    24
    Dependencies between Locales. Technical Report TUM-I0607, Technische
ballarin@19942
    25
    Universitaet Muenchen, 2006.
ballarin@19942
    26
[3] Clemens Ballarin. Interpretation of Locales in Isabelle: Theories and
ballarin@19942
    27
    Proof Contexts. In J.M. Borwein and W.M. Farmer, MKM 2006, LNAI 4108,
ballarin@19942
    28
    pages 31-43, 2006.
wenzelm@11896
    29
*)
wenzelm@11896
    30
ballarin@16169
    31
(* TODO:
ballarin@16169
    32
- beta-eta normalisation of interpretation parameters
ballarin@16169
    33
- dangling type frees in locales
ballarin@16620
    34
- test subsumption of interpretations when merging theories
ballarin@16169
    35
*)
ballarin@16169
    36
wenzelm@11896
    37
signature LOCALE =
wenzelm@11896
    38
sig
wenzelm@12273
    39
  datatype expr =
wenzelm@12273
    40
    Locale of string |
ballarin@16102
    41
    Rename of expr * (string * mixfix option) option list |
wenzelm@12273
    42
    Merge of expr list
wenzelm@12273
    43
  val empty: expr
wenzelm@18137
    44
  datatype 'a element = Elem of 'a | Expr of expr
wenzelm@21035
    45
  val map_elem: ('a -> 'b) -> 'a element -> 'b element
ballarin@15206
    46
wenzelm@16458
    47
  val intern: theory -> xstring -> string
haftmann@24751
    48
  val intern_expr: theory -> expr -> expr
wenzelm@16458
    49
  val extern: theory -> string -> xstring
ballarin@19991
    50
  val init: string -> theory -> Proof.context
ballarin@15206
    51
ballarin@18795
    52
  (* The specification of a locale *)
ballarin@18795
    53
  val parameters_of: theory -> string ->
haftmann@18917
    54
    ((string * typ) * mixfix) list
ballarin@19276
    55
  val parameters_of_expr: theory -> expr ->
ballarin@19276
    56
    ((string * typ) * mixfix) list
ballarin@18795
    57
  val local_asms_of: theory -> string ->
ballarin@18795
    58
    ((string * Attrib.src list) * term list) list
ballarin@18795
    59
  val global_asms_of: theory -> string ->
ballarin@18795
    60
    ((string * Attrib.src list) * term list) list
ballarin@27716
    61
ballarin@27716
    62
  (* Theorems *)
haftmann@25619
    63
  val intros: theory -> string -> thm list * thm list
haftmann@25619
    64
  val dests: theory -> string -> thm list
ballarin@27716
    65
  (* Not part of the official interface.  DO NOT USE *)
haftmann@27709
    66
  val facts_of: theory -> string
haftmann@27709
    67
    -> ((string * Attrib.src list) * (thm list * Attrib.src list) list) list list
ballarin@18795
    68
wenzelm@18899
    69
  (* Processing of locale statements *)
wenzelm@18137
    70
  val read_context_statement: xstring option -> Element.context element list ->
wenzelm@19585
    71
    (string * string list) list list -> Proof.context ->
ballarin@19991
    72
    string option * Proof.context * Proof.context * (term * term list) list list
wenzelm@21035
    73
  val read_context_statement_i: string option -> Element.context element list ->
wenzelm@21035
    74
    (string * string list) list list -> Proof.context ->
wenzelm@21035
    75
    string option * Proof.context * Proof.context * (term * term list) list list
wenzelm@18137
    76
  val cert_context_statement: string option -> Element.context_i element list ->
wenzelm@19585
    77
    (term * term list) list list -> Proof.context ->
ballarin@19991
    78
    string option * Proof.context * Proof.context * (term * term list) list list
wenzelm@19780
    79
  val read_expr: expr -> Element.context list -> Proof.context ->
wenzelm@19780
    80
    Element.context_i list * Proof.context
wenzelm@19780
    81
  val cert_expr: expr -> Element.context_i list -> Proof.context ->
wenzelm@19780
    82
    Element.context_i list * Proof.context
ballarin@15596
    83
ballarin@15596
    84
  (* Diagnostic functions *)
wenzelm@12758
    85
  val print_locales: theory -> unit
wenzelm@18137
    86
  val print_locale: theory -> bool -> expr -> Element.context list -> unit
ballarin@24787
    87
  val print_registrations: bool -> string -> Proof.context -> unit
wenzelm@18137
    88
haftmann@27681
    89
  val add_locale: string -> bstring -> expr -> Element.context list -> theory
wenzelm@20965
    90
    -> string * Proof.context
haftmann@27681
    91
  val add_locale_i: string -> bstring -> expr -> Element.context_i list -> theory
wenzelm@20965
    92
    -> string * Proof.context
ballarin@15596
    93
schirmer@21225
    94
  (* Tactics *)
schirmer@21225
    95
  val intro_locales_tac: bool -> Proof.context -> thm list -> tactic
schirmer@21225
    96
ballarin@15696
    97
  (* Storing results *)
wenzelm@18806
    98
  val add_thmss: string -> string ->
wenzelm@18806
    99
    ((string * Attrib.src list) * (thm list * Attrib.src list) list) list ->
wenzelm@21582
   100
    Proof.context -> Proof.context
wenzelm@24020
   101
  val add_type_syntax: string -> declaration -> Proof.context -> Proof.context
wenzelm@24020
   102
  val add_term_syntax: string -> declaration -> Proof.context -> Proof.context
wenzelm@24020
   103
  val add_declaration: string -> declaration -> Proof.context -> Proof.context
wenzelm@18137
   104
haftmann@22300
   105
  val interpretation_i: (Proof.context -> Proof.context) ->
ballarin@22658
   106
    (bool * string) * Attrib.src list -> expr ->
ballarin@25095
   107
    term option list * ((bstring * Attrib.src list) * term) list ->
haftmann@22300
   108
    theory -> Proof.state
wenzelm@21005
   109
  val interpretation: (Proof.context -> Proof.context) ->
ballarin@22658
   110
    (bool * string) * Attrib.src list -> expr ->
ballarin@25095
   111
    string option list * ((bstring * Attrib.src list) * string) list ->
wenzelm@21005
   112
    theory -> Proof.state
wenzelm@21005
   113
  val interpretation_in_locale: (Proof.context -> Proof.context) ->
wenzelm@21005
   114
    xstring * expr -> theory -> Proof.state
haftmann@22300
   115
  val interpret_i: (Proof.state -> Proof.state Seq.seq) ->
ballarin@22658
   116
    (bool * string) * Attrib.src list -> expr ->
ballarin@25095
   117
    term option list * ((bstring * Attrib.src list) * term) list ->
haftmann@22300
   118
    bool -> Proof.state -> Proof.state
wenzelm@21005
   119
  val interpret: (Proof.state -> Proof.state Seq.seq) ->
ballarin@22658
   120
    (bool * string) * Attrib.src list -> expr ->
ballarin@25095
   121
    string option list * ((bstring * Attrib.src list) * string) list ->
wenzelm@21005
   122
    bool -> Proof.state -> Proof.state
wenzelm@11896
   123
end;
wenzelm@12839
   124
wenzelm@12289
   125
structure Locale: LOCALE =
wenzelm@11896
   126
struct
wenzelm@11896
   127
wenzelm@23228
   128
(* legacy operations *)
wenzelm@23228
   129
haftmann@27681
   130
fun merge_lists _ xs [] = xs
haftmann@27681
   131
  | merge_lists _ [] ys = ys
haftmann@27681
   132
  | merge_lists eq xs ys = xs @ filter_out (member eq xs) ys;
haftmann@27681
   133
haftmann@27681
   134
fun merge_alists eq xs = merge_lists (eq_fst eq) xs;
wenzelm@19780
   135
wenzelm@20307
   136
wenzelm@12273
   137
(** locale elements and expressions **)
wenzelm@11896
   138
wenzelm@18137
   139
datatype ctxt = datatype Element.ctxt;
wenzelm@17355
   140
wenzelm@12273
   141
datatype expr =
wenzelm@12273
   142
  Locale of string |
ballarin@16102
   143
  Rename of expr * (string * mixfix option) option list |
wenzelm@12273
   144
  Merge of expr list;
wenzelm@12273
   145
wenzelm@12273
   146
val empty = Merge [];
wenzelm@12273
   147
wenzelm@18137
   148
datatype 'a element =
ballarin@15206
   149
  Elem of 'a | Expr of expr;
wenzelm@12273
   150
wenzelm@18137
   151
fun map_elem f (Elem e) = Elem (f e)
wenzelm@18137
   152
  | map_elem _ (Expr e) = Expr e;
wenzelm@18137
   153
wenzelm@24020
   154
type decl = declaration * stamp;
wenzelm@21499
   155
wenzelm@12070
   156
type locale =
ballarin@19931
   157
 {axiom: Element.witness list,
ballarin@19942
   158
    (* For locales that define predicates this is [A [A]], where A is the locale
ballarin@20317
   159
       specification.  Otherwise [].
ballarin@20317
   160
       Only required to generate the right witnesses for locales with predicates. *)
ballarin@19783
   161
  elems: (Element.context_i * stamp) list,
ballarin@19783
   162
    (* Static content, neither Fixes nor Constrains elements *)
wenzelm@21499
   163
  params: ((string * typ) * mixfix) list,                             (*all params*)
wenzelm@21665
   164
  decls: decl list * decl list,                    (*type/term_syntax declarations*)
ballarin@19931
   165
  regs: ((string * string list) * Element.witness list) list,
wenzelm@19780
   166
    (* Registrations: indentifiers and witnesses of locales interpreted in the locale. *)
haftmann@25619
   167
  intros: thm list * thm list,
ballarin@19931
   168
    (* Introduction rules: of delta predicate and locale predicate. *)
haftmann@25619
   169
  dests: thm list}
ballarin@27761
   170
    (* Destruction rules: projections from locale predicate to predicates of fragments. *)
wenzelm@11896
   171
wenzelm@15703
   172
(* CB: an internal (Int) locale element was either imported or included,
wenzelm@15703
   173
   an external (Ext) element appears directly in the locale text. *)
wenzelm@15703
   174
wenzelm@15703
   175
datatype ('a, 'b) int_ext = Int of 'a | Ext of 'b;
wenzelm@15703
   176
wenzelm@15703
   177
wenzelm@15703
   178
ballarin@27761
   179
(** substitutions on Vars -- clone from element.ML **)
ballarin@25286
   180
ballarin@25286
   181
(* instantiate types *)
ballarin@25286
   182
ballarin@25286
   183
fun var_instT_type env =
ballarin@25286
   184
  if Vartab.is_empty env then I
ballarin@25286
   185
  else Term.map_type_tvar (fn (x, S) => the_default (TVar (x, S)) (Vartab.lookup env x));
ballarin@25286
   186
ballarin@25286
   187
fun var_instT_term env =
ballarin@25286
   188
  if Vartab.is_empty env then I
ballarin@25286
   189
  else Term.map_types (var_instT_type env);
ballarin@25286
   190
ballarin@25286
   191
fun var_inst_term (envT, env) =
ballarin@25286
   192
  if Vartab.is_empty env then var_instT_term envT
ballarin@25286
   193
  else
ballarin@25286
   194
    let
ballarin@25286
   195
      val instT = var_instT_type envT;
ballarin@25286
   196
      fun inst (Const (x, T)) = Const (x, instT T)
ballarin@25286
   197
        | inst (Free (x, T)) = Free(x, instT T)
ballarin@25286
   198
        | inst (Var (xi, T)) =
ballarin@25286
   199
            (case Vartab.lookup env xi of
ballarin@25286
   200
              NONE => Var (xi, instT T)
ballarin@25286
   201
            | SOME t => t)
ballarin@25286
   202
        | inst (b as Bound _) = b
ballarin@25286
   203
        | inst (Abs (x, T, t)) = Abs (x, instT T, inst t)
ballarin@25286
   204
        | inst (t $ u) = inst t $ inst u;
ballarin@25286
   205
    in Envir.beta_norm o inst end;
ballarin@25286
   206
ballarin@25286
   207
ballarin@16736
   208
(** management of registrations in theories and proof contexts **)
ballarin@15837
   209
ballarin@28005
   210
type registration =
ballarin@28005
   211
  {attn: (bool * string) * Attrib.src list,
ballarin@28005
   212
      (* parameters and prefix
ballarin@28005
   213
       (if the Boolean flag is set, only accesses containing the prefix are generated,
ballarin@28005
   214
        otherwise the prefix may be omitted when accessing theorems etc.) *)
ballarin@28005
   215
    exp: Morphism.morphism,
ballarin@28005
   216
      (* maps content to its originating context *)
ballarin@28005
   217
    imp: (typ Vartab.table * typ list) * (term Vartab.table * term list),
ballarin@28005
   218
      (* inverse of exp *)
ballarin@28005
   219
    wits: Element.witness list,
ballarin@28005
   220
      (* witnesses of the registration *)
ballarin@28005
   221
    eqns: thm Termtab.table
ballarin@28005
   222
      (* theorems (equations) interpreting derived concepts and indexed by lhs *)
ballarin@28005
   223
  }
ballarin@28005
   224
ballarin@15837
   225
structure Registrations :
ballarin@15837
   226
  sig
ballarin@15837
   227
    type T
ballarin@15837
   228
    val empty: T
ballarin@15837
   229
    val join: T * T -> T
ballarin@20069
   230
    val dest: theory -> T ->
ballarin@22658
   231
      (term list *
ballarin@25286
   232
        (((bool * string) * Attrib.src list) *
ballarin@25286
   233
         (Morphism.morphism * ((typ Vartab.table * typ list) * (term Vartab.table * term list))) *
ballarin@25286
   234
         Element.witness list *
ballarin@25095
   235
         thm Termtab.table)) list
ballarin@25286
   236
    val test: theory -> T * term list -> bool
ballarin@25286
   237
    val lookup: theory ->
ballarin@25286
   238
      T * (term list * ((typ Vartab.table * typ list) * (term Vartab.table * term list))) ->
ballarin@25286
   239
      (((bool * string) * Attrib.src list) *
ballarin@25286
   240
        Element.witness list *
ballarin@25286
   241
        thm Termtab.table) option
ballarin@25286
   242
    val insert: theory -> term list -> ((bool * string) * Attrib.src list) ->
ballarin@28005
   243
      (Morphism.morphism * ((typ Vartab.table * typ list) * (term Vartab.table * term list))) ->
ballarin@28005
   244
      T ->
haftmann@22351
   245
      T * (term list * (((bool * string) * Attrib.src list) * Element.witness list)) list
wenzelm@19780
   246
    val add_witness: term list -> Element.witness -> T -> T
ballarin@25095
   247
    val add_equation: term list -> thm -> T -> T
ballarin@15837
   248
  end =
ballarin@15837
   249
struct
ballarin@28005
   250
  (* A registration is indexed by parameter instantiation.
ballarin@28005
   251
     NB: index is exported whereas content is internalised. *)
ballarin@28005
   252
  type T = registration Termtab.table;
ballarin@28005
   253
ballarin@28005
   254
  fun mk_reg attn exp imp wits eqns =
ballarin@28005
   255
    {attn = attn, exp = exp, imp = imp, wits = wits, eqns = eqns};
ballarin@28005
   256
ballarin@28005
   257
  fun map_reg f reg =
ballarin@28005
   258
    let
ballarin@28005
   259
      val {attn, exp, imp, wits, eqns} = reg;
ballarin@28005
   260
      val (attn', exp', imp', wits', eqns') = f (attn, exp, imp, wits, eqns);
ballarin@28005
   261
    in mk_reg attn' exp' imp' wits' eqns' end;
ballarin@15837
   262
ballarin@15837
   263
  val empty = Termtab.empty;
ballarin@15837
   264
ballarin@15837
   265
  (* term list represented as single term, for simultaneous matching *)
ballarin@15837
   266
  fun termify ts =
wenzelm@18343
   267
    Term.list_comb (Const ("", map fastype_of ts ---> propT), ts);
ballarin@15837
   268
  fun untermify t =
ballarin@15837
   269
    let fun ut (Const _) ts = ts
ballarin@15837
   270
          | ut (s $ t) ts = ut s (t::ts)
ballarin@15837
   271
    in ut t [] end;
ballarin@15837
   272
ballarin@22658
   273
  (* joining of registrations:
ballarin@25286
   274
     - prefix, attributes and morphisms of right theory;
ballarin@22658
   275
     - witnesses are equal, no attempt to subsumption testing;
ballarin@22658
   276
     - union of equalities, if conflicting (i.e. two eqns with equal lhs)
ballarin@22658
   277
       eqn of right theory takes precedence *)
ballarin@28005
   278
  fun join (r1, r2) = Termtab.join (fn _ => fn ({eqns = e1, ...}, {attn = n, exp, imp, wits = w, eqns = e2}) =>
ballarin@28005
   279
      mk_reg n exp imp w (Termtab.join (fn _ => fn (_, e) => e) (e1, e2))) (r1, r2);
ballarin@15837
   280
ballarin@20069
   281
  fun dest_transfer thy regs =
ballarin@28005
   282
    Termtab.dest regs |> map (apsnd (map_reg (fn (n, e, i, ws, es) =>
ballarin@28005
   283
      (n, e, i, map (Element.transfer_witness thy) ws, Termtab.map (transfer thy) es))));
ballarin@28005
   284
ballarin@28005
   285
  fun dest thy regs = dest_transfer thy regs |> map (apfst untermify) |>
ballarin@28005
   286
    map (apsnd (fn {attn, exp, imp, wits, eqns} => (attn, (exp, imp), wits, eqns)));
ballarin@15837
   287
ballarin@15837
   288
  (* registrations that subsume t *)
wenzelm@17203
   289
  fun subsumers thy t regs =
ballarin@20069
   290
    filter (fn (t', _) => Pattern.matches thy (t', t)) (dest_transfer thy regs);
ballarin@15837
   291
ballarin@25286
   292
  (* test if registration that subsumes the query is present *)
ballarin@25286
   293
  fun test thy (regs, ts) =
ballarin@25286
   294
    not (null (subsumers thy (termify ts) regs));
ballarin@25286
   295
      
ballarin@15837
   296
  (* look up registration, pick one that subsumes the query *)
ballarin@25286
   297
  fun lookup thy (regs, (ts, ((impT, _), (imp, _)))) =
ballarin@15837
   298
    let
ballarin@15837
   299
      val t = termify ts;
wenzelm@19780
   300
      val subs = subsumers thy t regs;
wenzelm@21483
   301
    in
wenzelm@21483
   302
      (case subs of
ballarin@15837
   303
        [] => NONE
ballarin@28005
   304
        | ((t', {attn = (prfx, atts), exp = exp', imp = ((impT', domT'), (imp', dom')), wits, eqns}) :: _) =>
wenzelm@21483
   305
          let
wenzelm@19780
   306
            val (tinst, inst) = Pattern.match thy (t', t) (Vartab.empty, Vartab.empty);
ballarin@25286
   307
            val tinst' = domT' |> map (fn (T as TFree (x, _)) =>
ballarin@25286
   308
                (x, T |> Morphism.typ exp' |> Envir.typ_subst_TVars tinst
ballarin@25286
   309
                      |> var_instT_type impT)) |> Symtab.make;
ballarin@25286
   310
            val inst' = dom' |> map (fn (t as Free (x, _)) =>
ballarin@25286
   311
                (x, t |> Morphism.term exp' |> Envir.subst_vars (tinst, inst)
ballarin@25286
   312
                      |> var_inst_term (impT, imp))) |> Symtab.make;
ballarin@25286
   313
            val inst'_morph = Element.inst_morphism thy (tinst', inst');
ballarin@25286
   314
          in SOME ((prfx, map (Args.morph_values inst'_morph) atts),
ballarin@28005
   315
            map (Element.morph_witness inst'_morph) wits,
ballarin@25286
   316
            Termtab.map (Morphism.thm inst'_morph) eqns)
ballarin@23918
   317
          end)
ballarin@15837
   318
    end;
ballarin@15837
   319
ballarin@15837
   320
  (* add registration if not subsumed by ones already present,
ballarin@15837
   321
     additionally returns registrations that are strictly subsumed *)
ballarin@28005
   322
  fun insert thy ts attn (exp, imp) regs =
ballarin@15837
   323
    let
ballarin@15837
   324
      val t = termify ts;
ballarin@20069
   325
      val subs = subsumers thy t regs ;
ballarin@15837
   326
    in (case subs of
ballarin@15837
   327
        [] => let
ballarin@15837
   328
                val sups =
ballarin@20069
   329
                  filter (fn (t', _) => Pattern.matches thy (t, t')) (dest_transfer thy regs);
ballarin@28005
   330
                val sups' = map (apfst untermify) sups |> map (fn (ts, {attn, wits, ...}) => (ts, (attn, wits)))
ballarin@28005
   331
              in (Termtab.update (t, mk_reg attn exp imp [] Termtab.empty) regs, sups') end
ballarin@15837
   332
      | _ => (regs, []))
ballarin@15837
   333
    end;
ballarin@15837
   334
haftmann@25669
   335
  fun gen_add f ts regs =
ballarin@23918
   336
    let
ballarin@23918
   337
      val t = termify ts;
ballarin@23918
   338
    in
ballarin@28005
   339
      Termtab.update (t, map_reg f (the (Termtab.lookup regs t))) regs
ballarin@23918
   340
    end;
ballarin@23918
   341
ballarin@15837
   342
  (* add witness theorem to registration,
ballarin@16169
   343
     only if instantiation is exact, otherwise exception Option raised *)
haftmann@25669
   344
  fun add_witness ts wit regs =
ballarin@28005
   345
    gen_add (fn (x, e, i, wits, eqns) => (x, e, i, Element.close_witness wit :: wits, eqns))
haftmann@25669
   346
      ts regs;
ballarin@22658
   347
ballarin@22658
   348
  (* add equation to registration, replaces previous equation with same lhs;
ballarin@22658
   349
     only if instantiation is exact, otherwise exception Option raised;
ballarin@22658
   350
     exception TERM raised if not a meta equality *)
ballarin@22658
   351
  fun add_equation ts thm regs =
ballarin@28005
   352
    gen_add (fn (x, e, i, thms, eqns) =>
ballarin@28005
   353
      (x, e, i, thms, Termtab.update (thm |> prop_of |> Logic.dest_equals |> fst, Thm.close_derivation thm) eqns))
haftmann@25669
   354
      ts regs;
ballarin@15837
   355
end;
ballarin@15837
   356
ballarin@16736
   357
ballarin@24787
   358
(** theory data : locales **)
ballarin@24787
   359
ballarin@24787
   360
structure LocalesData = TheoryDataFun
wenzelm@22846
   361
(
ballarin@24787
   362
  type T = NameSpace.T * locale Symtab.table;
ballarin@15596
   363
    (* 1st entry: locale namespace,
ballarin@24787
   364
       2nd entry: locales of the theory *)
ballarin@24787
   365
ballarin@24787
   366
  val empty = (NameSpace.empty, Symtab.empty);
wenzelm@12063
   367
  val copy = I;
wenzelm@16458
   368
  val extend = I;
wenzelm@12289
   369
wenzelm@21665
   370
  fun join_locales _
ballarin@27716
   371
    ({axiom, elems, params, decls = (decls1, decls2), regs, intros, dests}: locale,
wenzelm@21665
   372
      {elems = elems', decls = (decls1', decls2'), regs = regs', ...}: locale) =
ballarin@19931
   373
     {axiom = axiom,
haftmann@27681
   374
      elems = merge_lists (eq_snd (op =)) elems elems',
ballarin@16736
   375
      params = params,
wenzelm@21499
   376
      decls =
wenzelm@21665
   377
       (Library.merge (eq_snd (op =)) (decls1, decls1'),
wenzelm@21665
   378
        Library.merge (eq_snd (op =)) (decls2, decls2')),
haftmann@27681
   379
      regs = merge_alists (op =) regs regs',
haftmann@25619
   380
      intros = intros,
haftmann@25619
   381
      dests = dests};
ballarin@24787
   382
  fun merge _ ((space1, locs1), (space2, locs2)) =
ballarin@24787
   383
    (NameSpace.merge (space1, space2), Symtab.join join_locales (locs1, locs2));
wenzelm@22846
   384
);
wenzelm@22846
   385
wenzelm@22846
   386
wenzelm@22846
   387
ballarin@24787
   388
(** context data : registrations **)
ballarin@24787
   389
ballarin@24787
   390
structure RegistrationsData = GenericDataFun
wenzelm@22846
   391
(
wenzelm@22846
   392
  type T = Registrations.T Symtab.table;  (*registrations, indexed by locale name*)
ballarin@24787
   393
  val empty = Symtab.empty;
ballarin@24787
   394
  val extend = I;
ballarin@24787
   395
  fun merge _ = Symtab.join (K Registrations.join);
wenzelm@22846
   396
);
wenzelm@22846
   397
wenzelm@22846
   398
ballarin@24787
   399
(** access locales **)
wenzelm@22846
   400
ballarin@24787
   401
val intern = NameSpace.intern o #1 o LocalesData.get;
ballarin@24787
   402
val extern = NameSpace.extern o #1 o LocalesData.get;
ballarin@15624
   403
haftmann@27681
   404
fun get_locale thy name = Symtab.lookup (#2 (LocalesData.get thy)) name;
haftmann@27681
   405
haftmann@27681
   406
fun the_locale thy name = case get_locale thy name
haftmann@27681
   407
 of SOME loc => loc
haftmann@27681
   408
  | NONE => error ("Unknown locale " ^ quote name);
haftmann@27681
   409
haftmann@27686
   410
fun register_locale name loc thy =
ballarin@24787
   411
  thy |> LocalesData.map (fn (space, locs) =>
haftmann@27681
   412
    (Sign.declare_name thy name space, Symtab.update (name, loc) locs));
wenzelm@11896
   413
wenzelm@18806
   414
fun change_locale name f thy =
wenzelm@18806
   415
  let
ballarin@27716
   416
    val {axiom, elems, params, decls, regs, intros, dests} =
ballarin@19931
   417
        the_locale thy name;
ballarin@27716
   418
    val (axiom', elems', params', decls', regs', intros', dests') =
ballarin@27716
   419
      f (axiom, elems, params, decls, regs, intros, dests);
wenzelm@18806
   420
  in
haftmann@27681
   421
    thy
haftmann@27681
   422
    |> (LocalesData.map o apsnd) (Symtab.update (name, {axiom = axiom',
ballarin@27716
   423
          elems = elems', params = params',
haftmann@27681
   424
          decls = decls', regs = regs', intros = intros', dests = dests'}))
haftmann@27681
   425
  end;
haftmann@27681
   426
haftmann@27681
   427
fun print_locales thy =
haftmann@27681
   428
  let val (space, locs) = LocalesData.get thy in
haftmann@27681
   429
    Pretty.strs ("locales:" :: map #1 (NameSpace.extern_table (space, locs)))
haftmann@27681
   430
    |> Pretty.writeln
wenzelm@18806
   431
  end;
wenzelm@18806
   432
wenzelm@12046
   433
ballarin@15596
   434
(* access registrations *)
ballarin@15596
   435
ballarin@15624
   436
(* retrieve registration from theory or context *)
ballarin@15596
   437
ballarin@24787
   438
fun get_registrations ctxt name =
ballarin@24787
   439
  case Symtab.lookup (RegistrationsData.get ctxt) name of
ballarin@15696
   440
      NONE => []
ballarin@24787
   441
    | SOME reg => Registrations.dest (Context.theory_of ctxt) reg;
ballarin@24787
   442
ballarin@24787
   443
fun get_global_registrations thy = get_registrations (Context.Theory thy);
ballarin@24787
   444
fun get_local_registrations ctxt = get_registrations (Context.Proof ctxt);
ballarin@24787
   445
ballarin@24787
   446
wenzelm@25357
   447
fun get_registration ctxt imprt (name, ps) =
ballarin@24787
   448
  case Symtab.lookup (RegistrationsData.get ctxt) name of
ballarin@15624
   449
      NONE => NONE
wenzelm@25357
   450
    | SOME reg => Registrations.lookup (Context.theory_of ctxt) (reg, (ps, imprt));
ballarin@24787
   451
ballarin@24787
   452
fun get_global_registration thy = get_registration (Context.Theory thy);
ballarin@24787
   453
fun get_local_registration ctxt = get_registration (Context.Proof ctxt);
ballarin@15624
   454
ballarin@25286
   455
ballarin@25286
   456
fun test_registration ctxt (name, ps) =
ballarin@25286
   457
  case Symtab.lookup (RegistrationsData.get ctxt) name of
ballarin@25286
   458
      NONE => false
ballarin@25286
   459
    | SOME reg => Registrations.test (Context.theory_of ctxt) (reg, ps);
ballarin@25286
   460
ballarin@25286
   461
fun test_global_registration thy = test_registration (Context.Theory thy);
ballarin@25286
   462
fun test_local_registration ctxt = test_registration (Context.Proof ctxt);
ballarin@25286
   463
ballarin@15624
   464
ballarin@15837
   465
(* add registration to theory or context, ignored if subsumed *)
ballarin@15624
   466
ballarin@28005
   467
fun put_registration (name, ps) attn morphs (* wits *) ctxt =
ballarin@24787
   468
  RegistrationsData.map (fn regs =>
ballarin@15837
   469
    let
ballarin@24787
   470
      val thy = Context.theory_of ctxt;
wenzelm@18343
   471
      val reg = the_default Registrations.empty (Symtab.lookup regs name);
ballarin@28005
   472
      val (reg', sups) = Registrations.insert thy ps attn morphs (* wits *) reg;
ballarin@15837
   473
      val _ = if not (null sups) then warning
ballarin@15837
   474
                ("Subsumed interpretation(s) of locale " ^
wenzelm@16458
   475
                 quote (extern thy name) ^
ballarin@22658
   476
                 "\nwith the following prefix(es):" ^
haftmann@22351
   477
                  commas_quote (map (fn (_, (((_, s), _), _)) => s) sups))
ballarin@15837
   478
              else ();
ballarin@24787
   479
    in Symtab.update (name, reg') regs end) ctxt;
ballarin@24787
   480
ballarin@25286
   481
fun put_global_registration id attn morphs =
ballarin@25286
   482
  Context.theory_map (put_registration id attn morphs);
ballarin@25286
   483
fun put_local_registration id attn morphs =
ballarin@25286
   484
  Context.proof_map (put_registration id attn morphs);
ballarin@24787
   485
ballarin@15624
   486
wenzelm@18806
   487
fun put_registration_in_locale name id =
ballarin@27716
   488
  change_locale name (fn (axiom, elems, params, decls, regs, intros, dests) =>
ballarin@27716
   489
    (axiom, elems, params, decls, regs @ [(id, [])], intros, dests));
ballarin@17000
   490
ballarin@15624
   491
ballarin@22658
   492
(* add witness theorem to registration, ignored if registration not present *)
ballarin@15596
   493
wenzelm@18123
   494
fun add_witness (name, ps) thm =
ballarin@24787
   495
  RegistrationsData.map (Symtab.map_entry name (Registrations.add_witness ps thm));
ballarin@24787
   496
ballarin@24787
   497
fun add_global_witness id thm = Context.theory_map (add_witness id thm);
ballarin@24787
   498
fun add_local_witness id thm = Context.proof_map (add_witness id thm);
ballarin@24787
   499
ballarin@15596
   500
wenzelm@18806
   501
fun add_witness_in_locale name id thm =
ballarin@27716
   502
  change_locale name (fn (axiom, elems, params, decls, regs, intros, dests) =>
ballarin@17000
   503
    let
ballarin@17000
   504
      fun add (id', thms) =
wenzelm@18806
   505
        if id = id' then (id', thm :: thms) else (id', thms);
ballarin@27716
   506
    in (axiom, elems, params, decls, map add regs, intros, dests) end);
ballarin@15596
   507
ballarin@14215
   508
ballarin@22658
   509
(* add equation to registration, ignored if registration not present *)
ballarin@22658
   510
ballarin@22658
   511
fun add_equation (name, ps) thm =
ballarin@24787
   512
  RegistrationsData.map (Symtab.map_entry name (Registrations.add_equation ps thm));
ballarin@24787
   513
ballarin@24787
   514
fun add_global_equation id thm = Context.theory_map (add_equation id thm);
ballarin@24787
   515
fun add_local_equation id thm = Context.proof_map (add_equation id thm);
ballarin@22658
   516
ballarin@22658
   517
ballarin@15624
   518
(* printing of registrations *)
ballarin@15596
   519
ballarin@24787
   520
fun print_registrations show_wits loc ctxt =
ballarin@15596
   521
  let
wenzelm@15703
   522
    val thy = ProofContext.theory_of ctxt;
wenzelm@24920
   523
    val prt_term = Pretty.quote o Syntax.pretty_term ctxt;
ballarin@25095
   524
    fun prt_term' t = if !show_types
ballarin@25095
   525
          then Pretty.block [prt_term t, Pretty.brk 1, Pretty.str "::",
ballarin@25095
   526
            Pretty.brk 1, (Pretty.quote o Syntax.pretty_typ ctxt) (type_of t)]
ballarin@25095
   527
          else prt_term t;
ballarin@23918
   528
    val prt_thm = prt_term o prop_of;
ballarin@17096
   529
    fun prt_inst ts =
ballarin@25095
   530
        Pretty.enclose "(" ")" (Pretty.breaks (map prt_term' ts));
ballarin@22658
   531
    fun prt_attn ((false, prfx), atts) =
ballarin@22658
   532
        Pretty.breaks (Pretty.str prfx :: Pretty.str "(optional)" ::
ballarin@22658
   533
          Attrib.pretty_attribs ctxt atts)
ballarin@22658
   534
      | prt_attn ((true, prfx), atts) =
ballarin@22658
   535
        Pretty.breaks (Pretty.str prfx :: Attrib.pretty_attribs ctxt atts);
ballarin@22658
   536
    fun prt_eqns [] = Pretty.str "no equations."
ballarin@22658
   537
      | prt_eqns eqns = Pretty.block (Pretty.str "equations:" :: Pretty.brk 1 ::
ballarin@23918
   538
          Pretty.breaks (map prt_thm eqns));
ballarin@22658
   539
    fun prt_core ts eqns =
ballarin@22658
   540
          [prt_inst ts, Pretty.fbrk, prt_eqns (Termtab.dest eqns |> map snd)];
ballarin@22658
   541
    fun prt_witns [] = Pretty.str "no witnesses."
ballarin@22658
   542
      | prt_witns witns = Pretty.block (Pretty.str "witnesses:" :: Pretty.brk 1 ::
ballarin@22658
   543
          Pretty.breaks (map (Element.pretty_witness ctxt) witns))
ballarin@25286
   544
    fun prt_reg (ts, (((_, ""), []), _, witns, eqns)) =
ballarin@17138
   545
        if show_wits
ballarin@22658
   546
          then Pretty.block (prt_core ts eqns @ [Pretty.fbrk, prt_witns witns])
ballarin@22658
   547
          else Pretty.block (prt_core ts eqns)
ballarin@25286
   548
      | prt_reg (ts, (attn, _, witns, eqns)) =
ballarin@17138
   549
        if show_wits
ballarin@22658
   550
          then Pretty.block ((prt_attn attn @ [Pretty.str ":", Pretty.brk 1] @
ballarin@22658
   551
            prt_core ts eqns @ [Pretty.fbrk, prt_witns witns]))
ballarin@17096
   552
          else Pretty.block ((prt_attn attn @
ballarin@22658
   553
            [Pretty.str ":", Pretty.brk 1] @ prt_core ts eqns));
wenzelm@15703
   554
wenzelm@16458
   555
    val loc_int = intern thy loc;
ballarin@24787
   556
    val regs = RegistrationsData.get (Context.Proof ctxt);
wenzelm@17412
   557
    val loc_regs = Symtab.lookup regs loc_int;
ballarin@15596
   558
  in
ballarin@15596
   559
    (case loc_regs of
ballarin@24787
   560
        NONE => Pretty.str ("no interpretations")
ballarin@15763
   561
      | SOME r => let
ballarin@20069
   562
            val r' = Registrations.dest thy r;
ballarin@25286
   563
            val r'' = Library.sort_wrt (fn (_, (((_, prfx), _), _, _, _)) => prfx) r';
ballarin@24787
   564
          in Pretty.big_list ("interpretations:") (map prt_reg r'') end)
ballarin@15596
   565
    |> Pretty.writeln
ballarin@15596
   566
  end;
ballarin@15596
   567
ballarin@15596
   568
wenzelm@12277
   569
(* diagnostics *)
wenzelm@12273
   570
wenzelm@12277
   571
fun err_in_locale ctxt msg ids =
wenzelm@12277
   572
  let
wenzelm@16458
   573
    val thy = ProofContext.theory_of ctxt;
wenzelm@12529
   574
    fun prt_id (name, parms) =
wenzelm@16458
   575
      [Pretty.block (Pretty.breaks (map Pretty.str (extern thy name :: parms)))];
wenzelm@19482
   576
    val prt_ids = flat (separate [Pretty.str " +", Pretty.brk 1] (map prt_id ids));
wenzelm@12502
   577
    val err_msg =
wenzelm@12529
   578
      if forall (equal "" o #1) ids then msg
wenzelm@12502
   579
      else msg ^ "\n" ^ Pretty.string_of (Pretty.block
wenzelm@12502
   580
        (Pretty.str "The error(s) above occurred in locale:" :: Pretty.brk 1 :: prt_ids));
wenzelm@18678
   581
  in error err_msg end;
wenzelm@12046
   582
ballarin@15206
   583
fun err_in_locale' ctxt msg ids' = err_in_locale ctxt msg (map fst ids');
wenzelm@12277
   584
wenzelm@12277
   585
ballarin@19783
   586
fun pretty_ren NONE = Pretty.str "_"
ballarin@19783
   587
  | pretty_ren (SOME (x, NONE)) = Pretty.str x
ballarin@19783
   588
  | pretty_ren (SOME (x, SOME syn)) =
ballarin@19783
   589
      Pretty.block [Pretty.str x, Pretty.brk 1, Syntax.pretty_mixfix syn];
ballarin@19783
   590
ballarin@19783
   591
fun pretty_expr thy (Locale name) = Pretty.str (extern thy name)
ballarin@19783
   592
  | pretty_expr thy (Rename (expr, xs)) =
ballarin@19783
   593
      Pretty.block [pretty_expr thy expr, Pretty.brk 1, Pretty.block (map pretty_ren xs |> Pretty.breaks)]
ballarin@19783
   594
  | pretty_expr thy (Merge es) =
ballarin@19783
   595
      Pretty.separate "+" (map (pretty_expr thy) es) |> Pretty.block;
ballarin@19783
   596
ballarin@19783
   597
fun err_in_expr _ msg (Merge []) = error msg
ballarin@19783
   598
  | err_in_expr ctxt msg expr =
ballarin@19783
   599
    error (msg ^ "\n" ^ Pretty.string_of (Pretty.block
ballarin@19783
   600
      [Pretty.str "The error(s) above occured in locale expression:", Pretty.brk 1,
ballarin@19783
   601
       pretty_expr (ProofContext.theory_of ctxt) expr]));
ballarin@19783
   602
wenzelm@12046
   603
wenzelm@12529
   604
(** structured contexts: rename + merge + implicit type instantiation **)
wenzelm@12529
   605
wenzelm@12529
   606
(* parameter types *)
wenzelm@12529
   607
wenzelm@12529
   608
fun frozen_tvars ctxt Ts =
wenzelm@19914
   609
  #1 (Variable.importT_inst (map Logic.mk_type Ts) ctxt)
wenzelm@19900
   610
  |> map (fn ((xi, S), T) => (xi, (S, T)));
wenzelm@12529
   611
wenzelm@12529
   612
fun unify_frozen ctxt maxidx Ts Us =
wenzelm@12529
   613
  let
wenzelm@18343
   614
    fun paramify NONE i = (NONE, i)
wenzelm@18343
   615
      | paramify (SOME T) i = apfst SOME (TypeInfer.paramify_dummies T i);
wenzelm@12529
   616
wenzelm@18343
   617
    val (Ts', maxidx') = fold_map paramify Ts maxidx;
wenzelm@18343
   618
    val (Us', maxidx'') = fold_map paramify Us maxidx';
wenzelm@16947
   619
    val thy = ProofContext.theory_of ctxt;
ballarin@14215
   620
wenzelm@18190
   621
    fun unify (SOME T, SOME U) env = (Sign.typ_unify thy (U, T) env
wenzelm@18190
   622
          handle Type.TUNIFY => raise TYPE ("unify_frozen: failed to unify types", [U, T], []))
wenzelm@18190
   623
      | unify _ env = env;
wenzelm@18190
   624
    val (unifier, _) = fold unify (Ts' ~~ Us') (Vartab.empty, maxidx'');
skalberg@15570
   625
    val Vs = map (Option.map (Envir.norm_type unifier)) Us';
wenzelm@19482
   626
    val unifier' = Vartab.extend (unifier, frozen_tvars ctxt (map_filter I Vs));
skalberg@15570
   627
  in map (Option.map (Envir.norm_type unifier')) Vs end;
wenzelm@12529
   628
wenzelm@21665
   629
fun params_of elemss =
wenzelm@21665
   630
  distinct (eq_fst (op = : string * string -> bool)) (maps (snd o fst) elemss);
wenzelm@21665
   631
wenzelm@21665
   632
fun params_of' elemss =
wenzelm@21665
   633
  distinct (eq_fst (op = : string * string -> bool)) (maps (snd o fst o fst) elemss);
wenzelm@21665
   634
wenzelm@21665
   635
ballarin@26645
   636
fun params_qualified params name =
ballarin@26645
   637
  NameSpace.qualified (space_implode "_" params) name;
ballarin@16102
   638
ballarin@14508
   639
ballarin@14508
   640
(* CB: param_types has the following type:
skalberg@15531
   641
  ('a * 'b option) list -> ('a * 'b) list *)
wenzelm@19482
   642
fun param_types ps = map_filter (fn (_, NONE) => NONE | (x, SOME T) => SOME (x, T)) ps;
wenzelm@12529
   643
wenzelm@12529
   644
haftmann@19932
   645
fun merge_syntax ctxt ids ss = Symtab.merge (op = : mixfix * mixfix -> bool) ss
wenzelm@23655
   646
  handle Symtab.DUP x => err_in_locale ctxt
wenzelm@23655
   647
    ("Conflicting syntax for parameter: " ^ quote x) (map fst ids);
ballarin@16102
   648
ballarin@16102
   649
ballarin@17000
   650
(* Distinction of assumed vs. derived identifiers.
ballarin@17000
   651
   The former may have axioms relating assumptions of the context to
ballarin@17000
   652
   assumptions of the specification fragment (for locales with
wenzelm@19780
   653
   predicates).  The latter have witnesses relating assumptions of the
ballarin@17000
   654
   specification fragment to assumptions of other (assumed) specification
ballarin@17000
   655
   fragments. *)
ballarin@17000
   656
ballarin@17000
   657
datatype 'a mode = Assumed of 'a | Derived of 'a;
ballarin@17000
   658
ballarin@17000
   659
fun map_mode f (Assumed x) = Assumed (f x)
ballarin@17000
   660
  | map_mode f (Derived x) = Derived (f x);
ballarin@17000
   661
wenzelm@18123
   662
wenzelm@12529
   663
(* flatten expressions *)
wenzelm@12014
   664
wenzelm@12510
   665
local
wenzelm@12502
   666
wenzelm@18137
   667
fun unify_parms ctxt fixed_parms raw_parmss =
wenzelm@12502
   668
  let
wenzelm@16458
   669
    val thy = ProofContext.theory_of ctxt;
wenzelm@12502
   670
    val maxidx = length raw_parmss;
wenzelm@12502
   671
    val idx_parmss = (0 upto maxidx - 1) ~~ raw_parmss;
wenzelm@12502
   672
wenzelm@12502
   673
    fun varify i = Term.map_type_tfree (fn (a, S) => TVar ((a, i), S));
wenzelm@12529
   674
    fun varify_parms (i, ps) = map (apsnd (varify i)) (param_types ps);
wenzelm@19482
   675
    val parms = fixed_parms @ maps varify_parms idx_parmss;
wenzelm@12502
   676
wenzelm@18137
   677
    fun unify T U envir = Sign.typ_unify thy (U, T) envir
ballarin@15206
   678
      handle Type.TUNIFY =>
wenzelm@23418
   679
        let
schirmer@22339
   680
          val T' = Envir.norm_type (fst envir) T;
schirmer@22339
   681
          val U' = Envir.norm_type (fst envir) U;
wenzelm@26948
   682
          val prt = Syntax.string_of_typ ctxt;
schirmer@22339
   683
        in
wenzelm@18137
   684
          raise TYPE ("unify_parms: failed to unify types " ^
schirmer@22339
   685
            prt U' ^ " and " ^ prt T', [U', T'], [])
wenzelm@18137
   686
        end;
wenzelm@18137
   687
    fun unify_list (T :: Us) = fold (unify T) Us
wenzelm@18137
   688
      | unify_list [] = I;
wenzelm@18952
   689
    val (unifier, _) = fold unify_list (map #2 (Symtab.dest (Symtab.make_list parms)))
wenzelm@18137
   690
      (Vartab.empty, maxidx);
wenzelm@12502
   691
wenzelm@19061
   692
    val parms' = map (apsnd (Envir.norm_type unifier)) (distinct (eq_fst (op =)) parms);
wenzelm@12502
   693
    val unifier' = Vartab.extend (unifier, frozen_tvars ctxt (map #2 parms'));
wenzelm@12502
   694
wenzelm@12502
   695
    fun inst_parms (i, ps) =
wenzelm@23178
   696
      List.foldr Term.add_typ_tfrees [] (map_filter snd ps)
wenzelm@19482
   697
      |> map_filter (fn (a, S) =>
wenzelm@12502
   698
          let val T = Envir.norm_type unifier' (TVar ((a, i), S))
wenzelm@18137
   699
          in if T = TFree (a, S) then NONE else SOME (a, T) end)
wenzelm@18137
   700
      |> Symtab.make;
wenzelm@18137
   701
  in map inst_parms idx_parmss end;
wenzelm@12502
   702
wenzelm@12529
   703
in
wenzelm@12502
   704
wenzelm@12529
   705
fun unify_elemss _ _ [] = []
wenzelm@12529
   706
  | unify_elemss _ [] [elems] = [elems]
wenzelm@12529
   707
  | unify_elemss ctxt fixed_parms elemss =
wenzelm@12502
   708
      let
wenzelm@18137
   709
        val thy = ProofContext.theory_of ctxt;
wenzelm@21483
   710
        val phis = unify_parms ctxt fixed_parms (map (snd o fst o fst) elemss)
wenzelm@21483
   711
          |> map (Element.instT_morphism thy);
wenzelm@21483
   712
        fun inst ((((name, ps), mode), elems), phi) =
wenzelm@21483
   713
          (((name, map (apsnd (Option.map (Morphism.typ phi))) ps),
wenzelm@21483
   714
              map_mode (map (Element.morph_witness phi)) mode),
wenzelm@21483
   715
            map (Element.morph_ctxt phi) elems);
wenzelm@21483
   716
      in map inst (elemss ~~ phis) end;
wenzelm@12502
   717
ballarin@17000
   718
wenzelm@19810
   719
fun renaming xs parms = zip_options parms xs
wenzelm@19810
   720
  handle Library.UnequalLengths =>
wenzelm@19810
   721
    error ("Too many arguments in renaming: " ^
wenzelm@19810
   722
      commas (map (fn NONE => "_" | SOME x => quote (fst x)) xs));
wenzelm@19810
   723
wenzelm@19810
   724
ballarin@19783
   725
(* params_of_expr:
ballarin@19783
   726
   Compute parameters (with types and syntax) of locale expression.
ballarin@19783
   727
*)
ballarin@19783
   728
ballarin@19783
   729
fun params_of_expr ctxt fixed_params expr (prev_parms, prev_types, prev_syn) =
ballarin@19783
   730
  let
ballarin@19783
   731
    val thy = ProofContext.theory_of ctxt;
ballarin@19783
   732
ballarin@19783
   733
    fun merge_tenvs fixed tenv1 tenv2 =
ballarin@19783
   734
        let
ballarin@19783
   735
          val [env1, env2] = unify_parms ctxt fixed
ballarin@19783
   736
                [tenv1 |> Symtab.dest |> map (apsnd SOME),
ballarin@19783
   737
                 tenv2 |> Symtab.dest |> map (apsnd SOME)]
ballarin@19783
   738
        in
ballarin@19783
   739
          Symtab.merge (op =) (Symtab.map (Element.instT_type env1) tenv1,
ballarin@19783
   740
            Symtab.map (Element.instT_type env2) tenv2)
ballarin@19783
   741
        end;
ballarin@19783
   742
ballarin@19783
   743
    fun merge_syn expr syn1 syn2 =
haftmann@19932
   744
        Symtab.merge (op = : mixfix * mixfix -> bool) (syn1, syn2)
wenzelm@23655
   745
        handle Symtab.DUP x => err_in_expr ctxt
wenzelm@23655
   746
          ("Conflicting syntax for parameter: " ^ quote x) expr;
wenzelm@20366
   747
ballarin@19783
   748
    fun params_of (expr as Locale name) =
ballarin@19783
   749
          let
ballarin@27716
   750
            val {params, ...} = the_locale thy name;
ballarin@27716
   751
          in (map (fst o fst) params, params |> map fst |> Symtab.make,
ballarin@27716
   752
               params |> map (apfst fst) |> Symtab.make) end
ballarin@19783
   753
      | params_of (expr as Rename (e, xs)) =
ballarin@19783
   754
          let
ballarin@19783
   755
            val (parms', types', syn') = params_of e;
ballarin@19783
   756
            val ren = renaming xs parms';
ballarin@19783
   757
            (* renaming may reduce number of parameters *)
ballarin@19783
   758
            val new_parms = map (Element.rename ren) parms' |> distinct (op =);
ballarin@19783
   759
            val ren_syn = syn' |> Symtab.dest |> map (Element.rename_var ren);
ballarin@19783
   760
            val new_syn = fold (Symtab.insert (op =)) ren_syn Symtab.empty
ballarin@19783
   761
                handle Symtab.DUP x =>
ballarin@19783
   762
                  err_in_expr ctxt ("Conflicting syntax for parameter: " ^ quote x) expr;
wenzelm@22700
   763
            val syn_types = map (apsnd (fn mx =>
wenzelm@22700
   764
                SOME (Type.freeze_type (#1 (TypeInfer.paramify_dummies (Syntax.mixfixT mx) 0)))))
wenzelm@22700
   765
              (Symtab.dest new_syn);
ballarin@19783
   766
            val ren_types = types' |> Symtab.dest |> map (apfst (Element.rename ren));
wenzelm@20366
   767
            val (env :: _) = unify_parms ctxt []
ballarin@19783
   768
                ((ren_types |> map (apsnd SOME)) :: map single syn_types);
ballarin@19783
   769
            val new_types = fold (Symtab.insert (op =))
ballarin@19783
   770
                (map (apsnd (Element.instT_type env)) ren_types) Symtab.empty;
ballarin@19783
   771
          in (new_parms, new_types, new_syn) end
ballarin@19783
   772
      | params_of (Merge es) =
ballarin@19783
   773
          fold (fn e => fn (parms, types, syn) =>
ballarin@19783
   774
                   let
ballarin@19783
   775
                     val (parms', types', syn') = params_of e
ballarin@19783
   776
                   in
haftmann@27681
   777
                     (merge_lists (op =) parms parms', merge_tenvs [] types types',
ballarin@19783
   778
                      merge_syn e syn syn')
ballarin@19783
   779
                   end)
ballarin@19783
   780
            es ([], Symtab.empty, Symtab.empty)
ballarin@19783
   781
ballarin@19783
   782
      val (parms, types, syn) = params_of expr;
ballarin@19783
   783
    in
haftmann@27681
   784
      (merge_lists (op =) prev_parms parms, merge_tenvs fixed_params prev_types types,
ballarin@19783
   785
       merge_syn expr prev_syn syn)
ballarin@19783
   786
    end;
ballarin@19783
   787
ballarin@19783
   788
fun make_params_ids params = [(("", params), ([], Assumed []))];
ballarin@19783
   789
fun make_raw_params_elemss (params, tenv, syn) =
ballarin@19783
   790
    [((("", map (fn p => (p, Symtab.lookup tenv p)) params), Assumed []),
ballarin@19783
   791
      Int [Fixes (map (fn p =>
ballarin@19783
   792
        (p, Symtab.lookup tenv p, Symtab.lookup syn p |> the)) params)])];
ballarin@19783
   793
ballarin@19783
   794
ballarin@15596
   795
(* flatten_expr:
ballarin@15596
   796
   Extend list of identifiers by those new in locale expression expr.
ballarin@15596
   797
   Compute corresponding list of lists of locale elements (one entry per
ballarin@15596
   798
   identifier).
ballarin@15596
   799
ballarin@15596
   800
   Identifiers represent locale fragments and are in an extended form:
ballarin@15596
   801
     ((name, ps), (ax_ps, axs))
ballarin@15596
   802
   (name, ps) is the locale name with all its parameters.
ballarin@15596
   803
   (ax_ps, axs) is the locale axioms with its parameters;
ballarin@15596
   804
     axs are always taken from the top level of the locale hierarchy,
ballarin@15596
   805
     hence axioms may contain additional parameters from later fragments:
ballarin@15596
   806
     ps subset of ax_ps.  axs is either singleton or empty.
ballarin@15596
   807
ballarin@15596
   808
   Elements are enriched by identifier-like information:
ballarin@15596
   809
     (((name, ax_ps), axs), elems)
ballarin@15596
   810
   The parameters in ax_ps are the axiom parameters, but enriched by type
ballarin@15596
   811
   info: now each entry is a pair of string and typ option.  Axioms are
ballarin@15596
   812
   type-instantiated.
ballarin@15596
   813
ballarin@15596
   814
*)
ballarin@15596
   815
ballarin@16102
   816
fun flatten_expr ctxt ((prev_idents, prev_syntax), expr) =
wenzelm@12273
   817
  let
wenzelm@12273
   818
    val thy = ProofContext.theory_of ctxt;
wenzelm@12273
   819
ballarin@17000
   820
    fun rename_parms top ren ((name, ps), (parms, mode)) =
ballarin@19783
   821
        ((name, map (Element.rename ren) ps),
ballarin@19783
   822
         if top
ballarin@19783
   823
         then (map (Element.rename ren) parms,
wenzelm@21483
   824
               map_mode (map (Element.morph_witness (Element.rename_morphism ren))) mode)
ballarin@19783
   825
         else (parms, mode));
wenzelm@12273
   826
ballarin@27716
   827
    (* add (name, pTs) and its registrations, recursively; adjust hyps of witnesses *)
ballarin@17000
   828
ballarin@20167
   829
    fun add_with_regs ((name, pTs), mode) (wits, ids, visited) =
ballarin@20167
   830
        if member (fn (a, (b, _)) => a = b) visited (name, map #1 pTs)
ballarin@20167
   831
        then (wits, ids, visited)
ballarin@20167
   832
        else
wenzelm@20366
   833
          let
wenzelm@20366
   834
            val {params, regs, ...} = the_locale thy name;
wenzelm@20366
   835
            val pTs' = map #1 params;
wenzelm@20366
   836
            val ren = map #1 pTs' ~~ map (fn (x, _) => (x, NONE)) pTs;
wenzelm@20366
   837
              (* dummy syntax, since required by rename *)
wenzelm@20366
   838
            val pTs'' = map (fn ((p, _), (_, T)) => (p, T)) (pTs ~~ pTs');
wenzelm@20366
   839
            val [env] = unify_parms ctxt pTs [map (apsnd SOME) pTs''];
wenzelm@20366
   840
              (* propagate parameter types, to keep them consistent *)
wenzelm@20366
   841
            val regs' = map (fn ((name, ps), wits) =>
wenzelm@20366
   842
                ((name, map (Element.rename ren) ps),
wenzelm@20366
   843
                 map (Element.transfer_witness thy) wits)) regs;
wenzelm@20366
   844
            val new_regs = regs';
wenzelm@20366
   845
            val new_ids = map fst new_regs;
wenzelm@21483
   846
            val new_idTs =
wenzelm@21483
   847
              map (apsnd (map (fn p => (p, (the o AList.lookup (op =) pTs) p)))) new_ids;
ballarin@17096
   848
wenzelm@20366
   849
            val new_wits = new_regs |> map (#2 #> map
wenzelm@21483
   850
              (Element.morph_witness
wenzelm@21483
   851
                (Element.instT_morphism thy env $>
wenzelm@21483
   852
                  Element.rename_morphism ren $>
haftmann@25669
   853
                  Element.satisfy_morphism wits)
haftmann@25669
   854
                #> Element.close_witness));
wenzelm@20366
   855
            val new_ids' = map (fn (id, wits) =>
wenzelm@20366
   856
                (id, ([], Derived wits))) (new_ids ~~ new_wits);
wenzelm@20366
   857
            val new_idTs' = map (fn ((n, pTs), (_, ([], mode))) =>
wenzelm@20366
   858
                ((n, pTs), mode)) (new_idTs ~~ new_ids');
wenzelm@20366
   859
            val new_id = ((name, map #1 pTs), ([], mode));
wenzelm@20366
   860
            val (wits', ids', visited') = fold add_with_regs new_idTs'
ballarin@20167
   861
              (wits @ flat new_wits, ids, visited @ [new_id]);
wenzelm@20366
   862
          in
wenzelm@20366
   863
            (wits', ids' @ [new_id], visited')
wenzelm@20366
   864
          end;
ballarin@17000
   865
ballarin@17000
   866
    (* distribute top-level axioms over assumed ids *)
ballarin@17000
   867
ballarin@17000
   868
    fun axiomify all_ps ((name, parms), (_, Assumed _)) axioms =
ballarin@17000
   869
        let
ballarin@17000
   870
          val {elems, ...} = the_locale thy name;
wenzelm@19482
   871
          val ts = maps
wenzelm@19482
   872
            (fn (Assumes asms, _) => maps (map #1 o #2) asms
ballarin@17000
   873
              | _ => [])
wenzelm@19482
   874
            elems;
wenzelm@19018
   875
          val (axs1, axs2) = chop (length ts) axioms;
ballarin@17000
   876
        in (((name, parms), (all_ps, Assumed axs1)), axs2) end
ballarin@17000
   877
      | axiomify all_ps (id, (_, Derived ths)) axioms =
ballarin@17000
   878
          ((id, (all_ps, Derived ths)), axioms);
ballarin@17000
   879
ballarin@17096
   880
    (* identifiers of an expression *)
ballarin@17096
   881
ballarin@15206
   882
    fun identify top (Locale name) =
ballarin@15596
   883
    (* CB: ids_ax is a list of tuples of the form ((name, ps), axs),
ballarin@15206
   884
       where name is a locale name, ps a list of parameter names and axs
ballarin@15206
   885
       a list of axioms relating to the identifier, axs is empty unless
ballarin@15206
   886
       identify at top level (top = true);
ballarin@14215
   887
       parms is accumulated list of parameters *)
wenzelm@12289
   888
          let
ballarin@27716
   889
            val {axiom, params, ...} = the_locale thy name;
ballarin@19278
   890
            val ps = map (#1 o #1) params;
ballarin@27716
   891
            val (_, ids'', _) = add_with_regs ((name, map #1 params), Assumed []) ([], [], []);
ballarin@20167
   892
            val ids_ax = if top then fst (fold_map (axiomify ps) ids'' axiom) else ids'';
ballarin@27716
   893
            in (ids_ax, ps) end
ballarin@15206
   894
      | identify top (Rename (e, xs)) =
wenzelm@12273
   895
          let
ballarin@20035
   896
            val (ids', parms') = identify top e;
wenzelm@12839
   897
            val ren = renaming xs parms'
wenzelm@18678
   898
              handle ERROR msg => err_in_locale' ctxt msg ids';
ballarin@17096
   899
wenzelm@19061
   900
            val ids'' = distinct (eq_fst (op =)) (map (rename_parms top ren) ids');
wenzelm@19482
   901
            val parms'' = distinct (op =) (maps (#2 o #1) ids'');
ballarin@20035
   902
          in (ids'', parms'') end
ballarin@15206
   903
      | identify top (Merge es) =
ballarin@20035
   904
          fold (fn e => fn (ids, parms) =>
ballarin@17000
   905
                   let
ballarin@20035
   906
                     val (ids', parms') = identify top e
ballarin@17000
   907
                   in
haftmann@27681
   908
                     (merge_alists (op =) ids ids', merge_lists (op =) parms parms')
ballarin@17000
   909
                   end)
ballarin@20035
   910
            es ([], []);
ballarin@17000
   911
ballarin@20035
   912
    fun inst_wit all_params (t, th) = let
ballarin@15206
   913
         val {hyps, prop, ...} = Thm.rep_thm th;
wenzelm@16861
   914
         val ps = map (apsnd SOME) (fold Term.add_frees (prop :: hyps) []);
ballarin@15206
   915
         val [env] = unify_parms ctxt all_params [ps];
wenzelm@18137
   916
         val t' = Element.instT_term env t;
wenzelm@18137
   917
         val th' = Element.instT_thm thy env th;
wenzelm@18123
   918
       in (t', th') end;
ballarin@17000
   919
ballarin@20035
   920
    fun eval all_params tenv syn ((name, params), (locale_params, mode)) =
ballarin@20035
   921
      let
ballarin@20035
   922
        val {params = ps_mx, elems = elems_stamped, ...} = the_locale thy name;
ballarin@20035
   923
        val elems = map fst elems_stamped;
ballarin@20035
   924
        val ps = map fst ps_mx;
ballarin@20035
   925
        fun lookup_syn x = (case Symtab.lookup syn x of SOME Structure => NONE | opt => opt);
ballarin@20035
   926
        val locale_params' = map (fn p => (p, Symtab.lookup tenv p |> the)) locale_params;
ballarin@20035
   927
        val mode' = map_mode (map (Element.map_witness (inst_wit all_params))) mode;
ballarin@20035
   928
        val ren = map fst ps ~~ map (fn p => (p, lookup_syn p)) params;
ballarin@20035
   929
        val [env] = unify_parms ctxt all_params [map (apfst (Element.rename ren) o apsnd SOME) ps];
wenzelm@21499
   930
        val elem_morphism =
wenzelm@21499
   931
          Element.rename_morphism ren $>
ballarin@26645
   932
          Morphism.name_morphism (params_qualified params) $>
wenzelm@21499
   933
          Element.instT_morphism thy env;
wenzelm@21499
   934
        val elems' = map (Element.morph_ctxt elem_morphism) elems;
wenzelm@21499
   935
      in (((name, map (apsnd SOME) locale_params'), mode'), elems') end;
ballarin@20035
   936
ballarin@20035
   937
    (* parameters, their types and syntax *)
ballarin@20035
   938
    val (all_params', tenv, syn) = params_of_expr ctxt [] expr ([], Symtab.empty, Symtab.empty);
ballarin@20035
   939
    val all_params = map (fn p => (p, Symtab.lookup tenv p |> the)) all_params';
ballarin@20035
   940
    (* compute identifiers and syntax, merge with previous ones *)
ballarin@20035
   941
    val (ids, _) = identify true expr;
haftmann@20951
   942
    val idents = subtract (eq_fst (op =)) prev_idents ids;
ballarin@20035
   943
    val syntax = merge_syntax ctxt ids (syn, prev_syntax);
ballarin@20035
   944
    (* type-instantiate elements *)
ballarin@20035
   945
    val final_elemss = map (eval all_params tenv syntax) idents;
ballarin@16102
   946
  in ((prev_idents @ idents, syntax), final_elemss) end;
wenzelm@12273
   947
wenzelm@12510
   948
end;
wenzelm@12510
   949
wenzelm@12273
   950
wenzelm@12529
   951
(* activate elements *)
wenzelm@12273
   952
wenzelm@12510
   953
local
wenzelm@12510
   954
wenzelm@21686
   955
fun axioms_export axs _ As =
wenzelm@21686
   956
  (Element.satisfy_thm axs #> Drule.implies_intr_list (Library.drop (length axs, As)), fn t => t);
wenzelm@12014
   957
ballarin@17000
   958
ballarin@17000
   959
(* NB: derived ids contain only facts at this stage *)
ballarin@17000
   960
haftmann@27681
   961
fun activate_elem _ _ (Fixes fixes) (ctxt, mode) =
haftmann@27681
   962
      ([], (ctxt |> ProofContext.add_fixes_i fixes |> snd, mode))
haftmann@27681
   963
  | activate_elem _ _ (Constrains _) (ctxt, mode) =
haftmann@27681
   964
      ([], (ctxt, mode))
haftmann@27681
   965
  | activate_elem ax_in_ctxt _ (Assumes asms) (ctxt, Assumed axs) =
wenzelm@13399
   966
      let
wenzelm@18728
   967
        val asms' = Attrib.map_specs (Attrib.attribute_i (ProofContext.theory_of ctxt)) asms;
wenzelm@19482
   968
        val ts = maps (map #1 o #2) asms';
wenzelm@19018
   969
        val (ps, qs) = chop (length ts) axs;
wenzelm@17856
   970
        val (_, ctxt') =
wenzelm@21370
   971
          ctxt |> fold Variable.auto_fixes ts
ballarin@19931
   972
          |> ProofContext.add_assms_i (axioms_export (if ax_in_ctxt then ps else [])) asms';
haftmann@27681
   973
      in ([], (ctxt', Assumed qs)) end
haftmann@27681
   974
  | activate_elem _ _ (Assumes asms) (ctxt, Derived ths) =
haftmann@27681
   975
      ([], (ctxt, Derived ths))
haftmann@27681
   976
  | activate_elem _ _ (Defines defs) (ctxt, Assumed axs) =
ballarin@15596
   977
      let
wenzelm@18728
   978
        val defs' = Attrib.map_specs (Attrib.attribute_i (ProofContext.theory_of ctxt)) defs;
wenzelm@19732
   979
        val asms = defs' |> map (fn ((name, atts), (t, ps)) =>
wenzelm@19732
   980
            let val ((c, _), t') = LocalDefs.cert_def ctxt t
wenzelm@20872
   981
            in (t', ((Thm.def_name_optional c name, atts), [(t', ps)])) end);
wenzelm@17856
   982
        val (_, ctxt') =
wenzelm@21370
   983
          ctxt |> fold (Variable.auto_fixes o #1) asms
wenzelm@19732
   984
          |> ProofContext.add_assms_i LocalDefs.def_export (map #2 asms);
haftmann@27681
   985
      in ([], (ctxt', Assumed axs)) end
haftmann@27681
   986
  | activate_elem _ _ (Defines defs) (ctxt, Derived ths) =
haftmann@27681
   987
      ([], (ctxt, Derived ths))
haftmann@27681
   988
  | activate_elem _ is_ext (Notes (kind, facts)) (ctxt, mode) =
ballarin@15596
   989
      let
wenzelm@18728
   990
        val facts' = Attrib.map_facts (Attrib.attribute_i (ProofContext.theory_of ctxt)) facts;
wenzelm@21441
   991
        val (res, ctxt') = ctxt |> ProofContext.note_thmss_i kind facts';
haftmann@27681
   992
      in (if is_ext then res else [], (ctxt', mode)) end;
wenzelm@12263
   993
ballarin@19931
   994
fun activate_elems ax_in_ctxt (((name, ps), mode), elems) ctxt =
ballarin@17033
   995
  let
wenzelm@18123
   996
    val thy = ProofContext.theory_of ctxt;
haftmann@27681
   997
    val (res, (ctxt', _)) = fold_map (activate_elem ax_in_ctxt (name = ""))
haftmann@27681
   998
        elems (ProofContext.qualified_names ctxt, mode)
wenzelm@21441
   999
      handle ERROR msg => err_in_locale ctxt msg [(name, map fst ps)];
ballarin@15696
  1000
    val ctxt'' = if name = "" then ctxt'
ballarin@15696
  1001
          else let
ballarin@15696
  1002
              val ps' = map (fn (n, SOME T) => Free (n, T)) ps;
ballarin@24787
  1003
            in if test_local_registration ctxt' (name, ps') then ctxt'
ballarin@24787
  1004
              else let
ballarin@25286
  1005
                  val ctxt'' = put_local_registration (name, ps') ((true, ""), [])
ballarin@25286
  1006
                    (Morphism.identity, ((Vartab.empty, []), (Vartab.empty, []) )) ctxt'
ballarin@24787
  1007
                in case mode of
ballarin@24787
  1008
                    Assumed axs =>
ballarin@24787
  1009
                      fold (add_local_witness (name, ps') o
ballarin@24787
  1010
                        Element.assume_witness thy o Element.witness_prop) axs ctxt''
haftmann@25669
  1011
                  | Derived ths =>
haftmann@25669
  1012
                     fold (add_local_witness (name, ps')) ths ctxt''
ballarin@24787
  1013
                end
ballarin@15696
  1014
            end
wenzelm@16144
  1015
  in (ProofContext.restore_naming ctxt ctxt'', res) end;
wenzelm@13399
  1016
ballarin@19931
  1017
fun activate_elemss ax_in_ctxt prep_facts =
ballarin@17000
  1018
    fold_map (fn (((name, ps), mode), raw_elems) => fn ctxt =>
ballarin@17000
  1019
      let
ballarin@17000
  1020
        val elems = map (prep_facts ctxt) raw_elems;
wenzelm@19482
  1021
        val (ctxt', res) = apsnd flat
ballarin@19931
  1022
            (activate_elems ax_in_ctxt (((name, ps), mode), elems) ctxt);
wenzelm@21530
  1023
        val elems' = elems |> map (Element.map_ctxt_attrib Args.closure);
ballarin@19931
  1024
      in (((((name, ps), mode), elems'), res), ctxt') end);
wenzelm@12834
  1025
wenzelm@12546
  1026
in
wenzelm@12546
  1027
haftmann@27681
  1028
(* CB: activate_facts prep_facts elemss ctxt,
ballarin@15206
  1029
   where elemss is a list of pairs consisting of identifiers and
ballarin@15206
  1030
   context elements, extends ctxt by the context elements yielding
haftmann@27681
  1031
   ctxt' and returns ((elemss', facts), ctxt').
ballarin@15206
  1032
   Identifiers in the argument are of the form ((name, ps), axs) and
ballarin@15206
  1033
   assumptions use the axioms in the identifiers to set up exporters
ballarin@15206
  1034
   in ctxt'.  elemss' does not contain identifiers and is obtained
ballarin@15206
  1035
   from elemss and the intermediate context with prep_facts.
wenzelm@15703
  1036
   If read_facts or cert_facts is used for prep_facts, these also remove
ballarin@14508
  1037
   the internal/external markers from elemss. *)
ballarin@14508
  1038
haftmann@27681
  1039
fun activate_facts ax_in_ctxt prep_facts args =
haftmann@27681
  1040
  activate_elemss ax_in_ctxt prep_facts args
haftmann@27681
  1041
  #>> (apsnd flat o split_list);
wenzelm@15703
  1042
wenzelm@12510
  1043
end;
wenzelm@12510
  1044
wenzelm@12307
  1045
ballarin@15696
  1046
wenzelm@18137
  1047
(** prepare locale elements **)
wenzelm@12529
  1048
wenzelm@12529
  1049
(* expressions *)
wenzelm@12529
  1050
wenzelm@16458
  1051
fun intern_expr thy (Locale xname) = Locale (intern thy xname)
wenzelm@16458
  1052
  | intern_expr thy (Merge exprs) = Merge (map (intern_expr thy) exprs)
wenzelm@16458
  1053
  | intern_expr thy (Rename (expr, xs)) = Rename (intern_expr thy expr, xs);
wenzelm@12529
  1054
wenzelm@12529
  1055
wenzelm@12529
  1056
(* propositions and bindings *)
wenzelm@12529
  1057
ballarin@17000
  1058
(* flatten (ctxt, prep_expr) ((ids, syn), expr)
ballarin@17000
  1059
   normalises expr (which is either a locale
ballarin@14508
  1060
   expression or a single context element) wrt.
ballarin@14508
  1061
   to the list ids of already accumulated identifiers.
ballarin@19783
  1062
   It returns ((ids', syn'), elemss) where ids' is an extension of ids
ballarin@14508
  1063
   with identifiers generated for expr, and elemss is the list of
ballarin@16102
  1064
   context elements generated from expr.
ballarin@16102
  1065
   syn and syn' are symtabs mapping parameter names to their syntax.  syn'
ballarin@16102
  1066
   is an extension of syn.
ballarin@16102
  1067
   For details, see flatten_expr.
ballarin@16102
  1068
ballarin@15596
  1069
   Additionally, for a locale expression, the elems are grouped into a single
ballarin@15596
  1070
   Int; individual context elements are marked Ext.  In this case, the
ballarin@15596
  1071
   identifier-like information of the element is as follows:
ballarin@15596
  1072
   - for Fixes: (("", ps), []) where the ps have type info NONE
ballarin@15596
  1073
   - for other elements: (("", []), []).
ballarin@15206
  1074
   The implementation of activate_facts relies on identifier names being
ballarin@15206
  1075
   empty strings for external elements.
ballarin@15596
  1076
*)
ballarin@14508
  1077
ballarin@16102
  1078
fun flatten (ctxt, _) ((ids, syn), Elem (Fixes fixes)) = let
wenzelm@18137
  1079
        val ids' = ids @ [(("", map #1 fixes), ([], Assumed []))]
ballarin@16102
  1080
      in
wenzelm@18137
  1081
        ((ids',
wenzelm@18137
  1082
         merge_syntax ctxt ids'
wenzelm@18137
  1083
           (syn, Symtab.make (map (fn fx => (#1 fx, #3 fx)) fixes))
wenzelm@23655
  1084
           handle Symtab.DUP x => err_in_locale ctxt
wenzelm@23655
  1085
             ("Conflicting syntax for parameter: " ^ quote x)
ballarin@16102
  1086
             (map #1 ids')),
wenzelm@18137
  1087
         [((("", map (rpair NONE o #1) fixes), Assumed []), Ext (Fixes fixes))])
ballarin@16102
  1088
      end
ballarin@16102
  1089
  | flatten _ ((ids, syn), Elem elem) =
ballarin@17000
  1090
      ((ids @ [(("", []), ([], Assumed []))], syn), [((("", []), Assumed []), Ext elem)])
ballarin@16102
  1091
  | flatten (ctxt, prep_expr) ((ids, syn), Expr expr) =
ballarin@16102
  1092
      apsnd (map (apsnd Int)) (flatten_expr ctxt ((ids, syn), prep_expr expr));
ballarin@14508
  1093
wenzelm@12529
  1094
local
wenzelm@12529
  1095
wenzelm@12839
  1096
local
wenzelm@12839
  1097
haftmann@27681
  1098
fun declare_int_elem (Fixes fixes) ctxt =
haftmann@27681
  1099
      ([], ctxt |> ProofContext.add_fixes_i (map (fn (x, T, mx) =>
haftmann@27681
  1100
        (x, Option.map (Term.map_type_tfree (TypeInfer.param 0)) T, mx)) fixes) |> snd)
haftmann@27681
  1101
  | declare_int_elem _ ctxt = ([], ctxt);
haftmann@27681
  1102
haftmann@27681
  1103
fun declare_ext_elem prep_vars (Fixes fixes) ctxt =
wenzelm@18671
  1104
      let val (vars, _) = prep_vars fixes ctxt
haftmann@27681
  1105
      in ([], ctxt |> ProofContext.add_fixes_i vars |> snd) end
haftmann@27681
  1106
  | declare_ext_elem prep_vars (Constrains csts) ctxt =
wenzelm@18671
  1107
      let val (_, ctxt') = prep_vars (map (fn (x, T) => (x, SOME T, NoSyn)) csts) ctxt
haftmann@27681
  1108
      in ([], ctxt') end
haftmann@27681
  1109
  | declare_ext_elem _ (Assumes asms) ctxt = (map #2 asms, ctxt)
haftmann@27681
  1110
  | declare_ext_elem _ (Defines defs) ctxt = (map (fn (_, (t, ps)) => [(t, ps)]) defs, ctxt)
haftmann@27681
  1111
  | declare_ext_elem _ (Notes _) ctxt = ([], ctxt);
haftmann@27681
  1112
haftmann@27681
  1113
fun declare_elems prep_vars (((name, ps), Assumed _), elems) ctxt = ((case elems
haftmann@27681
  1114
     of Int es => fold_map declare_int_elem es ctxt
haftmann@27681
  1115
      | Ext e => declare_ext_elem prep_vars e ctxt |>> single)
haftmann@27681
  1116
          handle ERROR msg => err_in_locale ctxt msg [(name, map fst ps)])
haftmann@27681
  1117
  | declare_elems _ ((_, Derived _), elems) ctxt = ([], ctxt);
wenzelm@12727
  1118
wenzelm@12839
  1119
in
wenzelm@12839
  1120
wenzelm@18671
  1121
fun declare_elemss prep_vars fixed_params raw_elemss ctxt =
wenzelm@12727
  1122
  let
ballarin@14215
  1123
    (* CB: fix of type bug of goal in target with context elements.
ballarin@14215
  1124
       Parameters new in context elements must receive types that are
ballarin@14215
  1125
       distinct from types of parameters in target (fixed_params).  *)
ballarin@14215
  1126
    val ctxt_with_fixed =
wenzelm@19900
  1127
      fold Variable.declare_term (map Free fixed_params) ctxt;
wenzelm@12727
  1128
    val int_elemss =
wenzelm@12727
  1129
      raw_elemss
wenzelm@19482
  1130
      |> map_filter (fn (id, Int es) => SOME (id, es) | _ => NONE)
ballarin@14215
  1131
      |> unify_elemss ctxt_with_fixed fixed_params;
haftmann@27681
  1132
    val (raw_elemss', _) =
haftmann@27681
  1133
      fold_map (curry (fn ((id, Int _), (_, es) :: elemss) => ((id, Int es), elemss) | x => x))
haftmann@27681
  1134
        raw_elemss int_elemss;
haftmann@27681
  1135
  in fold_map (declare_elems prep_vars) raw_elemss' ctxt end;
wenzelm@12529
  1136
wenzelm@12839
  1137
end;
wenzelm@12529
  1138
wenzelm@12839
  1139
local
wenzelm@12502
  1140
wenzelm@12839
  1141
val norm_term = Envir.beta_norm oo Term.subst_atomic;
wenzelm@12839
  1142
wenzelm@16458
  1143
fun abstract_thm thy eq =
wenzelm@16458
  1144
  Thm.assume (Thm.cterm_of thy eq) |> Drule.gen_all |> Drule.abs_def;
wenzelm@13336
  1145
wenzelm@18190
  1146
fun bind_def ctxt (name, ps) eq (xs, env, ths) =
wenzelm@12839
  1147
  let
wenzelm@18831
  1148
    val ((y, T), b) = LocalDefs.abs_def eq;
wenzelm@13308
  1149
    val b' = norm_term env b;
wenzelm@16458
  1150
    val th = abstract_thm (ProofContext.theory_of ctxt) eq;
wenzelm@13308
  1151
    fun err msg = err_in_locale ctxt (msg ^ ": " ^ quote y) [(name, map fst ps)];
wenzelm@12839
  1152
  in
wenzelm@21962
  1153
    exists (equal y o #1) xs andalso
wenzelm@21962
  1154
      err "Attempt to define previously specified variable";
wenzelm@21962
  1155
    exists (fn (Free (y', _), _) => y = y' | _ => false) env andalso
wenzelm@21962
  1156
      err "Attempt to redefine variable";
wenzelm@16861
  1157
    (Term.add_frees b' xs, (Free (y, T), b') :: env, th :: ths)
wenzelm@12839
  1158
  end;
wenzelm@12839
  1159
ballarin@17000
  1160
ballarin@17000
  1161
(* CB: for finish_elems (Int and Ext),
ballarin@17000
  1162
   extracts specification, only of assumed elements *)
ballarin@15206
  1163
wenzelm@18190
  1164
fun eval_text _ _ _ (Fixes _) text = text
wenzelm@18190
  1165
  | eval_text _ _ _ (Constrains _) text = text
wenzelm@18190
  1166
  | eval_text _ (_, Assumed _) is_ext (Assumes asms)
wenzelm@18190
  1167
        (((exts, exts'), (ints, ints')), (xs, env, defs)) =
wenzelm@13394
  1168
      let
wenzelm@19482
  1169
        val ts = maps (map #1 o #2) asms;
wenzelm@13394
  1170
        val ts' = map (norm_term env) ts;
wenzelm@13394
  1171
        val spec' =
wenzelm@13394
  1172
          if is_ext then ((exts @ ts, exts' @ ts'), (ints, ints'))
wenzelm@13394
  1173
          else ((exts, exts'), (ints @ ts, ints' @ ts'));
wenzelm@16861
  1174
      in (spec', (fold Term.add_frees ts' xs, env, defs)) end
wenzelm@18190
  1175
  | eval_text _ (_, Derived _) _ (Assumes _) text = text
wenzelm@18190
  1176
  | eval_text ctxt (id, Assumed _) _ (Defines defs) (spec, binds) =
wenzelm@18190
  1177
      (spec, fold (bind_def ctxt id o #1 o #2) defs binds)
wenzelm@18190
  1178
  | eval_text _ (_, Derived _) _ (Defines _) text = text
wenzelm@18190
  1179
  | eval_text _ _ _ (Notes _) text = text;
wenzelm@13308
  1180
ballarin@17000
  1181
ballarin@17000
  1182
(* for finish_elems (Int),
ballarin@17000
  1183
   remove redundant elements of derived identifiers,
ballarin@17000
  1184
   turn assumptions and definitions into facts,
wenzelm@21483
  1185
   satisfy hypotheses of facts *)
ballarin@17000
  1186
ballarin@17096
  1187
fun finish_derived _ _ (Assumed _) (Fixes fixes) = SOME (Fixes fixes)
ballarin@17096
  1188
  | finish_derived _ _ (Assumed _) (Constrains csts) = SOME (Constrains csts)
ballarin@17096
  1189
  | finish_derived _ _ (Assumed _) (Assumes asms) = SOME (Assumes asms)
ballarin@17096
  1190
  | finish_derived _ _ (Assumed _) (Defines defs) = SOME (Defines defs)
ballarin@17096
  1191
ballarin@17000
  1192
  | finish_derived _ _ (Derived _) (Fixes _) = NONE
ballarin@17000
  1193
  | finish_derived _ _ (Derived _) (Constrains _) = NONE
wenzelm@21483
  1194
  | finish_derived sign satisfy (Derived _) (Assumes asms) = asms
ballarin@17096
  1195
      |> map (apsnd (map (fn (a, _) => ([Thm.assume (cterm_of sign a)], []))))
wenzelm@21441
  1196
      |> pair Thm.assumptionK |> Notes
wenzelm@21483
  1197
      |> Element.morph_ctxt satisfy |> SOME
wenzelm@21483
  1198
  | finish_derived sign satisfy (Derived _) (Defines defs) = defs
ballarin@17096
  1199
      |> map (apsnd (fn (d, _) => [([Thm.assume (cterm_of sign d)], [])]))
wenzelm@21441
  1200
      |> pair Thm.definitionK |> Notes
wenzelm@21483
  1201
      |> Element.morph_ctxt satisfy |> SOME
ballarin@17000
  1202
wenzelm@21483
  1203
  | finish_derived _ satisfy _ (Notes facts) = Notes facts
wenzelm@21483
  1204
      |> Element.morph_ctxt satisfy |> SOME;
ballarin@17000
  1205
ballarin@15206
  1206
(* CB: for finish_elems (Ext) *)
ballarin@15206
  1207
wenzelm@13308
  1208
fun closeup _ false elem = elem
wenzelm@13308
  1209
  | closeup ctxt true elem =
wenzelm@13308
  1210
      let
wenzelm@13308
  1211
        fun close_frees t =
wenzelm@26206
  1212
          let
wenzelm@26206
  1213
            val rev_frees =
wenzelm@26206
  1214
              Term.fold_aterms (fn Free (x, T) =>
wenzelm@26206
  1215
                if Variable.is_fixed ctxt x then I else insert (op =) (x, T) | _ => I) t [];
wenzelm@26299
  1216
          in Term.list_all_free (rev rev_frees, t) end;
wenzelm@13308
  1217
wenzelm@13308
  1218
        fun no_binds [] = []
wenzelm@18678
  1219
          | no_binds _ = error "Illegal term bindings in locale element";
wenzelm@13308
  1220
      in
wenzelm@13308
  1221
        (case elem of
wenzelm@13308
  1222
          Assumes asms => Assumes (asms |> map (fn (a, propps) =>
wenzelm@19585
  1223
            (a, map (fn (t, ps) => (close_frees t, no_binds ps)) propps)))
wenzelm@13308
  1224
        | Defines defs => Defines (defs |> map (fn (a, (t, ps)) =>
wenzelm@18831
  1225
            (a, (close_frees (#2 (LocalDefs.cert_def ctxt t)), no_binds ps))))
wenzelm@13308
  1226
        | e => e)
wenzelm@13308
  1227
      end;
wenzelm@12839
  1228
wenzelm@12839
  1229
wenzelm@12839
  1230
fun finish_ext_elem parms _ (Fixes fixes, _) = Fixes (map (fn (x, _, mx) =>
haftmann@17271
  1231
      (x, AList.lookup (op =) parms x, mx)) fixes)
wenzelm@18899
  1232
  | finish_ext_elem parms _ (Constrains _, _) = Constrains []
wenzelm@12839
  1233
  | finish_ext_elem _ close (Assumes asms, propp) =
wenzelm@12839
  1234
      close (Assumes (map #1 asms ~~ propp))
wenzelm@12839
  1235
  | finish_ext_elem _ close (Defines defs, propp) =
wenzelm@19585
  1236
      close (Defines (map #1 defs ~~ map (fn [(t, ps)] => (t, ps)) propp))
wenzelm@12839
  1237
  | finish_ext_elem _ _ (Notes facts, _) = Notes facts;
wenzelm@12510
  1238
ballarin@17000
  1239
ballarin@15206
  1240
(* CB: finish_parms introduces type info from parms to identifiers *)
skalberg@15531
  1241
(* CB: only needed for types that have been NONE so far???
ballarin@15206
  1242
   If so, which are these??? *)
ballarin@15206
  1243
ballarin@17000
  1244
fun finish_parms parms (((name, ps), mode), elems) =
haftmann@19932
  1245
  (((name, map (fn (x, _) => (x, AList.lookup (op = : string * string -> bool) parms x)) ps), mode), elems);
wenzelm@12839
  1246
ballarin@17000
  1247
fun finish_elems ctxt parms _ ((text, wits), ((id, Int e), _)) =
wenzelm@12839
  1248
      let
ballarin@17000
  1249
        val [(id' as (_, mode), es)] = unify_elemss ctxt parms [(id, e)];
ballarin@17000
  1250
        val wits' = case mode of Assumed _ => wits | Derived ths => wits @ ths;
wenzelm@18190
  1251
        val text' = fold (eval_text ctxt id' false) es text;
wenzelm@19482
  1252
        val es' = map_filter
wenzelm@21483
  1253
          (finish_derived (ProofContext.theory_of ctxt) (Element.satisfy_morphism wits') mode) es;
ballarin@17000
  1254
      in ((text', wits'), (id', map Int es')) end
ballarin@17000
  1255
  | finish_elems ctxt parms do_close ((text, wits), ((id, Ext e), [propp])) =
wenzelm@13308
  1256
      let
wenzelm@13308
  1257
        val e' = finish_ext_elem parms (closeup ctxt do_close) (e, propp);
wenzelm@18190
  1258
        val text' = eval_text ctxt id true e' text;
ballarin@17000
  1259
      in ((text', wits), (id, [Ext e'])) end
wenzelm@12839
  1260
wenzelm@12839
  1261
in
wenzelm@12839
  1262
ballarin@15206
  1263
(* CB: only called by prep_elemss *)
ballarin@15206
  1264
wenzelm@13375
  1265
fun finish_elemss ctxt parms do_close =
wenzelm@13375
  1266
  foldl_map (apsnd (finish_parms parms) o finish_elems ctxt parms do_close);
wenzelm@12839
  1267
wenzelm@12839
  1268
end;
wenzelm@12839
  1269
ballarin@16736
  1270
ballarin@19942
  1271
(* Remove duplicate Defines elements: temporary workaround to fix Afp/Category. *)
ballarin@19942
  1272
ballarin@19942
  1273
fun defs_ord (defs1, defs2) =
ballarin@19942
  1274
    list_ord (fn ((_, (d1, _)), (_, (d2, _))) =>
ballarin@19942
  1275
      Term.fast_term_ord (d1, d2)) (defs1, defs2);
ballarin@19942
  1276
structure Defstab =
ballarin@19942
  1277
    TableFun(type key = ((string * Attrib.src list) * (term * term list)) list
ballarin@19942
  1278
        val ord = defs_ord);
ballarin@19942
  1279
ballarin@19942
  1280
fun rem_dup_defs es ds =
ballarin@19942
  1281
    fold_map (fn e as (Defines defs) => (fn ds =>
ballarin@19942
  1282
                 if Defstab.defined ds defs
ballarin@19942
  1283
                 then (Defines [], ds)
ballarin@19942
  1284
                 else (e, Defstab.update (defs, ()) ds))
ballarin@19942
  1285
               | e => (fn ds => (e, ds))) es ds;
ballarin@19942
  1286
fun rem_dup_elemss (Int es) ds = apfst Int (rem_dup_defs es ds)
ballarin@19942
  1287
  | rem_dup_elemss (Ext e) ds = (Ext e, ds);
ballarin@19942
  1288
fun rem_dup_defines raw_elemss =
ballarin@19942
  1289
    fold_map (fn (id as (_, (Assumed _)), es) => (fn ds =>
ballarin@19942
  1290
                     apfst (pair id) (rem_dup_elemss es ds))
ballarin@19942
  1291
               | (id as (_, (Derived _)), es) => (fn ds =>
ballarin@19942
  1292
                     ((id, es), ds))) raw_elemss Defstab.empty |> #1;
ballarin@19942
  1293
ballarin@16736
  1294
(* CB: type inference and consistency checks for locales.
ballarin@16736
  1295
ballarin@16736
  1296
   Works by building a context (through declare_elemss), extracting the
ballarin@16736
  1297
   required information and adjusting the context elements (finish_elemss).
ballarin@16736
  1298
   Can also universally close free vars in assms and defs.  This is only
ballarin@17000
  1299
   needed for Ext elements and controlled by parameter do_close.
ballarin@17000
  1300
ballarin@17000
  1301
   Only elements of assumed identifiers are considered.
ballarin@16736
  1302
*)
ballarin@15127
  1303
wenzelm@18671
  1304
fun prep_elemss prep_vars prepp do_close context fixed_params raw_elemss raw_concl =
wenzelm@12529
  1305
  let
ballarin@15127
  1306
    (* CB: contexts computed in the course of this function are discarded.
ballarin@15127
  1307
       They are used for type inference and consistency checks only. *)
ballarin@15206
  1308
    (* CB: fixed_params are the parameters (with types) of the target locale,
ballarin@15206
  1309
       empty list if there is no target. *)
ballarin@14508
  1310
    (* CB: raw_elemss are list of pairs consisting of identifiers and
ballarin@14508
  1311
       context elements, the latter marked as internal or external. *)
ballarin@19942
  1312
    val raw_elemss = rem_dup_defines raw_elemss;
haftmann@27681
  1313
    val (raw_proppss, raw_ctxt) = declare_elemss prep_vars fixed_params raw_elemss context;
ballarin@14508
  1314
    (* CB: raw_ctxt is context with additional fixed variables derived from
ballarin@14508
  1315
       the fixes elements in raw_elemss,
ballarin@14508
  1316
       raw_proppss contains assumptions and definitions from the
ballarin@15206
  1317
       external elements in raw_elemss. *)
haftmann@18550
  1318
    fun prep_prop raw_propp (raw_ctxt, raw_concl)  =
haftmann@18450
  1319
      let
haftmann@18450
  1320
        (* CB: add type information from fixed_params to context (declare_term) *)
haftmann@18450
  1321
        (* CB: process patterns (conclusion and external elements only) *)
haftmann@18450
  1322
        val (ctxt, all_propp) =
wenzelm@19900
  1323
          prepp (fold Variable.declare_term (map Free fixed_params) raw_ctxt, raw_concl @ raw_propp);
haftmann@18450
  1324
        (* CB: add type information from conclusion and external elements to context *)
wenzelm@19900
  1325
        val ctxt = fold Variable.declare_term (maps (map fst) all_propp) ctxt;
haftmann@18450
  1326
        (* CB: resolve schematic variables (patterns) in conclusion and external elements. *)
haftmann@18450
  1327
        val all_propp' = map2 (curry (op ~~))
haftmann@18450
  1328
          (#1 (#2 (ProofContext.bind_propp_schematic_i (ctxt, all_propp)))) (map (map snd) all_propp);
wenzelm@19018
  1329
        val (concl, propp) = chop (length raw_concl) all_propp';
haftmann@18550
  1330
      in (propp, (ctxt, concl)) end
ballarin@15206
  1331
haftmann@18550
  1332
    val (proppss, (ctxt, concl)) =
haftmann@18550
  1333
      (fold_burrow o fold_burrow) prep_prop raw_proppss (raw_ctxt, raw_concl);
wenzelm@12502
  1334
ballarin@15206
  1335
    (* CB: obtain all parameters from identifier part of raw_elemss *)
ballarin@15206
  1336
    val xs = map #1 (params_of' raw_elemss);
wenzelm@12727
  1337
    val typing = unify_frozen ctxt 0
wenzelm@19900
  1338
      (map (Variable.default_type raw_ctxt) xs)
wenzelm@19900
  1339
      (map (Variable.default_type ctxt) xs);
wenzelm@12529
  1340
    val parms = param_types (xs ~~ typing);
ballarin@14508
  1341
    (* CB: parms are the parameters from raw_elemss, with correct typing. *)
wenzelm@12502
  1342
ballarin@14508
  1343
    (* CB: extract information from assumes and defines elements
ballarin@16169
  1344
       (fixes, constrains and notes in raw_elemss don't have an effect on
ballarin@16169
  1345
       text and elemss), compute final form of context elements. *)
ballarin@17000
  1346
    val ((text, _), elemss) = finish_elemss ctxt parms do_close
ballarin@17000
  1347
      ((((([], []), ([], [])), ([], [], [])), []), raw_elemss ~~ proppss);
ballarin@14508
  1348
    (* CB: text has the following structure:
ballarin@14508
  1349
           (((exts, exts'), (ints, ints')), (xs, env, defs))
ballarin@14508
  1350
       where
ballarin@14508
  1351
         exts: external assumptions (terms in external assumes elements)
ballarin@14508
  1352
         exts': dito, normalised wrt. env
ballarin@14508
  1353
         ints: internal assumptions (terms in internal assumes elements)
ballarin@14508
  1354
         ints': dito, normalised wrt. env
ballarin@14508
  1355
         xs: the free variables in exts' and ints' and rhss of definitions,
ballarin@14508
  1356
           this includes parameters except defined parameters
ballarin@14508
  1357
         env: list of term pairs encoding substitutions, where the first term
ballarin@14508
  1358
           is a free variable; substitutions represent defines elements and
ballarin@14508
  1359
           the rhs is normalised wrt. the previous env
ballarin@14508
  1360
         defs: theorems representing the substitutions from defines elements
ballarin@14508
  1361
           (thms are normalised wrt. env).
ballarin@14508
  1362
       elemss is an updated version of raw_elemss:
ballarin@16169
  1363
         - type info added to Fixes and modified in Constrains
ballarin@14508
  1364
         - axiom and definition statement replaced by corresponding one
ballarin@14508
  1365
           from proppss in Assumes and Defines
ballarin@14508
  1366
         - Facts unchanged
ballarin@14508
  1367
       *)
wenzelm@13308
  1368
  in ((parms, elemss, concl), text) end;
wenzelm@12502
  1369
wenzelm@12502
  1370
in
wenzelm@12502
  1371
wenzelm@18671
  1372
fun read_elemss x = prep_elemss ProofContext.read_vars ProofContext.read_propp_schematic x;
wenzelm@18671
  1373
fun cert_elemss x = prep_elemss ProofContext.cert_vars ProofContext.cert_propp_schematic x;
wenzelm@12529
  1374
wenzelm@12529
  1375
end;
wenzelm@12529
  1376
wenzelm@12529
  1377
wenzelm@15703
  1378
(* facts and attributes *)
wenzelm@12529
  1379
wenzelm@12529
  1380
local
wenzelm@12529
  1381
wenzelm@20965
  1382
fun check_name name =
wenzelm@18678
  1383
  if NameSpace.is_qualified name then error ("Illegal qualified name: " ^ quote name)
wenzelm@15703
  1384
  else name;
wenzelm@12529
  1385
wenzelm@21499
  1386
fun prep_facts _ _ _ ctxt (Int elem) = elem
wenzelm@21499
  1387
      |> Element.morph_ctxt (Morphism.thm_morphism (Thm.transfer (ProofContext.theory_of ctxt)))
wenzelm@20965
  1388
  | prep_facts prep_name get intern ctxt (Ext elem) = elem |> Element.map_ctxt
wenzelm@15703
  1389
     {var = I, typ = I, term = I,
wenzelm@18678
  1390
      name = prep_name,
wenzelm@15703
  1391
      fact = get ctxt,
wenzelm@16458
  1392
      attrib = Args.assignable o intern (ProofContext.theory_of ctxt)};
wenzelm@12529
  1393
wenzelm@12529
  1394
in
wenzelm@12529
  1395
wenzelm@26345
  1396
fun read_facts x = prep_facts check_name ProofContext.get_fact Attrib.intern_src x;
wenzelm@20965
  1397
fun cert_facts x = prep_facts I (K I) (K I) x;
wenzelm@12529
  1398
wenzelm@12529
  1399
end;
wenzelm@12529
  1400
wenzelm@12529
  1401
ballarin@19931
  1402
(* Get the specification of a locale *)
ballarin@18795
  1403
wenzelm@19780
  1404
(*The global specification is made from the parameters and global
wenzelm@19780
  1405
  assumptions, the local specification from the parameters and the
wenzelm@19780
  1406
  local assumptions.*)
ballarin@18795
  1407
ballarin@18795
  1408
local
ballarin@18795
  1409
ballarin@18795
  1410
fun gen_asms_of get thy name =
ballarin@18795
  1411
  let
ballarin@18795
  1412
    val ctxt = ProofContext.init thy;
ballarin@18795
  1413
    val (_, raw_elemss) = flatten (ctxt, I) (([], Symtab.empty), Expr (Locale name));
ballarin@18795
  1414
    val ((_, elemss, _), _) = read_elemss false ctxt [] raw_elemss [];
ballarin@18795
  1415
  in
ballarin@18890
  1416
    elemss |> get
wenzelm@19780
  1417
      |> maps (fn (_, es) => map (fn Int e => e) es)
wenzelm@19780
  1418
      |> maps (fn Assumes asms => asms | _ => [])
ballarin@18795
  1419
      |> map (apsnd (map fst))
ballarin@18795
  1420
  end;
ballarin@18795
  1421
ballarin@18795
  1422
in
ballarin@18795
  1423
haftmann@25619
  1424
fun parameters_of thy = #params o the_locale thy;
haftmann@25619
  1425
haftmann@25619
  1426
fun intros thy = #intros o the_locale thy;
haftmann@25619
  1427
  (*returns introduction rule for delta predicate and locale predicate
haftmann@25619
  1428
    as a pair of singleton lists*)
haftmann@25619
  1429
haftmann@25619
  1430
fun dests thy = #dests o the_locale thy;
haftmann@25619
  1431
haftmann@27709
  1432
fun facts_of thy = map_filter (fn (Element.Notes (_, facts), _) => SOME facts
haftmann@27709
  1433
  | _ => NONE) o #elems o the_locale thy;
ballarin@18795
  1434
ballarin@19276
  1435
fun parameters_of_expr thy expr =
ballarin@19276
  1436
  let
ballarin@19276
  1437
    val ctxt = ProofContext.init thy;
ballarin@19783
  1438
    val pts = params_of_expr ctxt [] (intern_expr thy expr)
ballarin@19783
  1439
        ([], Symtab.empty, Symtab.empty);
ballarin@19783
  1440
    val raw_params_elemss = make_raw_params_elemss pts;
ballarin@19276
  1441
    val ((_, syn), raw_elemss) = flatten (ctxt, intern_expr thy)
ballarin@19276
  1442
        (([], Symtab.empty), Expr expr);
ballarin@19783
  1443
    val ((parms, _, _), _) =
ballarin@19783
  1444
        read_elemss false ctxt [] (raw_params_elemss @ raw_elemss) [];
ballarin@19276
  1445
  in map (fn p as (n, _) => (p, Symtab.lookup syn n |> the)) parms end;
ballarin@19276
  1446
ballarin@18795
  1447
fun local_asms_of thy name =
ballarin@18890
  1448
  gen_asms_of (single o Library.last_elem) thy name;
ballarin@18795
  1449
ballarin@18795
  1450
fun global_asms_of thy name =
ballarin@18890
  1451
  gen_asms_of I thy name;
ballarin@18795
  1452
wenzelm@19780
  1453
end;
ballarin@18795
  1454
ballarin@18795
  1455
wenzelm@22573
  1456
(* full context statements: imports + elements + conclusion *)
wenzelm@12529
  1457
wenzelm@12529
  1458
local
wenzelm@12529
  1459
wenzelm@12529
  1460
fun prep_context_statement prep_expr prep_elemss prep_facts
wenzelm@22573
  1461
    do_close fixed_params imports elements raw_concl context =
wenzelm@12529
  1462
  let
wenzelm@16458
  1463
    val thy = ProofContext.theory_of context;
wenzelm@13375
  1464
ballarin@19783
  1465
    val (import_params, import_tenv, import_syn) =
wenzelm@22573
  1466
      params_of_expr context fixed_params (prep_expr thy imports)
ballarin@19783
  1467
        ([], Symtab.empty, Symtab.empty);
ballarin@19783
  1468
    val includes = map_filter (fn Expr e => SOME e | Elem _ => NONE) elements;
ballarin@19783
  1469
    val (incl_params, incl_tenv, incl_syn) = fold (params_of_expr context fixed_params)
ballarin@19783
  1470
      (map (prep_expr thy) includes) (import_params, import_tenv, import_syn);
ballarin@19783
  1471
ballarin@19783
  1472
    val ((import_ids, _), raw_import_elemss) =
wenzelm@22573
  1473
      flatten (context, prep_expr thy) (([], Symtab.empty), Expr imports);
ballarin@14215
  1474
    (* CB: normalise "includes" among elements *)
wenzelm@16458
  1475
    val ((ids, syn), raw_elemsss) = foldl_map (flatten (context, prep_expr thy))
ballarin@19783
  1476
      ((import_ids, incl_syn), elements);
ballarin@15696
  1477
wenzelm@19482
  1478
    val raw_elemss = flat raw_elemsss;
ballarin@14508
  1479
    (* CB: raw_import_elemss @ raw_elemss is the normalised list of
ballarin@14508
  1480
       context elements obtained from import and elements. *)
ballarin@19783
  1481
    (* Now additional elements for parameters are inserted. *)
ballarin@19783
  1482
    val import_params_ids = make_params_ids import_params;
ballarin@19783
  1483
    val incl_params_ids =
ballarin@19783
  1484
        make_params_ids (incl_params \\ import_params);
ballarin@19783
  1485
    val raw_import_params_elemss =
ballarin@19783
  1486
        make_raw_params_elemss (import_params, incl_tenv, incl_syn);
ballarin@19783
  1487
    val raw_incl_params_elemss =
ballarin@19783
  1488
        make_raw_params_elemss (incl_params \\ import_params, incl_tenv, incl_syn);
wenzelm@13375
  1489
    val ((parms, all_elemss, concl), (spec, (_, _, defs))) = prep_elemss do_close
ballarin@19783
  1490
      context fixed_params
ballarin@19783
  1491
      (raw_import_params_elemss @ raw_import_elemss @ raw_incl_params_elemss @ raw_elemss) raw_concl;
ballarin@19783
  1492
ballarin@15696
  1493
    (* replace extended ids (for axioms) by ids *)
ballarin@19783
  1494
    val (import_ids', incl_ids) = chop (length import_ids) ids;
ballarin@20035
  1495
    val all_ids = import_params_ids @ import_ids' @ incl_params_ids @ incl_ids;
ballarin@17000
  1496
    val all_elemss' = map (fn (((_, ps), _), (((n, ps'), mode), elems)) =>
haftmann@17485
  1497
        (((n, map (fn p => (p, (the o AList.lookup (op =) ps') p)) ps), mode), elems))
ballarin@20035
  1498
      (all_ids ~~ all_elemss);
ballarin@19783
  1499
    (* CB: all_elemss and parms contain the correct parameter types *)
ballarin@15696
  1500
ballarin@19783
  1501
    val (ps, qs) = chop (length raw_import_params_elemss + length raw_import_elemss) all_elemss';
haftmann@27681
  1502
    val ((import_elemss, _), import_ctxt) =
haftmann@27681
  1503
      activate_facts false prep_facts ps context;
haftmann@27681
  1504
haftmann@27681
  1505
    val ((elemss, _), ctxt) =
haftmann@27681
  1506
      activate_facts false prep_facts qs (ProofContext.set_stmt true import_ctxt);
wenzelm@12834
  1507
  in
ballarin@19783
  1508
    ((((import_ctxt, import_elemss), (ctxt, elemss, syn)),
ballarin@19991
  1509
      (parms, spec, defs)), concl)
wenzelm@12834
  1510
  end;
wenzelm@12529
  1511
wenzelm@18806
  1512
fun prep_statement prep_locale prep_ctxt raw_locale elems concl ctxt =
wenzelm@12529
  1513
  let
wenzelm@12529
  1514
    val thy = ProofContext.theory_of ctxt;
wenzelm@16458
  1515
    val locale = Option.map (prep_locale thy) raw_locale;
wenzelm@22573
  1516
    val (fixed_params, imports) =
wenzelm@18806
  1517
      (case locale of
ballarin@19931
  1518
        NONE => ([], empty)
skalberg@15531
  1519
      | SOME name =>
ballarin@19931
  1520
          let val {params = ps, ...} = the_locale thy name
ballarin@19931
  1521
          in (map fst ps, Locale name) end);
ballarin@19991
  1522
    val ((((locale_ctxt, _), (elems_ctxt, _, _)), _), concl') =
wenzelm@22573
  1523
      prep_ctxt false fixed_params imports elems concl ctxt;
ballarin@19991
  1524
  in (locale, locale_ctxt, elems_ctxt, concl') end;
wenzelm@13399
  1525
wenzelm@22573
  1526
fun prep_expr prep imports body ctxt =
wenzelm@19780
  1527
  let
wenzelm@22573
  1528
    val (((_, import_elemss), (ctxt', elemss, _)), _) = prep imports body ctxt;
wenzelm@19780
  1529
    val all_elems = maps snd (import_elemss @ elemss);
wenzelm@19780
  1530
  in (all_elems, ctxt') end;
wenzelm@19780
  1531
wenzelm@12529
  1532
in
wenzelm@12529
  1533
wenzelm@18806
  1534
val read_ctxt = prep_context_statement intern_expr read_elemss read_facts;
wenzelm@18806
  1535
val cert_ctxt = prep_context_statement (K I) cert_elemss cert_facts;
ballarin@14215
  1536
wenzelm@22573
  1537
fun read_context imports body ctxt = #1 (read_ctxt true [] imports (map Elem body) [] ctxt);
wenzelm@22573
  1538
fun cert_context imports body ctxt = #1 (cert_ctxt true [] imports (map Elem body) [] ctxt);
wenzelm@12502
  1539
wenzelm@19780
  1540
val read_expr = prep_expr read_context;
wenzelm@19780
  1541
val cert_expr = prep_expr cert_context;
wenzelm@19780
  1542
wenzelm@21035
  1543
fun read_context_statement loc = prep_statement intern read_ctxt loc;
wenzelm@21035
  1544
fun read_context_statement_i loc = prep_statement (K I) read_ctxt loc;
wenzelm@21035
  1545
fun cert_context_statement loc = prep_statement (K I) cert_ctxt loc;
wenzelm@18806
  1546
wenzelm@12502
  1547
end;
wenzelm@11896
  1548
wenzelm@11896
  1549
wenzelm@21665
  1550
(* init *)
wenzelm@21665
  1551
wenzelm@21665
  1552
fun init loc =
wenzelm@21665
  1553
  ProofContext.init
haftmann@25669
  1554
  #> #2 o cert_context_statement (SOME loc) [] [];
wenzelm@21665
  1555
wenzelm@21665
  1556
wenzelm@13336
  1557
(* print locale *)
wenzelm@12070
  1558
wenzelm@22573
  1559
fun print_locale thy show_facts imports body =
wenzelm@22573
  1560
  let val (all_elems, ctxt) = read_expr imports body (ProofContext.init thy) in
wenzelm@18137
  1561
    Pretty.big_list "locale elements:" (all_elems
ballarin@17316
  1562
      |> (if show_facts then I else filter (fn Notes _ => false | _ => true))
wenzelm@21701
  1563
      |> map (Element.pretty_ctxt ctxt) |> filter_out null
wenzelm@21701
  1564
      |> map Pretty.chunks)
wenzelm@13336
  1565
    |> Pretty.writeln
wenzelm@12277
  1566
  end;
wenzelm@12070
  1567
wenzelm@12070
  1568
wenzelm@11896
  1569
wenzelm@16144
  1570
(** store results **)
wenzelm@12706
  1571
wenzelm@19018
  1572
(* naming of interpreted theorems *)
ballarin@15696
  1573
ballarin@28024
  1574
fun global_note_prefix_i kind loc (fully_qualified, prfx) params args thy =
wenzelm@16144
  1575
  thy
wenzelm@22796
  1576
  |> Sign.qualified_names
ballarin@26645
  1577
  |> Sign.add_path (NameSpace.base loc ^ "_locale")
wenzelm@22796
  1578
  |> (if fully_qualified then Sign.sticky_prefix prfx else Sign.add_path prfx)
ballarin@28024
  1579
  |> (if fully_qualified then Sign.add_path (space_implode "_" params) else I)
haftmann@27692
  1580
  |> PureThy.note_thmss kind args
wenzelm@22796
  1581
  ||> Sign.restore_naming thy;
wenzelm@16144
  1582
ballarin@28024
  1583
fun local_note_prefix_i kind loc (fully_qualified, prfx) params args ctxt =
wenzelm@16144
  1584
  ctxt
wenzelm@19061
  1585
  |> ProofContext.qualified_names
ballarin@26645
  1586
  |> ProofContext.add_path (NameSpace.base loc ^ "_locale")
haftmann@22351
  1587
  |> (if fully_qualified then ProofContext.sticky_prefix prfx else ProofContext.add_path prfx)
ballarin@28024
  1588
  |> (if fully_qualified then ProofContext.add_path (space_implode "_" params) else I)
wenzelm@21441
  1589
  |> ProofContext.note_thmss_i kind args
wenzelm@19780
  1590
  ||> ProofContext.restore_naming ctxt;
wenzelm@16144
  1591
ballarin@15696
  1592
ballarin@23918
  1593
(* join equations of an id with already accumulated ones *)
ballarin@23918
  1594
ballarin@23918
  1595
fun join_eqns get_reg prep_id ctxt id eqns =
ballarin@23918
  1596
  let
ballarin@23918
  1597
    val id' = prep_id id
ballarin@23918
  1598
    val eqns' = case get_reg id'
ballarin@23918
  1599
      of NONE => eqns
wenzelm@28020
  1600
        | SOME (_, _, eqns') => Termtab.join (fn t => fn (_, e) => e) (eqns, eqns')
ballarin@23918
  1601
            handle Termtab.DUP t =>
wenzelm@28020
  1602
              error ("Conflicting interpreting equations for term " ^
wenzelm@28020
  1603
                quote (Syntax.string_of_term ctxt t))
ballarin@23918
  1604
  in ((id', eqns'), eqns') end;
ballarin@23918
  1605
ballarin@23918
  1606
ballarin@22658
  1607
(* collect witnesses and equations up to a particular target for global
ballarin@22658
  1608
   registration; requires parameters and flattened list of identifiers
ballarin@17138
  1609
   instead of recomputing it from the target *)
ballarin@17138
  1610
wenzelm@25357
  1611
fun collect_global_witnesses thy imprt parms ids vts = let
ballarin@17138
  1612
    val ts = map Logic.unvarify vts;
ballarin@17138
  1613
    val (parms, parmTs) = split_list parms;
wenzelm@19810
  1614
    val parmvTs = map Logic.varifyT parmTs;
ballarin@17138
  1615
    val vtinst = fold (Sign.typ_match thy) (parmvTs ~~ map Term.fastype_of ts) Vartab.empty;
ballarin@17138
  1616
    val tinst = Vartab.dest vtinst |> map (fn ((x, 0), (_, T)) => (x, T))
wenzelm@18137
  1617
        |> Symtab.make;
ballarin@17138
  1618
    (* replace parameter names in ids by instantiations *)
ballarin@17138
  1619
    val vinst = Symtab.make (parms ~~ vts);
wenzelm@17412
  1620
    fun vinst_names ps = map (the o Symtab.lookup vinst) ps;
ballarin@17138
  1621
    val inst = Symtab.make (parms ~~ ts);
ballarin@22658
  1622
    val inst_ids = map (apfst (apsnd vinst_names)) ids;
ballarin@22658
  1623
    val assumed_ids' = map_filter (fn (id, (_, Assumed _)) => SOME id | _ => NONE) inst_ids;
wenzelm@25357
  1624
    val wits = maps (#2 o the o get_global_registration thy imprt) assumed_ids';
ballarin@22658
  1625
ballarin@22658
  1626
    val ids' = map fst inst_ids;
ballarin@23918
  1627
    val eqns =
wenzelm@25357
  1628
      fold_map (join_eqns (get_global_registration thy imprt) I (ProofContext.init thy))
ballarin@23918
  1629
        ids' Termtab.empty |> snd |> Termtab.dest |> map snd;
ballarin@25286
  1630
  in ((tinst, inst), wits, eqns) end;
ballarin@25286
  1631
ballarin@25286
  1632
ballarin@25286
  1633
(* standardise export morphism *)
ballarin@25286
  1634
ballarin@25286
  1635
(* clone from Element.generalize_facts *)
ballarin@25286
  1636
fun standardize thy export facts =
ballarin@25286
  1637
  let
ballarin@25286
  1638
    val exp_fact = Drule.zero_var_indexes_list o map Thm.strip_shyps o Morphism.fact export;
ballarin@25286
  1639
    val exp_term = TermSubst.zero_var_indexes o Morphism.term export;
ballarin@25286
  1640
      (* FIXME sync with exp_fact *)
ballarin@25286
  1641
    val exp_typ = Logic.type_map exp_term;
ballarin@25286
  1642
    val morphism =
ballarin@25286
  1643
      Morphism.morphism {name = I, var = I, typ = exp_typ, term = exp_term, fact = exp_fact};
ballarin@25286
  1644
  in Element.facts_map (Element.morph_ctxt morphism) facts end;
ballarin@25286
  1645
ballarin@25286
  1646
ballarin@25286
  1647
fun morph_ctxt' phi = Element.map_ctxt
ballarin@25286
  1648
  {name = I,
ballarin@25286
  1649
   var = Morphism.var phi,
ballarin@25286
  1650
   typ = Morphism.typ phi,
ballarin@25286
  1651
   term = Morphism.term phi,
ballarin@25286
  1652
   fact = Morphism.fact phi,
ballarin@25286
  1653
   attrib = Args.morph_values phi};
ballarin@25286
  1654
ballarin@25286
  1655
ballarin@25286
  1656
(* compute morphism and apply to args *)
ballarin@25286
  1657
ballarin@25286
  1658
fun interpret_args thy prfx insts prems eqns atts2 exp attrib args =
ballarin@25286
  1659
  let
ballarin@25286
  1660
    val inst = Morphism.name_morphism (NameSpace.qualified prfx) $>
ballarin@28024
  1661
(* need to add parameter prefix *) (* FIXME *)
ballarin@25286
  1662
      Element.inst_morphism thy insts $> Element.satisfy_morphism prems $>
ballarin@25286
  1663
      Morphism.term_morphism (MetaSimplifier.rewrite_term thy eqns []) $>
ballarin@25286
  1664
      Morphism.thm_morphism (MetaSimplifier.rewrite_rule eqns)
ballarin@25286
  1665
  in
ballarin@25286
  1666
    args |> Element.facts_map (morph_ctxt' inst) |>
ballarin@28024
  1667
(* suppresses application of name morphism: workaroud for class package *) (* FIXME *)
ballarin@25286
  1668
      map (fn (attn, bs) => (attn,
ballarin@25286
  1669
        bs |> map (fn (ths, atts) => (ths, (atts @ atts2))))) |>
ballarin@25286
  1670
      standardize thy exp |> Attrib.map_facts attrib
ballarin@25286
  1671
  end;
ballarin@17138
  1672
ballarin@17138
  1673
ballarin@15696
  1674
(* store instantiations of args for all registered interpretations
ballarin@15696
  1675
   of the theory *)
ballarin@15696
  1676
wenzelm@21441
  1677
fun note_thmss_registrations target (kind, args) thy =
ballarin@15596
  1678
  let
ballarin@19278
  1679
    val parms = the_locale thy target |> #params |> map fst;
wenzelm@16458
  1680
    val ids = flatten (ProofContext.init thy, intern_expr thy)
ballarin@22658
  1681
      (([], Symtab.empty), Expr (Locale target)) |> fst |> fst;
ballarin@15596
  1682
ballarin@15696
  1683
    val regs = get_global_registrations thy target;
ballarin@15696
  1684
    (* add args to thy for all registrations *)
ballarin@15696
  1685
ballarin@25286
  1686
    fun activate (vts, (((fully_qualified, prfx), atts2), (exp, imp), _, _)) thy =
ballarin@15696
  1687
      let
ballarin@25286
  1688
        val (insts, prems, eqns) = collect_global_witnesses thy imp parms ids vts;
wenzelm@20911
  1689
        val attrib = Attrib.attribute_i thy;
ballarin@25286
  1690
        val args' = interpret_args thy prfx insts prems eqns atts2 exp attrib args;
ballarin@28024
  1691
      in global_note_prefix_i kind target (fully_qualified, prfx) (map fst parms) args' thy |> snd end;
wenzelm@18190
  1692
  in fold activate regs thy end;
ballarin@15696
  1693
ballarin@15596
  1694
wenzelm@20911
  1695
(* locale results *)
wenzelm@12958
  1696
wenzelm@21441
  1697
fun add_thmss loc kind args ctxt =
wenzelm@18806
  1698
  let
haftmann@27681
  1699
    val (([(_, [Notes args'])], _), ctxt') =
wenzelm@21441
  1700
      activate_facts true cert_facts
haftmann@27681
  1701
        [((("", []), Assumed []), [Ext (Notes (kind, args))])] ctxt;
wenzelm@20911
  1702
    val ctxt'' = ctxt' |> ProofContext.theory
wenzelm@20911
  1703
      (change_locale loc
ballarin@27716
  1704
        (fn (axiom, elems, params, decls, regs, intros, dests) =>
ballarin@27716
  1705
          (axiom, elems @ [(Notes args', stamp ())],
ballarin@27716
  1706
            params, decls, regs, intros, dests))
wenzelm@21441
  1707
      #> note_thmss_registrations loc args');
wenzelm@21582
  1708
  in ctxt'' end;
ballarin@15696
  1709
wenzelm@11896
  1710
wenzelm@21665
  1711
(* declarations *)
wenzelm@21665
  1712
wenzelm@21665
  1713
local
wenzelm@21665
  1714
wenzelm@21665
  1715
fun decl_attrib decl phi = Thm.declaration_attribute (K (decl phi));
wenzelm@21665
  1716
wenzelm@21665
  1717
fun add_decls add loc decl =
wenzelm@21665
  1718
  ProofContext.theory (change_locale loc
ballarin@27716
  1719
    (fn (axiom, elems, params, decls, regs, intros, dests) =>
ballarin@27716
  1720
      (axiom, elems, params, add (decl, stamp ()) decls, regs, intros, dests))) #>
wenzelm@24006
  1721
  add_thmss loc Thm.internalK
wenzelm@24006
  1722
    [(("", [Attrib.internal (decl_attrib decl)]), [([Drule.dummy_thm], [])])];
wenzelm@21665
  1723
wenzelm@23418
  1724
in
wenzelm@21665
  1725
wenzelm@21665
  1726
val add_type_syntax = add_decls (apfst o cons);
wenzelm@21665
  1727
val add_term_syntax = add_decls (apsnd o cons);
wenzelm@21665
  1728
val add_declaration = add_decls (K I);
wenzelm@21665
  1729
wenzelm@21665
  1730
end;
wenzelm@21665
  1731
wenzelm@21665
  1732
wenzelm@18137
  1733
wenzelm@18137
  1734
(** define locales **)
wenzelm@18137
  1735
wenzelm@13336
  1736
(* predicate text *)
ballarin@15596
  1737
(* CB: generate locale predicates and delta predicates *)
wenzelm@13336
  1738
wenzelm@13375
  1739
local
wenzelm@13336
  1740
ballarin@15206
  1741
(* introN: name of theorems for introduction rules of locale and
ballarin@15206
  1742
     delta predicates;
ballarin@15206
  1743
   axiomsN: name of theorem set with destruct rules for locale predicates,
ballarin@15206
  1744
     also name suffix of delta predicates. *)
ballarin@15206
  1745
wenzelm@13375
  1746
val introN = "intro";
ballarin@15206
  1747
val axiomsN = "axioms";
wenzelm@13336
  1748
wenzelm@16458
  1749
fun atomize_spec thy ts =
wenzelm@13375
  1750
  let
wenzelm@23418
  1751
    val t = Logic.mk_conjunction_balanced ts;
wenzelm@16458
  1752
    val body = ObjectLogic.atomize_term thy t;
wenzelm@13375
  1753
    val bodyT = Term.fastype_of body;
wenzelm@13375
  1754
  in
wenzelm@16458
  1755
    if bodyT = propT then (t, propT, Thm.reflexive (Thm.cterm_of thy t))
wenzelm@23591
  1756
    else (body, bodyT, ObjectLogic.atomize (Thm.cterm_of thy t))
wenzelm@13375
  1757
  end;
wenzelm@13336
  1758
wenzelm@25073
  1759
fun aprop_tr' n c = (Syntax.constN ^ c, fn ctxt => fn args =>
wenzelm@25073
  1760
  if length args = n then
wenzelm@25073
  1761
    Syntax.const "_aprop" $
wenzelm@25073
  1762
      Term.list_comb (Syntax.free (Consts.extern (ProofContext.consts_of ctxt) c), args)
wenzelm@13394
  1763
  else raise Match);
wenzelm@13375
  1764
ballarin@15104
  1765
(* CB: define one predicate including its intro rule and axioms
ballarin@15104
  1766
   - bname: predicate name
ballarin@15104
  1767
   - parms: locale parameters
ballarin@15104
  1768
   - defs: thms representing substitutions from defines elements
ballarin@15104
  1769
   - ts: terms representing locale assumptions (not normalised wrt. defs)
ballarin@15104
  1770
   - norm_ts: terms representing locale assumptions (normalised wrt. defs)
ballarin@15104
  1771
   - thy: the theory
ballarin@15104
  1772
*)
ballarin@15104
  1773
wenzelm@13420
  1774
fun def_pred bname parms defs ts norm_ts thy =
wenzelm@13375
  1775
  let
wenzelm@16458
  1776
    val name = Sign.full_name thy bname;
wenzelm@13375
  1777
wenzelm@16458
  1778
    val (body, bodyT, body_eq) = atomize_spec thy norm_ts;
wenzelm@13394
  1779
    val env = Term.add_term_free_names (body, []);
wenzelm@20664
  1780
    val xs = filter (member (op =) env o #1) parms;
wenzelm@13394
  1781
    val Ts = map #2 xs;
wenzelm@23178
  1782
    val extraTs = (Term.term_tfrees body \\ List.foldr Term.add_typ_tfrees [] Ts)
wenzelm@13394
  1783
      |> Library.sort_wrt #1 |> map TFree;
wenzelm@13399
  1784
    val predT = map Term.itselfT extraTs ---> Ts ---> bodyT;
wenzelm@13375
  1785
wenzelm@13394
  1786
    val args = map Logic.mk_type extraTs @ map Free xs;
wenzelm@13394
  1787
    val head = Term.list_comb (Const (name, predT), args);
wenzelm@18123
  1788
    val statement = ObjectLogic.ensure_propT thy head;
wenzelm@13375
  1789
haftmann@18358
  1790
    val ([pred_def], defs_thy) =
wenzelm@13375
  1791
      thy
wenzelm@25073
  1792
      |> bodyT = propT ? Sign.add_advanced_trfuns ([], [], [aprop_tr' (length args) name], [])
wenzelm@25073
  1793
      |> Sign.declare_const [] (bname, predT, NoSyn) |> snd
haftmann@27692
  1794
      |> PureThy.add_defs false
wenzelm@27865
  1795
        [((Thm.def_name bname, Logic.mk_equals (head, body)), [Thm.kind_internal])];
wenzelm@20059
  1796
    val defs_ctxt = ProofContext.init defs_thy |> Variable.declare_term head;
wenzelm@13394
  1797
wenzelm@16458
  1798
    val cert = Thm.cterm_of defs_thy;
wenzelm@13375
  1799
wenzelm@20059
  1800
    val intro = Goal.prove_global defs_thy [] norm_ts statement (fn _ =>
wenzelm@21708
  1801
      MetaSimplifier.rewrite_goals_tac [pred_def] THEN
wenzelm@13375
  1802
      Tactic.compose_tac (false, body_eq RS Drule.equal_elim_rule1, 1) 1 THEN
wenzelm@23418
  1803
      Tactic.compose_tac (false,
wenzelm@23418
  1804
        Conjunction.intr_balanced (map (Thm.assume o cert) norm_ts), 0) 1);
wenzelm@13375
  1805
wenzelm@13375
  1806
    val conjuncts =
wenzelm@19423
  1807
      (Drule.equal_elim_rule2 OF [body_eq,
wenzelm@21708
  1808
        MetaSimplifier.rewrite_rule [pred_def] (Thm.assume (cert statement))])
wenzelm@23418
  1809
      |> Conjunction.elim_balanced (length ts);
haftmann@17257
  1810
    val axioms = ts ~~ conjuncts |> map (fn (t, ax) =>
wenzelm@20059
  1811
      Element.prove_witness defs_ctxt t
wenzelm@21708
  1812
       (MetaSimplifier.rewrite_goals_tac defs THEN
wenzelm@13375
  1813
        Tactic.compose_tac (false, ax, 0) 1));
haftmann@18550
  1814
  in ((statement, intro, axioms), defs_thy) end;
wenzelm@13375
  1815
haftmann@18550
  1816
fun assumes_to_notes (Assumes asms) axms =
wenzelm@21441
  1817
      fold_map (fn (a, spec) => fn axs =>
wenzelm@21441
  1818
          let val (ps, qs) = chop (length spec) axs
wenzelm@21441
  1819
          in ((a, [(ps, [])]), qs) end) asms axms
wenzelm@21441
  1820
      |> apfst (curry Notes Thm.assumptionK)
haftmann@18550
  1821
  | assumes_to_notes e axms = (e, axms);
wenzelm@13375
  1822
ballarin@19931
  1823
(* CB: the following two change only "new" elems, these have identifier ("", _). *)
ballarin@15206
  1824
ballarin@19931
  1825
(* turn Assumes into Notes elements *)
ballarin@19931
  1826
ballarin@19931
  1827
fun change_assumes_elemss axioms elemss =
haftmann@18550
  1828
  let
wenzelm@21483
  1829
    val satisfy = Element.morph_ctxt (Element.satisfy_morphism axioms);
ballarin@19931
  1830
    fun change (id as ("", _), es) =
wenzelm@21483
  1831
          fold_map assumes_to_notes (map satisfy es)
haftmann@18550
  1832
          #-> (fn es' => pair (id, es'))
haftmann@18550
  1833
      | change e = pair e;
haftmann@18550
  1834
  in
wenzelm@19780
  1835
    fst (fold_map change elemss (map Element.conclude_witness axioms))
haftmann@18550
  1836
  end;
wenzelm@13375
  1837
ballarin@19931
  1838
(* adjust hyps of Notes elements *)
ballarin@19931
  1839
ballarin@19931
  1840
fun change_elemss_hyps axioms elemss =
ballarin@19931
  1841
  let
wenzelm@21483
  1842
    val satisfy = Element.morph_ctxt (Element.satisfy_morphism axioms);
wenzelm@21483
  1843
    fun change (id as ("", _), es) = (id, map (fn e as Notes _ => satisfy e | e => e) es)
ballarin@19931
  1844
      | change e = e;
ballarin@19931
  1845
  in map change elemss end;
ballarin@19931
  1846
wenzelm@13394
  1847
in
wenzelm@13394
  1848
ballarin@15104
  1849
(* CB: main predicate definition function *)
ballarin@15104
  1850
haftmann@22351
  1851
fun define_preds pname (parms, ((exts, exts'), (ints, ints')), defs) elemss thy =
wenzelm@13394
  1852
  let
haftmann@22351
  1853
    val ((elemss', more_ts), a_elem, a_intro, thy'') =
ballarin@19931
  1854
      if null exts then ((elemss, []), [], [], thy)
wenzelm@13394
  1855
      else
wenzelm@13394
  1856
        let
haftmann@22351
  1857
          val aname = if null ints then pname else pname ^ "_" ^ axiomsN;
haftmann@22351
  1858
          val ((statement, intro, axioms), thy') =
haftmann@22351
  1859
            thy
haftmann@22351
  1860
            |> def_pred aname parms defs exts exts';
ballarin@19931
  1861
          val elemss' = change_assumes_elemss axioms elemss;
haftmann@22351
  1862
          val a_elem = [(("", []), [Assumes [((pname ^ "_" ^ axiomsN, []), [(statement, [])])]])];
haftmann@22351
  1863
          val (_, thy'') =
haftmann@22351
  1864
            thy'
haftmann@27692
  1865
            |> Sign.add_path aname
haftmann@27692
  1866
            |> Sign.no_base_names
haftmann@27692
  1867
            |> PureThy.note_thmss Thm.internalK [((introN, []), [([intro], [])])]
haftmann@27692
  1868
            ||> Sign.restore_naming thy';
haftmann@22351
  1869
        in ((elemss', [statement]), a_elem, [intro], thy'') end;
haftmann@22351
  1870
    val (predicate, stmt', elemss'', b_intro, thy'''') =
haftmann@22351
  1871
      if null ints then (([], []), more_ts, elemss' @ a_elem, [], thy'')
wenzelm@13394
  1872
      else
wenzelm@13394
  1873
        let
haftmann@22351
  1874
          val ((statement, intro, axioms), thy''') =
haftmann@22351
  1875
            thy''
haftmann@22351
  1876
            |> def_pred pname parms defs (ints @ more_ts) (ints' @ more_ts);
haftmann@22351
  1877
          val cstatement = Thm.cterm_of thy''' statement;
ballarin@19931
  1878
          val elemss'' = change_elemss_hyps axioms elemss';
ballarin@19931
  1879
          val b_elem = [(("", []),
haftmann@22351
  1880
               [Assumes [((pname ^ "_" ^ axiomsN, []), [(statement, [])])]])];
haftmann@22351
  1881
          val (_, thy'''') =
haftmann@22351
  1882
            thy'''
haftmann@27692
  1883
            |> Sign.add_path pname
haftmann@27692
  1884
            |> Sign.no_base_names
haftmann@27692
  1885
            |> PureThy.note_thmss Thm.internalK
haftmann@22351
  1886
                 [((introN, []), [([intro], [])]),
haftmann@27692
  1887
                  ((axiomsN, []), [(map (Drule.standard o Element.conclude_witness) axioms, [])])]
haftmann@27692
  1888
            ||> Sign.restore_naming thy''';
haftmann@22351
  1889
        in (([cstatement], axioms), [statement], elemss'' @ b_elem, [intro], thy'''') end;
haftmann@22351
  1890
  in (((elemss'', predicate, stmt'), (a_intro, b_intro)), thy'''') end;
wenzelm@13375
  1891
wenzelm@13375
  1892
end;
wenzelm@13336
  1893
wenzelm@13336
  1894
wenzelm@13297
  1895
(* add_locale(_i) *)
wenzelm@13297
  1896
wenzelm@13297
  1897
local
wenzelm@13297
  1898
ballarin@19931
  1899
(* turn Defines into Notes elements, accumulate definition terms *)
ballarin@19931
  1900
ballarin@19942
  1901
fun defines_to_notes is_ext thy (Defines defs) defns =
ballarin@19942
  1902
    let
ballarin@19942
  1903
      val defs' = map (fn (_, (def, _)) => (("", []), (def, []))) defs
ballarin@19942
  1904
      val notes = map (fn (a, (def, _)) =>
ballarin@19942
  1905
        (a, [([assume (cterm_of thy def)], [])])) defs
wenzelm@21441
  1906
    in
wenzelm@21441
  1907
      (if is_ext then SOME (Notes (Thm.definitionK, notes)) else NONE, defns @ [Defines defs'])
wenzelm@21441
  1908
    end
ballarin@19942
  1909
  | defines_to_notes _ _ e defns = (SOME e, defns);
ballarin@19931
  1910
ballarin@19942
  1911
fun change_defines_elemss thy elemss defns =
ballarin@19931
  1912
  let
ballarin@19942
  1913
    fun change (id as (n, _), es) defns =
ballarin@19931
  1914
        let
ballarin@19942
  1915
          val (es', defns') = fold_map (defines_to_notes (n="") thy) es defns
ballarin@19942
  1916
        in ((id, map_filter I es'), defns') end
ballarin@19942
  1917
  in fold_map change elemss defns end;
ballarin@19931
  1918
wenzelm@18343
  1919
fun gen_add_locale prep_ctxt prep_expr
wenzelm@22573
  1920
    predicate_name bname raw_imports raw_body thy =
haftmann@27681
  1921
    (* predicate_name: "" - locale with predicate named as locale
haftmann@27681
  1922
        "name" - locale with predicate named "name" *)
wenzelm@13297
  1923
  let
haftmann@27681
  1924
    val thy_ctxt = ProofContext.init thy;
wenzelm@16458
  1925
    val name = Sign.full_name thy bname;
wenzelm@21962
  1926
    val _ = is_some (get_locale thy name) andalso
wenzelm@21962
  1927
      error ("Duplicate definition of locale " ^ quote name);
wenzelm@13297
  1928
ballarin@17228
  1929
    val (((import_ctxt, import_elemss), (body_ctxt, body_elemss, syn)),
ballarin@19931
  1930
      text as (parms, ((_, exts'), _), defs)) =
haftmann@27681
  1931
        prep_ctxt raw_imports raw_body thy_ctxt;
ballarin@19931
  1932
    val elemss = import_elemss @ body_elemss |>
haftmann@27681
  1933
      map_filter (fn ((id, Assumed axs), elems) => SOME (id, elems) | _ => NONE);
wenzelm@13297
  1934
wenzelm@23178
  1935
    val extraTs = List.foldr Term.add_term_tfrees [] exts' \\
wenzelm@23178
  1936
      List.foldr Term.add_typ_tfrees [] (map snd parms);
ballarin@17228
  1937
    val _ = if null extraTs then ()
ballarin@17437
  1938
      else warning ("Additional type variable(s) in locale specification " ^ quote bname);
ballarin@17228
  1939
haftmann@27681
  1940
    val predicate_name' = case predicate_name of "" => bname | _ => predicate_name;
haftmann@27692
  1941
    val (elemss', defns) = change_defines_elemss thy elemss [];
haftmann@27692
  1942
    val elemss'' = elemss' @ [(("", []), defns)];
haftmann@27692
  1943
    val (((elemss''', predicate as (pred_statement, pred_axioms), stmt'), intros), thy') =
haftmann@27692
  1944
      define_preds predicate_name' text elemss'' thy;
haftmann@27692
  1945
    val regs = pred_axioms
haftmann@27692
  1946
      |> fold_map (fn (id, elems) => fn wts => let
haftmann@27692
  1947
             val ts = flat (map_filter (fn (Assumes asms) =>
haftmann@27692
  1948
               SOME (maps (map #1 o #2) asms) | _ => NONE) elems);
haftmann@27692
  1949
             val (wts1, wts2) = chop (length ts) wts;
haftmann@27692
  1950
           in ((apsnd (map fst) id, wts1), wts2) end) elemss'''
haftmann@27692
  1951
      |> fst
haftmann@27681
  1952
      |> map_filter (fn (("", _), _) => NONE | e => SOME e);
wenzelm@18137
  1953
    fun axiomify axioms elemss =
ballarin@15206
  1954
      (axioms, elemss) |> foldl_map (fn (axs, (id, elems)) => let
wenzelm@19482
  1955
                   val ts = flat (map_filter (fn (Assumes asms) =>
wenzelm@19482
  1956
                     SOME (maps (map #1 o #2) asms) | _ => NONE) elems);
wenzelm@19018
  1957
                   val (axs1, axs2) = chop (length ts) axs;
ballarin@17000
  1958
                 in (axs2, ((id, Assumed axs1), elems)) end)
haftmann@27692
  1959
      |> snd;
haftmann@27681
  1960
    val ((_, facts), ctxt) = activate_facts true (K I)
haftmann@27692
  1961
      (axiomify pred_axioms elemss''') (ProofContext.init thy');
haftmann@27681
  1962
    val view_ctxt = Assumption.add_view thy_ctxt pred_statement ctxt;
wenzelm@26634
  1963
    val export = Thm.close_derivation o Goal.norm_result o
wenzelm@21602
  1964
      singleton (ProofContext.export view_ctxt thy_ctxt);
wenzelm@13420
  1965
    val facts' = facts |> map (fn (a, ths) => ((a, []), [(map export ths, [])]));
haftmann@27692
  1966
    val elems' = maps #2 (filter (equal "" o #1 o #1) elemss''');
ballarin@19783
  1967
    val elems'' = map_filter (fn (Fixes _) => NONE | e => SOME e) elems';
haftmann@27681
  1968
    val axs' = map (Element.assume_witness thy') stmt';
haftmann@27681
  1969
    val loc_ctxt = thy'
haftmann@27692
  1970
      |> Sign.add_path bname
haftmann@27692
  1971
      |> Sign.no_base_names
haftmann@27692
  1972
      |> PureThy.note_thmss Thm.assumptionK facts' |> snd
haftmann@27692
  1973
      |> Sign.restore_naming thy'
haftmann@27686
  1974
      |> register_locale name {axiom = axs',
ballarin@19783
  1975
        elems = map (fn e => (e, stamp ())) elems'',
haftmann@27692
  1976
        params = params_of elemss''' |> map (fn (x, SOME T) => ((x, T), the (Symtab.lookup syn x))),
wenzelm@21665
  1977
        decls = ([], []),
ballarin@19931
  1978
        regs = regs,
haftmann@25619
  1979
        intros = intros,
haftmann@27681
  1980
        dests = map Element.conclude_witness pred_axioms}
wenzelm@21393
  1981
      |> init name;
wenzelm@21393
  1982
  in (name, loc_ctxt) end;
wenzelm@13297
  1983
wenzelm@13297
  1984
in
wenzelm@13297
  1985
haftmann@18917
  1986
val add_locale = gen_add_locale read_context intern_expr;
haftmann@18917
  1987
val add_locale_i = gen_add_locale cert_context (K I);
wenzelm@13297
  1988
wenzelm@13297
  1989
end;
wenzelm@13297
  1990
wenzelm@26463
  1991
val _ = Context.>> (Context.map_theory
haftmann@27681
  1992
 (add_locale_i "" "var" empty [Fixes [(Name.internal "x", NONE, NoSyn)]] #>
wenzelm@20965
  1993
  snd #> ProofContext.theory_of #>
haftmann@27681
  1994
  add_locale_i "" "struct" empty [Fixes [(Name.internal "S", NONE, Structure)]] #>
wenzelm@26463
  1995
  snd #> ProofContext.theory_of));
wenzelm@15801
  1996
wenzelm@13297
  1997
wenzelm@12730
  1998
wenzelm@17355
  1999
ballarin@19931
  2000
(** Normalisation of locale statements ---
ballarin@19931
  2001
    discharges goals implied by interpretations **)
ballarin@19931
  2002
ballarin@19931
  2003
local
ballarin@19931
  2004
ballarin@19931
  2005
fun locale_assm_intros thy =
ballarin@19931
  2006
  Symtab.fold (fn (_, {intros = (a, _), ...}) => fn intros => (a @ intros))
ballarin@24787
  2007
    (#2 (LocalesData.get thy)) [];
ballarin@19931
  2008
fun locale_base_intros thy =
ballarin@19931
  2009
  Symtab.fold (fn (_, {intros = (_, b), ...}) => fn intros => (b @ intros))
ballarin@24787
  2010
    (#2 (LocalesData.get thy)) [];
ballarin@19931
  2011
ballarin@19931
  2012
fun all_witnesses ctxt =
ballarin@19931
  2013
  let
ballarin@19931
  2014
    val thy = ProofContext.theory_of ctxt;
ballarin@19931
  2015
    fun get registrations = Symtab.fold (fn (_, regs) => fn thms =>
ballarin@25286
  2016
        (Registrations.dest thy regs |> map (fn (_, (_, (exp, _), wits, _)) =>
ballarin@25286
  2017
          map (Element.conclude_witness #> Morphism.thm exp) wits) |> flat) @ thms)
ballarin@19931
  2018
      registrations [];
ballarin@24787
  2019
  in get (RegistrationsData.get (Context.Proof ctxt)) end;
ballarin@19931
  2020
ballarin@19931
  2021
in
ballarin@19931
  2022
ballarin@19984
  2023
fun intro_locales_tac eager ctxt facts st =
ballarin@19931
  2024
  let
ballarin@25286
  2025
    val wits = all_witnesses ctxt;
ballarin@19931
  2026
    val thy = ProofContext.theory_of ctxt;
ballarin@19931
  2027
    val intros = locale_base_intros thy @ (if eager then locale_assm_intros thy else []);
ballarin@19931
  2028
  in
haftmann@25270
  2029
    Method.intros_tac (wits @ intros) facts st
ballarin@19931
  2030
  end;
ballarin@19931
  2031
wenzelm@26463
  2032
val _ = Context.>> (Context.map_theory
wenzelm@26463
  2033
  (Method.add_methods
wenzelm@26463
  2034
    [("intro_locales",
wenzelm@26463
  2035
      Method.ctxt_args (fn ctxt => Method.METHOD (intro_locales_tac false ctxt)),
wenzelm@26463
  2036
      "back-chain introduction rules of locales without unfolding predicates"),
wenzelm@26463
  2037
     ("unfold_locales",
wenzelm@26463
  2038
      Method.ctxt_args (fn ctxt => Method.METHOD (intro_locales_tac true ctxt)),
wenzelm@26463
  2039
      "back-chain all introduction rules of locales")]));
ballarin@19931
  2040
ballarin@19931
  2041
end;
ballarin@19931
  2042
wenzelm@19780
  2043
ballarin@15598
  2044
(** Interpretation commands **)
ballarin@15596
  2045
ballarin@15596
  2046
local
ballarin@15596
  2047
ballarin@15596
  2048
(* extract proof obligations (assms and defs) from elements *)
ballarin@15596
  2049
wenzelm@19780
  2050
fun extract_asms_elems ((id, Assumed _), elems) = (id, maps Element.prems_of elems)
ballarin@17138
  2051
  | extract_asms_elems ((id, Derived _), _) = (id, []);
ballarin@15596
  2052
ballarin@15596
  2053
ballarin@15624
  2054
(* activate instantiated facts in theory or context *)
ballarin@15596
  2055
ballarin@22658
  2056
structure Idtab =
ballarin@22658
  2057
  TableFun(type key = string * term list
ballarin@22658
  2058
    val ord = prod_ord string_ord (list_ord Term.fast_term_ord));
ballarin@22658
  2059
ballarin@27761
  2060
fun gen_activate_facts_elemss mk_ctxt get_reg note note_interp attrib put_reg test_reg add_wit add_eqn
ballarin@27761
  2061
        attn all_elemss propss eq_attns (exp, imp) thmss thy_ctxt =
wenzelm@21499
  2062
  let
ballarin@22658
  2063
    val ctxt = mk_ctxt thy_ctxt;
ballarin@28005
  2064
    val (all_propss, eq_props) = chop (length all_elemss) propss;
ballarin@28005
  2065
    val (all_thmss, eq_thms) = chop (length all_elemss) thmss;
ballarin@27761
  2066
ballarin@27761
  2067
    (* Filter out fragments already registered. *)
ballarin@27761
  2068
ballarin@27761
  2069
    val (new_elemss, xs) = split_list (filter_out (fn (((id, _), _), _) =>
ballarin@28005
  2070
          test_reg thy_ctxt id) (all_elemss ~~ (all_propss ~~ all_thmss)));
ballarin@28005
  2071
    val (new_propss, new_thmss) = split_list xs;
ballarin@28005
  2072
ballarin@28005
  2073
    val thy_ctxt' = thy_ctxt
ballarin@28005
  2074
      (* add registrations *)
ballarin@28005
  2075
(*      |> fold (fn ((id, _), _) => put_reg id attn (exp, imp)) new_elemss *)
ballarin@28005
  2076
      |> fold (fn (id, _) => put_reg id attn (exp, imp)) new_propss
ballarin@28005
  2077
      (* add witnesses of Assumed elements (only those generate proof obligations) *)
ballarin@28005
  2078
      |> fold (fn (id, thms) => fold (add_wit id) thms) (map fst new_propss ~~ new_thmss)
ballarin@28005
  2079
      (* add equations *)
ballarin@28005
  2080
      |> fold (fn (id, thms) => fold (add_eqn id) thms) (map fst eq_props ~~
ballarin@28005
  2081
          (map o map) (Drule.abs_def o LocalDefs.meta_rewrite_rule ctxt o
ballarin@28005
  2082
            Element.conclude_witness) eq_thms);
ballarin@28005
  2083
ballarin@28005
  2084
    val prems = flat (map_filter
ballarin@28005
  2085
          (fn ((id, Assumed _), _) => Option.map #2 (get_reg thy_ctxt' imp id)
ballarin@28005
  2086
            | ((_, Derived _), _) => NONE) all_elemss);
ballarin@28005
  2087
ballarin@28005
  2088
    fun activate_elem eqns loc ((fully_qualified, prfx), atts) (Notes (kind, facts)) thy_ctxt =
wenzelm@21499
  2089
        let
ballarin@22658
  2090
          val ctxt = mk_ctxt thy_ctxt;
ballarin@25286
  2091
          val facts' = interpret_args (ProofContext.theory_of ctxt) prfx
ballarin@25286
  2092
              (Symtab.empty, Symtab.empty) prems eqns atts
ballarin@25286
  2093
              exp (attrib thy_ctxt) facts;
ballarin@28024
  2094
        in snd (note_interp kind loc (fully_qualified, prfx) [] facts' thy_ctxt) end
ballarin@28005
  2095
      | activate_elem _ _ _ _ thy_ctxt = thy_ctxt;
ballarin@28005
  2096
ballarin@28005
  2097
    fun activate_elems all_eqns ((id, _), elems) thy_ctxt =
wenzelm@21499
  2098
      let
ballarin@25286
  2099
        val (prfx_atts, _, _) = case get_reg thy_ctxt imp id
haftmann@22351
  2100
         of SOME x => x
haftmann@22351
  2101
          | NONE => sys_error ("Unknown registration of " ^ quote (fst id)
haftmann@22351
  2102
              ^ " while activating facts.");
ballarin@28005
  2103
      in fold (activate_elem (the (Idtab.lookup all_eqns id)) (fst id) prfx_atts) elems thy_ctxt end;
ballarin@27761
  2104
wenzelm@21499
  2105
    val thy_ctxt'' = thy_ctxt'
wenzelm@21499
  2106
      (* add witnesses of Derived elements *)
ballarin@25286
  2107
      |> fold (fn (id, thms) => fold (add_wit id o Element.morph_witness (Element.satisfy_morphism prems)) thms)
wenzelm@21499
  2108
         (map_filter (fn ((_, Assumed _), _) => NONE
wenzelm@21499
  2109
            | ((id, Derived thms), _) => SOME (id, thms)) new_elemss)
wenzelm@19780
  2110
ballarin@22658
  2111
    (* Accumulate equations *)
ballarin@23918
  2112
    val all_eqns =
ballarin@28005
  2113
      fold_map (join_eqns (get_reg thy_ctxt'' imp) fst ctxt) all_propss Termtab.empty
ballarin@23918
  2114
      |> fst
ballarin@23918
  2115
      |> map (apsnd (map snd o Termtab.dest))
ballarin@22658
  2116
      |> (fn xs => fold Idtab.update xs Idtab.empty)
ballarin@23918
  2117
      (* Idtab.make wouldn't work here: can have conflicting duplicates,
ballarin@22658
  2118
         because instantiation may equate ids and equations are accumulated! *)
ballarin@27761
  2119
wenzelm@21499
  2120
  in
wenzelm@21499
  2121
    thy_ctxt''
ballarin@25095
  2122
    (* add equations *)
ballarin@25095
  2123
    |> fold (fn (attns, thms) =>
ballarin@25095
  2124
         fold (fn (attn, thm) => note "lemma"
ballarin@25095
  2125
           [(apsnd (map (attrib thy_ctxt'')) attn,
ballarin@25095
  2126
             [([Element.conclude_witness thm], [])])] #> snd)
ballarin@25095
  2127
           (attns ~~ thms)) (unflat eq_thms eq_attns ~~ eq_thms)
ballarin@25095
  2128
    (* add facts *)
ballarin@28005
  2129
    |> fold (activate_elems all_eqns) new_elemss
wenzelm@21499
  2130
  end;
ballarin@15596
  2131
wenzelm@17355
  2132
fun global_activate_facts_elemss x = gen_activate_facts_elemss
ballarin@22658
  2133
      ProofContext.init
ballarin@25286
  2134
      get_global_registration
haftmann@27692
  2135
      PureThy.note_thmss
wenzelm@21441
  2136
      global_note_prefix_i
ballarin@25286
  2137
      Attrib.attribute_i
ballarin@27761
  2138
      put_global_registration test_global_registration add_global_witness add_global_equation
ballarin@22658
  2139
      x;
wenzelm@17355
  2140
wenzelm@17355
  2141
fun local_activate_facts_elemss x = gen_activate_facts_elemss
ballarin@22658
  2142
      I
ballarin@15696
  2143
      get_local_registration
ballarin@25095
  2144
      ProofContext.note_thmss_i
wenzelm@19018
  2145
      local_note_prefix_i
ballarin@25286
  2146
      (Attrib.attribute_i o ProofContext.theory_of)
ballarin@17033
  2147
      put_local_registration
ballarin@27761
  2148
      test_local_registration
ballarin@22658
  2149
      add_local_witness
ballarin@22658
  2150
      add_local_equation
ballarin@22658
  2151
      x;
ballarin@22658
  2152
wenzelm@25067
  2153
fun prep_instantiations parse_term parse_prop ctxt parms (insts, eqns) =
ballarin@15596
  2154
  let
ballarin@24941
  2155
    (* parameters *)
ballarin@24941
  2156
    val (parm_names, parm_types) = parms |> split_list
ballarin@24941
  2157
      ||> map (TypeInfer.paramify_vars o Logic.varifyT);
haftmann@25038
  2158
    val type_parms = fold Term.add_tvarsT parm_types [] |> map (Logic.mk_type o TVar);
ballarin@24941
  2159
    val type_parm_names = fold Term.add_tfreesT (map snd parms) [] |> map fst;
wenzelm@22772
  2160
wenzelm@22772
  2161
    (* parameter instantiations *)
wenzelm@22772
  2162
    val d = length parms - length insts;
wenzelm@22772
  2163
    val insts =
wenzelm@22772
  2164
      if d < 0 then error "More arguments than parameters in instantiation."
wenzelm@22772
  2165
      else insts @ replicate d NONE;
ballarin@24941
  2166
    val (given_ps, given_insts) =
ballarin@24941
  2167
      ((parm_names ~~ parm_types) ~~ insts) |> map_filter
ballarin@24941
  2168
          (fn (_, NONE) => NONE
ballarin@24941
  2169
            | ((n, T), SOME inst) => SOME ((n, T), inst))
ballarin@24941
  2170
        |> split_list;
ballarin@24941
  2171
    val (given_parm_names, given_parm_types) = given_ps |> split_list;
ballarin@24941
  2172
wenzelm@25067
  2173
    (* parse insts / eqns *)
wenzelm@25067
  2174
    val given_insts' = map (parse_term ctxt) given_insts;
wenzelm@25067
  2175
    val eqns' = map (parse_prop ctxt) eqns;
wenzelm@25067
  2176
ballarin@25286
  2177
    (* type inference and contexts *)
ballarin@25286
  2178
    val arg = type_parms @ map2 TypeInfer.constrain given_parm_types given_insts' @ eqns';
ballarin@25286
  2179
    val res = Syntax.check_terms ctxt arg;
ballarin@24941
  2180
    val ctxt' = ctxt |> fold Variable.auto_fixes res;
ballarin@24941
  2181
ballarin@25286
  2182
    (* instantiation *)
ballarin@24941
  2183
    val (type_parms'', res') = chop (length type_parms) res;
ballarin@24941
  2184
    val (given_insts'', eqns'') = chop (length given_insts) res';
ballarin@24941
  2185
    val instT = Symtab.make (type_parm_names ~~ map Logic.dest_type type_parms'');
ballarin@24941
  2186
    val inst = Symtab.make (given_parm_names ~~ given_insts'');
ballarin@25286
  2187
ballarin@25286
  2188
    (* export from eigencontext *)
ballarin@25286
  2189
    val export = Variable.export_morphism ctxt' ctxt;
ballarin@25286
  2190
ballarin@25286
  2191
    (* import, its inverse *)
ballarin@25286
  2192
    val domT = fold Term.add_tfrees res [] |> map TFree;
ballarin@25286
  2193
    val importT = domT |> map (fn x => (Morphism.typ export x, x))
ballarin@25286
  2194
      |> map_filter (fn (TFree _, _) => NONE  (* fixed point of export *)
ballarin@25286
  2195
               | (TVar y, x) => SOME (fst y, x)
ballarin@25286
  2196
               | _ => error "internal: illegal export in interpretation")
ballarin@25286
  2197
      |> Vartab.make;
ballarin@25286
  2198
    val dom = fold Term.add_frees res [] |> map Free;
wenzelm@25357
  2199
    val imprt = dom |> map (fn x => (Morphism.term export x, x))
ballarin@25286
  2200
      |> map_filter (fn (Free _, _) => NONE  (* fixed point of export *)
ballarin@25286
  2201
               | (Var y, x) => SOME (fst y, x)
ballarin@25286
  2202
               | _ => error "internal: illegal export in interpretation")
ballarin@25286
  2203
      |> Vartab.make;
wenzelm@25357
  2204
  in (((instT, inst), eqns''), (export, ((importT, domT), (imprt, dom)))) end;
ballarin@24941
  2205
ballarin@24941
  2206
val read_instantiations = prep_instantiations Syntax.parse_term Syntax.parse_prop;
wenzelm@25067
  2207
val check_instantiations = prep_instantiations (K I) (K I);
ballarin@15596
  2208
wenzelm@22772
  2209
fun gen_prep_registration mk_ctxt test_reg activate
ballarin@22658
  2210
    prep_attr prep_expr prep_insts
haftmann@22300
  2211
    thy_ctxt raw_attn raw_expr raw_insts =
haftmann@22300
  2212
  let
haftmann@22300
  2213
    val ctxt = mk_ctxt thy_ctxt;
haftmann@22300
  2214
    val thy = ProofContext.theory_of ctxt;
haftmann@22300
  2215
    val ctxt' = ProofContext.init thy;
ballarin@25095
  2216
    fun prep_attn attn = (apsnd o map)
ballarin@25095
  2217
      (Attrib.crude_closure ctxt o Args.assignable o prep_attr thy) attn;
ballarin@25095
  2218
ballarin@25095
  2219
    val attn = prep_attn raw_attn;
haftmann@22300
  2220
    val expr = prep_expr thy raw_expr;
haftmann@22300
  2221
haftmann@22300
  2222
    val pts = params_of_expr ctxt' [] expr ([], Symtab.empty, Symtab.empty);
haftmann@22300
  2223
    val params_ids = make_params_ids (#1 pts);
haftmann@22300
  2224
    val raw_params_elemss = make_raw_params_elemss pts;
haftmann@22300
  2225
    val ((ids, _), raw_elemss) = flatten (ctxt', I) (([], Symtab.empty), Expr expr);
haftmann@22300
  2226
    val ((parms, all_elemss, _), (_, (_, defs, _))) =
haftmann@22300
  2227
      read_elemss false ctxt' [] (raw_params_elemss @ raw_elemss) [];
haftmann@22300
  2228
haftmann@22300
  2229
    (** compute instantiation **)
haftmann@22300
  2230
ballarin@22658
  2231
    (* consistency check: equations need to be stored in a particular locale,
ballarin@22658
  2232
       therefore if equations are present locale expression must be a name *)
ballarin@22658
  2233
ballarin@22658
  2234
    val _ = case (expr, snd raw_insts) of
ballarin@22658
  2235
        (Locale _, _) => () | (_, []) => ()
ballarin@22658
  2236
      | (_, _) => error "Interpretations with `where' only permitted if locale expression is a name.";
ballarin@22658
  2237
ballarin@22658
  2238
    (* read or certify instantiation *)
ballarin@25095
  2239
    val (raw_insts', raw_eqns) = raw_insts;
ballarin@25095
  2240
    val (raw_eq_attns, raw_eqns') = split_list raw_eqns;
ballarin@25286
  2241
    val (((instT, inst1), eqns), morphs) = prep_insts ctxt parms (raw_insts', raw_eqns');
ballarin@25095
  2242
    val eq_attns = map prep_attn raw_eq_attns;
haftmann@22300
  2243
haftmann@22300
  2244
    (* defined params without given instantiation *)
haftmann@22300
  2245
    val not_given = filter_out (Symtab.defined inst1 o fst) parms;
wenzelm@18137
  2246
    fun add_def (p, pT) inst =
ballarin@15596
  2247
      let
ballarin@15596
  2248
        val (t, T) = case find_first (fn (Free (a, _), _) => a = p) defs of
ballarin@15596
  2249
               NONE => error ("Instance missing for parameter " ^ quote p)
ballarin@15596
  2250
             | SOME (Free (_, T), t) => (t, T);
haftmann@22300
  2251
        val d = Element.inst_term (instT, inst) t;
wenzelm@18137
  2252
      in Symtab.update_new (p, d) inst end;
haftmann@22300
  2253
    val inst2 = fold add_def not_given inst1;
haftmann@22300
  2254
    val inst_morphism = Element.inst_morphism thy (instT, inst2);
wenzelm@18137
  2255
    (* Note: insts contain no vars. *)
ballarin@15596
  2256
ballarin@15596
  2257
    (** compute proof obligations **)
ballarin@15596
  2258
ballarin@15598
  2259
    (* restore "small" ids *)
ballarin@17000
  2260
    val ids' = map (fn ((n, ps), (_, mode)) =>
ballarin@19783
  2261
          ((n, map (fn p => Free (p, (the o AList.lookup (op =) parms) p)) ps), mode))
ballarin@19931
  2262
        ids;
ballarin@19931
  2263
    val (_, all_elemss') = chop (length raw_params_elemss) all_elemss
ballarin@15596
  2264
    (* instantiate ids and elements *)
ballarin@19931
  2265
    val inst_elemss = (ids' ~~ all_elemss') |> map (fn (((n, ps), _), ((_, mode), elems)) =>
ballarin@25286
  2266
      ((n, map (Morphism.term (inst_morphism $> fst morphs)) ps),
wenzelm@21483
  2267
        map (fn Int e => Element.morph_ctxt inst_morphism e) elems)
wenzelm@21483
  2268
      |> apfst (fn id => (id, map_mode (map (Element.morph_witness inst_morphism)) mode)));
ballarin@22658
  2269
    (* equations *)
ballarin@23918
  2270
    val eqn_elems = if null eqns then []
ballarin@23918
  2271
      else [(Library.last_elem inst_elemss |> fst |> fst, eqns)];
ballarin@22658
  2272
ballarin@27761
  2273
    val propss = map extract_asms_elems inst_elemss @ eqn_elems;
ballarin@27761
  2274
ballarin@27761
  2275
  in (propss, activate attn inst_elemss propss eq_attns morphs) end;
ballarin@15596
  2276
ballarin@22756
  2277
fun gen_prep_global_registration mk_ctxt = gen_prep_registration ProofContext.init
ballarin@25286
  2278
  test_global_registration
haftmann@22300
  2279
  global_activate_facts_elemss mk_ctxt;
ballarin@15624
  2280
ballarin@22756
  2281
fun gen_prep_local_registration mk_ctxt = gen_prep_registration I
ballarin@24787
  2282
  test_local_registration
haftmann@22300
  2283
  local_activate_facts_elemss mk_ctxt;
ballarin@15624
  2284
haftmann@22300
  2285
val prep_global_registration = gen_prep_global_registration
haftmann@22300
  2286
  Attrib.intern_src intern_expr read_instantiations;
ballarin@24941
  2287
val prep_global_registration_i = gen_prep_global_registration
wenzelm@25067
  2288
  (K I) (K I) check_instantiations;
haftmann@22300
  2289
haftmann@22300
  2290
val prep_local_registration = gen_prep_local_registration
haftmann@22300
  2291
  Attrib.intern_src intern_expr read_instantiations;
ballarin@24941
  2292
val prep_local_registration_i = gen_prep_local_registration
wenzelm@25067
  2293
  (K I) (K I) check_instantiations;
ballarin@15596
  2294
ballarin@17000
  2295
fun prep_registration_in_locale target expr thy =
ballarin@17000
  2296
  (* target already in internal form *)
ballarin@17000
  2297
  let
ballarin@17000
  2298
    val ctxt = ProofContext.init thy;
ballarin@17138
  2299
    val ((raw_target_ids, target_syn), _) = flatten (ctxt, I)
ballarin@17000
  2300
        (([], Symtab.empty), Expr (Locale target));
ballarin@19278
  2301
    val fixed = the_locale thy target |> #params |> map #1;
ballarin@17000
  2302
    val ((all_ids, syn), raw_elemss) = flatten (ctxt, intern_expr thy)
ballarin@17138
  2303
        ((raw_target_ids, target_syn), Expr expr);
wenzelm@19018
  2304
    val (target_ids, ids) = chop (length raw_target_ids) all_ids;
ballarin@17138
  2305
    val ((parms, elemss, _), _) = read_elemss false ctxt fixed raw_elemss [];
ballarin@17000
  2306
ballarin@17000
  2307
    (** compute proof obligations **)
ballarin@17000
  2308
ballarin@17000
  2309
    (* restore "small" ids, with mode *)
ballarin@17000
  2310
    val ids' = map (apsnd snd) ids;
ballarin@17000
  2311
    (* remove Int markers *)
ballarin@17000
  2312
    val elemss' = map (fn (_, es) =>
ballarin@17000
  2313
        map (fn Int e => e) es) elemss
ballarin@17000
  2314
    (* extract assumptions and defs *)
ballarin@17138
  2315
    val ids_elemss = ids' ~~ elemss';
wenzelm@19780
  2316
    val propss = map extract_asms_elems ids_elemss;
ballarin@17000
  2317
ballarin@17138
  2318
    (** activation function:
ballarin@17138
  2319
        - add registrations to the target locale
ballarin@17138
  2320
        - add induced registrations for all global registrations of
ballarin@17138
  2321
          the target, unless already present
ballarin@17138
  2322
        - add facts of induced registrations to theory **)
ballarin@17138
  2323
wenzelm@18123
  2324
    fun activate thmss thy = let
wenzelm@19780
  2325
        val satisfy = Element.satisfy_thm (flat thmss);
wenzelm@18123
  2326
        val ids_elemss_thmss = ids_elemss ~~ thmss;
ballarin@17138
  2327
        val regs = get_global_registrations thy target;
ballarin@17138
  2328
ballarin@17138
  2329
        fun activate_id (((id, Assumed _), _), thms) thy =
ballarin@17033
  2330
            thy |> put_registration_in_locale target id
ballarin@17138
  2331
                |> fold (add_witness_in_locale target id) thms
ballarin@17138
  2332
          | activate_id _ thy = thy;
ballarin@17138
  2333
ballarin@25286
  2334
        fun activate_reg (vts, (((fully_qualified, prfx), atts2), (exp, imp), _, _)) thy =
wenzelm@21483
  2335
          let
ballarin@25286
  2336
            val (insts, wits, _) = collect_global_witnesses thy imp fixed target_ids vts;
wenzelm@18137
  2337
            fun inst_parms ps = map
haftmann@17485
  2338
                  (the o AList.lookup (op =) (map #1 fixed ~~ vts)) ps;
wenzelm@19780
  2339
            val disch = Element.satisfy_thm wits;
wenzelm@19482
  2340
            val new_elemss = filter (fn (((name, ps), _), _) =>
ballarin@17138
  2341
                not (test_global_registration thy (name, inst_parms ps))) (ids_elemss);
ballarin@17138
  2342
            fun activate_assumed_id (((_, Derived _), _), _) thy = thy
ballarin@17138
  2343
              | activate_assumed_id ((((name, ps), Assumed _), _), thms) thy = let
ballarin@17138
  2344
                val ps' = inst_parms ps;
ballarin@17138
  2345
              in
ballarin@17138
  2346
                if test_global_registration thy (name, ps')
ballarin@17138
  2347
                then thy
ballarin@17138
  2348
                else thy
ballarin@25286
  2349
                  |> put_global_registration (name, ps') ((fully_qualified, prfx), atts2) (exp, imp)
wenzelm@19780
  2350
                  |> fold (fn witn => fn thy => add_global_witness (name, ps')
ballarin@25286
  2351
                     (Element.morph_witness (Element.inst_morphism thy insts) witn) thy) thms
ballarin@17138
  2352
              end;
ballarin@17138
  2353
ballarin@17138
  2354
            fun activate_derived_id ((_, Assumed _), _) thy = thy
ballarin@17138
  2355
              | activate_derived_id (((name, ps), Derived ths), _) thy = let
ballarin@17138
  2356
                val ps' = inst_parms ps;
ballarin@17138
  2357
              in
ballarin@17138
  2358
                if test_global_registration thy (name, ps')
ballarin@17138
  2359
                then thy
ballarin@17138
  2360
                else thy
ballarin@25286
  2361
                  |> put_global_registration (name, ps') ((fully_qualified, prfx), atts2) (exp, imp)
wenzelm@19780
  2362
                  |> fold (fn witn => fn thy => add_global_witness (name, ps')
wenzelm@19780
  2363
                       (witn |> Element.map_witness (fn (t, th) =>  (* FIXME *)
wenzelm@18137
  2364
                       (Element.inst_term insts t,
wenzelm@19780
  2365
                        disch (Element.inst_thm thy insts (satisfy th))))) thy) ths
ballarin@17138
  2366
              end;
ballarin@17138
  2367
ballarin@26645
  2368
            fun activate_elem (loc, ps) (Notes (kind, facts)) thy =
ballarin@17138
  2369
                let
wenzelm@21523
  2370
                  val att_morphism =
wenzelm@22241
  2371
                    Morphism.name_morphism (NameSpace.qualified prfx) $>
wenzelm@21523
  2372
                    Morphism.thm_morphism satisfy $>
wenzelm@21523
  2373
                    Element.inst_morphism thy insts $>
wenzelm@21523
  2374
                    Morphism.thm_morphism disch;
ballarin@17138
  2375
                  val facts' = facts
wenzelm@21523
  2376
                    |> Attrib.map_facts (Attrib.attribute_i thy o Args.morph_values att_morphism)
wenzelm@21523
  2377
                    |> map (apfst (apsnd (fn a => a @ map (Attrib.attribute thy) atts2)))
wenzelm@21523
  2378
                    |> map (apsnd (map (apfst (map (disch o Element.inst_thm thy insts o satisfy)))))
ballarin@17138
  2379
                in
haftmann@18377
  2380
                  thy
ballarin@28024
  2381
                  |> global_note_prefix_i kind loc (fully_qualified, prfx) [] facts'
haftmann@18377
  2382
                  |> snd
ballarin@17138
  2383
                end
ballarin@26645
  2384
              | activate_elem _ _ thy = thy;
ballarin@26645
  2385
ballarin@26645
  2386
            fun activate_elems ((id, _), elems) thy = fold (activate_elem id) elems thy;
ballarin@17138
  2387
ballarin@17138
  2388
          in thy |> fold activate_assumed_id ids_elemss_thmss
ballarin@17138
  2389
                 |> fold activate_derived_id ids_elemss
ballarin@17138
  2390
                 |> fold activate_elems new_elemss end;
ballarin@17033
  2391
      in
ballarin@17138
  2392
        thy |> fold activate_id ids_elemss_thmss
ballarin@17138
  2393
            |> fold activate_reg regs
ballarin@17033
  2394
      end;
ballarin@17000
  2395
ballarin@17033
  2396
  in (propss, activate) end;
ballarin@17000
  2397
wenzelm@21005
  2398
fun prep_propp propss = propss |> map (fn (_, props) =>
wenzelm@21361
  2399
  map (rpair [] o Element.mark_witness) props);
wenzelm@18123
  2400
wenzelm@18123
  2401
fun prep_result propps thmss =
wenzelm@19780
  2402
  ListPair.map (fn ((_, props), thms) => map2 Element.make_witness props thms) (propps, thmss);
ballarin@17437
  2403
haftmann@22300
  2404
fun gen_interpretation prep_registration after_qed (prfx, raw_atts) raw_expr raw_insts thy =
haftmann@22351
  2405
  (* prfx = (flag indicating full qualification, name prefix) *)
wenzelm@17355
  2406
  let
haftmann@22300
  2407
    val (propss, activate) = prep_registration thy (prfx, raw_atts) raw_expr raw_insts;
wenzelm@20366
  2408
    fun after_qed' results =
wenzelm@20366
  2409
      ProofContext.theory (activate (prep_result propss results))
wenzelm@20366
  2410
      #> after_qed;
wenzelm@18123
  2411
  in
haftmann@22300
  2412
    thy
wenzelm@23418
  2413
    |> ProofContext.init
wenzelm@21441
  2414
    |> Proof.theorem_i NONE after_qed' (prep_propp propss)
haftmann@22300
  2415
    |> Element.refine_witness
haftmann@22300
  2416
    |> Seq.hd
haftmann@22300
  2417
  end;
haftmann@22300
  2418
haftmann@22300
  2419
fun gen_interpret prep_registration after_qed (prfx, atts) expr insts int state =
haftmann@22351
  2420
  (* prfx = (flag indicating full qualification, name prefix) *)
haftmann@22300
  2421
  let
haftmann@22300
  2422
    val _ = Proof.assert_forward_or_chain state;
haftmann@22300
  2423
    val ctxt = Proof.context_of state;
haftmann@22300
  2424
    val (propss, activate) = prep_registration ctxt (prfx, atts) expr insts;
haftmann@22300
  2425
    fun after_qed' results =
haftmann@22300
  2426
      Proof.map_context (K (ctxt |> activate (prep_result propss results)))
haftmann@22300
  2427
      #> Proof.put_facts NONE
haftmann@22300
  2428
      #> after_qed;
haftmann@22300
  2429
  in
haftmann@22300
  2430
    state
haftmann@22300
  2431
    |> Proof.local_goal (ProofDisplay.print_results int) (K I) ProofContext.bind_propp_i
haftmann@22300
  2432
      "interpret" NONE after_qed' (map (pair ("", [])) (prep_propp propss))
wenzelm@19810
  2433
    |> Element.refine_witness |> Seq.hd
wenzelm@18123
  2434
  end;
wenzelm@17355
  2435
haftmann@22300
  2436
in
haftmann@22300
  2437
haftmann@22351
  2438
val interpretation_i = gen_interpretation prep_global_registration_i;
haftmann@22300
  2439
val interpretation = gen_interpretation prep_global_registration;
haftmann@22351
  2440
haftmann@22300
  2441
wenzelm@20366
  2442
fun interpretation_in_locale after_qed (raw_target, expr) thy =
wenzelm@17355
  2443
  let
wenzelm@17355
  2444
    val target = intern thy raw_target;
wenzelm@17355
  2445
    val (propss, activate) = prep_registration_in_locale target expr thy;
wenzelm@21361
  2446
    val raw_propp = prep_propp propss;
wenzelm@21005
  2447
wenzelm@21005
  2448
    val (_, _, goal_ctxt, propp) = thy
wenzelm@21665
  2449
      |> ProofContext.init
wenzelm@21361
  2450
      |> cert_context_statement (SOME target) [] raw_propp;
wenzelm@21005
  2451
wenzelm@21005
  2452
    fun after_qed' results =
wenzelm@20366
  2453
      ProofContext.theory (activate (prep_result propss results))
wenzelm@20366
  2454
      #> after_qed;
wenzelm@18123
  2455
  in
wenzelm@21005
  2456
    goal_ctxt
wenzelm@21441
  2457
    |> Proof.theorem_i NONE after_qed' propp
wenzelm@19810
  2458
    |> Element.refine_witness |> Seq.hd
wenzelm@18123
  2459
  end;
wenzelm@17449
  2460
haftmann@22351
  2461
val interpret_i = gen_interpret prep_local_registration_i;
haftmann@22300
  2462
val interpret = gen_interpret prep_local_registration;
wenzelm@17355
  2463
wenzelm@11896
  2464
end;
wenzelm@17355
  2465
wenzelm@17355
  2466
end;