src/Pure/Isar/locale.ML
author ballarin
Thu, 10 Mar 2005 17:48:36 +0100
changeset 15598 4ab52355bb53
parent 15596 8665d08085df
child 15623 8b40f741597c
permissions -rw-r--r--
Registrations of global locale interpretations: improved, better naming.
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@14215
     8
Draws some basic ideas from Florian Kammueller's original version of
wenzelm@12529
     9
locales, but uses the richer infrastructure of Isar instead of the raw
wenzelm@12529
    10
meta-logic.  Furthermore, we provide structured import of contexts
ballarin@14215
    11
(with merge and rename operations), as well as type-inference of the
wenzelm@13375
    12
signature parts, and predicate definitions of the specification text.
ballarin@14446
    13
ballarin@14446
    14
See also:
ballarin@14446
    15
ballarin@14446
    16
[1] Clemens Ballarin. Locales and Locale Expressions in Isabelle/Isar.
ballarin@14446
    17
    In Stefano Berardi et al., Types for Proofs and Programs: International
ballarin@15099
    18
    Workshop, TYPES 2003, Torino, Italy, LNCS 3085, pages 34-50, 2004.
wenzelm@11896
    19
*)
wenzelm@11896
    20
wenzelm@11896
    21
signature LOCALE =
wenzelm@11896
    22
sig
wenzelm@12046
    23
  type context
ballarin@15596
    24
  type multi_attribute
ballarin@15206
    25
ballarin@15206
    26
  (* Constructors for elem, expr and elem_expr are
ballarin@15206
    27
     currently only used for inputting locales (outer_parse.ML). *)
wenzelm@12046
    28
  datatype ('typ, 'term, 'fact, 'att) elem =
wenzelm@12058
    29
    Fixes of (string * 'typ option * mixfix option) list |
wenzelm@12046
    30
    Assumes of ((string * 'att list) * ('term * ('term list * 'term list)) list) list |
wenzelm@12046
    31
    Defines of ((string * 'att list) * ('term * 'term list)) list |
wenzelm@12273
    32
    Notes of ((string * 'att list) * ('fact * 'att list) list) list
wenzelm@12273
    33
  datatype expr =
wenzelm@12273
    34
    Locale of string |
wenzelm@12273
    35
    Rename of expr * string option list |
wenzelm@12273
    36
    Merge of expr list
wenzelm@12273
    37
  val empty: expr
ballarin@15206
    38
  datatype 'a elem_expr = Elem of 'a | Expr of expr
ballarin@15206
    39
ballarin@15206
    40
  (* Abstract interface to locales *)
wenzelm@12046
    41
  type 'att element
wenzelm@12046
    42
  type 'att element_i
wenzelm@11896
    43
  type locale
wenzelm@12046
    44
  val intern: Sign.sg -> xstring -> string
wenzelm@12014
    45
  val cond_extern: Sign.sg -> string -> xstring
wenzelm@12502
    46
  val the_locale: theory -> string -> locale
ballarin@15596
    47
  val map_attrib_element: ('att -> multi_attribute) -> 'att element ->
ballarin@15596
    48
    multi_attribute element
ballarin@15596
    49
  val map_attrib_element_i: ('att -> multi_attribute) -> 'att element_i ->
ballarin@15596
    50
    multi_attribute element_i
ballarin@15596
    51
  val map_attrib_elem_or_expr: ('att -> multi_attribute) ->
ballarin@15596
    52
    'att element elem_expr -> multi_attribute element elem_expr
ballarin@15596
    53
  val map_attrib_elem_or_expr_i: ('att -> multi_attribute) ->
ballarin@15596
    54
    'att element_i elem_expr -> multi_attribute element_i elem_expr
ballarin@15206
    55
ballarin@15596
    56
  (* Processing of locale statements *)
ballarin@15206
    57
  val read_context_statement: xstring option ->
ballarin@15596
    58
    multi_attribute element elem_expr list ->
wenzelm@12529
    59
    (string * (string list * string list)) list list -> context ->
ballarin@15206
    60
    string option * (cterm list * cterm list) * context * context * 
ballarin@15206
    61
      (term * (term list * term list)) list list
ballarin@15206
    62
  val cert_context_statement: string option ->
ballarin@15596
    63
    multi_attribute element_i elem_expr list ->
wenzelm@12529
    64
    (term * (term list * term list)) list list -> context ->
ballarin@15206
    65
    string option * (cterm list * cterm list) * context * context *
ballarin@15206
    66
      (term * (term list * term list)) list list
ballarin@15596
    67
ballarin@15596
    68
  (* Diagnostic functions *)
wenzelm@12758
    69
  val print_locales: theory -> unit
ballarin@15596
    70
  val print_locale: theory -> expr -> multi_attribute element list -> unit
ballarin@15596
    71
  val print_global_registrations: theory -> string -> unit
ballarin@15596
    72
ballarin@15596
    73
  val add_locale: bool -> bstring -> expr -> multi_attribute element list -> theory -> theory
ballarin@15596
    74
  val add_locale_i: bool -> bstring -> expr -> multi_attribute element_i list
wenzelm@13394
    75
    -> theory -> theory
skalberg@15531
    76
  val smart_note_thmss: string -> (string * 'a) option ->
wenzelm@12958
    77
    ((bstring * theory attribute list) * (thm list * theory attribute list) list) list ->
wenzelm@12958
    78
    theory -> theory * (bstring * thm list) list
wenzelm@14564
    79
  val note_thmss: string -> xstring ->
ballarin@15596
    80
    ((bstring * multi_attribute list) * (thmref * multi_attribute list) list) list ->
wenzelm@12711
    81
    theory -> theory * (bstring * thm list) list
wenzelm@14564
    82
  val note_thmss_i: string -> string ->
ballarin@15596
    83
    ((bstring * multi_attribute list) * (thm list * multi_attribute list) list) list ->
wenzelm@12711
    84
    theory -> theory * (bstring * thm list) list
ballarin@15596
    85
  val add_thmss: string -> ((string * thm list) * multi_attribute list) list ->
wenzelm@13375
    86
    theory * context -> (theory * context) * (string * thm list) list
ballarin@15596
    87
ballarin@14528
    88
  val instantiate: string -> string * context attribute list
ballarin@14528
    89
    -> thm list option -> context -> context
ballarin@15596
    90
  val prep_registration:
ballarin@15596
    91
    string * theory attribute list -> expr -> string option list -> theory ->
ballarin@15596
    92
    theory * ((string * term list) * term list) list * (theory -> theory)
ballarin@15598
    93
  val global_add_witness:
ballarin@15596
    94
    string * term list -> thm -> theory -> theory
ballarin@15596
    95
wenzelm@11896
    96
  val setup: (theory -> theory) list
wenzelm@11896
    97
end;
wenzelm@12839
    98
wenzelm@12289
    99
structure Locale: LOCALE =
wenzelm@11896
   100
struct
wenzelm@11896
   101
wenzelm@12273
   102
(** locale elements and expressions **)
wenzelm@11896
   103
wenzelm@12014
   104
type context = ProofContext.context;
wenzelm@11896
   105
ballarin@15596
   106
(* Locales store theory attributes (for activation in theories)
ballarin@15596
   107
   and context attributes (for activation in contexts) *)
ballarin@15596
   108
type multi_attribute = theory attribute * context attribute;
ballarin@15596
   109
wenzelm@12046
   110
datatype ('typ, 'term, 'fact, 'att) elem =
wenzelm@12058
   111
  Fixes of (string * 'typ option * mixfix option) list |
wenzelm@12046
   112
  Assumes of ((string * 'att list) * ('term * ('term list * 'term list)) list) list |
wenzelm@12046
   113
  Defines of ((string * 'att list) * ('term * 'term list)) list |
wenzelm@12273
   114
  Notes of ((string * 'att list) * ('fact * 'att list) list) list;
wenzelm@11896
   115
wenzelm@12273
   116
datatype expr =
wenzelm@12273
   117
  Locale of string |
wenzelm@12273
   118
  Rename of expr * string option list |
wenzelm@12273
   119
  Merge of expr list;
wenzelm@12273
   120
wenzelm@12273
   121
val empty = Merge [];
wenzelm@12273
   122
ballarin@15206
   123
datatype 'a elem_expr =
ballarin@15206
   124
  Elem of 'a | Expr of expr;
wenzelm@12273
   125
berghofe@15456
   126
type 'att element = (string, string, thmref, 'att) elem;
ballarin@15127
   127
type 'att element_i = (typ, term, thm list, 'att) elem;
wenzelm@12070
   128
wenzelm@12070
   129
type locale =
ballarin@15206
   130
 {predicate: cterm list * thm list,
ballarin@15206
   131
    (* CB: For old-style locales with "(open)" this entry is ([], []).
ballarin@15206
   132
       For new-style locales, which declare predicates, if the locale declares
ballarin@15206
   133
       no predicates, this is also ([], []).
ballarin@15206
   134
       If the locale declares predicates, the record field is
ballarin@15206
   135
       ([statement], axioms), where statement is the locale predicate applied
ballarin@15206
   136
       to the (assumed) locale parameters.  Axioms contains the projections
ballarin@15206
   137
       from the locale predicate to the normalised assumptions of the locale
ballarin@15206
   138
       (cf. [1], normalisation of locale expressions.)
ballarin@15206
   139
    *)
ballarin@15206
   140
  import: expr,                                       (*dynamic import*)
ballarin@15596
   141
  elems: (multi_attribute element_i * stamp) list,  (*static content*)
ballarin@15206
   142
  params: (string * typ option) list * string list}   (*all/local params*)
wenzelm@12063
   143
wenzelm@11896
   144
wenzelm@11896
   145
(** theory data **)
wenzelm@11896
   146
ballarin@15596
   147
structure Termlisttab = TableFun(type key = term list
ballarin@15596
   148
  val ord = Library.list_ord Term.term_ord);
ballarin@15596
   149
wenzelm@11896
   150
structure LocalesArgs =
wenzelm@11896
   151
struct
wenzelm@12014
   152
  val name = "Isar/locales";
ballarin@15596
   153
  type T = NameSpace.T * locale Symtab.table *
ballarin@15596
   154
      ((string * theory attribute list) * thm list) Termlisttab.table
ballarin@15596
   155
        Symtab.table;
ballarin@15596
   156
    (* 1st entry: locale namespace,
ballarin@15596
   157
       2nd entry: locales of the theory,
ballarin@15596
   158
       3rd entry: registrations: theorems instantiating locale assumptions,
ballarin@15596
   159
         with prefix and attributes, indexed by locale name and parameter
ballarin@15596
   160
         instantiation *)
wenzelm@11896
   161
ballarin@15596
   162
  val empty = (NameSpace.empty, Symtab.empty, Symtab.empty);
wenzelm@12063
   163
  val copy = I;
wenzelm@12118
   164
  val prep_ext = I;
wenzelm@12289
   165
ballarin@15596
   166
  fun join_locs ({predicate, import, elems, params}: locale,
ballarin@15596
   167
      {elems = elems', ...}: locale) =
ballarin@15596
   168
    SOME {predicate = predicate, import = import,
ballarin@15596
   169
      elems = gen_merge_lists eq_snd elems elems',
ballarin@15206
   170
      params = params};
ballarin@15596
   171
  (* joining of registrations: prefix and attributes of left theory,
ballarin@15596
   172
     thmsss are equal *)
ballarin@15596
   173
  fun join_regs (reg, _) = SOME reg;
ballarin@15596
   174
  fun merge ((space1, locs1, regs1), (space2, locs2, regs2)) =
ballarin@15596
   175
    (NameSpace.merge (space1, space2), Symtab.join join_locs (locs1, locs2),
ballarin@15596
   176
     Symtab.join (SOME o Termlisttab.join join_regs) (regs1, regs2));
wenzelm@12289
   177
ballarin@15596
   178
  fun print _ (space, locs, _) =
wenzelm@12273
   179
    Pretty.strs ("locales:" :: map (NameSpace.cond_extern space o #1) (Symtab.dest locs))
wenzelm@12014
   180
    |> Pretty.writeln;
wenzelm@11896
   181
end;
wenzelm@11896
   182
wenzelm@11896
   183
structure LocalesData = TheoryDataFun(LocalesArgs);
wenzelm@11896
   184
val print_locales = LocalesData.print;
wenzelm@11896
   185
wenzelm@12289
   186
val intern = NameSpace.intern o #1 o LocalesData.get_sg;
wenzelm@12289
   187
val cond_extern = NameSpace.cond_extern o #1 o LocalesData.get_sg;
wenzelm@12289
   188
wenzelm@12277
   189
wenzelm@12277
   190
(* access locales *)
wenzelm@12277
   191
wenzelm@12063
   192
fun declare_locale name =
ballarin@15596
   193
  LocalesData.map (fn (space, locs, regs) =>
ballarin@15596
   194
    (NameSpace.extend (space, [name]), locs, regs));
wenzelm@11896
   195
ballarin@15596
   196
fun put_locale name loc =
ballarin@15596
   197
  LocalesData.map (fn (space, locs, regs) =>
ballarin@15596
   198
    (space, Symtab.update ((name, loc), locs), regs));
ballarin@15596
   199
wenzelm@12063
   200
fun get_locale thy name = Symtab.lookup (#2 (LocalesData.get thy), name);
wenzelm@11896
   201
wenzelm@12014
   202
fun the_locale thy name =
wenzelm@12014
   203
  (case get_locale thy name of
skalberg@15531
   204
    SOME loc => loc
skalberg@15531
   205
  | NONE => error ("Unknown locale " ^ quote name));
wenzelm@11896
   206
wenzelm@12046
   207
ballarin@15596
   208
(* access registrations *)
ballarin@15596
   209
ballarin@15596
   210
(* add registration to theory, ignored if already present *)
ballarin@15596
   211
ballarin@15596
   212
fun global_put_registration (name, ps) attn =
ballarin@15596
   213
  LocalesData.map (fn (space, locs, regs) =>
ballarin@15596
   214
    (space, locs, let
ballarin@15596
   215
        val tab = getOpt (Symtab.lookup (regs, name), Termlisttab.empty);
ballarin@15596
   216
      in
ballarin@15596
   217
        Symtab.update ((name, Termlisttab.update_new ((ps, (attn, [])), tab)),
ballarin@15596
   218
          regs)
ballarin@15596
   219
      end handle Termlisttab.DUP _ => regs));
ballarin@15596
   220
ballarin@15598
   221
(* add witness theorem to registration in theory,
ballarin@15596
   222
   ignored if registration not present *)
ballarin@15596
   223
ballarin@15598
   224
fun global_add_witness (name, ps) thm =
ballarin@15596
   225
  LocalesData.map (fn (space, locs, regs) =>
ballarin@15596
   226
    (space, locs, let
ballarin@15596
   227
        val tab = valOf (Symtab.lookup (regs, name));
ballarin@15596
   228
        val (x, thms) = valOf (Termlisttab.lookup (tab, ps));
ballarin@15596
   229
      in
ballarin@15596
   230
        Symtab.update ((name, Termlisttab.update ((ps, (x, thm::thms)), tab)),
ballarin@15596
   231
          regs)
ballarin@15596
   232
      end handle Option => regs))
ballarin@15596
   233
ballarin@15596
   234
fun global_get_registration thy (name, ps) =
ballarin@15596
   235
  case Symtab.lookup (#3 (LocalesData.get thy), name) of
ballarin@15596
   236
      NONE => NONE
ballarin@15596
   237
    | SOME tab => Termlisttab.lookup (tab, ps);
ballarin@15596
   238
ballarin@15596
   239
ballarin@14215
   240
(* import hierarchy
ballarin@14215
   241
   implementation could be more efficient, eg. by maintaining a database
ballarin@14215
   242
   of dependencies *)
ballarin@14215
   243
ballarin@14215
   244
fun imports thy (upper, lower) =
ballarin@14215
   245
  let
ballarin@14215
   246
    val sign = sign_of thy;
ballarin@14215
   247
    fun imps (Locale name) low = (name = low) orelse
ballarin@14215
   248
      (case get_locale thy name of
skalberg@15531
   249
           NONE => false
skalberg@15531
   250
         | SOME {import, ...} => imps import low)
ballarin@14215
   251
      | imps (Rename (expr, _)) low = imps expr low
ballarin@14215
   252
      | imps (Merge es) low = exists (fn e => imps e low) es;
ballarin@14215
   253
  in
ballarin@14215
   254
    imps (Locale (intern sign upper)) (intern sign lower)
ballarin@14215
   255
  end;
ballarin@14215
   256
ballarin@14215
   257
ballarin@15596
   258
(* registrations *)
ballarin@15596
   259
ballarin@15596
   260
fun print_global_registrations thy loc =
ballarin@15596
   261
  let
ballarin@15596
   262
    val sg = Theory.sign_of thy;
ballarin@15596
   263
    val loc_int = intern sg loc;
ballarin@15596
   264
    val (_, _, regs) = LocalesData.get thy;
ballarin@15596
   265
    val prt_term = Pretty.quote o Sign.pretty_term sg;
ballarin@15596
   266
    fun prt_inst (ts, ((prfx, _), thms)) = let
ballarin@15596
   267
in
ballarin@15596
   268
      Pretty.block [Pretty.str prfx, Pretty.str ":", Pretty.brk 1,
ballarin@15596
   269
        Pretty.list "(" ")" (map prt_term ts)]
ballarin@15596
   270
end;
ballarin@15596
   271
    val loc_regs = Symtab.lookup (regs, loc_int);
ballarin@15596
   272
  in
ballarin@15596
   273
    (case loc_regs of
ballarin@15598
   274
        NONE => Pretty.str "No interpretations."
ballarin@15598
   275
      | SOME r => Pretty.big_list "interpretations:"
ballarin@15596
   276
          (map prt_inst (Termlisttab.dest r)))
ballarin@15596
   277
    |> Pretty.writeln
ballarin@15596
   278
  end;
ballarin@15596
   279
ballarin@15596
   280
wenzelm@12277
   281
(* diagnostics *)
wenzelm@12273
   282
wenzelm@12277
   283
fun err_in_locale ctxt msg ids =
wenzelm@12277
   284
  let
wenzelm@12529
   285
    val sign = ProofContext.sign_of ctxt;
wenzelm@12529
   286
    fun prt_id (name, parms) =
wenzelm@12529
   287
      [Pretty.block (Pretty.breaks (map Pretty.str (cond_extern sign name :: parms)))];
skalberg@15570
   288
    val prt_ids = List.concat (separate [Pretty.str " +", Pretty.brk 1] (map prt_id ids));
wenzelm@12502
   289
    val err_msg =
wenzelm@12529
   290
      if forall (equal "" o #1) ids then msg
wenzelm@12502
   291
      else msg ^ "\n" ^ Pretty.string_of (Pretty.block
wenzelm@12502
   292
        (Pretty.str "The error(s) above occurred in locale:" :: Pretty.brk 1 :: prt_ids));
wenzelm@12502
   293
  in raise ProofContext.CONTEXT (err_msg, ctxt) end;
wenzelm@12046
   294
ballarin@15206
   295
(* Version for identifiers with axioms *)
ballarin@15206
   296
ballarin@15206
   297
fun err_in_locale' ctxt msg ids' = err_in_locale ctxt msg (map fst ids');
wenzelm@12277
   298
wenzelm@12277
   299
wenzelm@12529
   300
(** primitives **)
wenzelm@12046
   301
wenzelm@12277
   302
(* renaming *)
wenzelm@12263
   303
skalberg@15570
   304
fun rename ren x = getOpt (assoc_string (ren, x), x);
wenzelm@12263
   305
wenzelm@12263
   306
fun rename_term ren (Free (x, T)) = Free (rename ren x, T)
wenzelm@12263
   307
  | rename_term ren (t $ u) = rename_term ren t $ rename_term ren u
wenzelm@12263
   308
  | rename_term ren (Abs (x, T, t)) = Abs (x, T, rename_term ren t)
wenzelm@12263
   309
  | rename_term _ a = a;
wenzelm@12263
   310
wenzelm@12263
   311
fun rename_thm ren th =
wenzelm@12263
   312
  let
wenzelm@12263
   313
    val {sign, hyps, prop, maxidx, ...} = Thm.rep_thm th;
wenzelm@12263
   314
    val cert = Thm.cterm_of sign;
skalberg@15570
   315
    val (xs, Ts) = Library.split_list (Library.foldl Term.add_frees ([], prop :: hyps));
wenzelm@12263
   316
    val xs' = map (rename ren) xs;
wenzelm@12263
   317
    fun cert_frees names = map (cert o Free) (names ~~ Ts);
wenzelm@12263
   318
    fun cert_vars names = map (cert o Var o apfst (rpair (maxidx + 1))) (names ~~ Ts);
wenzelm@12263
   319
  in
wenzelm@12263
   320
    if xs = xs' then th
wenzelm@12263
   321
    else
wenzelm@12263
   322
      th
wenzelm@12263
   323
      |> Drule.implies_intr_list (map cert hyps)
wenzelm@12263
   324
      |> Drule.forall_intr_list (cert_frees xs)
wenzelm@12263
   325
      |> Drule.forall_elim_list (cert_vars xs)
wenzelm@12263
   326
      |> Thm.instantiate ([], cert_vars xs ~~ cert_frees xs')
wenzelm@12263
   327
      |> (fn th' => Drule.implies_elim_list th' (map (Thm.assume o cert o rename_term ren) hyps))
wenzelm@12263
   328
  end;
wenzelm@12263
   329
wenzelm@12529
   330
fun rename_elem ren (Fixes fixes) = Fixes (fixes |> map (fn (x, T, mx) =>
wenzelm@12529
   331
      let val x' = rename ren x in
wenzelm@12529
   332
        if x = x' then (x, T, mx)
skalberg@15531
   333
        else (x', T, if mx = NONE then mx else SOME Syntax.NoSyn)    (*drop syntax*)
wenzelm@12529
   334
      end))
wenzelm@12263
   335
  | rename_elem ren (Assumes asms) = Assumes (map (apsnd (map (fn (t, (ps, qs)) =>
wenzelm@12263
   336
      (rename_term ren t, (map (rename_term ren) ps, map (rename_term ren) qs))))) asms)
wenzelm@12263
   337
  | rename_elem ren (Defines defs) = Defines (map (apsnd (fn (t, ps) =>
wenzelm@12263
   338
      (rename_term ren t, map (rename_term ren) ps))) defs)
wenzelm@12273
   339
  | rename_elem ren (Notes facts) = Notes (map (apsnd (map (apfst (map (rename_thm ren))))) facts);
wenzelm@12263
   340
wenzelm@12529
   341
fun rename_facts prfx elem =
wenzelm@12307
   342
  let
wenzelm@12323
   343
    fun qualify (arg as ((name, atts), x)) =
wenzelm@13394
   344
      if prfx = "" orelse name = "" then arg
wenzelm@13375
   345
      else ((NameSpace.pack [prfx, name], atts), x);
wenzelm@12307
   346
  in
wenzelm@12307
   347
    (case elem of
wenzelm@12307
   348
      Fixes fixes => Fixes fixes
wenzelm@12307
   349
    | Assumes asms => Assumes (map qualify asms)
wenzelm@12307
   350
    | Defines defs => Defines (map qualify defs)
wenzelm@12307
   351
    | Notes facts => Notes (map qualify facts))
wenzelm@12307
   352
  end;
wenzelm@12307
   353
wenzelm@12263
   354
wenzelm@12502
   355
(* type instantiation *)
wenzelm@12502
   356
wenzelm@12502
   357
fun inst_type [] T = T
skalberg@15570
   358
  | inst_type env T = Term.map_type_tfree (fn v => getOpt (assoc (env, v), TFree v)) T;
wenzelm@12502
   359
wenzelm@12502
   360
fun inst_term [] t = t
wenzelm@12502
   361
  | inst_term env t = Term.map_term_types (inst_type env) t;
wenzelm@12502
   362
wenzelm@13211
   363
fun inst_thm _ [] th = th
wenzelm@13211
   364
  | inst_thm ctxt env th =
wenzelm@12502
   365
      let
wenzelm@13211
   366
        val sign = ProofContext.sign_of ctxt;
wenzelm@12575
   367
        val cert = Thm.cterm_of sign;
wenzelm@12575
   368
        val certT = Thm.ctyp_of sign;
wenzelm@13211
   369
        val {hyps, prop, maxidx, ...} = Thm.rep_thm th;
skalberg@15574
   370
        val tfrees = foldr Term.add_term_tfree_names [] (prop :: hyps);
skalberg@15570
   371
        val env' = List.filter (fn ((a, _), _) => a mem_string tfrees) env;
wenzelm@12502
   372
      in
wenzelm@12502
   373
        if null env' then th
wenzelm@12502
   374
        else
wenzelm@12502
   375
          th
wenzelm@12502
   376
          |> Drule.implies_intr_list (map cert hyps)
wenzelm@12575
   377
          |> Drule.tvars_intr_list (map (#1 o #1) env')
wenzelm@12502
   378
          |> (fn (th', al) => th' |>
skalberg@15570
   379
            Thm.instantiate ((map (fn ((a, _), T) => (valOf (assoc (al, a)), certT T)) env'), []))
wenzelm@12502
   380
          |> (fn th'' => Drule.implies_elim_list th''
wenzelm@12502
   381
              (map (Thm.assume o cert o inst_term env') hyps))
wenzelm@12502
   382
      end;
wenzelm@12502
   383
wenzelm@13211
   384
fun inst_elem _ env (Fixes fixes) =
skalberg@15570
   385
      Fixes (map (fn (x, T, mx) => (x, Option.map (inst_type env) T, mx)) fixes)
wenzelm@13211
   386
  | inst_elem _ env (Assumes asms) = Assumes (map (apsnd (map (fn (t, (ps, qs)) =>
wenzelm@12502
   387
      (inst_term env t, (map (inst_term env) ps, map (inst_term env) qs))))) asms)
wenzelm@13211
   388
  | inst_elem _ env (Defines defs) = Defines (map (apsnd (fn (t, ps) =>
wenzelm@12502
   389
      (inst_term env t, map (inst_term env) ps))) defs)
wenzelm@13211
   390
  | inst_elem ctxt env (Notes facts) =
wenzelm@13211
   391
      Notes (map (apsnd (map (apfst (map (inst_thm ctxt env))))) facts);
wenzelm@12502
   392
wenzelm@12502
   393
wenzelm@12529
   394
wenzelm@12529
   395
(** structured contexts: rename + merge + implicit type instantiation **)
wenzelm@12529
   396
wenzelm@12529
   397
(* parameter types *)
wenzelm@12529
   398
ballarin@14508
   399
(* CB: frozen_tvars has the following type:
ballarin@14508
   400
  ProofContext.context -> Term.typ list -> (Term.indexname * Term.typ) list *)
ballarin@14508
   401
wenzelm@12529
   402
fun frozen_tvars ctxt Ts =
wenzelm@12529
   403
  let
skalberg@15570
   404
    val tvars = rev (Library.foldl Term.add_tvarsT ([], Ts));
wenzelm@12529
   405
    val tfrees = map TFree
wenzelm@14695
   406
      (Term.invent_names (ProofContext.used_types ctxt) "'a" (length tvars) ~~ map #2 tvars);
wenzelm@12529
   407
  in map #1 tvars ~~ tfrees end;
wenzelm@12529
   408
wenzelm@12529
   409
fun unify_frozen ctxt maxidx Ts Us =
wenzelm@12529
   410
  let
skalberg@15531
   411
    fun paramify (i, NONE) = (i, NONE)
skalberg@15531
   412
      | paramify (i, SOME T) = apsnd SOME (TypeInfer.paramify_dummies (i, T));
wenzelm@12529
   413
wenzelm@12529
   414
    val (maxidx', Ts') = foldl_map paramify (maxidx, Ts);
wenzelm@12727
   415
    val (maxidx'', Us') = foldl_map paramify (maxidx', Us);
ballarin@14215
   416
    val tsig = Sign.tsig_of (ProofContext.sign_of ctxt);
ballarin@14215
   417
skalberg@15531
   418
    fun unify (env, (SOME T, SOME U)) = (Type.unify tsig env (U, T)
ballarin@14215
   419
          handle Type.TUNIFY =>
ballarin@14215
   420
            raise TYPE ("unify_frozen: failed to unify types", [U, T], []))
ballarin@14215
   421
      | unify (env, _) = env;
skalberg@15570
   422
    val (unifier, _) = Library.foldl unify ((Vartab.empty, maxidx''), Ts' ~~ Us');
skalberg@15570
   423
    val Vs = map (Option.map (Envir.norm_type unifier)) Us';
skalberg@15570
   424
    val unifier' = Vartab.extend (unifier, frozen_tvars ctxt (List.mapPartial I Vs));
skalberg@15570
   425
  in map (Option.map (Envir.norm_type unifier')) Vs end;
wenzelm@12529
   426
skalberg@15570
   427
fun params_of elemss = gen_distinct eq_fst (List.concat (map (snd o fst) elemss));
skalberg@15570
   428
fun params_of' elemss = gen_distinct eq_fst (List.concat (map (snd o fst o fst) elemss));
ballarin@14508
   429
ballarin@14508
   430
(* CB: param_types has the following type:
skalberg@15531
   431
  ('a * 'b option) list -> ('a * 'b) list *)
skalberg@15570
   432
fun param_types ps = List.mapPartial (fn (_, NONE) => NONE | (x, SOME T) => SOME (x, T)) ps;
wenzelm@12529
   433
wenzelm@12529
   434
wenzelm@12529
   435
(* flatten expressions *)
wenzelm@12014
   436
wenzelm@12510
   437
local
wenzelm@12502
   438
ballarin@15206
   439
(* CB: OUTDATED unique_parms has the following type:
ballarin@14508
   440
     'a ->
ballarin@14508
   441
     (('b * (('c * 'd) list * Symtab.key list)) * 'e) list ->
ballarin@14508
   442
     (('b * ('c * 'd) list) * 'e) list  *)
ballarin@14508
   443
wenzelm@12529
   444
fun unique_parms ctxt elemss =
wenzelm@12529
   445
  let
wenzelm@12529
   446
    val param_decls =
skalberg@15570
   447
      List.concat (map (fn (((name, (ps, qs)), _), _) => map (rpair (name, ps)) qs) elemss)
wenzelm@12529
   448
      |> Symtab.make_multi |> Symtab.dest;
wenzelm@12529
   449
  in
wenzelm@12529
   450
    (case find_first (fn (_, ids) => length ids > 1) param_decls of
skalberg@15531
   451
      SOME (q, ids) => err_in_locale ctxt ("Multiple declaration of parameter " ^ quote q)
wenzelm@12529
   452
          (map (apsnd (map fst)) ids)
skalberg@15531
   453
    | NONE => map (apfst (apfst (apsnd #1))) elemss)
wenzelm@12529
   454
  end;
wenzelm@12529
   455
ballarin@14508
   456
(* CB: unify_parms has the following type:
ballarin@14508
   457
     ProofContext.context ->
ballarin@14508
   458
     (string * Term.typ) list ->
skalberg@15531
   459
     (string * Term.typ option) list list ->
ballarin@14508
   460
     ((string * Term.sort) * Term.typ) list list *)
ballarin@14508
   461
wenzelm@12529
   462
fun unify_parms ctxt fixed_parms raw_parmss =
wenzelm@12502
   463
  let
ballarin@15206
   464
    val sign = ProofContext.sign_of ctxt;
ballarin@15206
   465
    val tsig = Sign.tsig_of sign;
wenzelm@12502
   466
    val maxidx = length raw_parmss;
wenzelm@12502
   467
    val idx_parmss = (0 upto maxidx - 1) ~~ raw_parmss;
wenzelm@12502
   468
wenzelm@12502
   469
    fun varify i = Term.map_type_tfree (fn (a, S) => TVar ((a, i), S));
wenzelm@12529
   470
    fun varify_parms (i, ps) = map (apsnd (varify i)) (param_types ps);
skalberg@15570
   471
    val parms = fixed_parms @ List.concat (map varify_parms idx_parmss);
wenzelm@12502
   472
ballarin@15206
   473
    fun unify T ((env, maxidx), U) =
ballarin@15206
   474
      Type.unify tsig (env, maxidx) (U, T)
ballarin@15206
   475
      handle Type.TUNIFY =>
ballarin@15206
   476
        let val prt = Sign.string_of_typ sign
ballarin@15206
   477
        in raise TYPE ("unify_parms: failed to unify types " ^
ballarin@15206
   478
          prt U ^ " and " ^ prt T, [U, T], [])
ballarin@15206
   479
        end
skalberg@15570
   480
    fun unify_list (envir, T :: Us) = Library.foldl (unify T) (envir, Us)
wenzelm@12502
   481
      | unify_list (envir, []) = envir;
skalberg@15570
   482
    val (unifier, _) = Library.foldl unify_list
wenzelm@12502
   483
      ((Vartab.empty, maxidx), map #2 (Symtab.dest (Symtab.make_multi parms)));
wenzelm@12502
   484
wenzelm@12502
   485
    val parms' = map (apsnd (Envir.norm_type unifier)) (gen_distinct eq_fst parms);
wenzelm@12502
   486
    val unifier' = Vartab.extend (unifier, frozen_tvars ctxt (map #2 parms'));
wenzelm@12502
   487
wenzelm@12502
   488
    fun inst_parms (i, ps) =
skalberg@15574
   489
      foldr Term.add_typ_tfrees [] (List.mapPartial snd ps)
skalberg@15570
   490
      |> List.mapPartial (fn (a, S) =>
wenzelm@12502
   491
          let val T = Envir.norm_type unifier' (TVar ((a, i), S))
skalberg@15531
   492
          in if T = TFree (a, S) then NONE else SOME ((a, S), T) end)
wenzelm@12502
   493
  in map inst_parms idx_parmss end;
wenzelm@12502
   494
wenzelm@12529
   495
in
wenzelm@12502
   496
ballarin@15206
   497
(* like unify_elemss, but does not touch axioms *)
ballarin@15206
   498
ballarin@15206
   499
fun unify_elemss' _ _ [] = []
ballarin@15206
   500
  | unify_elemss' _ [] [elems] = [elems]
ballarin@15206
   501
  | unify_elemss' ctxt fixed_parms elemss =
ballarin@15206
   502
      let
ballarin@15206
   503
        val envs = unify_parms ctxt fixed_parms (map (#2 o #1 o #1) elemss);
ballarin@15206
   504
        fun inst ((((name, ps), axs), elems), env) =
skalberg@15570
   505
          (((name, map (apsnd (Option.map (inst_type env))) ps),  axs),
ballarin@15206
   506
           map (inst_elem ctxt env) elems);
ballarin@15206
   507
      in map inst (elemss ~~ envs) end;
ballarin@15206
   508
wenzelm@12529
   509
fun unify_elemss _ _ [] = []
wenzelm@12529
   510
  | unify_elemss _ [] [elems] = [elems]
wenzelm@12529
   511
  | unify_elemss ctxt fixed_parms elemss =
wenzelm@12502
   512
      let
ballarin@15206
   513
        val envs = unify_parms ctxt fixed_parms (map (#2 o #1 o #1) elemss);
ballarin@15206
   514
        fun inst ((((name, ps), axs), elems), env) =
skalberg@15570
   515
          (((name, map (apsnd (Option.map (inst_type env))) ps), 
ballarin@15206
   516
            map (inst_thm ctxt env) axs), map (inst_elem ctxt env) elems);
wenzelm@12839
   517
      in map inst (elemss ~~ envs) end;
wenzelm@12502
   518
ballarin@15596
   519
(* flatten_expr:
ballarin@15596
   520
   Extend list of identifiers by those new in locale expression expr.
ballarin@15596
   521
   Compute corresponding list of lists of locale elements (one entry per
ballarin@15596
   522
   identifier).
ballarin@15596
   523
ballarin@15596
   524
   Identifiers represent locale fragments and are in an extended form:
ballarin@15596
   525
     ((name, ps), (ax_ps, axs))
ballarin@15596
   526
   (name, ps) is the locale name with all its parameters.
ballarin@15596
   527
   (ax_ps, axs) is the locale axioms with its parameters;
ballarin@15596
   528
     axs are always taken from the top level of the locale hierarchy,
ballarin@15596
   529
     hence axioms may contain additional parameters from later fragments:
ballarin@15596
   530
     ps subset of ax_ps.  axs is either singleton or empty.
ballarin@15596
   531
ballarin@15596
   532
   Elements are enriched by identifier-like information:
ballarin@15596
   533
     (((name, ax_ps), axs), elems)
ballarin@15596
   534
   The parameters in ax_ps are the axiom parameters, but enriched by type
ballarin@15596
   535
   info: now each entry is a pair of string and typ option.  Axioms are
ballarin@15596
   536
   type-instantiated.
ballarin@15596
   537
ballarin@15596
   538
*)
ballarin@15596
   539
wenzelm@12575
   540
fun flatten_expr ctxt (prev_idents, expr) =
wenzelm@12273
   541
  let
wenzelm@12273
   542
    val thy = ProofContext.theory_of ctxt;
ballarin@15596
   543
    (* thy used for retrieval of locale info,
ballarin@15596
   544
       ctxt for error messages, parameter unification and instantiation
ballarin@15596
   545
       of axioms *)
ballarin@15596
   546
    (* TODO: consider err_in_locale with thy argument *)
wenzelm@12273
   547
skalberg@15531
   548
    fun renaming (SOME x :: xs) (y :: ys) = (y, x) :: renaming xs ys
skalberg@15531
   549
      | renaming (NONE :: xs) (y :: ys) = renaming xs ys
wenzelm@12273
   550
      | renaming [] _ = []
wenzelm@12289
   551
      | renaming xs [] = raise ERROR_MESSAGE ("Too many arguments in renaming: " ^
skalberg@15531
   552
          commas (map (fn NONE => "_" | SOME x => quote x) xs));
wenzelm@12289
   553
ballarin@15206
   554
    fun rename_parms top ren ((name, ps), (parms, axs)) =
wenzelm@12289
   555
      let val ps' = map (rename ren) ps in
ballarin@15206
   556
        (case duplicates ps' of [] => ((name, ps'),
ballarin@15206
   557
          if top then (map (rename ren) parms, map (rename_thm ren) axs)
ballarin@15206
   558
          else (parms, axs))
wenzelm@12289
   559
        | dups => err_in_locale ctxt ("Duplicate parameters: " ^ commas_quote dups) [(name, ps')])
wenzelm@12289
   560
      end;
wenzelm@12273
   561
ballarin@15206
   562
    fun identify top (Locale name) =
ballarin@15596
   563
    (* CB: ids_ax is a list of tuples of the form ((name, ps), axs),
ballarin@15206
   564
       where name is a locale name, ps a list of parameter names and axs
ballarin@15206
   565
       a list of axioms relating to the identifier, axs is empty unless
ballarin@15206
   566
       identify at top level (top = true);
ballarin@14215
   567
       parms is accumulated list of parameters *)
wenzelm@12289
   568
          let
ballarin@15206
   569
            val {predicate = (_, axioms), import, params, ...} =
ballarin@15206
   570
              the_locale thy name;
wenzelm@12289
   571
            val ps = map #1 (#1 params);
ballarin@15206
   572
            val (ids', parms') = identify false import;
ballarin@15206
   573
                (* acyclic import dependencies *)
ballarin@15206
   574
            val ids'' = ids' @ [((name, ps), ([], []))];
ballarin@15206
   575
            val ids_ax = if top then snd
ballarin@15206
   576
                 (foldl_map (fn (axs, ((name, parms), _)) => let
ballarin@15206
   577
                   val {elems, ...} = the_locale thy name;
skalberg@15570
   578
                   val ts = List.concat (List.mapPartial (fn (Assumes asms, _) =>
skalberg@15570
   579
                     SOME (List.concat (map (map #1 o #2) asms)) | _ => NONE) elems);
ballarin@15206
   580
                   val (axs1, axs2) = splitAt (length ts, axs);
ballarin@15206
   581
                 in (axs2, ((name, parms), (ps, axs1))) end) (axioms, ids''))
ballarin@15206
   582
               else ids'';
ballarin@15206
   583
          in (ids_ax, merge_lists parms' ps) end
ballarin@15206
   584
      | identify top (Rename (e, xs)) =
wenzelm@12273
   585
          let
ballarin@15206
   586
            val (ids', parms') = identify top e;
wenzelm@12839
   587
            val ren = renaming xs parms'
ballarin@15206
   588
              handle ERROR_MESSAGE msg => err_in_locale' ctxt msg ids';
ballarin@15206
   589
            val ids'' = gen_distinct eq_fst (map (rename_parms top ren) ids');
skalberg@15570
   590
            val parms'' = distinct (List.concat (map (#2 o #1) ids''));
ballarin@15206
   591
          in (ids'', parms'') end
ballarin@15206
   592
      | identify top (Merge es) =
skalberg@15570
   593
          Library.foldl (fn ((ids, parms), e) => let
ballarin@15206
   594
                     val (ids', parms') = identify top e
ballarin@15206
   595
                   in (gen_merge_lists eq_fst ids ids',
ballarin@15206
   596
                       merge_lists parms parms') end)
ballarin@15206
   597
            (([], []), es);
wenzelm@12273
   598
ballarin@15206
   599
    (* CB: enrich identifiers by parameter types and 
ballarin@15206
   600
       the corresponding elements (with renamed parameters) *)
ballarin@15206
   601
ballarin@15206
   602
    fun eval ((name, xs), axs) =
wenzelm@12273
   603
      let
wenzelm@13308
   604
        val {params = (ps, qs), elems, ...} = the_locale thy name;
wenzelm@12307
   605
        val ren = filter_out (op =) (map #1 ps ~~ xs);
wenzelm@13308
   606
        val (params', elems') =
wenzelm@13308
   607
          if null ren then ((ps, qs), map #1 elems)
wenzelm@12502
   608
          else ((map (apfst (rename ren)) ps, map (rename ren) qs),
wenzelm@13308
   609
            map (rename_elem ren o #1) elems);
wenzelm@13375
   610
        val elems'' = map (rename_facts (space_implode "_" xs)) elems';
ballarin@15206
   611
      in (((name, params'), axs), elems'') end;
wenzelm@12307
   612
ballarin@15206
   613
    (* compute identifiers, merge with previous ones *)
ballarin@15206
   614
    val idents = gen_rems eq_fst (#1 (identify true expr), prev_idents);
ballarin@15206
   615
    (* add types to params, check for unique params and unify them *)
wenzelm@12575
   616
    val raw_elemss = unique_parms ctxt (map eval idents);
ballarin@15206
   617
    val elemss = unify_elemss' ctxt [] raw_elemss;
ballarin@15206
   618
    (* replace params in ids by params from axioms,
ballarin@15206
   619
       adjust types in axioms *)
ballarin@15206
   620
    val all_params' = params_of' elemss;
ballarin@15206
   621
    val all_params = param_types all_params';
ballarin@15206
   622
    val elemss' = map (fn (((name, _), (ps, axs)), elems) =>
ballarin@15206
   623
         (((name, map (fn p => (p, assoc (all_params, p))) ps), axs), elems))
ballarin@15206
   624
         elemss;
ballarin@15206
   625
    fun inst_ax th = let
ballarin@15206
   626
         val {hyps, prop, ...} = Thm.rep_thm th;
skalberg@15570
   627
         val ps = map (apsnd SOME) (Library.foldl Term.add_frees ([], prop :: hyps));
ballarin@15206
   628
         val [env] = unify_parms ctxt all_params [ps];
ballarin@15206
   629
         val th' = inst_thm ctxt env th;
ballarin@15206
   630
       in th' end;
ballarin@15206
   631
    val final_elemss = map (fn ((id, axs), elems) =>
ballarin@15206
   632
         ((id, map inst_ax axs), elems)) elemss';
ballarin@15206
   633
  in (prev_idents @ idents, final_elemss) end;
wenzelm@12273
   634
wenzelm@12510
   635
end;
wenzelm@12510
   636
wenzelm@12273
   637
ballarin@15596
   638
(* attributes *)
ballarin@15596
   639
ballarin@15596
   640
local
ballarin@15596
   641
ballarin@15596
   642
fun read_att attrib (x, srcs) = (x, map attrib srcs)
ballarin@15596
   643
ballarin@15596
   644
(* CB: Map attrib over
ballarin@15596
   645
   * A context element: add attrib to attribute lists of assumptions,
ballarin@15596
   646
     definitions and facts (on both sides for facts).
ballarin@15596
   647
   * Locale expression: no effect. *)
ballarin@15596
   648
ballarin@15596
   649
fun gen_map_attrib_elem _ (Fixes fixes) = Fixes fixes
ballarin@15596
   650
  | gen_map_attrib_elem attrib (Assumes asms) = Assumes (map (apfst (read_att attrib)) asms)
ballarin@15596
   651
  | gen_map_attrib_elem attrib (Defines defs) = Defines (map (apfst (read_att attrib)) defs)
ballarin@15596
   652
  | gen_map_attrib_elem attrib (Notes facts) =
ballarin@15596
   653
      Notes (map (apfst (read_att attrib) o apsnd (map (read_att attrib))) facts)
ballarin@15596
   654
ballarin@15596
   655
fun gen_map_attrib_elem_expr attrib (Elem elem) = Elem (gen_map_attrib_elem attrib elem)
ballarin@15596
   656
  | gen_map_attrib_elem_expr _ (Expr expr) = Expr expr;
ballarin@15596
   657
ballarin@15596
   658
in
ballarin@15596
   659
ballarin@15596
   660
val map_attrib_element = gen_map_attrib_elem;
ballarin@15596
   661
val map_attrib_element_i = gen_map_attrib_elem;
ballarin@15596
   662
val map_attrib_elem_or_expr = gen_map_attrib_elem_expr;
ballarin@15596
   663
val map_attrib_elem_or_expr_i = gen_map_attrib_elem_expr;
ballarin@15596
   664
ballarin@15596
   665
end;
ballarin@15596
   666
ballarin@15596
   667
wenzelm@12529
   668
(* activate elements *)
wenzelm@12273
   669
wenzelm@12510
   670
local
wenzelm@12510
   671
wenzelm@13399
   672
fun export_axioms axs _ hyps th =
wenzelm@13399
   673
  th |> Drule.satisfy_hyps axs
ballarin@15206
   674
     (* CB: replace meta-hyps, using axs, by a single meta-hyp. *)
wenzelm@13399
   675
  |> Drule.implies_intr_list (Library.drop (length axs, hyps))
ballarin@15206
   676
     (* CB: turn remaining hyps into assumptions. *)
ballarin@15206
   677
  |> Seq.single
wenzelm@12014
   678
wenzelm@14643
   679
fun activate_elem _ ((ctxt, axs), Fixes fixes) =
wenzelm@14643
   680
      ((ctxt |> ProofContext.add_fixes fixes, axs), [])
wenzelm@13399
   681
  | activate_elem _ ((ctxt, axs), Assumes asms) =
wenzelm@13399
   682
      let
ballarin@15596
   683
        (* extract context attributes *)
ballarin@15596
   684
        val (Assumes asms) = map_attrib_element_i snd (Assumes asms);
skalberg@15570
   685
        val ts = List.concat (map (map #1 o #2) asms);
ballarin@15206
   686
        val (ps,qs) = splitAt (length ts, axs);
wenzelm@13420
   687
        val (ctxt', _) =
wenzelm@13399
   688
          ctxt |> ProofContext.fix_frees ts
nipkow@13629
   689
          |> ProofContext.assume_i (export_axioms ps) asms;
nipkow@13629
   690
      in ((ctxt', qs), []) end
wenzelm@13399
   691
  | activate_elem _ ((ctxt, axs), Defines defs) =
ballarin@15596
   692
      let
ballarin@15596
   693
        (* extract context attributes *)
ballarin@15596
   694
        val (Defines defs) = map_attrib_element_i snd (Defines defs);
ballarin@15596
   695
        val (ctxt', _) =
wenzelm@13399
   696
        ctxt |> ProofContext.assume_i ProofContext.export_def
wenzelm@13399
   697
          (defs |> map (fn ((name, atts), (t, ps)) =>
wenzelm@13399
   698
            let val (c, t') = ProofContext.cert_def ctxt t
wenzelm@13399
   699
            in ((if name = "" then Thm.def_name c else name, atts), [(t', (ps, []))]) end))
wenzelm@13420
   700
      in ((ctxt', axs), []) end
wenzelm@13399
   701
  | activate_elem is_ext ((ctxt, axs), Notes facts) =
ballarin@15596
   702
      let
ballarin@15596
   703
        (* extract context attributes *)
ballarin@15596
   704
        val (Notes facts) = map_attrib_element_i snd (Notes facts);
ballarin@15596
   705
        val (ctxt', res) = ctxt |> ProofContext.note_thmss_i facts
wenzelm@13420
   706
      in ((ctxt', axs), if is_ext then res else []) end;
wenzelm@12263
   707
ballarin@15206
   708
fun activate_elems (((name, ps), axs), elems) ctxt =
ballarin@15206
   709
  let val ((ctxt', _), res) =
wenzelm@13399
   710
    foldl_map (activate_elem (name = "")) ((ProofContext.qualified true ctxt, axs), elems)
wenzelm@13399
   711
      handle ProofContext.CONTEXT (msg, ctxt) => err_in_locale ctxt msg [(name, map fst ps)]
ballarin@15206
   712
  in (ProofContext.restore_qualified ctxt ctxt', res) end;
wenzelm@13399
   713
ballarin@15206
   714
fun activate_elemss prep_facts = foldl_map (fn (ctxt, (((name, ps), axs), raw_elems)) =>
wenzelm@12834
   715
  let
wenzelm@12834
   716
    val elems = map (prep_facts ctxt) raw_elems;
skalberg@15570
   717
    val (ctxt', res) = apsnd List.concat (activate_elems (((name, ps), axs), elems) ctxt);
ballarin@15206
   718
  in (ctxt', (((name, ps), elems), res)) end);
wenzelm@12834
   719
wenzelm@12546
   720
in
wenzelm@12546
   721
ballarin@15206
   722
(* CB: activate_facts prep_facts (ctxt, elemss),
ballarin@15206
   723
   where elemss is a list of pairs consisting of identifiers and
ballarin@15206
   724
   context elements, extends ctxt by the context elements yielding
ballarin@15206
   725
   ctxt' and returns (ctxt', (elemss', facts)).
ballarin@15206
   726
   Identifiers in the argument are of the form ((name, ps), axs) and
ballarin@15206
   727
   assumptions use the axioms in the identifiers to set up exporters
ballarin@15206
   728
   in ctxt'.  elemss' does not contain identifiers and is obtained
ballarin@15206
   729
   from elemss and the intermediate context with prep_facts.
ballarin@14508
   730
   If get_facts or get_facts_i is used for prep_facts, these also remove
ballarin@14508
   731
   the internal/external markers from elemss. *)
ballarin@14508
   732
wenzelm@13399
   733
fun activate_facts prep_facts arg =
skalberg@15570
   734
  apsnd (apsnd List.concat o Library.split_list) (activate_elemss prep_facts arg);
wenzelm@12546
   735
wenzelm@12510
   736
end;
wenzelm@12510
   737
wenzelm@12307
   738
wenzelm@12529
   739
(** prepare context elements **)
wenzelm@12529
   740
wenzelm@12529
   741
(* expressions *)
wenzelm@12529
   742
wenzelm@12529
   743
fun intern_expr sg (Locale xname) = Locale (intern sg xname)
wenzelm@12529
   744
  | intern_expr sg (Merge exprs) = Merge (map (intern_expr sg) exprs)
wenzelm@12529
   745
  | intern_expr sg (Rename (expr, xs)) = Rename (intern_expr sg expr, xs);
wenzelm@12529
   746
wenzelm@12529
   747
wenzelm@12529
   748
(* parameters *)
wenzelm@12307
   749
wenzelm@12502
   750
local
wenzelm@12502
   751
wenzelm@12529
   752
fun prep_fixes prep_vars ctxt fixes =
wenzelm@12529
   753
  let val vars = snd (foldl_map prep_vars (ctxt, map (fn (x, T, _) => ([x], T)) fixes))
wenzelm@12529
   754
  in map (fn (([x'], T'), (_, _, mx)) => (x', T', mx)) (vars ~~ fixes) end;
wenzelm@12529
   755
wenzelm@12529
   756
in
wenzelm@12529
   757
wenzelm@12529
   758
fun read_fixes x = prep_fixes ProofContext.read_vars x;
wenzelm@12529
   759
fun cert_fixes x = prep_fixes ProofContext.cert_vars x;
wenzelm@12529
   760
wenzelm@12529
   761
end;
wenzelm@12529
   762
wenzelm@12529
   763
wenzelm@12529
   764
(* propositions and bindings *)
wenzelm@12529
   765
ballarin@15206
   766
(* CB: an internal (Int) locale element was either imported or included,
ballarin@15104
   767
   an external (Ext) element appears directly in the locale. *)
ballarin@15104
   768
wenzelm@12529
   769
datatype ('a, 'b) int_ext = Int of 'a | Ext of 'b;
wenzelm@12529
   770
ballarin@15596
   771
(* flatten (ids, expr) normalises expr (which is either a locale
ballarin@14508
   772
   expression or a single context element) wrt.
ballarin@14508
   773
   to the list ids of already accumulated identifiers.
ballarin@14508
   774
   It returns (ids', elemss) where ids' is an extension of ids
ballarin@14508
   775
   with identifiers generated for expr, and elemss is the list of
ballarin@15596
   776
   context elements generated from expr.  For details, see flatten_expr.
ballarin@15596
   777
   Additionally, for a locale expression, the elems are grouped into a single
ballarin@15596
   778
   Int; individual context elements are marked Ext.  In this case, the
ballarin@15596
   779
   identifier-like information of the element is as follows:
ballarin@15596
   780
   - for Fixes: (("", ps), []) where the ps have type info NONE
ballarin@15596
   781
   - for other elements: (("", []), []).
ballarin@15206
   782
   The implementation of activate_facts relies on identifier names being
ballarin@15206
   783
   empty strings for external elements.
ballarin@15596
   784
*)
ballarin@14508
   785
ballarin@14508
   786
fun flatten _ (ids, Elem (Fixes fixes)) =
skalberg@15531
   787
      (ids, [((("", map (rpair NONE o #1) fixes), []), Ext (Fixes fixes))])
ballarin@15206
   788
  | flatten _ (ids, Elem elem) = (ids, [((("", []), []), Ext elem)])
ballarin@14508
   789
  | flatten (ctxt, prep_expr) (ids, Expr expr) =
ballarin@14508
   790
      apsnd (map (apsnd Int)) (flatten_expr ctxt (ids, prep_expr expr));
ballarin@14508
   791
wenzelm@12529
   792
local
wenzelm@12529
   793
wenzelm@12839
   794
local
wenzelm@12839
   795
wenzelm@12727
   796
fun declare_int_elem (ctxt, Fixes fixes) =
wenzelm@12575
   797
      (ctxt |> ProofContext.add_fixes (map (fn (x, T, mx) =>
skalberg@15570
   798
        (x, Option.map (Term.map_type_tfree (TypeInfer.param 0)) T, mx)) fixes), [])
wenzelm@12727
   799
  | declare_int_elem (ctxt, _) = (ctxt, []);
wenzelm@12529
   800
wenzelm@12529
   801
fun declare_ext_elem prep_fixes (ctxt, Fixes fixes) =
wenzelm@12575
   802
      (ctxt |> ProofContext.add_fixes (prep_fixes ctxt fixes), [])
wenzelm@12529
   803
  | declare_ext_elem _ (ctxt, Assumes asms) = (ctxt, map #2 asms)
wenzelm@12529
   804
  | declare_ext_elem _ (ctxt, Defines defs) = (ctxt, map (fn (_, (t, ps)) => [(t, (ps, []))]) defs)
wenzelm@12529
   805
  | declare_ext_elem _ (ctxt, Notes facts) = (ctxt, []);
wenzelm@12529
   806
ballarin@15206
   807
fun declare_elems prep_fixes (ctxt, (((name, ps), _), elems)) =
wenzelm@12529
   808
  let val (ctxt', propps) =
wenzelm@12529
   809
    (case elems of
wenzelm@13308
   810
      Int es => foldl_map declare_int_elem (ctxt, es)
wenzelm@12546
   811
    | Ext e => foldl_map (declare_ext_elem prep_fixes) (ctxt, [e]))
wenzelm@12529
   812
    handle ProofContext.CONTEXT (msg, ctxt) => err_in_locale ctxt msg [(name, map fst ps)]
wenzelm@12727
   813
  in (ctxt', propps) end;
wenzelm@12727
   814
wenzelm@12839
   815
in
wenzelm@12839
   816
ballarin@14215
   817
(* CB: only called by prep_elemss. *)
ballarin@14215
   818
wenzelm@12727
   819
fun declare_elemss prep_fixes fixed_params raw_elemss ctxt =
wenzelm@12727
   820
  let
ballarin@14215
   821
    (* CB: fix of type bug of goal in target with context elements.
ballarin@14215
   822
       Parameters new in context elements must receive types that are
ballarin@14215
   823
       distinct from types of parameters in target (fixed_params).  *)
ballarin@14215
   824
    val ctxt_with_fixed =
ballarin@14215
   825
      ProofContext.declare_terms (map Free fixed_params) ctxt;
wenzelm@12727
   826
    val int_elemss =
wenzelm@12727
   827
      raw_elemss
skalberg@15570
   828
      |> List.mapPartial (fn (id, Int es) => SOME (id, es) | _ => NONE)
ballarin@14215
   829
      |> unify_elemss ctxt_with_fixed fixed_params;
wenzelm@12727
   830
    val (_, raw_elemss') =
wenzelm@12727
   831
      foldl_map (fn ((_, es) :: elemss, (id, Int _)) => (elemss, (id, Int es)) | x => x)
wenzelm@12727
   832
        (int_elemss, raw_elemss);
wenzelm@12727
   833
  in foldl_map (declare_elems prep_fixes) (ctxt, raw_elemss') end;
wenzelm@12529
   834
wenzelm@12839
   835
end;
wenzelm@12529
   836
wenzelm@12839
   837
local
wenzelm@12502
   838
ballarin@15596
   839
(* CB: normalise Assumes and Defines wrt. previous definitions *)
ballarin@14508
   840
wenzelm@12839
   841
val norm_term = Envir.beta_norm oo Term.subst_atomic;
wenzelm@12839
   842
ballarin@15596
   843
(* CB: following code (abstract_term, abstract_thm, bind_def)
ballarin@15596
   844
   used in eval_text for Defines elements. *)
ballarin@15596
   845
wenzelm@13336
   846
fun abstract_term eq =    (*assumes well-formedness according to ProofContext.cert_def*)
wenzelm@12839
   847
  let
wenzelm@12839
   848
    val body = Term.strip_all_body eq;
wenzelm@12839
   849
    val vars = map Free (Term.rename_wrt_term body (Term.strip_all_vars eq));
wenzelm@12839
   850
    val (lhs, rhs) = Logic.dest_equals (Term.subst_bounds (vars, body));
wenzelm@12839
   851
    val (f, xs) = Term.strip_comb lhs;
wenzelm@13336
   852
    val eq' = Term.list_abs_free (map Term.dest_Free xs, rhs);
wenzelm@13336
   853
  in (Term.dest_Free f, eq') end;
wenzelm@12839
   854
wenzelm@13336
   855
fun abstract_thm sign eq =
wenzelm@13336
   856
  Thm.assume (Thm.cterm_of sign eq) |> Drule.gen_all |> Drule.abs_def;
wenzelm@13336
   857
wenzelm@13336
   858
fun bind_def ctxt (name, ps) ((xs, env, ths), eq) =
wenzelm@12839
   859
  let
wenzelm@13336
   860
    val ((y, T), b) = abstract_term eq;
wenzelm@13308
   861
    val b' = norm_term env b;
wenzelm@13336
   862
    val th = abstract_thm (ProofContext.sign_of ctxt) eq;
wenzelm@13308
   863
    fun err msg = err_in_locale ctxt (msg ^ ": " ^ quote y) [(name, map fst ps)];
wenzelm@12839
   864
  in
wenzelm@13308
   865
    conditional (exists (equal y o #1) xs) (fn () =>
wenzelm@13308
   866
      err "Attempt to define previously specified variable");
wenzelm@13308
   867
    conditional (exists (fn (Free (y', _), _) => y = y' | _ => false) env) (fn () =>
wenzelm@13308
   868
      err "Attempt to redefine variable");
wenzelm@13336
   869
    (Term.add_frees (xs, b'), (Free (y, T), b') :: env, th :: ths)
wenzelm@12839
   870
  end;
wenzelm@12839
   871
ballarin@15206
   872
(* CB: for finish_elems (Int and Ext) *)
ballarin@15206
   873
wenzelm@13308
   874
fun eval_text _ _ _ (text, Fixes _) = text
wenzelm@13394
   875
  | eval_text _ _ is_ext ((((exts, exts'), (ints, ints')), (xs, env, defs)), Assumes asms) =
wenzelm@13394
   876
      let
skalberg@15570
   877
        val ts = List.concat (map (map #1 o #2) asms);
wenzelm@13394
   878
        val ts' = map (norm_term env) ts;
wenzelm@13394
   879
        val spec' =
wenzelm@13394
   880
          if is_ext then ((exts @ ts, exts' @ ts'), (ints, ints'))
wenzelm@13394
   881
          else ((exts, exts'), (ints @ ts, ints' @ ts'));
skalberg@15570
   882
      in (spec', (Library.foldl Term.add_frees (xs, ts'), env, defs)) end
ballarin@15206
   883
  | eval_text ctxt (id, _) _ ((spec, binds), Defines defs) =
skalberg@15570
   884
      (spec, Library.foldl (bind_def ctxt id) (binds, map (#1 o #2) defs))
wenzelm@13308
   885
  | eval_text _ _ _ (text, Notes _) = text;
wenzelm@13308
   886
ballarin@15206
   887
(* CB: for finish_elems (Ext) *)
ballarin@15206
   888
wenzelm@13308
   889
fun closeup _ false elem = elem
wenzelm@13308
   890
  | closeup ctxt true elem =
wenzelm@13308
   891
      let
wenzelm@13308
   892
        fun close_frees t =
wenzelm@13308
   893
          let val frees = rev (filter_out (ProofContext.is_fixed ctxt o #1)
wenzelm@13308
   894
            (Term.add_frees ([], t)))
wenzelm@13308
   895
          in Term.list_all_free (frees, t) end;
wenzelm@13308
   896
wenzelm@13308
   897
        fun no_binds [] = []
wenzelm@13308
   898
          | no_binds _ =
wenzelm@13308
   899
              raise ProofContext.CONTEXT ("Illegal term bindings in locale element", ctxt);
wenzelm@13308
   900
      in
wenzelm@13308
   901
        (case elem of
wenzelm@13308
   902
          Assumes asms => Assumes (asms |> map (fn (a, propps) =>
wenzelm@13308
   903
            (a, map (fn (t, (ps, qs)) => (close_frees t, (no_binds ps, no_binds qs))) propps)))
wenzelm@13308
   904
        | Defines defs => Defines (defs |> map (fn (a, (t, ps)) =>
wenzelm@13308
   905
            (a, (close_frees (#2 (ProofContext.cert_def ctxt t)), no_binds ps))))
wenzelm@13308
   906
        | e => e)
wenzelm@13308
   907
      end;
wenzelm@12839
   908
wenzelm@12839
   909
wenzelm@12839
   910
fun finish_ext_elem parms _ (Fixes fixes, _) = Fixes (map (fn (x, _, mx) =>
wenzelm@12727
   911
      (x, assoc_string (parms, x), mx)) fixes)
wenzelm@12839
   912
  | finish_ext_elem _ close (Assumes asms, propp) =
wenzelm@12839
   913
      close (Assumes (map #1 asms ~~ propp))
wenzelm@12839
   914
  | finish_ext_elem _ close (Defines defs, propp) =
wenzelm@12727
   915
      close (Defines (map #1 defs ~~ map (fn [(t, (ps, []))] => (t, ps)) propp))
wenzelm@12839
   916
  | finish_ext_elem _ _ (Notes facts, _) = Notes facts;
wenzelm@12510
   917
ballarin@15206
   918
(* CB: finish_parms introduces type info from parms to identifiers *)
skalberg@15531
   919
(* CB: only needed for types that have been NONE so far???
ballarin@15206
   920
   If so, which are these??? *)
ballarin@15206
   921
ballarin@15206
   922
fun finish_parms parms (((name, ps), axs), elems) =
ballarin@15206
   923
  (((name, map (fn (x, _) => (x, assoc (parms, x))) ps), axs), elems);
wenzelm@12839
   924
wenzelm@13375
   925
fun finish_elems ctxt parms _ (text, ((id, Int e), _)) =
wenzelm@12839
   926
      let
ballarin@15206
   927
        val [(id', es)] = unify_elemss ctxt parms [(id, e)];
skalberg@15570
   928
        val text' = Library.foldl (eval_text ctxt id' false) (text, es);
ballarin@15206
   929
      in (text', (id', map Int es)) end
wenzelm@13375
   930
  | finish_elems ctxt parms do_close (text, ((id, Ext e), [propp])) =
wenzelm@13308
   931
      let
wenzelm@13308
   932
        val e' = finish_ext_elem parms (closeup ctxt do_close) (e, propp);
wenzelm@13375
   933
        val text' = eval_text ctxt id true (text, e');
wenzelm@13308
   934
      in (text', (id, [Ext e'])) end;
wenzelm@12839
   935
wenzelm@12839
   936
in
wenzelm@12839
   937
ballarin@15206
   938
(* CB: only called by prep_elemss *)
ballarin@15206
   939
wenzelm@13375
   940
fun finish_elemss ctxt parms do_close =
wenzelm@13375
   941
  foldl_map (apsnd (finish_parms parms) o finish_elems ctxt parms do_close);
wenzelm@12839
   942
wenzelm@12839
   943
end;
wenzelm@12839
   944
ballarin@15127
   945
(* CB: type inference and consistency checks for locales *)
ballarin@15127
   946
wenzelm@13375
   947
fun prep_elemss prep_fixes prepp do_close context fixed_params raw_elemss raw_concl =
wenzelm@12529
   948
  let
ballarin@15127
   949
    (* CB: contexts computed in the course of this function are discarded.
ballarin@15127
   950
       They are used for type inference and consistency checks only. *)
ballarin@15206
   951
    (* CB: fixed_params are the parameters (with types) of the target locale,
ballarin@15206
   952
       empty list if there is no target. *)
ballarin@14508
   953
    (* CB: raw_elemss are list of pairs consisting of identifiers and
ballarin@14508
   954
       context elements, the latter marked as internal or external. *)
wenzelm@12727
   955
    val (raw_ctxt, raw_proppss) = declare_elemss prep_fixes fixed_params raw_elemss context;
ballarin@14508
   956
    (* CB: raw_ctxt is context with additional fixed variables derived from
ballarin@14508
   957
       the fixes elements in raw_elemss,
ballarin@14508
   958
       raw_proppss contains assumptions and definitions from the
ballarin@15206
   959
       external elements in raw_elemss. *)
skalberg@15570
   960
    val raw_propps = map List.concat raw_proppss;
skalberg@15570
   961
    val raw_propp = List.concat raw_propps;
ballarin@15206
   962
ballarin@15206
   963
    (* CB: add type information from fixed_params to context (declare_terms) *)
ballarin@15206
   964
    (* CB: process patterns (conclusion and external elements only) *)
wenzelm@12529
   965
    val (ctxt, all_propp) =
wenzelm@12529
   966
      prepp (ProofContext.declare_terms (map Free fixed_params) raw_ctxt, raw_concl @ raw_propp);
ballarin@15206
   967
    
ballarin@15206
   968
    (* CB: add type information from conclusion and external elements
ballarin@15206
   969
       to context *)
skalberg@15570
   970
    val ctxt = ProofContext.declare_terms (List.concat (map (map fst) all_propp)) ctxt;
wenzelm@12502
   971
ballarin@15206
   972
    (* CB: resolve schematic variables (patterns) in conclusion and external
ballarin@15206
   973
       elements. *)
wenzelm@12529
   974
    val all_propp' = map2 (op ~~)
wenzelm@12529
   975
      (#1 (#2 (ProofContext.bind_propp_schematic_i (ctxt, all_propp))), map (map snd) all_propp);
nipkow@13629
   976
    val (concl, propp) = splitAt(length raw_concl, all_propp');
wenzelm@12529
   977
    val propps = unflat raw_propps propp;
wenzelm@12839
   978
    val proppss = map (uncurry unflat) (raw_proppss ~~ propps);
wenzelm@12502
   979
ballarin@15206
   980
    (* CB: obtain all parameters from identifier part of raw_elemss *)
ballarin@15206
   981
    val xs = map #1 (params_of' raw_elemss);
wenzelm@12727
   982
    val typing = unify_frozen ctxt 0
wenzelm@12529
   983
      (map (ProofContext.default_type raw_ctxt) xs)
wenzelm@12529
   984
      (map (ProofContext.default_type ctxt) xs);
wenzelm@12529
   985
    val parms = param_types (xs ~~ typing);
ballarin@14508
   986
    (* CB: parms are the parameters from raw_elemss, with correct typing. *)
wenzelm@12502
   987
ballarin@14508
   988
    (* CB: extract information from assumes and defines elements
ballarin@14508
   989
       (fixes and notes in raw_elemss don't have an effect on text and elemss),
ballarin@14508
   990
       compute final form of context elements. *)
wenzelm@13394
   991
    val (text, elemss) = finish_elemss ctxt parms do_close
wenzelm@13394
   992
      (((([], []), ([], [])), ([], [], [])), raw_elemss ~~ proppss);
ballarin@14508
   993
    (* CB: text has the following structure:
ballarin@14508
   994
           (((exts, exts'), (ints, ints')), (xs, env, defs))
ballarin@14508
   995
       where
ballarin@14508
   996
         exts: external assumptions (terms in external assumes elements)
ballarin@14508
   997
         exts': dito, normalised wrt. env
ballarin@14508
   998
         ints: internal assumptions (terms in internal assumes elements)
ballarin@14508
   999
         ints': dito, normalised wrt. env
ballarin@14508
  1000
         xs: the free variables in exts' and ints' and rhss of definitions,
ballarin@14508
  1001
           this includes parameters except defined parameters
ballarin@14508
  1002
         env: list of term pairs encoding substitutions, where the first term
ballarin@14508
  1003
           is a free variable; substitutions represent defines elements and
ballarin@14508
  1004
           the rhs is normalised wrt. the previous env
ballarin@14508
  1005
         defs: theorems representing the substitutions from defines elements
ballarin@14508
  1006
           (thms are normalised wrt. env).
ballarin@14508
  1007
       elemss is an updated version of raw_elemss:
ballarin@14508
  1008
         - type info added to Fixes
ballarin@14508
  1009
         - axiom and definition statement replaced by corresponding one
ballarin@14508
  1010
           from proppss in Assumes and Defines
ballarin@14508
  1011
         - Facts unchanged
ballarin@14508
  1012
       *)
wenzelm@13308
  1013
  in ((parms, elemss, concl), text) end;
wenzelm@12502
  1014
wenzelm@12502
  1015
in
wenzelm@12502
  1016
wenzelm@12529
  1017
fun read_elemss x = prep_elemss read_fixes ProofContext.read_propp_schematic x;
wenzelm@12529
  1018
fun cert_elemss x = prep_elemss cert_fixes ProofContext.cert_propp_schematic x;
wenzelm@12529
  1019
wenzelm@12529
  1020
end;
wenzelm@12529
  1021
wenzelm@12529
  1022
wenzelm@12529
  1023
(* facts *)
wenzelm@12529
  1024
wenzelm@12529
  1025
local
wenzelm@12529
  1026
wenzelm@12529
  1027
fun prep_name ctxt (name, atts) =
ballarin@15206
  1028
  (* CB: reject qualified theorem names in locale declarations *)
wenzelm@12529
  1029
  if NameSpace.is_qualified name then
wenzelm@12529
  1030
    raise ProofContext.CONTEXT ("Illegal qualified name: " ^ quote name, ctxt)
wenzelm@12529
  1031
  else (name, atts);
wenzelm@12529
  1032
wenzelm@13375
  1033
fun prep_facts _ _ (Int elem) = elem
wenzelm@13375
  1034
  | prep_facts _ _ (Ext (Fixes fixes)) = Fixes fixes
wenzelm@13375
  1035
  | prep_facts _ ctxt (Ext (Assumes asms)) = Assumes (map (apfst (prep_name ctxt)) asms)
wenzelm@13375
  1036
  | prep_facts _ ctxt (Ext (Defines defs)) = Defines (map (apfst (prep_name ctxt)) defs)
wenzelm@13375
  1037
  | prep_facts get ctxt (Ext (Notes facts)) = Notes (facts |> map (fn (a, bs) =>
wenzelm@13375
  1038
      (prep_name ctxt a, map (apfst (get ctxt)) bs)));
wenzelm@12529
  1039
wenzelm@12529
  1040
in
wenzelm@12529
  1041
wenzelm@12529
  1042
fun get_facts x = prep_facts ProofContext.get_thms x;
wenzelm@12529
  1043
fun get_facts_i x = prep_facts (K I) x;
wenzelm@12529
  1044
wenzelm@12529
  1045
end;
wenzelm@12529
  1046
wenzelm@12529
  1047
wenzelm@12546
  1048
(* full context statements: import + elements + conclusion *)
wenzelm@12529
  1049
wenzelm@12529
  1050
local
wenzelm@12529
  1051
wenzelm@12529
  1052
fun prep_context_statement prep_expr prep_elemss prep_facts
ballarin@15206
  1053
    do_close fixed_params import elements raw_concl context =
wenzelm@12529
  1054
  let
wenzelm@12529
  1055
    val sign = ProofContext.sign_of context;
wenzelm@13375
  1056
ballarin@14508
  1057
    val (import_ids, raw_import_elemss) = flatten (context, prep_expr sign) ([], Expr import);
ballarin@14215
  1058
    (* CB: normalise "includes" among elements *)
skalberg@15570
  1059
    val raw_elemss = List.concat (#2 ((foldl_map (flatten (context, prep_expr sign))
ballarin@14508
  1060
      (import_ids, elements))));
ballarin@14508
  1061
    (* CB: raw_import_elemss @ raw_elemss is the normalised list of
ballarin@14508
  1062
       context elements obtained from import and elements. *)
wenzelm@13375
  1063
    val ((parms, all_elemss, concl), (spec, (_, _, defs))) = prep_elemss do_close
wenzelm@13336
  1064
      context fixed_params (raw_import_elemss @ raw_elemss) raw_concl;
ballarin@15206
  1065
    (* CB: all_elemss and parms contain the correct parameter types *)
nipkow@13629
  1066
    val (ps,qs) = splitAt(length raw_import_elemss, all_elemss)
ballarin@15206
  1067
    val (import_ctxt, (import_elemss, _)) =
ballarin@15206
  1068
      activate_facts prep_facts (context, ps);
ballarin@14215
  1069
ballarin@15206
  1070
    val (ctxt, (elemss, _)) =
ballarin@15206
  1071
      activate_facts prep_facts (import_ctxt, qs);
ballarin@15212
  1072
    val stmt = gen_distinct Term.aconv
skalberg@15570
  1073
       (List.concat (map (fn ((_, axs), _) =>
skalberg@15570
  1074
         List.concat (map (#hyps o Thm.rep_thm) axs)) qs));
ballarin@15206
  1075
    val cstmt = map (cterm_of sign) stmt;
wenzelm@12834
  1076
  in
ballarin@15206
  1077
    ((((import_ctxt, import_elemss), (ctxt, elemss)), (parms, spec, defs)), (cstmt, concl))
wenzelm@12834
  1078
  end;
wenzelm@12529
  1079
wenzelm@12529
  1080
val gen_context = prep_context_statement intern_expr read_elemss get_facts;
wenzelm@12529
  1081
val gen_context_i = prep_context_statement (K I) cert_elemss get_facts_i;
wenzelm@12529
  1082
wenzelm@12529
  1083
fun gen_statement prep_locale prep_ctxt raw_locale elems concl ctxt =
wenzelm@12529
  1084
  let
wenzelm@12529
  1085
    val thy = ProofContext.theory_of ctxt;
skalberg@15570
  1086
    val locale = Option.map (prep_locale (Theory.sign_of thy)) raw_locale;
ballarin@15206
  1087
    val (target_stmt, fixed_params, import) =
skalberg@15531
  1088
      (case locale of NONE => ([], [], empty)
skalberg@15531
  1089
      | SOME name =>
ballarin@15206
  1090
          let val {predicate = (stmt, _), params = (ps, _), ...} =
ballarin@15206
  1091
            the_locale thy name
ballarin@15206
  1092
          in (stmt, param_types ps, Locale name) end);
ballarin@15206
  1093
    val ((((locale_ctxt, _), (elems_ctxt, _)), _), (elems_stmt, concl')) =
ballarin@15206
  1094
      prep_ctxt false fixed_params import elems concl ctxt;
ballarin@15206
  1095
  in (locale, (target_stmt, elems_stmt), locale_ctxt, elems_ctxt, concl') end;
wenzelm@13399
  1096
wenzelm@12529
  1097
in
wenzelm@12529
  1098
ballarin@15127
  1099
(* CB: processing of locales for add_locale(_i) and print_locale *)
ballarin@15127
  1100
  (* CB: arguments are: x->import, y->body (elements), z->context *)
ballarin@15206
  1101
fun read_context x y z = #1 (gen_context true [] x (map Elem y) [] z);
ballarin@15206
  1102
fun cert_context x y z = #1 (gen_context_i true [] x (map Elem y) [] z);
ballarin@14215
  1103
ballarin@15127
  1104
(* CB: processing of locales for note_thmss(_i),
ballarin@15127
  1105
   Proof.multi_theorem(_i) and antiquotations with option "locale" *)
wenzelm@12529
  1106
val read_context_statement = gen_statement intern gen_context;
wenzelm@12529
  1107
val cert_context_statement = gen_statement (K I) gen_context_i;
wenzelm@12502
  1108
wenzelm@12502
  1109
end;
wenzelm@11896
  1110
wenzelm@11896
  1111
ballarin@14508
  1112
(** CB: experimental instantiation mechanism **)
ballarin@14508
  1113
ballarin@14528
  1114
fun instantiate loc_name (prfx, attribs) raw_inst ctxt =
ballarin@14508
  1115
  let
ballarin@14508
  1116
    val thy = ProofContext.theory_of ctxt;
ballarin@14508
  1117
    val sign = Theory.sign_of thy;
ballarin@14508
  1118
    val tsig = Sign.tsig_of sign;
ballarin@14508
  1119
    val cert = cterm_of sign;
ballarin@14508
  1120
ballarin@14508
  1121
    (** process the locale **)
ballarin@14508
  1122
ballarin@15206
  1123
    val {predicate = (_, axioms), params = (ps, _), ...} =
ballarin@14508
  1124
      the_locale thy (intern sign loc_name);
ballarin@14508
  1125
    val fixed_params = param_types ps;
ballarin@14528
  1126
    val init = ProofContext.init thy;
ballarin@15596
  1127
    val (_, raw_elemss) =
ballarin@14528
  1128
          flatten (init, intern_expr sign) ([], Expr (Locale loc_name));
ballarin@14508
  1129
    val ((parms, all_elemss, concl),
ballarin@14508
  1130
         (spec as (_, (ints, _)), (xs, env, defs))) =
ballarin@14528
  1131
      read_elemss false (* do_close *) init
ballarin@14508
  1132
        fixed_params (* could also put [] here??? *) raw_elemss
ballarin@14508
  1133
        [] (* concl *);
ballarin@14508
  1134
ballarin@14508
  1135
    (** analyse the instantiation theorem inst **)
ballarin@14508
  1136
ballarin@14508
  1137
    val inst = case raw_inst of
skalberg@15531
  1138
        NONE => if null ints
skalberg@15531
  1139
	  then NONE
ballarin@14508
  1140
	  else error "Locale has assumptions but no chained fact was found"
skalberg@15531
  1141
      | SOME [] => if null ints
skalberg@15531
  1142
	  then NONE
ballarin@14508
  1143
	  else error "Locale has assumptions but no chained fact was found"
skalberg@15531
  1144
      | SOME [thm] => if null ints
skalberg@15531
  1145
	  then (warning "Locale has no assumptions: fact ignored"; NONE)
skalberg@15531
  1146
	  else SOME thm
skalberg@15531
  1147
      | SOME _ => error "Multiple facts are not allowed";
ballarin@14508
  1148
ballarin@14508
  1149
    val args = case inst of
skalberg@15531
  1150
            NONE => []
skalberg@15531
  1151
          | SOME thm => thm |> prop_of |> ObjectLogic.drop_judgment sign
ballarin@14528
  1152
              |> Term.strip_comb
ballarin@14528
  1153
              |>> (fn t as (Const (s, _)) => if (intern sign loc_name = s)
ballarin@14528
  1154
                        then t
ballarin@14528
  1155
                        else error ("Constant " ^ quote loc_name ^
ballarin@14528
  1156
                          " expected but constant " ^ quote s ^ " was found")
ballarin@14528
  1157
                    | t => error ("Constant " ^ quote loc_name ^ " expected \
ballarin@14528
  1158
                          \but term " ^ quote (Sign.string_of_term sign t) ^
ballarin@14528
  1159
                          " was found"))
ballarin@14528
  1160
              |> snd;
ballarin@14508
  1161
    val cargs = map cert args;
ballarin@14508
  1162
ballarin@14508
  1163
    (* process parameters: match their types with those of arguments *)
ballarin@14508
  1164
ballarin@14508
  1165
    val def_names = map (fn (Free (s, _), _) => s) env;
skalberg@15570
  1166
    val (defined, assumed) = List.partition
ballarin@14508
  1167
          (fn (s, _) => s mem def_names) fixed_params;
ballarin@14508
  1168
    val cassumed = map (cert o Free) assumed;
ballarin@14508
  1169
    val cdefined = map (cert o Free) defined;
ballarin@14508
  1170
ballarin@14508
  1171
    val param_types = map snd assumed;
ballarin@14508
  1172
    val v_param_types = map Type.varifyT param_types;
ballarin@14508
  1173
    val arg_types = map Term.fastype_of args;
skalberg@15570
  1174
    val Tenv = Library.foldl (Type.typ_match tsig)
ballarin@14508
  1175
          (Vartab.empty, v_param_types ~~ arg_types)
skalberg@15570
  1176
          handle UnequalLengths => error "Number of parameters does not \
ballarin@14528
  1177
            \match number of arguments of chained fact";
ballarin@14508
  1178
    (* get their sorts *)
skalberg@15574
  1179
    val tfrees = foldr Term.add_typ_tfrees [] param_types
ballarin@14508
  1180
    val Tenv' = map
skalberg@15570
  1181
          (fn ((a, i), T) => ((a, valOf (assoc_string (tfrees, a))), T))
ballarin@14508
  1182
          (Vartab.dest Tenv);
ballarin@14508
  1183
ballarin@14508
  1184
    (* process (internal) elements *)
ballarin@14508
  1185
ballarin@14508
  1186
    fun inst_type [] T = T
ballarin@14508
  1187
      | inst_type env T =
skalberg@15570
  1188
          Term.map_type_tfree (fn v => getOpt (assoc (env, v), TFree v)) T;
ballarin@14508
  1189
ballarin@14508
  1190
    fun inst_term [] t = t
ballarin@14508
  1191
      | inst_term env t = Term.map_term_types (inst_type env) t;
ballarin@14508
  1192
ballarin@14508
  1193
    (* parameters with argument types *)
ballarin@14508
  1194
ballarin@14508
  1195
    val cparams' = map (cterm_of sign o inst_term Tenv' o term_of) cassumed;
ballarin@14508
  1196
    val cdefined' = map (cert o inst_term Tenv' o term_of) cdefined;
ballarin@14508
  1197
    val cdefining = map (cert o inst_term Tenv' o snd) env;
ballarin@14508
  1198
ballarin@14508
  1199
    fun inst_thm _ [] th = th
ballarin@14508
  1200
      | inst_thm ctxt Tenv th =
ballarin@14508
  1201
	  let
ballarin@14508
  1202
	    val sign = ProofContext.sign_of ctxt;
ballarin@14508
  1203
	    val cert = Thm.cterm_of sign;
ballarin@14508
  1204
	    val certT = Thm.ctyp_of sign;
ballarin@14508
  1205
	    val {hyps, prop, maxidx, ...} = Thm.rep_thm th;
skalberg@15574
  1206
	    val tfrees = foldr Term.add_term_tfree_names [] (prop :: hyps);
skalberg@15570
  1207
	    val Tenv' = List.filter (fn ((a, _), _) => a mem_string tfrees) Tenv;
ballarin@14508
  1208
	  in
ballarin@14508
  1209
	    if null Tenv' then th
ballarin@14508
  1210
	    else
ballarin@14508
  1211
	      th
ballarin@14508
  1212
	      |> Drule.implies_intr_list (map cert hyps)
ballarin@14508
  1213
	      |> Drule.tvars_intr_list (map (#1 o #1) Tenv')
ballarin@14508
  1214
	      |> (fn (th', al) => th' |>
ballarin@14508
  1215
		Thm.instantiate ((map (fn ((a, _), T) =>
skalberg@15570
  1216
                  (valOf (assoc (al, a)), certT T)) Tenv'), []))
ballarin@14508
  1217
	      |> (fn th'' => Drule.implies_elim_list th''
ballarin@14508
  1218
		  (map (Thm.assume o cert o inst_term Tenv') hyps))
ballarin@14508
  1219
	  end;
ballarin@14508
  1220
ballarin@14508
  1221
    fun inst_thm' thm =
ballarin@14508
  1222
      let
ballarin@14508
  1223
        (* not all axs are normally applicable *)
ballarin@14508
  1224
        val hyps = #hyps (rep_thm thm);
ballarin@14508
  1225
        val ass = map (fn ax => (prop_of ax, ax)) axioms;
skalberg@15570
  1226
        val axs' = Library.foldl (fn (axs, hyp) => 
skalberg@15531
  1227
              (case gen_assoc (op aconv) (ass, hyp) of NONE => axs
skalberg@15531
  1228
                 | SOME ax => axs @ [ax])) ([], hyps);
ballarin@14508
  1229
        val thm' = Drule.satisfy_hyps axs' thm;
ballarin@14508
  1230
        (* instantiate types *)
ballarin@14508
  1231
        val thm'' = inst_thm ctxt Tenv' thm';
ballarin@14508
  1232
        (* substitute arguments and discharge hypotheses *)
ballarin@14508
  1233
        val thm''' = case inst of
skalberg@15531
  1234
                NONE => thm''
skalberg@15531
  1235
              | SOME inst_thm => let
ballarin@14508
  1236
		    val hyps = #hyps (rep_thm thm'');
ballarin@14508
  1237
		    val th = thm'' |> implies_intr_hyps
ballarin@14508
  1238
		      |> forall_intr_list (cparams' @ cdefined')
ballarin@14508
  1239
		      |> forall_elim_list (cargs @ cdefining)
ballarin@14508
  1240
		    (* th has premises of the form either inst_thm or x==x *)
ballarin@14508
  1241
		    fun mk hyp = if Logic.is_equals hyp
ballarin@14508
  1242
			  then hyp |> Logic.dest_equals |> snd |> cert
ballarin@14508
  1243
				 |> reflexive
ballarin@14508
  1244
			  else inst_thm
ballarin@14508
  1245
                  in implies_elim_list th (map mk hyps)
ballarin@14508
  1246
                  end;
ballarin@14508
  1247
      in thm''' end;
ballarin@14508
  1248
ballarin@14528
  1249
    val prefix_fact =
ballarin@14528
  1250
      if prfx = "" then I
ballarin@14528
  1251
      else (fn "" => ""
ballarin@14528
  1252
             | s => NameSpace.append prfx s);
ballarin@14528
  1253
ballarin@14508
  1254
    fun inst_elem (ctxt, (Ext _)) = ctxt
ballarin@14508
  1255
      | inst_elem (ctxt, (Int (Notes facts))) =
ballarin@14508
  1256
              (* instantiate fact *)
ballarin@15596
  1257
          let (* extract context attributes *)
ballarin@15596
  1258
              val (Notes facts) = map_attrib_element_i snd (Notes facts);
ballarin@15596
  1259
              val facts' =
ballarin@14528
  1260
                map (apsnd (map (apfst (map inst_thm')))) facts
ballarin@14528
  1261
		handle THM (msg, n, thms) => error ("Exception THM " ^
ballarin@14528
  1262
		  string_of_int n ^ " raised\n" ^
ballarin@14528
  1263
		  "Note: instantiate does not support old-style locales \
ballarin@14528
  1264
                  \declared with (open)\n" ^ msg ^ "\n" ^
ballarin@14528
  1265
		  cat_lines (map string_of_thm thms))
ballarin@14508
  1266
              (* rename fact *)
ballarin@14528
  1267
              val facts'' = map (apfst (apfst prefix_fact)) facts'
ballarin@14528
  1268
              (* add attributes *)
ballarin@14528
  1269
              val facts''' = map (apfst (apsnd (fn atts => atts @ attribs))) facts''
wenzelm@14564
  1270
          in fst (ProofContext.note_thmss_i facts''' ctxt)
ballarin@14508
  1271
          end
ballarin@14508
  1272
      | inst_elem (ctxt, (Int _)) = ctxt;
ballarin@14508
  1273
skalberg@15570
  1274
    fun inst_elems (ctxt, (id, elems)) = Library.foldl inst_elem (ctxt, elems);
ballarin@14508
  1275
skalberg@15570
  1276
    fun inst_elemss ctxt elemss = Library.foldl inst_elems (ctxt, elemss);
ballarin@14508
  1277
ballarin@14508
  1278
    (* main part *)
ballarin@14508
  1279
ballarin@14508
  1280
    val ctxt' = ProofContext.qualified true ctxt;
ballarin@14508
  1281
  in ProofContext.restore_qualified ctxt (inst_elemss ctxt' all_elemss)
ballarin@14508
  1282
  end;
ballarin@14508
  1283
wenzelm@11896
  1284
wenzelm@13336
  1285
(** define locales **)
wenzelm@13336
  1286
wenzelm@13336
  1287
(* print locale *)
wenzelm@12070
  1288
wenzelm@12758
  1289
fun print_locale thy import body =
wenzelm@12070
  1290
  let
wenzelm@12289
  1291
    val thy_ctxt = ProofContext.init thy;
wenzelm@13420
  1292
    val (((_, import_elemss), (ctxt, elemss)), _) = read_context import body thy_ctxt;
skalberg@15570
  1293
    val all_elems = List.concat (map #2 (import_elemss @ elemss));
wenzelm@12070
  1294
wenzelm@12307
  1295
    val prt_typ = Pretty.quote o ProofContext.pretty_typ ctxt;
wenzelm@12307
  1296
    val prt_term = Pretty.quote o ProofContext.pretty_term ctxt;
wenzelm@12307
  1297
    val prt_thm = Pretty.quote o ProofContext.pretty_thm ctxt;
wenzelm@12070
  1298
wenzelm@12070
  1299
    fun prt_syn syn =
skalberg@15531
  1300
      let val s = (case syn of NONE => "(structure)" | SOME mx => Syntax.string_of_mixfix mx)
wenzelm@12575
  1301
      in if s = "" then [] else [Pretty.brk 2, Pretty.str s] end;
skalberg@15531
  1302
    fun prt_fix (x, SOME T, syn) = Pretty.block (Pretty.str (x ^ " ::") :: Pretty.brk 1 ::
wenzelm@12070
  1303
          prt_typ T :: Pretty.brk 1 :: prt_syn syn)
skalberg@15531
  1304
      | prt_fix (x, NONE, syn) = Pretty.block (Pretty.str x :: Pretty.brk 1 :: prt_syn syn);
wenzelm@12070
  1305
wenzelm@12307
  1306
    fun prt_name "" = [Pretty.brk 1]
wenzelm@12307
  1307
      | prt_name name = [Pretty.str (ProofContext.cond_extern ctxt name ^ ":"), Pretty.brk 1];
wenzelm@12307
  1308
    fun prt_asm ((a, _), ts) = Pretty.block (prt_name a @ Pretty.breaks (map (prt_term o fst) ts));
wenzelm@12307
  1309
    fun prt_def ((a, _), (t, _)) = Pretty.block (prt_name a @ [prt_term t]);
wenzelm@12307
  1310
    fun prt_fact ((a, _), ths) = Pretty.block
skalberg@15570
  1311
      (prt_name a @ Pretty.breaks (map prt_thm (List.concat (map fst ths))));
wenzelm@12070
  1312
wenzelm@12289
  1313
    fun items _ [] = []
wenzelm@12289
  1314
      | items prfx (x :: xs) = Pretty.block [Pretty.str prfx, Pretty.brk 1, x] :: items "  and" xs;
wenzelm@12289
  1315
    fun prt_elem (Fixes fixes) = items "fixes" (map prt_fix fixes)
wenzelm@12289
  1316
      | prt_elem (Assumes asms) = items "assumes" (map prt_asm asms)
wenzelm@12289
  1317
      | prt_elem (Defines defs) = items "defines" (map prt_def defs)
wenzelm@12289
  1318
      | prt_elem (Notes facts) = items "notes" (map prt_fact facts);
wenzelm@12277
  1319
  in
wenzelm@13336
  1320
    Pretty.big_list "context elements:" (map (Pretty.chunks o prt_elem) all_elems)
wenzelm@13336
  1321
    |> Pretty.writeln
wenzelm@12277
  1322
  end;
wenzelm@12070
  1323
wenzelm@12070
  1324
wenzelm@12730
  1325
(* store results *)
wenzelm@11896
  1326
wenzelm@12706
  1327
local
wenzelm@12706
  1328
wenzelm@12702
  1329
fun hide_bound_names names thy =
wenzelm@12702
  1330
  thy |> PureThy.hide_thms false
wenzelm@12702
  1331
    (map (Sign.full_name (Theory.sign_of thy)) (filter_out (equal "") names));
wenzelm@12702
  1332
wenzelm@12958
  1333
in
wenzelm@12958
  1334
wenzelm@14564
  1335
fun note_thmss_qualified kind name args thy =
wenzelm@12706
  1336
  thy
wenzelm@13375
  1337
  |> Theory.add_path (Sign.base_name name)
wenzelm@14564
  1338
  |> PureThy.note_thmss_i (Drule.kind kind) args
wenzelm@12706
  1339
  |>> hide_bound_names (map (#1 o #1) args)
wenzelm@12706
  1340
  |>> Theory.parent_path;
wenzelm@12706
  1341
ballarin@15596
  1342
fun note_thms_qualified' kind (arg as ((name, atts), thms)) thy =
ballarin@15596
  1343
  let
ballarin@15596
  1344
    val qname = NameSpace.unpack name
ballarin@15596
  1345
  in
ballarin@15596
  1346
    if length qname <= 1
ballarin@15596
  1347
    then PureThy.note_thmss_i kind [arg] thy
ballarin@15596
  1348
  else let val (prfx, n) = split_last qname
ballarin@15596
  1349
    in thy
ballarin@15596
  1350
      |> Theory.add_path (NameSpace.pack prfx)
ballarin@15596
  1351
      |> PureThy.note_thmss_i kind [((n, atts), thms)]
ballarin@15596
  1352
      |>> funpow (length prfx) Theory.parent_path
ballarin@15596
  1353
    end
ballarin@15596
  1354
  end;
ballarin@15596
  1355
ballarin@15596
  1356
(* prfx may be empty (not yet), names (in args) may be qualified *)
ballarin@15596
  1357
ballarin@15596
  1358
fun note_thmss_qualified' kind prfx args thy =
ballarin@15596
  1359
  thy
ballarin@15596
  1360
  |> Theory.add_path (Sign.base_name prfx)
ballarin@15596
  1361
  |> (fn thy => Library.foldl (fn ((thy, res), arg) =>
ballarin@15596
  1362
        let val (thy', res') = note_thms_qualified' (Drule.kind kind) arg thy
ballarin@15596
  1363
        in (thy', res @ res') end) ((thy, []), args))
ballarin@15596
  1364
(*  |>> hide_bound_names (map (#1 o #1) args) *)
ballarin@15596
  1365
  |>> Theory.parent_path;
ballarin@15596
  1366
skalberg@15531
  1367
fun smart_note_thmss kind NONE = PureThy.note_thmss_i (Drule.kind kind)
skalberg@15531
  1368
  | smart_note_thmss kind (SOME (loc, _)) = note_thmss_qualified kind loc;
ballarin@14508
  1369
  (* CB: only used in Proof.finish_global. *)
wenzelm@12958
  1370
wenzelm@12958
  1371
end;
wenzelm@12958
  1372
wenzelm@12958
  1373
local
wenzelm@12958
  1374
wenzelm@12958
  1375
fun put_facts loc args thy =
wenzelm@12958
  1376
  let
ballarin@15206
  1377
    val {predicate, import, elems, params} = the_locale thy loc;
wenzelm@12958
  1378
    val note = Notes (map (fn ((a, more_atts), th_atts) =>
wenzelm@12958
  1379
      ((a, more_atts), map (apfst (map (curry Thm.name_thm a))) th_atts)) args);
ballarin@15206
  1380
  in thy |> put_locale loc {predicate = predicate, import = import, elems = elems @ [(note, stamp ())],
ballarin@15206
  1381
    params = params} end;
wenzelm@12958
  1382
wenzelm@14564
  1383
fun gen_note_thmss prep_locale get_thms kind raw_loc raw_args thy =
wenzelm@12706
  1384
  let
wenzelm@12706
  1385
    val thy_ctxt = ProofContext.init thy;
wenzelm@12706
  1386
    val loc = prep_locale (Theory.sign_of thy) raw_loc;
ballarin@15206
  1387
    val (_, (stmt, _), loc_ctxt, _, _) =
skalberg@15531
  1388
      cert_context_statement (SOME loc) [] [] thy_ctxt;
wenzelm@12706
  1389
    val args = map (apsnd (map (apfst (get_thms loc_ctxt)))) raw_args;
ballarin@15596
  1390
    (* convert multi attributes to context attributes for
ballarin@15596
  1391
       ProofContext.note_thmss_i *)
ballarin@15596
  1392
    val args'' = args
ballarin@15596
  1393
          |> map (apfst (apsnd (map snd)))
ballarin@15596
  1394
          |> map (apsnd (map (apsnd (map snd))));
ballarin@15206
  1395
    val export = ProofContext.export_standard stmt loc_ctxt thy_ctxt;
ballarin@15596
  1396
    val results = map (map export o #2) (#2 (ProofContext.note_thmss_i args'' loc_ctxt));
wenzelm@12706
  1397
    val args' = map (rpair [] o #1 o #1) args ~~ map (single o Thm.no_attributes) results;
wenzelm@12706
  1398
  in
wenzelm@12706
  1399
    thy
wenzelm@12706
  1400
    |> put_facts loc args
wenzelm@14564
  1401
    |> note_thmss_qualified kind loc args'
wenzelm@12706
  1402
  end;
wenzelm@12706
  1403
wenzelm@12706
  1404
in
wenzelm@12706
  1405
ballarin@15206
  1406
(* CB: note_thmss(_i) is the base for the Isar commands
ballarin@15206
  1407
   "theorems (in loc)" and "declare (in loc)". *)
ballarin@15206
  1408
wenzelm@14564
  1409
val note_thmss = gen_note_thmss intern ProofContext.get_thms;
wenzelm@14564
  1410
val note_thmss_i = gen_note_thmss (K I) (K I);
ballarin@15206
  1411
ballarin@15206
  1412
(* CB: only used in Proof.finish_global. *)
wenzelm@12711
  1413
wenzelm@13336
  1414
fun add_thmss loc args (thy, ctxt) =
wenzelm@12958
  1415
  let
wenzelm@12958
  1416
    val args' = map (fn ((a, ths), atts) => ((a, atts), [(ths, [])])) args;
wenzelm@13336
  1417
    val thy' = put_facts loc args' thy;
ballarin@15206
  1418
    val (ctxt', (_, facts')) =
ballarin@15206
  1419
      activate_facts (K I) (ctxt, [((("", []), []), [Notes args'])]);
wenzelm@13420
  1420
  in ((thy', ctxt'), facts') end;
wenzelm@12702
  1421
wenzelm@12706
  1422
end;
wenzelm@12063
  1423
wenzelm@11896
  1424
wenzelm@13336
  1425
(* predicate text *)
ballarin@15596
  1426
(* CB: generate locale predicates and delta predicates *)
wenzelm@13336
  1427
wenzelm@13375
  1428
local
wenzelm@13336
  1429
ballarin@15206
  1430
(* introN: name of theorems for introduction rules of locale and
ballarin@15206
  1431
     delta predicates;
ballarin@15206
  1432
   axiomsN: name of theorem set with destruct rules for locale predicates,
ballarin@15206
  1433
     also name suffix of delta predicates. *)
ballarin@15206
  1434
wenzelm@13375
  1435
val introN = "intro";
ballarin@15206
  1436
val axiomsN = "axioms";
wenzelm@13336
  1437
wenzelm@13375
  1438
fun atomize_spec sign ts =
wenzelm@13375
  1439
  let
skalberg@15574
  1440
    val t = foldr1 Logic.mk_conjunction ts;
wenzelm@13375
  1441
    val body = ObjectLogic.atomize_term sign t;
wenzelm@13375
  1442
    val bodyT = Term.fastype_of body;
wenzelm@13375
  1443
  in
wenzelm@13375
  1444
    if bodyT = propT then (t, propT, Thm.reflexive (Thm.cterm_of sign t))
wenzelm@13375
  1445
    else (body, bodyT, ObjectLogic.atomize_rule sign (Thm.cterm_of sign t))
wenzelm@13375
  1446
  end;
wenzelm@13336
  1447
wenzelm@13394
  1448
fun aprop_tr' n c = (c, fn args =>
wenzelm@13394
  1449
  if length args = n then Syntax.const "_aprop" $ Term.list_comb (Syntax.free c, args)
wenzelm@13394
  1450
  else raise Match);
wenzelm@13375
  1451
ballarin@15104
  1452
(* CB: define one predicate including its intro rule and axioms
ballarin@15104
  1453
   - bname: predicate name
ballarin@15104
  1454
   - parms: locale parameters
ballarin@15104
  1455
   - defs: thms representing substitutions from defines elements
ballarin@15104
  1456
   - ts: terms representing locale assumptions (not normalised wrt. defs)
ballarin@15104
  1457
   - norm_ts: terms representing locale assumptions (normalised wrt. defs)
ballarin@15104
  1458
   - thy: the theory
ballarin@15104
  1459
*)
ballarin@15104
  1460
wenzelm@13420
  1461
fun def_pred bname parms defs ts norm_ts thy =
wenzelm@13375
  1462
  let
wenzelm@13375
  1463
    val sign = Theory.sign_of thy;
wenzelm@13375
  1464
    val name = Sign.full_name sign bname;
wenzelm@13375
  1465
wenzelm@13420
  1466
    val (body, bodyT, body_eq) = atomize_spec sign norm_ts;
wenzelm@13394
  1467
    val env = Term.add_term_free_names (body, []);
skalberg@15570
  1468
    val xs = List.filter (fn (x, _) => x mem_string env) parms;
wenzelm@13394
  1469
    val Ts = map #2 xs;
skalberg@15574
  1470
    val extraTs = (Term.term_tfrees body \\ foldr Term.add_typ_tfrees [] Ts)
wenzelm@13394
  1471
      |> Library.sort_wrt #1 |> map TFree;
wenzelm@13399
  1472
    val predT = map Term.itselfT extraTs ---> Ts ---> bodyT;
wenzelm@13375
  1473
wenzelm@13394
  1474
    val args = map Logic.mk_type extraTs @ map Free xs;
wenzelm@13394
  1475
    val head = Term.list_comb (Const (name, predT), args);
wenzelm@13375
  1476
    val statement = ObjectLogic.assert_propT sign head;
wenzelm@13375
  1477
wenzelm@13375
  1478
    val (defs_thy, [pred_def]) =
wenzelm@13375
  1479
      thy
wenzelm@13394
  1480
      |> (if bodyT <> propT then I else
wenzelm@13394
  1481
        Theory.add_trfuns ([], [], map (aprop_tr' (length args)) (NameSpace.accesses' name), []))
wenzelm@13375
  1482
      |> Theory.add_consts_i [(bname, predT, Syntax.NoSyn)]
wenzelm@13375
  1483
      |> PureThy.add_defs_i false [((Thm.def_name bname, Logic.mk_equals (head, body)), [])];
wenzelm@13394
  1484
wenzelm@13375
  1485
    val defs_sign = Theory.sign_of defs_thy;
wenzelm@13375
  1486
    val cert = Thm.cterm_of defs_sign;
wenzelm@13375
  1487
wenzelm@13420
  1488
    val intro = Tactic.prove_standard defs_sign [] norm_ts statement (fn _ =>
wenzelm@13375
  1489
      Tactic.rewrite_goals_tac [pred_def] THEN
wenzelm@13375
  1490
      Tactic.compose_tac (false, body_eq RS Drule.equal_elim_rule1, 1) 1 THEN
wenzelm@13420
  1491
      Tactic.compose_tac (false, Drule.conj_intr_list (map (Thm.assume o cert) norm_ts), 0) 1);
wenzelm@13375
  1492
wenzelm@13375
  1493
    val conjuncts =
wenzelm@13399
  1494
      Drule.equal_elim_rule1 OF [Thm.symmetric body_eq,
wenzelm@13399
  1495
        Tactic.rewrite_rule [pred_def] (Thm.assume (cert statement))]
wenzelm@13375
  1496
      |> Drule.conj_elim_precise (length ts);
wenzelm@13394
  1497
    val axioms = (ts ~~ conjuncts) |> map (fn (t, ax) =>
wenzelm@13375
  1498
      Tactic.prove defs_sign [] [] t (fn _ =>
wenzelm@13375
  1499
        Tactic.rewrite_goals_tac defs THEN
wenzelm@13375
  1500
        Tactic.compose_tac (false, ax, 0) 1));
wenzelm@13394
  1501
  in (defs_thy, (statement, intro, axioms)) end;
wenzelm@13375
  1502
ballarin@15104
  1503
(* CB: modify the locale elements:
ballarin@15104
  1504
   - assume elements become notes elements,
ballarin@15104
  1505
   - notes elements are lifted
ballarin@15104
  1506
*)
ballarin@15104
  1507
wenzelm@13394
  1508
fun change_elem _ (axms, Assumes asms) =
wenzelm@13394
  1509
      apsnd Notes ((axms, asms) |> foldl_map (fn (axs, (a, spec)) =>
nipkow@13629
  1510
        let val (ps,qs) = splitAt(length spec, axs)
nipkow@13629
  1511
        in (qs, (a, [(ps, [])])) end))
wenzelm@13394
  1512
  | change_elem f (axms, Notes facts) = (axms, Notes (map (apsnd (map (apfst (map f)))) facts))
wenzelm@13394
  1513
  | change_elem _ e = e;
wenzelm@13375
  1514
ballarin@15206
  1515
(* CB: changes only "new" elems, these have identifier ("", _). *)
ballarin@15206
  1516
wenzelm@13394
  1517
fun change_elemss axioms elemss = (axioms, elemss) |> foldl_map
wenzelm@13394
  1518
  (fn (axms, (id as ("", _), es)) =>
wenzelm@13394
  1519
    foldl_map (change_elem (Drule.satisfy_hyps axioms)) (axms, es) |> apsnd (pair id)
wenzelm@13394
  1520
  | x => x) |> #2;
wenzelm@13375
  1521
wenzelm@13394
  1522
in
wenzelm@13394
  1523
ballarin@15104
  1524
(* CB: main predicate definition function *)
ballarin@15104
  1525
wenzelm@13394
  1526
fun define_preds bname (parms, ((exts, exts'), (ints, ints')), defs) elemss thy =
wenzelm@13394
  1527
  let
wenzelm@13394
  1528
    val (thy', (elemss', more_ts)) =
skalberg@15531
  1529
      if null exts then (thy, (elemss, []))
wenzelm@13394
  1530
      else
wenzelm@13394
  1531
        let
skalberg@15531
  1532
          val aname = if null ints then bname else bname ^ "_" ^ axiomsN;
wenzelm@13394
  1533
          val (def_thy, (statement, intro, axioms)) =
wenzelm@13394
  1534
            thy |> def_pred aname parms defs exts exts';
wenzelm@13394
  1535
          val elemss' = change_elemss axioms elemss @
wenzelm@13420
  1536
            [(("", []), [Assumes [((bname ^ "_" ^ axiomsN, []), [(statement, ([], []))])]])];
wenzelm@13394
  1537
        in
wenzelm@14564
  1538
          def_thy |> note_thmss_qualified "" aname
ballarin@14254
  1539
            [((introN, []), [([intro], [])])]
wenzelm@13394
  1540
          |> #1 |> rpair (elemss', [statement])
wenzelm@13394
  1541
        end;
ballarin@15206
  1542
    val (thy'', predicate) =
skalberg@15531
  1543
      if null ints then (thy', ([], []))
wenzelm@13394
  1544
      else
wenzelm@13394
  1545
        let
wenzelm@13394
  1546
          val (def_thy, (statement, intro, axioms)) =
wenzelm@13394
  1547
            thy' |> def_pred bname parms defs (ints @ more_ts) (ints' @ more_ts);
wenzelm@13399
  1548
          val cstatement = Thm.cterm_of (Theory.sign_of def_thy) statement;
wenzelm@13394
  1549
        in
wenzelm@14564
  1550
          def_thy |> note_thmss_qualified "" bname
ballarin@14254
  1551
            [((introN, []), [([intro], [])]),
ballarin@14254
  1552
             ((axiomsN, []), [(map Drule.standard axioms, [])])]
wenzelm@13415
  1553
          |> #1 |> rpair ([cstatement], axioms)
wenzelm@13394
  1554
        end;
ballarin@15206
  1555
  in (thy'', (elemss', predicate)) end;
wenzelm@13375
  1556
wenzelm@13375
  1557
end;
wenzelm@13336
  1558
wenzelm@13336
  1559
wenzelm@13297
  1560
(* add_locale(_i) *)
wenzelm@13297
  1561
wenzelm@13297
  1562
local
wenzelm@13297
  1563
wenzelm@13394
  1564
fun gen_add_locale prep_ctxt prep_expr do_pred bname raw_import raw_body thy =
ballarin@15596
  1565
  (* CB: do_pred controls generation of predicates.
ballarin@15596
  1566
         true -> with, false -> without predicates. *)
wenzelm@13297
  1567
  let
wenzelm@13297
  1568
    val sign = Theory.sign_of thy;
wenzelm@13297
  1569
    val name = Sign.full_name sign bname;
skalberg@15570
  1570
    val _ = conditional (isSome (get_locale thy name)) (fn () =>
wenzelm@13297
  1571
      error ("Duplicate definition of locale " ^ quote name));
wenzelm@13297
  1572
wenzelm@13297
  1573
    val thy_ctxt = ProofContext.init thy;
wenzelm@13420
  1574
    val (((import_ctxt, import_elemss), (body_ctxt, body_elemss)), text) =
wenzelm@13375
  1575
      prep_ctxt raw_import raw_body thy_ctxt;
wenzelm@13375
  1576
    val elemss = import_elemss @ body_elemss;
wenzelm@13297
  1577
ballarin@15206
  1578
    val (pred_thy, (elemss', predicate as (predicate_statement, predicate_axioms))) =
wenzelm@13394
  1579
      if do_pred then thy |> define_preds bname text elemss
wenzelm@13415
  1580
      else (thy, (elemss, ([], [])));
wenzelm@13375
  1581
    val pred_ctxt = ProofContext.init pred_thy;
wenzelm@13420
  1582
ballarin@15206
  1583
    fun axiomify axioms elemss = 
ballarin@15206
  1584
      (axioms, elemss) |> foldl_map (fn (axs, (id, elems)) => let
skalberg@15570
  1585
                   val ts = List.concat (List.mapPartial (fn (Assumes asms) =>
skalberg@15570
  1586
                     SOME (List.concat (map (map #1 o #2) asms)) | _ => NONE) elems);
ballarin@15206
  1587
                   val (axs1, axs2) = splitAt (length ts, axs);
ballarin@15206
  1588
                 in (axs2, ((id, axs1), elems)) end)
ballarin@15206
  1589
        |> snd;
ballarin@15206
  1590
    val (ctxt, (_, facts)) = activate_facts (K I)
ballarin@15206
  1591
      (pred_ctxt, axiomify predicate_axioms elemss');
ballarin@15206
  1592
    val export = ProofContext.export_standard predicate_statement ctxt pred_ctxt;
wenzelm@13420
  1593
    val facts' = facts |> map (fn (a, ths) => ((a, []), [(map export ths, [])]));
wenzelm@13297
  1594
  in
wenzelm@13375
  1595
    pred_thy
wenzelm@14564
  1596
    |> note_thmss_qualified "" name facts' |> #1
wenzelm@13297
  1597
    |> declare_locale name
ballarin@15206
  1598
    |> put_locale name {predicate = predicate, import = prep_expr sign raw_import,
skalberg@15570
  1599
        elems = map (fn e => (e, stamp ())) (List.concat (map #2 (List.filter (equal "" o #1 o #1) elemss'))),
ballarin@15206
  1600
        params = (params_of elemss', map #1 (params_of body_elemss))}
wenzelm@13297
  1601
  end;
wenzelm@13297
  1602
wenzelm@13297
  1603
in
wenzelm@13297
  1604
wenzelm@13297
  1605
val add_locale = gen_add_locale read_context intern_expr;
ballarin@14215
  1606
wenzelm@13297
  1607
val add_locale_i = gen_add_locale cert_context (K I);
wenzelm@13297
  1608
wenzelm@13297
  1609
end;
wenzelm@13297
  1610
wenzelm@13297
  1611
wenzelm@12730
  1612
ballarin@15598
  1613
(** Interpretation commands **)
ballarin@15596
  1614
ballarin@15596
  1615
local
ballarin@15596
  1616
ballarin@15596
  1617
(** instantiate free vars **)
ballarin@15596
  1618
ballarin@15596
  1619
(* instantiate TFrees *)
ballarin@15596
  1620
ballarin@15596
  1621
fun tinst_type tinst T = if Symtab.is_empty tinst
ballarin@15596
  1622
      then T
ballarin@15596
  1623
      else Term.map_type_tfree
ballarin@15596
  1624
        (fn (v as (x, _)) => getOpt (Symtab.lookup (tinst, x), (TFree v))) T;
ballarin@15596
  1625
ballarin@15596
  1626
fun tinst_term tinst t = if Symtab.is_empty tinst
ballarin@15596
  1627
      then t
ballarin@15596
  1628
      else Term.map_term_types (tinst_type tinst) t;
ballarin@15596
  1629
ballarin@15596
  1630
fun tinst_thm sg tinst thm = if Symtab.is_empty tinst
ballarin@15596
  1631
      then thm
ballarin@15596
  1632
      else let
ballarin@15596
  1633
          val cert = Thm.cterm_of sg;
ballarin@15596
  1634
          val certT = Thm.ctyp_of sg;
ballarin@15596
  1635
          val {hyps, prop, ...} = Thm.rep_thm thm;
ballarin@15596
  1636
          val tfrees = foldr Term.add_term_tfree_names [] (prop :: hyps);
ballarin@15596
  1637
          val tinst' = Symtab.dest tinst |>
ballarin@15596
  1638
                List.filter (fn (a, _) => a mem_string tfrees);
ballarin@15596
  1639
        in
ballarin@15596
  1640
          if null tinst' then thm
ballarin@15596
  1641
          else thm |> Drule.implies_intr_list (map cert hyps)
ballarin@15596
  1642
            |> Drule.tvars_intr_list (map #1 tinst')
ballarin@15596
  1643
            |> (fn (th, al) => th |> Thm.instantiate
ballarin@15596
  1644
                ((map (fn (a, T) => (valOf (assoc (al, a)), certT T)) tinst'),
ballarin@15596
  1645
                  []))
ballarin@15596
  1646
            |> (fn th => Drule.implies_elim_list th
ballarin@15596
  1647
                 (map (Thm.assume o cert o tinst_term tinst) hyps))
ballarin@15596
  1648
        end;
ballarin@15596
  1649
ballarin@15596
  1650
fun tinst_elem _ tinst (Fixes fixes) =
ballarin@15596
  1651
      Fixes (map (fn (x, T, mx) => (x, Option.map (tinst_type tinst) T, mx)) fixes)
ballarin@15596
  1652
  | tinst_elem _ tinst (Assumes asms) =
ballarin@15596
  1653
      Assumes (map (apsnd (map (fn (t, (ps, qs)) =>
ballarin@15596
  1654
        (tinst_term tinst t,
ballarin@15596
  1655
          (map (tinst_term tinst) ps, map (tinst_term tinst) qs))))) asms)
ballarin@15596
  1656
  | tinst_elem _ tinst (Defines defs) =
ballarin@15596
  1657
      Defines (map (apsnd (fn (t, ps) =>
ballarin@15596
  1658
        (tinst_term tinst t, map (tinst_term tinst) ps))) defs)
ballarin@15596
  1659
  | tinst_elem sg tinst (Notes facts) =
ballarin@15596
  1660
      Notes (map (apsnd (map (apfst (map (tinst_thm sg tinst))))) facts);
ballarin@15596
  1661
ballarin@15596
  1662
(* instantiate TFrees and Frees *)
ballarin@15596
  1663
ballarin@15596
  1664
fun inst_term (inst, tinst) = if Symtab.is_empty inst
ballarin@15596
  1665
      then tinst_term tinst
ballarin@15596
  1666
      else (* instantiate terms and types simultaneously *)
ballarin@15596
  1667
        let
ballarin@15596
  1668
          fun instf (Const (x, T)) = Const (x, tinst_type tinst T)
ballarin@15596
  1669
            | instf (Free (x, T)) = (case Symtab.lookup (inst, x) of
ballarin@15596
  1670
                 NONE => Free (x, tinst_type tinst T)
ballarin@15596
  1671
               | SOME t => t)
ballarin@15596
  1672
            | instf (Var (xi, T)) = Var (xi, tinst_type tinst T)
ballarin@15596
  1673
            | instf (b as Bound _) = b
ballarin@15596
  1674
            | instf (Abs (x, T, t)) = Abs (x, tinst_type tinst T, instf t)
ballarin@15596
  1675
            | instf (s $ t) = instf s $ instf t
ballarin@15596
  1676
        in instf end;
ballarin@15596
  1677
ballarin@15596
  1678
fun inst_thm sg (inst, tinst) thm = if Symtab.is_empty inst
ballarin@15596
  1679
      then tinst_thm sg tinst thm
ballarin@15596
  1680
      else let
ballarin@15596
  1681
          val cert = Thm.cterm_of sg;
ballarin@15596
  1682
          val certT = Thm.ctyp_of sg;
ballarin@15596
  1683
          val {hyps, prop, ...} = Thm.rep_thm thm;
ballarin@15596
  1684
          (* type instantiations *)
ballarin@15596
  1685
          val tfrees = foldr Term.add_term_tfree_names [] (prop :: hyps);
ballarin@15596
  1686
          val tinst' = Symtab.dest tinst |>
ballarin@15596
  1687
                List.filter (fn (a, _) => a mem_string tfrees);
ballarin@15596
  1688
          (* term instantiations;
ballarin@15596
  1689
             note: lhss are type instantiated, because
ballarin@15596
  1690
                   type insts will be done first*)
ballarin@15596
  1691
          val frees = foldr Term.add_term_frees [] (prop :: hyps);
ballarin@15596
  1692
          val inst' = Symtab.dest inst |>
ballarin@15596
  1693
                List.mapPartial (fn (a, t) =>
ballarin@15596
  1694
                  get_first (fn (Free (x, T)) => 
ballarin@15596
  1695
                    if a = x then SOME (Free (x, tinst_type tinst T), t)
ballarin@15596
  1696
                    else NONE) frees);
ballarin@15596
  1697
        in
ballarin@15596
  1698
          if null tinst' andalso null inst' then tinst_thm sg tinst thm
ballarin@15596
  1699
          else thm |> Drule.implies_intr_list (map cert hyps)
ballarin@15596
  1700
            |> Drule.tvars_intr_list (map #1 tinst')
ballarin@15596
  1701
            |> (fn (th, al) => th |> Thm.instantiate
ballarin@15596
  1702
                ((map (fn (a, T) => (valOf (assoc (al, a)), certT T)) tinst'),
ballarin@15596
  1703
                  []))
ballarin@15596
  1704
            |> Drule.forall_intr_list (map (cert o #1) inst')
ballarin@15596
  1705
            |> Drule.forall_elim_list (map (cert o #2) inst') 
ballarin@15596
  1706
            |> (fn th => Drule.implies_elim_list th
ballarin@15596
  1707
                 (map (Thm.assume o cert o inst_term (inst, tinst)) hyps))
ballarin@15596
  1708
        end;
ballarin@15596
  1709
ballarin@15596
  1710
fun inst_elem _ (_, tinst) (Fixes fixes) =
ballarin@15596
  1711
      Fixes (map (fn (x, T, mx) => (x, Option.map (tinst_type tinst) T, mx)) fixes)
ballarin@15596
  1712
  | inst_elem _ inst (Assumes asms) =
ballarin@15596
  1713
      Assumes (map (apsnd (map (fn (t, (ps, qs)) =>
ballarin@15596
  1714
        (inst_term inst t,
ballarin@15596
  1715
          (map (inst_term inst) ps, map (inst_term inst) qs))))) asms)
ballarin@15596
  1716
  | inst_elem _ inst (Defines defs) =
ballarin@15596
  1717
      Defines (map (apsnd (fn (t, ps) =>
ballarin@15596
  1718
        (inst_term inst t, map (inst_term inst) ps))) defs)
ballarin@15596
  1719
  | inst_elem sg inst (Notes facts) =
ballarin@15596
  1720
      Notes (map (apsnd (map (apfst (map (inst_thm sg inst))))) facts);
ballarin@15596
  1721
ballarin@15596
  1722
fun inst_elems sign inst ((n, ps), elems) =
ballarin@15596
  1723
      ((n, map (inst_term inst) ps), map (inst_elem sign inst) elems);
ballarin@15596
  1724
ballarin@15596
  1725
(* extract proof obligations (assms and defs) from elements *)
ballarin@15596
  1726
ballarin@15596
  1727
(* check if defining equation has become t == t, these are dropped
ballarin@15596
  1728
   in extract_asms_elem, as they lead to trivial proof obligations *)
ballarin@15596
  1729
(* currently disabled *)
ballarin@15596
  1730
fun check_def (_, (def, _)) = SOME def;
ballarin@15596
  1731
(*
ballarin@15596
  1732
fun check_def (_, (def, _)) =
ballarin@15596
  1733
      if def |> Logic.dest_equals |> op aconv
ballarin@15596
  1734
      then NONE else SOME def;
ballarin@15596
  1735
*)
ballarin@15596
  1736
ballarin@15596
  1737
fun extract_asms_elem (ts, Fixes _) = ts
ballarin@15596
  1738
  | extract_asms_elem (ts, Assumes asms) =
ballarin@15596
  1739
      ts @ List.concat (map (fn (_, ams) => map (fn (t, _) => t) ams) asms)
ballarin@15596
  1740
  | extract_asms_elem (ts, Defines defs) =
ballarin@15596
  1741
      ts @ List.mapPartial check_def defs
ballarin@15596
  1742
  | extract_asms_elem (ts, Notes _) = ts;
ballarin@15596
  1743
ballarin@15596
  1744
fun extract_asms_elems (id, elems) =
ballarin@15596
  1745
      (id, Library.foldl extract_asms_elem ([], elems));
ballarin@15596
  1746
ballarin@15596
  1747
fun extract_asms_elemss elemss =
ballarin@15596
  1748
      map extract_asms_elems elemss;
ballarin@15596
  1749
ballarin@15596
  1750
(* add registration, without theorems, to theory *)
ballarin@15596
  1751
ballarin@15596
  1752
fun prep_reg_global attn (thy, (id, _)) =
ballarin@15596
  1753
      global_put_registration id attn thy;
ballarin@15596
  1754
ballarin@15596
  1755
(* activate instantiated facts in theory *)
ballarin@15596
  1756
ballarin@15596
  1757
fun activate_facts_elem _ _ (thy, Fixes _) = thy
ballarin@15596
  1758
  | activate_facts_elem _ _ (thy, Assumes _) = thy
ballarin@15596
  1759
  | activate_facts_elem _ _ (thy, Defines _) = thy
ballarin@15596
  1760
  | activate_facts_elem disch (prfx, atts) (thy, Notes facts) =
ballarin@15596
  1761
      let
ballarin@15596
  1762
        (* extract theory attributes *)
ballarin@15596
  1763
        val (Notes facts) = map_attrib_element_i fst (Notes facts);
ballarin@15598
  1764
        (* add attributs from registration *)
ballarin@15596
  1765
        val facts' = map (apfst (apsnd (fn a => a @ atts))) facts;
ballarin@15598
  1766
        (* discharge hyps and varify *)
ballarin@15598
  1767
        val facts'' = map (apsnd (map (apfst (map (Drule.standard o disch))))) facts';
ballarin@15596
  1768
      in
ballarin@15598
  1769
        fst (note_thmss_qualified' "" prfx facts'' thy)
ballarin@15596
  1770
      end;
ballarin@15596
  1771
ballarin@15596
  1772
fun activate_facts_elems disch (thy, (id, elems)) =
ballarin@15596
  1773
      let
ballarin@15596
  1774
        val ((prfx, atts2), _) = valOf (global_get_registration thy id)
ballarin@15596
  1775
          handle Option => error ("(internal) unknown registration of " ^
ballarin@15596
  1776
            quote (fst id) ^ " while activating facts.");
ballarin@15596
  1777
      in
ballarin@15596
  1778
        Library.foldl (activate_facts_elem disch (prfx, atts2)) (thy, elems)
ballarin@15596
  1779
      end;
ballarin@15596
  1780
ballarin@15596
  1781
fun activate_facts_elemss all_elemss new_elemss thy =
ballarin@15596
  1782
      let
ballarin@15596
  1783
        val prems = List.concat (List.mapPartial (fn (id, _) =>
ballarin@15596
  1784
              Option.map snd (global_get_registration thy id)
ballarin@15596
  1785
                handle Option => error ("(internal) unknown registration of " ^
ballarin@15596
  1786
                  quote (fst id) ^ " while activating facts.")) all_elemss);
ballarin@15598
  1787
      in Library.foldl (activate_facts_elems (Drule.satisfy_hyps prems))
ballarin@15598
  1788
        (thy, new_elemss) end;
ballarin@15596
  1789
ballarin@15596
  1790
in
ballarin@15596
  1791
ballarin@15596
  1792
fun prep_registration attn expr insts thy =
ballarin@15596
  1793
  let
ballarin@15596
  1794
    val ctxt = ProofContext.init thy;
ballarin@15596
  1795
    val sign = Theory.sign_of thy;
ballarin@15596
  1796
    val tsig = Sign.tsig_of sign;
ballarin@15596
  1797
ballarin@15596
  1798
    val (ids, raw_elemss) =
ballarin@15596
  1799
          flatten (ctxt, intern_expr sign) ([], Expr expr);
ballarin@15596
  1800
    val do_close = false;  (* effect unknown *)
ballarin@15596
  1801
    val ((parms, all_elemss, _), (spec, (xs, defs, _))) =
ballarin@15596
  1802
          read_elemss do_close ctxt [] raw_elemss [];
ballarin@15596
  1803
ballarin@15596
  1804
ballarin@15596
  1805
    (** compute instantiation **)
ballarin@15596
  1806
ballarin@15598
  1807
    (* check user input *)
ballarin@15596
  1808
    val insts = if length parms < length insts
ballarin@15596
  1809
         then error "More arguments than parameters in instantiation."
ballarin@15596
  1810
         else insts @ replicate (length parms - length insts) NONE;
ballarin@15598
  1811
ballarin@15596
  1812
    val (ps, pTs) = split_list parms;
ballarin@15596
  1813
    val pvTs = map Type.varifyT pTs;
ballarin@15598
  1814
ballarin@15598
  1815
    (* instantiations given by user *)
ballarin@15596
  1816
    val given = List.mapPartial (fn (_, (NONE, _)) => NONE
ballarin@15596
  1817
         | (x, (SOME inst, T)) => SOME (x, (inst, T))) (ps ~~ (insts ~~ pvTs));
ballarin@15596
  1818
    val (given_ps, given_insts) = split_list given;
ballarin@15596
  1819
    val tvars = foldr Term.add_typ_tvars [] pvTs;
ballarin@15596
  1820
    val used = foldr Term.add_typ_varnames [] pvTs;
ballarin@15596
  1821
    fun sorts (a, i) = assoc (tvars, (a, i));
ballarin@15598
  1822
    val (vs, vinst) = Sign.read_def_terms (sign, K NONE, sorts) used true
ballarin@15596
  1823
         given_insts;
ballarin@15598
  1824
    (* replace new types (which are TFrees) by ones with new names *)
ballarin@15598
  1825
    val new_Tnames = foldr Term.add_term_tfree_names [] vs;
ballarin@15598
  1826
    val new_Tnames' = Term.invent_names used "'a" (length new_Tnames);
ballarin@15598
  1827
    val renameT = Term.map_type_tfree (fn (a, s) =>
ballarin@15598
  1828
          TFree (valOf (assoc (new_Tnames ~~ new_Tnames', a)), s));
ballarin@15598
  1829
    val rename = Term.map_term_types renameT;
ballarin@15598
  1830
ballarin@15598
  1831
    val tinst = Symtab.make (map
ballarin@15598
  1832
                (fn ((x, 0), T) => (x, T |> renameT |> Type.unvarifyT)
ballarin@15598
  1833
                  | ((_, n), _) => error "Var in prep_registration") vinst);
ballarin@15598
  1834
    val inst = Symtab.make (given_ps ~~ map (Logic.unvarify o rename) vs);
ballarin@15596
  1835
ballarin@15596
  1836
    (* defined params without user input *)
ballarin@15596
  1837
    val not_given = List.mapPartial (fn (x, (NONE, T)) => SOME (x, T)
ballarin@15596
  1838
         | (_, (SOME _, _)) => NONE) (ps ~~ (insts ~~ pTs));
ballarin@15596
  1839
    fun add_def ((inst, tinst), (p, pT)) =
ballarin@15596
  1840
      let
ballarin@15596
  1841
        val (t, T) = case find_first (fn (Free (a, _), _) => a = p) defs of
ballarin@15596
  1842
               NONE => error ("Instance missing for parameter " ^ quote p)
ballarin@15596
  1843
             | SOME (Free (_, T), t) => (t, T);
ballarin@15596
  1844
        val d = t |> inst_term (inst, tinst) |> Envir.beta_norm;
ballarin@15596
  1845
      in (Symtab.update_new ((p, d), inst), tinst) end;
ballarin@15596
  1846
    val (inst, tinst) = Library.foldl add_def ((inst, tinst), not_given);
ballarin@15596
  1847
  
ballarin@15596
  1848
ballarin@15596
  1849
    (** compute proof obligations **)
ballarin@15596
  1850
ballarin@15598
  1851
    (* restore "small" ids *)
ballarin@15596
  1852
    val ids' = map (fn ((n, ps), _) =>
ballarin@15596
  1853
          (n, map (fn p => Free (p, valOf (assoc (parms, p)))) ps)) ids;
ballarin@15596
  1854
ballarin@15596
  1855
    (* instantiate ids and elements *)
ballarin@15596
  1856
    val inst_elemss = map
ballarin@15596
  1857
          (fn (id, (_, elems)) => inst_elems sign (inst, tinst) (id, 
ballarin@15596
  1858
            map (fn Int e => e) elems)) 
ballarin@15596
  1859
          (ids' ~~ all_elemss);
ballarin@15596
  1860
ballarin@15596
  1861
    (* remove fragments already registered with theory *)
ballarin@15596
  1862
    val new_inst_elemss = List.filter (fn (id, _) =>
ballarin@15596
  1863
          is_none (global_get_registration thy id)) inst_elemss;
ballarin@15596
  1864
ballarin@15596
  1865
    val propss = extract_asms_elemss new_inst_elemss;
ballarin@15596
  1866
ballarin@15596
  1867
ballarin@15596
  1868
    (** add registrations to theory,
ballarin@15596
  1869
        without theorems, these are added after the proof **)
ballarin@15596
  1870
ballarin@15596
  1871
    val thy' = Library.foldl (prep_reg_global attn) (thy, new_inst_elemss);
ballarin@15596
  1872
ballarin@15596
  1873
  in (thy', propss, activate_facts_elemss inst_elemss new_inst_elemss) end;
ballarin@15596
  1874
ballarin@15596
  1875
end;  (* local *)
ballarin@15596
  1876
ballarin@15596
  1877
ballarin@15596
  1878
wenzelm@11896
  1879
(** locale theory setup **)
wenzelm@12063
  1880
wenzelm@11896
  1881
val setup =
wenzelm@13460
  1882
 [LocalesData.init,
skalberg@15531
  1883
  add_locale_i true "var" empty [Fixes [(Syntax.internal "x", NONE, SOME Syntax.NoSyn)]],
skalberg@15531
  1884
  add_locale_i true "struct" empty [Fixes [(Syntax.internal "S", NONE, NONE)]]];
wenzelm@11896
  1885
wenzelm@11896
  1886
end;