src/Pure/Isar/new_locale.ML
author ballarin
Tue, 16 Dec 2008 20:18:46 +0100
changeset 29218 f7ffe90879e2
parent 29217 a1c992fb3184
child 29220 db37b657a326
permissions -rw-r--r--
Transfer morphism with theory closure.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
     1
(*  Title:      Pure/Isar/new_locale.ML
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
     2
    Author:     Clemens Ballarin, TU Muenchen
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
     3
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
     4
New locale development --- experimental.
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
     5
*)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
     6
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
     7
signature NEW_LOCALE =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
     8
sig
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
     9
  type locale
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    10
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    11
  val test_locale: theory -> string -> bool
28991
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
    12
  val register_locale: bstring ->
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
    13
    (string * sort) list * (Binding.T * typ option * mixfix) list ->
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    14
    term option * term list ->
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    15
    (declaration * stamp) list * (declaration * stamp) list ->
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    16
    ((string * (Attrib.binding * (thm list * Attrib.src list) list) list) * stamp) list ->
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    17
    ((string * Morphism.morphism) * stamp) list -> theory -> theory
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    18
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    19
  (* Locale name space *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    20
  val intern: theory -> xstring -> string
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    21
  val extern: theory -> string -> xstring
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    22
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    23
  (* Specification *)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
    24
  val params_of: theory -> string -> (Binding.T * typ option * mixfix) list
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
    25
  val instance_of: theory -> string -> Morphism.morphism -> term list
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
    26
  val specification_of: theory -> string -> term option * term list
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
    27
  val declarations_of: theory -> string -> declaration list * declaration list
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    28
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
    29
  (* Storing results *)
28833
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
    30
  val add_thmss: string -> string -> (Attrib.binding * (thm list * Attrib.src list) list) list ->
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
    31
    Proof.context -> Proof.context
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
    32
  val add_type_syntax: string -> declaration -> Proof.context -> Proof.context
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
    33
  val add_term_syntax: string -> declaration -> Proof.context -> Proof.context
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
    34
  val add_declaration: string -> declaration -> Proof.context -> Proof.context
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
    35
  val add_dependency: string -> (string * Morphism.morphism) -> theory -> theory
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
    36
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    37
  (* Activation *)
28878
141ed00656ae Generalised activation code.
ballarin
parents: 28872
diff changeset
    38
  val activate_declarations: theory -> string * Morphism.morphism ->
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
    39
    Proof.context -> Proof.context
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
    40
  val activate_global_facts: string * Morphism.morphism -> theory -> theory
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
    41
  val activate_local_facts: string * Morphism.morphism -> Proof.context -> Proof.context
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    42
  val init: string -> theory -> Proof.context
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    43
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    44
  (* Reasoning about locales *)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    45
  val witness_attrib: attribute
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    46
  val intro_attrib: attribute
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    47
  val unfold_attrib: attribute
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    48
  val intro_locales_tac: bool -> Proof.context -> thm list -> tactic
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    49
29206
62dc8762ec00 Preserve idents (expression in sublocale).
ballarin
parents: 29028
diff changeset
    50
  (* Registrations *)
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
    51
  val add_global_registration: (string * (Morphism.morphism * Morphism.morphism)) ->
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
    52
    theory -> theory
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
    53
  val amend_global_registration: Morphism.morphism -> (string * Morphism.morphism) ->
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29206
diff changeset
    54
    theory -> theory
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
    55
  val get_global_registrations: theory -> (string * Morphism.morphism) list
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
    56
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    57
  (* Diagnostic *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    58
  val print_locales: theory -> unit
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    59
  val print_locale: theory -> bool -> bstring -> unit
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    60
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    61
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    62
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
    63
(*** Theorem list extensible via attribute --- to control intro_locales_tac ***)
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
    64
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    65
(* FIXME: consider moving named_thms.ML up in the build hierarchy and using that *)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    66
functor ThmsFun() =
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    67
struct
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    68
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    69
structure Data = GenericDataFun
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    70
(
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    71
  type T = thm list;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    72
  val empty = [];
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    73
  val extend = I;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    74
  fun merge _ = Thm.merge_thms;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    75
);
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    76
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    77
val get = Data.get o Context.Proof;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    78
val add = Thm.declaration_attribute (Data.map o Thm.add_thm);
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    79
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    80
end;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    81
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    82
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    83
structure NewLocale: NEW_LOCALE =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    84
struct
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    85
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    86
datatype ctxt = datatype Element.ctxt;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    87
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    88
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    89
(*** Basics ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    90
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    91
datatype locale = Loc of {
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    92
  (* extensible lists are in reverse order: decls, notes, dependencies *)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
    93
  parameters: (string * sort) list * (Binding.T * typ option * mixfix) list,
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    94
    (* type and term parameters *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    95
  spec: term option * term list,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    96
    (* assumptions (as a single predicate expression) and defines *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    97
  decls: (declaration * stamp) list * (declaration * stamp) list,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    98
    (* type and term syntax declarations *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    99
  notes: ((string * (Attrib.binding * (thm list * Attrib.src list) list) list) * stamp) list,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   100
    (* theorem declarations *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   101
  dependencies: ((string * Morphism.morphism) * stamp) list
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   102
    (* locale dependencies (sublocale relation) *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   103
}
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   104
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   105
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   106
(*** Theory data ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   107
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   108
structure LocalesData = TheoryDataFun
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   109
(
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   110
  type T = NameSpace.T * locale Symtab.table;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   111
    (* locale namespace and locales of the theory *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   112
28991
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
   113
  val empty = NameSpace.empty_table;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   114
  val copy = I;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   115
  val extend = I;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   116
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   117
  fun join_locales _
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   118
    (Loc {parameters, spec, decls = (decls1, decls2), notes, dependencies},
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   119
      Loc {decls = (decls1', decls2'), notes = notes',
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   120
        dependencies = dependencies', ...}) =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   121
        let fun s_merge x = merge (eq_snd (op =)) x in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   122
          Loc {parameters = parameters,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   123
            spec = spec,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   124
            decls = (s_merge (decls1, decls1'), s_merge (decls2, decls2')),
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   125
            notes = s_merge (notes, notes'),
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   126
            dependencies = s_merge (dependencies, dependencies')
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   127
          }          
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   128
        end;
28991
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
   129
  fun merge _ = NameSpace.join_tables join_locales;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   130
);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   131
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   132
val intern = NameSpace.intern o #1 o LocalesData.get;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   133
val extern = NameSpace.extern o #1 o LocalesData.get;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   134
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   135
fun get_locale thy name = Symtab.lookup (#2 (LocalesData.get thy)) name;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   136
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   137
fun the_locale thy name = case get_locale thy name
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   138
 of SOME loc => loc
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   139
  | NONE => error ("Unknown locale " ^ quote name);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   140
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   141
fun test_locale thy name = case get_locale thy name
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   142
 of SOME _ => true | NONE => false;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   143
28991
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
   144
fun register_locale bname parameters spec decls notes dependencies thy =
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
   145
  thy |> LocalesData.map (NameSpace.bind (Sign.naming_of thy) (Binding.name bname,
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
   146
    Loc {parameters = parameters, spec = spec, decls = decls, notes = notes,
694227dd3e8c dropped NameSpace.declare_base
haftmann
parents: 28965
diff changeset
   147
      dependencies = dependencies}) #> snd);
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   148
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   149
fun change_locale name f thy =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   150
  let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   151
    val Loc {parameters, spec, decls, notes, dependencies} =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   152
        the_locale thy name;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   153
    val (parameters', spec', decls', notes', dependencies') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   154
      f (parameters, spec, decls, notes, dependencies);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   155
  in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   156
    thy
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   157
    |> (LocalesData.map o apsnd) (Symtab.update (name, Loc {parameters = parameters',
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   158
      spec = spec', decls = decls', notes = notes', dependencies = dependencies'}))
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   159
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   160
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   161
fun print_locales thy =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   162
  let val (space, locs) = LocalesData.get thy in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   163
    Pretty.strs ("locales:" :: map #1 (NameSpace.extern_table (space, locs)))
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   164
    |> Pretty.writeln
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   165
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   166
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   167
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   168
(*** Primitive operations ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   169
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   170
fun params_of thy name =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   171
  let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   172
    val Loc {parameters = (_, params), ...} = the_locale thy name
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   173
  in params end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   174
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   175
fun instance_of thy name morph =
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   176
  params_of thy name |>
29006
abe0f11cfa4e Name.name_of -> Binding.base_name
haftmann
parents: 28994
diff changeset
   177
    map ((fn (b, T, _) => Free (Binding.base_name b, the T)) #> Morphism.term morph);
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   178
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   179
fun specification_of thy name =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   180
  let
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   181
    val Loc {spec, ...} = the_locale thy name
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   182
  in spec end;
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   183
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   184
fun declarations_of thy name =
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   185
  let
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   186
    val Loc {decls, ...} = the_locale thy name
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   187
  in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   188
    decls |> apfst (map fst) |> apsnd (map fst)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   189
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   190
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   191
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   192
(*** Activate context elements of locale ***)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   193
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   194
(** Identifiers: activated locales in theory or proof context **)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   195
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   196
type identifiers = (string * term list) list;
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   197
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   198
val empty = ([] : identifiers);
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   199
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   200
fun ident_eq thy ((n, ts), (m, ss)) = (m = n) andalso Pattern.matchess thy (ss, ts);
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   201
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   202
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   203
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   204
datatype 'a delayed = Ready of 'a | ToDo of ('a delayed * 'a delayed);
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   205
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   206
structure IdentifiersData = GenericDataFun
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   207
(
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   208
  type T = identifiers delayed;
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   209
  val empty = Ready empty;
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   210
  val extend = I;
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   211
  fun merge _ = ToDo;
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   212
);
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   213
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   214
in
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   215
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   216
fun finish thy (ToDo (i1, i2)) = merge (ident_eq thy) (finish thy i1, finish thy i2)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   217
  | finish _ (Ready ids) = ids;
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   218
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   219
val _ = Context.>> (Context.map_theory (Theory.at_begin (fn thy =>
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   220
  (case IdentifiersData.get (Context.Theory thy) of
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   221
    Ready _ => NONE |
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   222
    ids => SOME (Context.theory_map (IdentifiersData.put (Ready (finish thy ids))) thy))
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   223
  )));
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   224
  
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   225
fun get_global_idents thy =
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   226
  let val (Ready ids) = (IdentifiersData.get o Context.Theory) thy in ids end;
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   227
val put_global_idents = Context.theory_map o IdentifiersData.put o Ready;
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   228
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   229
fun get_local_idents ctxt =
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   230
  let val (Ready ids) = (IdentifiersData.get o Context.Proof) ctxt in ids end;
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   231
val put_local_idents = Context.proof_map o IdentifiersData.put o Ready;
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   232
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   233
end;
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   234
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   235
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   236
(** Resolve locale dependencies in a depth-first fashion **)
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   237
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   238
local
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   239
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   240
val roundup_bound = 120;
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   241
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   242
fun add thy depth (name, morph) (deps, marked) =
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   243
  if depth > roundup_bound
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   244
  then error "Roundup bound exceeded (sublocale relation probably not terminating)."
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   245
  else
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   246
    let
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   247
      val Loc {parameters = (_, params), dependencies, ...} = the_locale thy name;
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   248
      val instance = instance_of thy name morph;
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   249
    in
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   250
      if member (ident_eq thy) marked (name, instance)
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   251
      then (deps, marked)
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   252
      else
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   253
        let
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   254
          val dependencies' =
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   255
            map (fn ((name, morph'), _) => (name, morph' $>  morph)) dependencies;
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   256
          val marked' = (name, instance) :: marked;
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   257
          val (deps', marked'') = fold_rev (add thy (depth + 1)) dependencies' ([], marked');
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   258
        in
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   259
          ((name, morph) :: deps' @ deps, marked'')
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   260
        end
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   261
    end;
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   262
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   263
in
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   264
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   265
fun roundup thy activate_dep (name, morph) (marked, input) =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   266
  let
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   267
    (* Find all dependencies incuding new ones (which are dependencies enriching
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   268
      existing registrations). *)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   269
    val (dependencies, marked') = add thy 0 (name, morph) ([], empty);
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   270
    (* Filter out exisiting fragments. *)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   271
    val dependencies' = filter_out (fn (name, morph) =>
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   272
      member (ident_eq thy) marked (name, instance_of thy name morph)) dependencies;
28894
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   273
  in
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   274
    (merge (ident_eq thy) (marked, marked'), input |> fold_rev (activate_dep thy) dependencies')
28894
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   275
  end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   276
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   277
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   278
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   279
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   280
(* Declarations, facts and entire locale content *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   281
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   282
fun activate_decls thy (name, morph) ctxt =
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   283
  let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   284
    val Loc {decls = (typ_decls, term_decls), ...} = the_locale thy name;
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   285
  in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   286
    ctxt |> fold_rev (fn (decl, _) => Context.proof_map (decl morph)) typ_decls |>
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   287
      fold_rev (fn (decl, _) => Context.proof_map (decl morph)) term_decls
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   288
  end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   289
29216
528e68bea04d Transfer theorems before activation.
ballarin
parents: 29213
diff changeset
   290
fun activate_notes activ_elem transfer thy (name, morph) input =
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   291
  let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   292
    val Loc {notes, ...} = the_locale thy name;
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   293
    fun activate ((kind, facts), _) input =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   294
      let
29218
f7ffe90879e2 Transfer morphism with theory closure.
ballarin
parents: 29217
diff changeset
   295
        val facts' = facts |> Element.facts_map (Element.morph_ctxt (transfer input $> morph))
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   296
      in activ_elem (Notes (kind, facts')) input end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   297
  in
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   298
    fold_rev activate notes input
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   299
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   300
29216
528e68bea04d Transfer theorems before activation.
ballarin
parents: 29213
diff changeset
   301
fun activate_all name thy activ_elem transfer (marked, input) =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   302
  let
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   303
    val Loc {parameters = (_, params), spec = (asm, defs), ...} =
28902
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28899
diff changeset
   304
      the_locale thy name;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   305
  in
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   306
    input |>
28851
368aca388dd9 Use 'if' in connection with 'is_some' and 'the'.
ballarin
parents: 28833
diff changeset
   307
      (if not (null params) then activ_elem (Fixes params) else I) |>
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   308
      (* FIXME type parameters *)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   309
      (if is_some asm then activ_elem (Assumes [(Attrib.empty_binding, [(the asm, [])])]) else I) |>
28851
368aca388dd9 Use 'if' in connection with 'is_some' and 'the'.
ballarin
parents: 28833
diff changeset
   310
      (if not (null defs)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   311
        then activ_elem (Defines (map (fn def => (Attrib.empty_binding, (def, []))) defs))
28851
368aca388dd9 Use 'if' in connection with 'is_some' and 'the'.
ballarin
parents: 28833
diff changeset
   312
        else I) |>
29216
528e68bea04d Transfer theorems before activation.
ballarin
parents: 29213
diff changeset
   313
      pair marked |> roundup thy (activate_notes activ_elem transfer) (name, Morphism.identity)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   314
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   315
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   316
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   317
(** Public activation functions **)
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   318
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   319
local
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   320
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   321
fun init_global_elem (Notes (kind, facts)) thy =
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   322
      let
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   323
        val facts' = Attrib.map_facts (Attrib.attribute_i thy) facts
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   324
      in Locale.global_note_qualified kind facts' thy |> snd end
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   325
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   326
fun init_local_elem (Fixes fixes) ctxt = ctxt |>
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   327
      ProofContext.add_fixes_i fixes |> snd
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   328
  | init_local_elem (Assumes assms) ctxt =
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   329
      let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   330
        val assms' = Attrib.map_specs (Attrib.attribute_i (ProofContext.theory_of ctxt)) assms
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   331
      in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   332
        ctxt |> fold Variable.auto_fixes (maps (map fst o snd) assms') |>
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   333
          ProofContext.add_assms_i Assumption.assume_export assms' |> snd
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   334
     end 
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   335
  | init_local_elem (Defines defs) ctxt =
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   336
      let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   337
        val defs' = Attrib.map_specs (Attrib.attribute_i (ProofContext.theory_of ctxt)) defs
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   338
      in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   339
        ctxt |> fold Variable.auto_fixes (map (fst o snd) defs') |>
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   340
          ProofContext.add_assms_i LocalDefs.def_export (map (fn (attn, t) => (attn, [t])) defs') |>
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   341
          snd
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   342
      end
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   343
  | init_local_elem (Notes (kind, facts)) ctxt =
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   344
      let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   345
        val facts' = Attrib.map_facts (Attrib.attribute_i (ProofContext.theory_of ctxt)) facts
28940
df0cb410be35 Locale.*note* with conventional argument type
haftmann
parents: 28927
diff changeset
   346
      in Locale.local_note_qualified kind facts' ctxt |> snd end
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   347
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   348
fun cons_elem false (Notes notes) elems = elems
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   349
  | cons_elem _ elem elems = elem :: elems
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   350
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   351
in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   352
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   353
fun activate_declarations thy dep ctxt =
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   354
  roundup thy activate_decls dep (get_local_idents ctxt, ctxt) |> uncurry put_local_idents;
29019
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   355
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   356
fun activate_global_facts dep thy =
29218
f7ffe90879e2 Transfer morphism with theory closure.
ballarin
parents: 29217
diff changeset
   357
  roundup thy (activate_notes init_global_elem Element.transfer_morphism)
f7ffe90879e2 Transfer morphism with theory closure.
ballarin
parents: 29217
diff changeset
   358
    dep (get_global_idents thy, thy) |>
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   359
  uncurry put_global_idents;
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   360
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   361
fun activate_local_facts dep ctxt =
29218
f7ffe90879e2 Transfer morphism with theory closure.
ballarin
parents: 29217
diff changeset
   362
  roundup (ProofContext.theory_of ctxt)
f7ffe90879e2 Transfer morphism with theory closure.
ballarin
parents: 29217
diff changeset
   363
  (activate_notes init_local_elem (Element.transfer_morphism o ProofContext.theory_of)) dep
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   364
    (get_local_idents ctxt, ctxt) |>
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   365
  uncurry put_local_idents;
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   366
29216
528e68bea04d Transfer theorems before activation.
ballarin
parents: 29213
diff changeset
   367
fun init name thy =
29218
f7ffe90879e2 Transfer morphism with theory closure.
ballarin
parents: 29217
diff changeset
   368
  activate_all name thy init_local_elem (Element.transfer_morphism o ProofContext.theory_of)
29216
528e68bea04d Transfer theorems before activation.
ballarin
parents: 29213
diff changeset
   369
    (empty, ProofContext.init thy) |>
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   370
  uncurry put_local_idents;
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   371
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   372
fun print_locale thy show_facts name =
28902
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28899
diff changeset
   373
  let
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28899
diff changeset
   374
    val name' = intern thy name;
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28899
diff changeset
   375
    val ctxt = init name' thy
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   376
  in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   377
    Pretty.big_list "locale elements:"
29218
f7ffe90879e2 Transfer morphism with theory closure.
ballarin
parents: 29217
diff changeset
   378
      (activate_all name' thy (cons_elem show_facts) (K Morphism.identity) (empty, []) |>
f7ffe90879e2 Transfer morphism with theory closure.
ballarin
parents: 29217
diff changeset
   379
        snd |> rev |> 
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   380
        map (Element.pretty_ctxt ctxt) |> map Pretty.chunks) |> Pretty.writeln
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   381
  end
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   382
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   383
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   384
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   385
29213
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   386
(*** Registrations: interpretations in theories ***)
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   387
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   388
(* FIXME only global variant needed *)
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   389
structure RegistrationsData = GenericDataFun
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   390
(
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   391
  type T = ((string * (Morphism.morphism * Morphism.morphism)) * stamp) list;
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   392
(* FIXME mixins need to be stamped *)
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   393
    (* registrations, in reverse order of declaration *)
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   394
  val empty = [];
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   395
  val extend = I;
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   396
  fun merge _ = Library.merge (eq_snd (op =));
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   397
    (* FIXME consolidate with dependencies, consider one data slot only *)
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   398
);
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   399
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   400
val get_global_registrations =
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   401
  Context.Theory #> RegistrationsData.get #> map fst #> map (apsnd op $>);
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   402
fun add_global_registration reg =
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   403
  (Context.theory_map o RegistrationsData.map) (cons (reg, stamp ()));
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   404
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   405
fun amend_global_registration morph (name, base_morph) thy =
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   406
  let
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   407
    val regs = (Context.Theory #> RegistrationsData.get #> map fst) thy;
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   408
    val base = instance_of thy name base_morph;
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   409
    fun match (name', (morph', _)) =
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   410
      name = name' andalso eq_list (op aconv) (base, instance_of thy name' morph');
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   411
    val i = find_index match (rev regs);
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   412
    val _ = if i = ~1 then error ("No interpretation of locale " ^
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   413
        quote (extern thy name) ^ " and parameter instantiation " ^
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   414
        space_implode " " (map (quote o Syntax.string_of_term_global thy) base) ^ " available.")
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   415
      else ();
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   416
  in
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   417
    (Context.theory_map o RegistrationsData.map) (nth_map (length regs - 1 - i)
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   418
      (fn ((name, (base, export)), stamp) => ((name, (base $> morph, export)), stamp))) thy
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   419
  end;
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   420
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   421
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   422
(*** Storing results ***)
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   423
28833
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   424
(* Theorems *)
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   425
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   426
fun add_thmss loc kind args ctxt =
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   427
  let
29217
a1c992fb3184 Finer-grained activation so that facts from earlier elements are available.
ballarin
parents: 29216
diff changeset
   428
    val ([Notes args'], ctxt') = Element.activate_i [Notes (kind, args)] ctxt;
29213
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   429
    val ctxt'' = ctxt' |> ProofContext.theory (
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   430
      change_locale loc
28833
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   431
        (fn (parameters, spec, decls, notes, dependencies) =>
29213
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   432
          (parameters, spec, decls, (args', stamp ()) :: notes, dependencies)) #>
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   433
      (* Registrations *)
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   434
      (fn thy => fold_rev (fn (name, morph) =>
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   435
            let
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   436
              val args'' = snd args' |> Element.facts_map (Element.morph_ctxt morph) |>
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   437
                Attrib.map_facts (Attrib.attribute_i thy)
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   438
            in Locale.global_note_qualified kind args'' #> snd end)
c3ed38de863c Propagate theorems to registrations.
ballarin
parents: 29211
diff changeset
   439
        (get_global_registrations thy |> filter (fn (name, _) => name = loc)) thy))
28833
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   440
  in ctxt'' end;
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   441
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   442
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   443
(* Declarations *)
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   444
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   445
local
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   446
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   447
fun decl_attrib decl phi = Thm.declaration_attribute (K (decl phi));
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   448
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   449
fun add_decls add loc decl =
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   450
  ProofContext.theory (change_locale loc
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   451
    (fn (parameters, spec, decls, notes, dependencies) =>
28833
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   452
      (parameters, spec, add (decl, stamp ()) decls, notes, dependencies))) #>
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   453
  add_thmss loc Thm.internalK
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   454
    [((Binding.empty, [Attrib.internal (decl_attrib decl)]), [([Drule.dummy_thm], [])])];
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   455
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   456
in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   457
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   458
val add_type_syntax = add_decls (apfst o cons);
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   459
val add_term_syntax = add_decls (apsnd o cons);
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   460
val add_declaration = add_decls (K I);
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   461
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   462
end;
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   463
28894
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   464
(* Dependencies *)
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   465
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   466
fun add_dependency loc dep =
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   467
  change_locale loc
28894
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   468
    (fn (parameters, spec, decls, notes, dependencies) =>
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   469
      (parameters, spec, decls, notes, (dep, stamp ()) :: dependencies));
28894
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   470
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   471
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   472
(*** Reasoning about locales ***)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   473
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   474
(** Storage for witnesses, intro and unfold rules **)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   475
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   476
structure Witnesses = ThmsFun();
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   477
structure Intros = ThmsFun();
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   478
structure Unfolds = ThmsFun();
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   479
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   480
val witness_attrib = Witnesses.add;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   481
val intro_attrib = Intros.add;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   482
val unfold_attrib = Unfolds.add;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   483
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   484
(** Tactic **)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   485
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   486
fun intro_locales_tac eager ctxt facts st =
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   487
  Method.intros_tac
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   488
    (Witnesses.get ctxt @ Intros.get ctxt @ (if eager then Unfolds.get ctxt else [])) facts st;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   489
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   490
val _ = Context.>> (Context.map_theory
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   491
  (Method.add_methods
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   492
    [("intro_locales",
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   493
      Method.ctxt_args (fn ctxt => Method.METHOD (intro_locales_tac false ctxt ORELSE'
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   494
        Locale.intro_locales_tac false ctxt)),
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   495
      "back-chain introduction rules of locales without unfolding predicates"),
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   496
     ("unfold_locales",
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   497
      Method.ctxt_args (fn ctxt => Method.METHOD (intro_locales_tac true ctxt ORELSE'
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   498
        Locale.intro_locales_tac true ctxt)),
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   499
      "back-chain all introduction rules of locales")]));
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   500
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   501
end;
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   502