src/Pure/Isar/new_locale.ML
author haftmann
Thu, 04 Dec 2008 14:43:33 +0100
changeset 28965 1de908189869
parent 28951 e89dde5f365c
child 28991 694227dd3e8c
permissions -rw-r--r--
cleaned up binding module and related code
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
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
    11
  val clear_idents: Proof.context -> Proof.context
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    12
  val test_locale: theory -> string -> bool
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    13
  val register_locale: string ->
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
    14
    (string * sort) list * (Binding.T * typ option * mixfix) list ->
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    15
    term option * term list ->
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    16
    (declaration * stamp) list * (declaration * stamp) list ->
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    17
    ((string * (Attrib.binding * (thm list * Attrib.src list) list) list) * stamp) list ->
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    18
    ((string * Morphism.morphism) * stamp) list -> theory -> theory
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    19
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    20
  (* Locale name space *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    21
  val intern: theory -> xstring -> string
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    22
  val extern: theory -> string -> xstring
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    23
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    24
  (* Specification *)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
    25
  val params_of: theory -> string -> (Binding.T * typ option * mixfix) 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
28894
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
    35
  val add_dependency: string -> (string * Morphism.morphism) -> Proof.context -> Proof.context
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
28878
141ed00656ae Generalised activation code.
ballarin
parents: 28872
diff changeset
    40
  val activate_facts: theory -> string * Morphism.morphism ->
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
    41
    Proof.context -> Proof.context
28878
141ed00656ae Generalised activation code.
ballarin
parents: 28872
diff changeset
    42
(*  val activate: string -> theory -> (Element.context_i -> 'a -> 'a) -> 'a -> 'a *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    43
  val init: string -> theory -> Proof.context
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    44
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    45
  (* Reasoning about locales *)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    46
  val witness_attrib: attribute
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    47
  val intro_attrib: attribute
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    48
  val unfold_attrib: attribute
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    49
  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
    50
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    51
  (* Diagnostic *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    52
  val print_locales: theory -> unit
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    53
  val print_locale: theory -> bool -> bstring -> unit
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    54
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    55
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    56
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
    57
(*** 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
    58
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    59
(* 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
    60
functor ThmsFun() =
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    61
struct
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    62
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    63
structure Data = GenericDataFun
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    64
(
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    65
  type T = thm list;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    66
  val empty = [];
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    67
  val extend = I;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    68
  fun merge _ = Thm.merge_thms;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    69
);
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
val get = Data.get o Context.Proof;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    72
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
    73
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
    74
end;
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
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    77
structure NewLocale: NEW_LOCALE =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    78
struct
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    79
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    80
datatype ctxt = datatype Element.ctxt;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    81
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    82
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    83
(*** Basics ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    84
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    85
datatype locale = Loc of {
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    86
  (* extensible lists are in reverse order: decls, notes, dependencies *)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
    87
  parameters: (string * sort) list * (Binding.T * typ option * mixfix) list,
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    88
    (* type and term parameters *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    89
  spec: term option * term list,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    90
    (* assumptions (as a single predicate expression) and defines *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    91
  decls: (declaration * stamp) list * (declaration * stamp) list,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    92
    (* type and term syntax declarations *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    93
  notes: ((string * (Attrib.binding * (thm list * Attrib.src list) list) list) * stamp) list,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    94
    (* theorem declarations *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    95
  dependencies: ((string * Morphism.morphism) * stamp) list
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    96
    (* locale dependencies (sublocale relation) *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    97
}
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    98
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
    99
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   100
(*** Theory data ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   101
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   102
structure LocalesData = TheoryDataFun
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   103
(
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   104
  type T = NameSpace.T * locale Symtab.table;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   105
    (* locale namespace and locales of the theory *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   106
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   107
  val empty = (NameSpace.empty, Symtab.empty);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   108
  val copy = I;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   109
  val extend = I;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   110
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   111
  fun join_locales _
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   112
    (Loc {parameters, spec, decls = (decls1, decls2), notes, dependencies},
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   113
      Loc {decls = (decls1', decls2'), notes = notes',
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   114
        dependencies = dependencies', ...}) =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   115
        let fun s_merge x = merge (eq_snd (op =)) x in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   116
          Loc {parameters = parameters,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   117
            spec = spec,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   118
            decls = (s_merge (decls1, decls1'), s_merge (decls2, decls2')),
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   119
            notes = s_merge (notes, notes'),
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   120
            dependencies = s_merge (dependencies, dependencies')
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   121
          }          
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   122
        end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   123
  fun merge _ ((space1, locs1), (space2, locs2)) =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   124
    (NameSpace.merge (space1, space2), Symtab.join join_locales (locs1, locs2));
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   125
);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   126
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   127
val intern = NameSpace.intern o #1 o LocalesData.get;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   128
val extern = NameSpace.extern o #1 o LocalesData.get;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   129
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   130
fun get_locale thy name = Symtab.lookup (#2 (LocalesData.get thy)) name;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   131
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   132
fun the_locale thy name = case get_locale thy name
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   133
 of SOME loc => loc
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   134
  | NONE => error ("Unknown locale " ^ quote name);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   135
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   136
fun test_locale thy name = case get_locale thy name
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   137
 of SOME _ => true | NONE => false;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   138
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   139
fun register_locale name parameters spec decls notes dependencies thy =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   140
  thy |> LocalesData.map (fn (space, locs) =>
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   141
    (NameSpace.declare_base (Sign.naming_of thy) name space, Symtab.update (name,
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   142
      Loc {parameters = parameters, spec = spec, decls = decls, notes = notes,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   143
        dependencies = dependencies}) locs));
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   144
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   145
fun change_locale name f thy =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   146
  let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   147
    val Loc {parameters, spec, decls, notes, dependencies} =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   148
        the_locale thy name;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   149
    val (parameters', spec', decls', notes', dependencies') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   150
      f (parameters, spec, decls, notes, dependencies);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   151
  in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   152
    thy
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   153
    |> (LocalesData.map o apsnd) (Symtab.update (name, Loc {parameters = parameters',
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   154
      spec = spec', decls = decls', notes = notes', dependencies = dependencies'}))
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   155
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   156
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   157
fun print_locales thy =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   158
  let val (space, locs) = LocalesData.get thy in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   159
    Pretty.strs ("locales:" :: map #1 (NameSpace.extern_table (space, locs)))
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   160
    |> Pretty.writeln
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   161
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   162
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   163
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   164
(*** Primitive operations ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   165
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   166
fun params_of thy name =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   167
  let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   168
    val Loc {parameters = (_, params), ...} = the_locale thy name
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   169
  in params end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   170
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   171
fun specification_of thy name =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   172
  let
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   173
    val Loc {spec, ...} = the_locale thy name
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   174
  in spec end;
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   175
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   176
fun declarations_of thy name =
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   177
  let
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   178
    val Loc {decls, ...} = the_locale thy name
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   179
  in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   180
    decls |> apfst (map fst) |> apsnd (map fst)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   181
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   182
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   183
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   184
(*** Activate context elements of locale ***)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   185
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   186
(** Identifiers: activated locales in theory or proof context **)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   187
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   188
type identifiers = (string * term list) list;
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   189
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   190
val empty = ([] : identifiers);
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   191
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   192
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
   193
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   194
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   195
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   196
structure IdentifiersData = GenericDataFun
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   197
(
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   198
  type T = identifiers;
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   199
  val empty = empty;
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   200
  val extend = I;
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   201
  fun merge _ = Library.merge (op =);  (* FIXME cannot do this properly without theory context *)
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   202
);
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   203
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   204
in
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   205
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   206
val get_idents = IdentifiersData.get o Context.Proof;
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   207
val put_idents = Context.proof_map o IdentifiersData.put;
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   208
val clear_idents = put_idents empty;
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   209
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   210
end;
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   211
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
(** Resolve locale dependencies in a depth-first fashion **)
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   214
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   215
local
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28865
diff changeset
   216
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   217
val roundup_bound = 120;
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   218
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   219
fun add thy depth (name, morph) (deps, marked) =
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   220
  if depth > roundup_bound
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   221
  then error "Roundup bound exceeded (sublocale relation probably not terminating)."
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   222
  else
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   223
    let
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   224
      val Loc {parameters = (_, params), dependencies, ...} = the_locale thy name;
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   225
      val instance = params |>
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   226
        map ((fn (b, T, _) => Free (Name.name_of b, the T)) #> Morphism.term morph);
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   227
    in
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   228
      if member (ident_eq thy) marked (name, instance)
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   229
      then (deps, marked)
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   230
      else
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   231
        let
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   232
          val dependencies' =
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   233
            map (fn ((name, morph'), _) => (name, morph' $>  morph)) dependencies;
28899
7bf5d7f154b8 Perform higher-order pattern matching during round-up.
ballarin
parents: 28897
diff changeset
   234
          val marked' = (name, instance) :: marked;
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   235
          val (deps', marked'') = fold_rev (add thy (depth + 1)) dependencies' ([], marked');
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   236
        in
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   237
          ((name, morph) :: deps' @ deps, marked'')
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   238
        end
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   239
    end;
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   240
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   241
in
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   242
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   243
fun roundup thy activate_dep (name, morph) (marked, input) =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   244
  let
28902
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28899
diff changeset
   245
    val (dependencies', marked') = add thy 0 (name, morph) ([], marked);
28894
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   246
  in
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   247
    (marked', input |> fold_rev (activate_dep thy) dependencies')
28894
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   248
  end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   249
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   250
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   251
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   252
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   253
(* Declarations, facts and entire locale content *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   254
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   255
fun activate_decls thy (name, morph) ctxt =
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   256
  let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   257
    val Loc {decls = (typ_decls, term_decls), ...} = the_locale thy name;
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   258
  in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   259
    ctxt |> fold_rev (fn (decl, _) => Context.proof_map (decl morph)) typ_decls |>
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   260
      fold_rev (fn (decl, _) => Context.proof_map (decl morph)) term_decls
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   261
  end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   262
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   263
fun activate_notes activ_elem thy (name, morph) input =
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   264
  let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   265
    val Loc {notes, ...} = the_locale thy name;
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   266
    fun activate ((kind, facts), _) input =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   267
      let
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   268
        val facts' = facts |> Element.facts_map (Element.morph_ctxt morph)
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   269
      in activ_elem (Notes (kind, facts')) input end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   270
  in
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   271
    fold_rev activate notes input
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   272
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   273
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   274
fun activate_all name thy activ_elem (marked, input) =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   275
  let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   276
    val Loc {parameters = (_, params), spec = (asm, defs), dependencies, ...} =
28902
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28899
diff changeset
   277
      the_locale thy name;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   278
  in
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   279
    input |>
28851
368aca388dd9 Use 'if' in connection with 'is_some' and 'the'.
ballarin
parents: 28833
diff changeset
   280
      (if not (null params) then activ_elem (Fixes params) else I) |>
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   281
      (* FIXME type parameters *)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   282
      (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
   283
      (if not (null defs)
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   284
        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
   285
        else I) |>
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   286
      pair marked |> roundup thy (activate_notes activ_elem) (name, Morphism.identity)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   287
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   288
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   289
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   290
(** Public activation functions **)
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   291
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   292
local
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   293
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   294
fun init_elem (Fixes fixes) ctxt = ctxt |>
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   295
      ProofContext.add_fixes_i fixes |> snd
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   296
  | init_elem (Assumes assms) ctxt =
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   297
      let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   298
        val assms' = Attrib.map_specs (Attrib.attribute_i (ProofContext.theory_of ctxt)) assms
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   299
      in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   300
        ctxt |> fold Variable.auto_fixes (maps (map fst o snd) assms') |>
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   301
          ProofContext.add_assms_i Assumption.assume_export assms' |> snd
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   302
     end 
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   303
  | init_elem (Defines defs) ctxt =
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   304
      let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   305
        val defs' = Attrib.map_specs (Attrib.attribute_i (ProofContext.theory_of ctxt)) defs
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   306
      in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   307
        ctxt |> fold Variable.auto_fixes (map (fst o snd) defs') |>
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   308
          ProofContext.add_assms_i LocalDefs.def_export (map (fn (attn, t) => (attn, [t])) defs') |>
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   309
          snd
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   310
      end
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   311
  | init_elem (Notes (kind, facts)) ctxt =
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   312
      let
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   313
        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
   314
      in Locale.local_note_qualified kind facts' ctxt |> snd end
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   315
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   316
fun cons_elem false (Notes notes) elems = elems
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   317
  | cons_elem _ elem elems = elem :: elems
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   318
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   319
in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   320
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   321
fun activate_declarations thy dep ctxt =
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   322
  roundup thy activate_decls dep (get_idents ctxt, ctxt) |> uncurry put_idents;
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   323
  
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   324
fun activate_facts thy dep ctxt =
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   325
  roundup thy (activate_notes init_elem) dep (get_idents ctxt, ctxt) |> uncurry put_idents;
28897
3d166f1bd733 Roundup bound.
ballarin
parents: 28894
diff changeset
   326
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   327
fun init name thy = activate_all name thy init_elem (empty, ProofContext.init thy) |>
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   328
  uncurry put_idents;
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   329
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   330
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
   331
  let
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28899
diff changeset
   332
    val name' = intern thy name;
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28899
diff changeset
   333
    val ctxt = init name' thy
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   334
  in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   335
    Pretty.big_list "locale elements:"
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28940
diff changeset
   336
      (activate_all name' thy (cons_elem show_facts) (empty, []) |> snd |> rev |> 
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   337
        map (Element.pretty_ctxt ctxt) |> map Pretty.chunks) |> Pretty.writeln
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   338
  end
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   339
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   340
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   341
6891e273c33b Initial part of locale reimplementation.
ballarin
parents:
diff changeset
   342
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   343
(*** Storing results ***)
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   344
28833
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   345
(* Theorems *)
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   346
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   347
fun add_thmss loc kind args ctxt =
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   348
  let
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   349
    val (([Notes args'], _), ctxt') = Element.activate_i [Notes (kind, args)] ctxt;
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   350
    val ctxt'' = ctxt' |> ProofContext.theory
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   351
      (change_locale loc
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   352
        (fn (parameters, spec, decls, notes, dependencies) =>
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   353
          (parameters, spec, decls, (args', stamp ()) :: notes, dependencies)))
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   354
      (* FIXME registrations *)
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   355
  in ctxt'' end;
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   356
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   357
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   358
(* Declarations *)
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   359
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   360
local
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   361
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   362
fun decl_attrib decl phi = Thm.declaration_attribute (K (decl phi));
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   363
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   364
fun add_decls add loc decl =
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   365
  ProofContext.theory (change_locale loc
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   366
    (fn (parameters, spec, decls, notes, dependencies) =>
28833
f356687a7659 add_thmss
ballarin
parents: 28818
diff changeset
   367
      (parameters, spec, add (decl, stamp ()) decls, notes, dependencies))) #>
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   368
  add_thmss loc Thm.internalK
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   369
    [((Binding.empty, [Attrib.internal (decl_attrib decl)]), [([Drule.dummy_thm], [])])];
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   370
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   371
in
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   372
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   373
val add_type_syntax = add_decls (apfst o cons);
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   374
val add_term_syntax = add_decls (apsnd o cons);
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   375
val add_declaration = add_decls (K I);
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   376
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   377
end;
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   378
28894
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   379
(* Dependencies *)
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   380
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   381
fun add_dependency loc dep =
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   382
  ProofContext.theory (change_locale loc
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   383
    (fn (parameters, spec, decls, notes, dependencies) =>
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   384
      (parameters, spec, decls, notes, (dep, stamp ()) :: dependencies)));
ff724071b902 Command to add dependencies, fixed processing of dependencies.
ballarin
parents: 28878
diff changeset
   385
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   386
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   387
(*** Reasoning about locales ***)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   388
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   389
(** Storage for witnesses, intro and unfold rules **)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   390
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   391
structure Witnesses = ThmsFun();
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   392
structure Intros = ThmsFun();
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   393
structure Unfolds = ThmsFun();
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   394
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   395
val witness_attrib = Witnesses.add;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   396
val intro_attrib = Intros.add;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   397
val unfold_attrib = Unfolds.add;
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   398
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   399
(** Tactic **)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   400
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   401
fun intro_locales_tac eager ctxt facts st =
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   402
  Method.intros_tac
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   403
    (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
   404
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   405
val _ = Context.>> (Context.map_theory
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   406
  (Method.add_methods
28927
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   407
    [("intro_locales",
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   408
      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
   409
        Locale.intro_locales_tac false ctxt)),
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   410
      "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
   411
     ("unfold_locales",
7e631979922f Methods intro_locales and unfold_locales apply to both old and new locales.
ballarin
parents: 28903
diff changeset
   412
      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
   413
        Locale.intro_locales_tac true ctxt)),
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   414
      "back-chain all introduction rules of locales")]));
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   415
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   416
28818
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   417
end;
249e394e5b8e Generic activation of locales.
ballarin
parents: 28795
diff changeset
   418