src/Pure/Isar/locale.ML
author wenzelm
Sun, 18 Mar 2012 13:04:22 +0100
changeset 47005 421760a1efe7
parent 46978 23a59a495934
child 47246 2bbab021c0e6
permissions -rw-r--r--
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming); more explicit Context.generic for Name_Space.declare/define and derivatives (NB: naming changed after Proof_Context.init_global); prefer Context.pretty in low-level operations of structure Sorts/Type (defer full Syntax.init_pretty until error output); simplified signatures;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
     1
(*  Title:      Pure/Isar/locale.ML
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
     2
    Author:     Clemens Ballarin, TU Muenchen
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
     3
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
     4
Locales -- managed Isar proof contexts, based on Pure predicates.
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
     5
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
     6
Draws basic ideas from Florian Kammueller's original version of
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
     7
locales, but uses the richer infrastructure of Isar instead of the raw
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
     8
meta-logic.  Furthermore, structured import of contexts (with merge
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
     9
and rename operations) are provided, as well as type-inference of the
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    10
signature parts, and predicate definitions of the specification text.
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    11
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    12
Interpretation enables the reuse of theorems of locales in other
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    13
contexts, namely those defined by theories, structured proofs and
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    14
locales themselves.
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    15
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    16
See also:
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    17
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    18
[1] Clemens Ballarin. Locales and Locale Expressions in Isabelle/Isar.
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    19
    In Stefano Berardi et al., Types for Proofs and Programs: International
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    20
    Workshop, TYPES 2003, Torino, Italy, LNCS 3085, pages 34-50, 2004.
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    21
[2] Clemens Ballarin. Interpretation of Locales in Isabelle: Managing
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    22
    Dependencies between Locales. Technical Report TUM-I0607, Technische
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    23
    Universitaet Muenchen, 2006.
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    24
[3] Clemens Ballarin. Interpretation of Locales in Isabelle: Theories and
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    25
    Proof Contexts. In J.M. Borwein and W.M. Farmer, MKM 2006, LNAI 4108,
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    26
    pages 31-43, 2006.
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    27
*)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    28
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    29
signature LOCALE =
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    30
sig
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29544
diff changeset
    31
  (* Locale specification *)
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30223
diff changeset
    32
  val register_locale: binding ->
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30754
diff changeset
    33
    (string * sort) list * ((string * typ) * mixfix) list ->
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    34
    term option * term list ->
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
    35
    thm option * thm option -> thm list ->
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
    36
    declaration list ->
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    37
    (string * (Attrib.binding * (thm list * Attrib.src list) list) list) list ->
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    38
    (string * morphism) list -> theory -> theory
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    39
  val intern: theory -> xstring -> string
45488
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 45390
diff changeset
    40
  val check: theory -> xstring * Position.T -> string
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    41
  val extern: theory -> string -> xstring
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
    42
  val defined: theory -> string -> bool
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30754
diff changeset
    43
  val params_of: theory -> string -> ((string * typ) * mixfix) list
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
    44
  val intros_of: theory -> string -> thm option * thm option
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
    45
  val axioms_of: theory -> string -> thm list
29544
bc50244cd1d7 exported depedencies; tuned signature
haftmann
parents: 29502
diff changeset
    46
  val instance_of: theory -> string -> morphism -> term list
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    47
  val specification_of: theory -> string -> term option * term list
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    48
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    49
  (* Storing results *)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    50
  val add_thmss: string -> string -> (Attrib.binding * (thm list * Attrib.src list) list) list ->
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    51
    Proof.context -> Proof.context
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    52
  val add_declaration: string -> declaration -> Proof.context -> Proof.context
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
    53
  val add_syntax_declaration: string -> declaration -> Proof.context -> Proof.context
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    54
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    55
  (* Activation *)
30764
3e3e7aa0cc7a simplified Locale.activate operations, using generic context;
wenzelm
parents: 30763
diff changeset
    56
  val activate_declarations: string * morphism -> Proof.context -> Proof.context
38316
88e774d09fbc Revert performance improvement of 8ed3a5fb4d25 since it breaks notes element declarations.
ballarin
parents: 38211
diff changeset
    57
  val activate_facts: morphism option -> string * morphism -> Context.generic -> Context.generic
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    58
  val init: string -> theory -> Proof.context
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    59
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    60
  (* Reasoning about locales *)
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    61
  val get_witnesses: Proof.context -> thm list
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    62
  val get_intros: Proof.context -> thm list
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    63
  val get_unfolds: Proof.context -> thm list
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    64
  val witness_add: attribute
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    65
  val intro_add: attribute
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    66
  val unfold_add: attribute
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    67
  val intro_locales_tac: bool -> Proof.context -> thm list -> tactic
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    68
31988
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
    69
  (* Registrations and dependencies *)
32845
d2d0b9b1a69d Avoid administrative overhead for identity mixins.
ballarin
parents: 32804
diff changeset
    70
  val add_registration: string * morphism -> (morphism * bool) option ->
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
    71
    morphism -> Context.generic -> Context.generic
32845
d2d0b9b1a69d Avoid administrative overhead for identity mixins.
ballarin
parents: 32804
diff changeset
    72
  val amend_registration: string * morphism -> morphism * bool ->
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
    73
    morphism -> Context.generic -> Context.generic
38111
77f56abf158b More consistent naming of locale api functions.
ballarin
parents: 38109
diff changeset
    74
  val registrations_of: Context.generic -> string -> (string * morphism) list
46880
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
    75
  val all_registrations_of: Context.generic -> (string * morphism) list
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 40782
diff changeset
    76
  val add_dependency: string -> string * morphism -> (morphism * bool) option ->
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 40782
diff changeset
    77
    morphism -> theory -> theory
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    78
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    79
  (* Diagnostic *)
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
    80
  val all_locales: theory -> string list
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    81
  val print_locales: theory -> unit
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46906
diff changeset
    82
  val print_locale: theory -> bool -> xstring * Position.T -> unit
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46906
diff changeset
    83
  val print_registrations: Proof.context -> xstring * Position.T -> unit
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
    84
  val print_dependencies: Proof.context -> bool -> morphism -> (string * morphism) list -> unit
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
    85
  val locale_deps: theory ->
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
    86
    {params: ((string * typ) * mixfix) list, axioms: term list, registrations: term list list} Graph.T
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
    87
      * term list list Symtab.table Symtab.table
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    88
end;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    89
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    90
structure Locale: LOCALE =
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    91
struct
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    92
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    93
datatype ctxt = datatype Element.ctxt;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    94
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
    95
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
    96
(*** Locales ***)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    97
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
    98
type mixins = (((morphism * bool) * serial) list) Inttab.table;
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
    99
  (* table of mixin lists, per list mixins in reverse order of declaration;
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   100
     lists indexed by registration/dependency serial,
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   101
     entries for empty lists may be omitted *)
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   102
46859
79f712a9a815 misc tuning and simplification;
wenzelm
parents: 46858
diff changeset
   103
fun lookup_mixins serial' mixins = Inttab.lookup_list mixins serial';
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   104
46859
79f712a9a815 misc tuning and simplification;
wenzelm
parents: 46858
diff changeset
   105
fun merge_mixins mixs : mixins = Inttab.merge_list (eq_snd op =) mixs;
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   106
46859
79f712a9a815 misc tuning and simplification;
wenzelm
parents: 46858
diff changeset
   107
fun insert_mixin serial' mixin = Inttab.cons_list (serial', (mixin, serial ()));
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   108
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   109
fun rename_mixin (old, new) mix =
46858
wenzelm
parents: 45601
diff changeset
   110
  (case Inttab.lookup mix old of
wenzelm
parents: 45601
diff changeset
   111
    NONE => mix
wenzelm
parents: 45601
diff changeset
   112
  | SOME mxs => Inttab.delete old mix |> Inttab.update_new (new, mxs));
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   113
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   114
fun compose_mixins mixins =
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   115
  fold_rev Morphism.compose (map (fst o fst) mixins) Morphism.identity;
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   116
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   117
datatype locale = Loc of {
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   118
  (** static part **)
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30754
diff changeset
   119
  parameters: (string * sort) list * ((string * typ) * mixfix) list,
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   120
    (* type and term parameters *)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   121
  spec: term option * term list,
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   122
    (* assumptions (as a single predicate expression) and defines *)
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   123
  intros: thm option * thm option,
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   124
  axioms: thm list,
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   125
  (** dynamic part **)
36096
abc6a2ea4b88 Merged resolving conflicts NEWS and locale.ML.
ballarin
parents: 36095 35798
diff changeset
   126
  syntax_decls: (declaration * serial) list,
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   127
    (* syntax declarations *)
36096
abc6a2ea4b88 Merged resolving conflicts NEWS and locale.ML.
ballarin
parents: 36095 35798
diff changeset
   128
  notes: ((string * (Attrib.binding * (thm list * Attrib.src list) list) list) * serial) list,
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   129
    (* theorem declarations *)
36651
97c3bbe63389 Explicitly manage export in dependencies.
ballarin
parents: 36240
diff changeset
   130
  dependencies: ((string * (morphism * morphism)) * serial) list
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   131
    (* locale dependencies (sublocale relation) in reverse order *),
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   132
  mixins: mixins
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   133
    (* mixin part of dependencies *)
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   134
};
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   135
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   136
fun mk_locale ((parameters, spec, intros, axioms),
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   137
    ((syntax_decls, notes), (dependencies, mixins))) =
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   138
  Loc {parameters = parameters, intros = intros, axioms = axioms, spec = spec,
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   139
    syntax_decls = syntax_decls, notes = notes, dependencies = dependencies, mixins = mixins};
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   140
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   141
fun map_locale f (Loc {parameters, spec, intros, axioms,
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   142
    syntax_decls, notes, dependencies, mixins}) =
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   143
  mk_locale (f ((parameters, spec, intros, axioms),
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   144
    ((syntax_decls, notes), (dependencies, mixins))));
30754
c896167de3d5 minor tuning;
wenzelm
parents: 30725
diff changeset
   145
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   146
fun merge_locale
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   147
 (Loc {parameters, spec, intros, axioms, syntax_decls, notes, dependencies, mixins},
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   148
  Loc {syntax_decls = syntax_decls', notes = notes',
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   149
      dependencies = dependencies', mixins = mixins', ...}) =
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   150
    mk_locale
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   151
      ((parameters, spec, intros, axioms),
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   152
        ((merge (eq_snd op =) (syntax_decls, syntax_decls'),
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   153
          merge (eq_snd op =) (notes, notes')),
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   154
            (merge (eq_snd op =) (dependencies, dependencies'),
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   155
              (merge_mixins (mixins, mixins')))));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   156
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33519
diff changeset
   157
structure Locales = Theory_Data
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   158
(
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33092
diff changeset
   159
  type T = locale Name_Space.table;
33159
369da293bbd4 make SML/NJ happy;
wenzelm
parents: 33096
diff changeset
   160
  val empty : T = Name_Space.empty_table "locale";
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   161
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33519
diff changeset
   162
  val merge = Name_Space.join_tables (K merge_locale);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   163
);
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   164
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33092
diff changeset
   165
val intern = Name_Space.intern o #1 o Locales.get;
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46978
diff changeset
   166
fun check thy = #1 o Name_Space.check (Context.Theory thy) (Locales.get thy);
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   167
fun extern thy = Name_Space.extern (Proof_Context.init_global thy) (#1 (Locales.get thy));
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   168
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   169
val get_locale = Symtab.lookup o #2 o Locales.get;
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   170
val defined = Symtab.defined o #2 o Locales.get;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   171
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   172
fun the_locale thy name =
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   173
  (case get_locale thy name of
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   174
    SOME (Loc loc) => loc
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   175
  | NONE => error ("Unknown locale " ^ quote name));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   176
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   177
fun register_locale binding parameters spec intros axioms syntax_decls notes dependencies thy =
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46978
diff changeset
   178
  thy |> Locales.map (Name_Space.define (Context.Theory thy) true
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   179
    (binding,
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   180
      mk_locale ((parameters, spec, intros, axioms),
36096
abc6a2ea4b88 Merged resolving conflicts NEWS and locale.ML.
ballarin
parents: 36095 35798
diff changeset
   181
        ((map (fn decl => (decl, serial ())) syntax_decls, map (fn n => (n, serial ())) notes),
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   182
          (map (fn d => (d |> apsnd (rpair Morphism.identity), serial ())) dependencies,
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   183
            Inttab.empty)))) #> snd);
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   184
          (* FIXME Morphism.identity *)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   185
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   186
fun change_locale name =
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   187
  Locales.map o apsnd o Symtab.map_entry name o map_locale o apsnd;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   188
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   189
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   190
(** Primitive operations **)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   191
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   192
fun params_of thy = snd o #parameters o the_locale thy;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   193
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   194
fun intros_of thy = #intros o the_locale thy;
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   195
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   196
fun axioms_of thy = #axioms o the_locale thy;
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   197
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   198
fun instance_of thy name morph = params_of thy name |>
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30754
diff changeset
   199
  map (Morphism.term morph o Free o #1);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   200
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   201
fun specification_of thy = #spec o the_locale thy;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   202
29544
bc50244cd1d7 exported depedencies; tuned signature
haftmann
parents: 29502
diff changeset
   203
fun dependencies_of thy name = the_locale thy name |>
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   204
  #dependencies;
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   205
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   206
fun mixins_of thy name serial = the_locale thy name |>
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   207
  #mixins |> lookup_mixins serial;
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   208
46880
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   209
(* FIXME unused *)
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   210
fun identity_on thy name morph =
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   211
  let val mk_instance = instance_of thy name
46880
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   212
  in ListPair.all Term.aconv_untyped (mk_instance Morphism.identity, mk_instance morph) end;
29544
bc50244cd1d7 exported depedencies; tuned signature
haftmann
parents: 29502
diff changeset
   213
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   214
(* Print instance and qualifiers *)
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   215
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   216
fun pretty_reg ctxt (name, morph) =
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   217
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   218
    val thy = Proof_Context.theory_of ctxt;
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   219
    val name' = extern thy name;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   220
    fun prt_qual (qual, mand) = Pretty.str (qual ^ (if mand then "!" else "?"));
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   221
    fun prt_quals qs = Pretty.separate "." (map prt_qual qs) |> Pretty.block;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   222
    val prt_term = Pretty.quote o Syntax.pretty_term ctxt;
39134
917b4b6ba3d2 turned show_sorts/show_types into proper configuration options;
wenzelm
parents: 38797
diff changeset
   223
    fun prt_term' t =
917b4b6ba3d2 turned show_sorts/show_types into proper configuration options;
wenzelm
parents: 38797
diff changeset
   224
      if Config.get ctxt show_types
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   225
      then Pretty.block [prt_term t, Pretty.brk 1, Pretty.str "::",
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   226
        Pretty.brk 1, (Pretty.quote o Syntax.pretty_typ ctxt) (type_of t)]
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   227
      else prt_term t;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   228
    fun prt_inst ts =
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   229
      Pretty.block (Pretty.breaks (Pretty.str name' :: map prt_term' ts));
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   230
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   231
    val qs = Binding.name "x" |> Morphism.binding morph |> Binding.prefix_of;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   232
    val ts = instance_of thy name morph;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   233
  in
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   234
    (case qs of
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   235
      [] => prt_inst ts
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   236
    | qs => Pretty.block [prt_quals qs, Pretty.brk 1, Pretty.str ":", Pretty.brk 1, prt_inst ts])
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   237
  end;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   238
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   239
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   240
(*** Identifiers: activated locales in theory or proof context ***)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   241
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   242
type idents = term list list Symtab.table;  (* name ~> instance (grouped by name) *)
37105
e464f84f3680 Store registrations in efficient data structure.
ballarin
parents: 37104
diff changeset
   243
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   244
val empty_idents : idents = Symtab.empty;
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   245
val insert_idents = Symtab.insert_list (eq_list (op aconv));
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   246
val merge_idents = Symtab.merge_list (eq_list (op aconv));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   247
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   248
fun redundant_ident thy idents (name, instance) =
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   249
  exists (fn pat => Pattern.matchess thy (pat, instance)) (Symtab.lookup_list idents name);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   250
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   251
structure Idents = Generic_Data
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   252
(
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   253
  type T = idents;
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   254
  val empty = empty_idents;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   255
  val extend = I;
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   256
  val merge = merge_idents;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   257
);
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   258
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   259
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   260
(** Resolve locale dependencies in a depth-first fashion **)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   261
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   262
local
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   263
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   264
val roundup_bound = 120;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   265
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   266
fun add thy depth stem export (name, morph, mixins) (deps, marked) =
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   267
  if depth > roundup_bound
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   268
  then error "Roundup bound exceeded (sublocale relation probably not terminating)."
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   269
  else
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   270
    let
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   271
      val instance = instance_of thy name (morph $> stem $> export);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   272
    in
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   273
      if redundant_ident thy marked (name, instance) then (deps, marked)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   274
      else
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   275
        let
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   276
          val full_morph = morph $> compose_mixins mixins $> stem;
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   277
          (* no inheritance of mixins, regardless of requests by clients *)
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   278
          val dependencies = dependencies_of thy name |>
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   279
            map (fn ((name', (morph', export')), serial') =>
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   280
              (name', morph' $> export', mixins_of thy name serial'));
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   281
          val marked' = insert_idents (name, instance) marked;
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   282
          val (deps', marked'') =
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   283
            fold_rev (add thy (depth + 1) full_morph export) dependencies
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   284
              ([], marked');
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   285
        in
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   286
          ((name, full_morph) :: deps' @ deps, marked'')
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   287
        end
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   288
    end;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   289
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   290
in
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   291
33541
e716c6ad381b Removed obsolete code.
ballarin
parents: 33522
diff changeset
   292
(* Note that while identifiers always have the external (exported) view, activate_dep
46870
wenzelm
parents: 46862
diff changeset
   293
   is presented with the internal view. *)
32803
fc02b4b9eccc Archive registrations by external view.
ballarin
parents: 32800
diff changeset
   294
fc02b4b9eccc Archive registrations by external view.
ballarin
parents: 32800
diff changeset
   295
fun roundup thy activate_dep export (name, morph) (marked, input) =
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   296
  let
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   297
    (* Find all dependencies including new ones (which are dependencies enriching
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   298
      existing registrations). *)
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   299
    val (dependencies, marked') =
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   300
      add thy 0 Morphism.identity export (name, morph, []) ([], empty_idents);
32800
57fcca4e7c0e Improved comments and api names.
ballarin
parents: 32113
diff changeset
   301
    (* Filter out fragments from marked; these won't be activated. *)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   302
    val dependencies' = filter_out (fn (name, morph) =>
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   303
      redundant_ident thy marked (name, instance_of thy name (morph $> export))) dependencies;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   304
  in
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   305
    (merge_idents (marked, marked'), input |> fold_rev activate_dep dependencies')
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   306
  end;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   307
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   308
end;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   309
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   310
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   311
(*** Registrations: interpretations in theories or proof contexts ***)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   312
46860
fe8d6532e1c1 clarified total_ident_ord, swapping first argument back to normal (unlike e464f84f3680) -- NB: "fast" ord is erratic anyway;
wenzelm
parents: 46859
diff changeset
   313
val total_ident_ord = prod_ord fast_string_ord (list_ord Term_Ord.fast_term_ord);
fe8d6532e1c1 clarified total_ident_ord, swapping first argument back to normal (unlike e464f84f3680) -- NB: "fast" ord is erratic anyway;
wenzelm
parents: 46859
diff changeset
   314
fe8d6532e1c1 clarified total_ident_ord, swapping first argument back to normal (unlike e464f84f3680) -- NB: "fast" ord is erratic anyway;
wenzelm
parents: 46859
diff changeset
   315
structure Idtab = Table(type key = string * term list val ord = total_ident_ord);
37105
e464f84f3680 Store registrations in efficient data structure.
ballarin
parents: 37104
diff changeset
   316
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   317
structure Registrations = Generic_Data
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   318
(
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   319
  type T = ((morphism * morphism) * serial) Idtab.table * mixins;
37105
e464f84f3680 Store registrations in efficient data structure.
ballarin
parents: 37104
diff changeset
   320
    (* registrations, indexed by locale name and instance;
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   321
       unique registration serial points to mixin list *)
37105
e464f84f3680 Store registrations in efficient data structure.
ballarin
parents: 37104
diff changeset
   322
  val empty = (Idtab.empty, Inttab.empty);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   323
  val extend = I;
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   324
  fun merge ((reg1, mix1), (reg2, mix2)) : T =
45589
bb944d58ac19 simplified Locale.add_thmss, after partial evaluation of attributes;
wenzelm
parents: 45587
diff changeset
   325
    (Idtab.join (fn id => fn ((_, s1), (_, s2)) =>
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   326
        if s1 = s2 then raise Idtab.SAME else raise Idtab.DUP id) (reg1, reg2),
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   327
      merge_mixins (mix1, mix2))
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   328
    handle Idtab.DUP id =>
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   329
      (* distinct interpretations with same base: merge their mixins *)
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   330
      let
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   331
        val (_, s1) = Idtab.lookup reg1 id |> the;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   332
        val (morph2, s2) = Idtab.lookup reg2 id |> the;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   333
        val reg2' = Idtab.update (id, (morph2, s1)) reg2;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   334
        val _ = warning "Removed duplicate interpretation after retrieving its mixins.";
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   335
        (* FIXME print interpretations,
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   336
           which is not straightforward without theory context *)
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   337
      in merge ((reg1, mix1), (reg2', rename_mixin (s2, s1) mix2)) end;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   338
    (* FIXME consolidate with dependencies, consider one data slot only *)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   339
);
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   340
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   341
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   342
(* Primitive operations *)
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   343
37104
3877a6c45d57 Avoid recomputation of registration instance for lookup.
ballarin
parents: 37103
diff changeset
   344
fun add_reg thy export (name, morph) =
37105
e464f84f3680 Store registrations in efficient data structure.
ballarin
parents: 37104
diff changeset
   345
  Registrations.map (apfst (Idtab.insert (K false)
e464f84f3680 Store registrations in efficient data structure.
ballarin
parents: 37104
diff changeset
   346
    ((name, instance_of thy name (morph $> export)), ((morph, export), serial ()))));
31988
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   347
36095
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   348
fun add_mixin serial' mixin =
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   349
  (* registration to be amended identified by its serial id *)
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   350
  Registrations.map (apsnd (insert_mixin serial' mixin));
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   351
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   352
fun get_mixins context (name, morph) =
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   353
  let
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   354
    val thy = Context.theory_of context;
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   355
    val (regs, mixins) = Registrations.get context;
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   356
  in
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   357
    (case Idtab.lookup regs (name, instance_of thy name morph) of
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   358
      NONE => []
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   359
    | SOME (_, serial) => lookup_mixins serial mixins)
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   360
  end;
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   361
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   362
fun collect_mixins context (name, morph) =
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   363
  let
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   364
    val thy = Context.theory_of context;
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   365
  in
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   366
    roundup thy (fn dep => fn mixins => merge (eq_snd op =) (mixins, get_mixins context dep))
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   367
      Morphism.identity (name, morph)
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   368
      (insert_idents (name, instance_of thy name morph) empty_idents, [])
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   369
    |> snd |> filter (snd o fst)  (* only inheritable mixins *)
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   370
    |> (fn x => merge (eq_snd op =) (x, get_mixins context (name, morph)))
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   371
    |> compose_mixins
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   372
  end;
36091
055934ed89b0 A rough implementation of full mixin inheritance; additional unit tests.
ballarin
parents: 36090
diff changeset
   373
46858
wenzelm
parents: 45601
diff changeset
   374
fun get_registrations context select =
wenzelm
parents: 45601
diff changeset
   375
  Registrations.get context
37491
b5989aa32358 Proper treatment of non-inherited mixins.
ballarin
parents: 37471
diff changeset
   376
  |>> Idtab.dest |>> select
36095
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   377
  (* with inherited mixins *)
37105
e464f84f3680 Store registrations in efficient data structure.
ballarin
parents: 37104
diff changeset
   378
  |-> (fn regs => fn _ => map (fn ((name, _), ((base, export) ,_)) =>
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   379
    (name, base $> (collect_mixins context (name, base $> export)) $> export)) regs);
36091
055934ed89b0 A rough implementation of full mixin inheritance; additional unit tests.
ballarin
parents: 36090
diff changeset
   380
38111
77f56abf158b More consistent naming of locale api functions.
ballarin
parents: 38109
diff changeset
   381
fun registrations_of context name =
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   382
  get_registrations context (filter (curry (op =) name o fst o fst));
37491
b5989aa32358 Proper treatment of non-inherited mixins.
ballarin
parents: 37471
diff changeset
   383
46880
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   384
fun all_registrations_of context = get_registrations context I;
37973
2b4ff2518ebf get_registrations interface
haftmann
parents: 37897
diff changeset
   385
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   386
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   387
(*** Activate context elements of locale ***)
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   388
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   389
(* Declarations, facts and entire locale content *)
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   390
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   391
fun activate_syntax_decls (name, morph) context =
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   392
  let
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   393
    val thy = Context.theory_of context;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   394
    val {syntax_decls, ...} = the_locale thy name;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   395
  in
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   396
    context
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   397
    |> fold_rev (fn (decl, _) => decl morph) syntax_decls
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   398
  end;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   399
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   400
fun activate_notes activ_elem transfer context export' (name, morph) input =
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   401
  let
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   402
    val thy = Context.theory_of context;
46880
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   403
    val mixin =
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   404
      (case export' of
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   405
        NONE => Morphism.identity
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   406
      | SOME export => collect_mixins context (name, morph $> export) $> export);
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   407
    val morph' = transfer input $> morph $> mixin;
46881
b81f1de9f57e activate_notes in parallel -- to speedup main operation of locale interpretation;
wenzelm
parents: 46880
diff changeset
   408
    val notes' =
46978
23a59a495934 tuned grouping -- merely indicate order of magnitude;
wenzelm
parents: 46922
diff changeset
   409
      grouped 100 Par_List.map
46893
d5bb4c212df1 some grouping of Par_List operations, to adjust granularity;
wenzelm
parents: 46881
diff changeset
   410
        (Element.transform_ctxt morph' o Notes o #1) (#notes (the_locale thy name));
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   411
  in
46880
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   412
    fold_rev (fn elem => fn res => activ_elem (Element.transform_ctxt (transfer res) elem) res)
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   413
      notes' input
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   414
  end;
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   415
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   416
fun activate_all name thy activ_elem transfer (marked, input) =
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   417
  let
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   418
    val {parameters = (_, params), spec = (asm, defs), ...} = the_locale thy name;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   419
    val input' = input |>
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   420
      (not (null params) ?
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   421
        activ_elem (Fixes (map (fn ((x, T), mx) => (Binding.name x, SOME T, mx)) params))) |>
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   422
      (* FIXME type parameters *)
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   423
      (case asm of SOME A => activ_elem (Assumes [(Attrib.empty_binding, [(A, [])])]) | _ => I) |>
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   424
      (not (null defs) ?
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   425
        activ_elem (Defines (map (fn def => (Attrib.empty_binding, (def, []))) defs)));
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   426
    val activate = activate_notes activ_elem transfer (Context.Theory thy) NONE;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   427
  in
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   428
    roundup thy activate Morphism.identity (name, Morphism.identity) (marked, input')
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   429
  end;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   430
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   431
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   432
(** Public activation functions **)
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   433
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   434
fun activate_declarations dep = Context.proof_map (fn context =>
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   435
  let
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   436
    val thy = Context.theory_of context;
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   437
  in
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   438
    roundup thy activate_syntax_decls Morphism.identity dep (Idents.get context, context)
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   439
    |-> Idents.put
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   440
  end);
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   441
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   442
fun activate_facts export dep context =
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   443
  let
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   444
    val thy = Context.theory_of context;
45587
wenzelm
parents: 45492
diff changeset
   445
    val activate =
wenzelm
parents: 45492
diff changeset
   446
      activate_notes Element.init (Element.transfer_morphism o Context.theory_of) context export;
38316
88e774d09fbc Revert performance improvement of 8ed3a5fb4d25 since it breaks notes element declarations.
ballarin
parents: 38211
diff changeset
   447
  in
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   448
    roundup thy activate (the_default Morphism.identity export) dep (Idents.get context, context)
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   449
    |-> Idents.put
38316
88e774d09fbc Revert performance improvement of 8ed3a5fb4d25 since it breaks notes element declarations.
ballarin
parents: 38211
diff changeset
   450
  end;
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   451
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   452
fun init name thy =
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   453
  activate_all name thy Element.init (Element.transfer_morphism o Context.theory_of)
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   454
    (empty_idents, Context.Proof (Proof_Context.init_global thy))
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   455
  |-> Idents.put |> Context.proof_of;
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   456
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   457
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   458
(*** Add and extend registrations ***)
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   459
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   460
fun amend_registration (name, morph) mixin export context =
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   461
  let
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   462
    val thy = Context.theory_of context;
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   463
    val regs = Registrations.get context |> fst;
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   464
    val base = instance_of thy name (morph $> export);
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   465
  in
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   466
    (case Idtab.lookup regs (name, base) of
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   467
      NONE =>
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   468
        error ("No interpretation of locale " ^
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   469
          quote (extern thy name) ^ " with\nparameter instantiation " ^
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   470
          space_implode " " (map (quote o Syntax.string_of_term_global thy) base) ^
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   471
          " available")
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   472
    | SOME (_, serial') => add_mixin serial' mixin context)
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   473
  end;
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   474
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   475
(* Note that a registration that would be subsumed by an existing one will not be
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   476
   generated, and it will not be possible to amend it. *)
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   477
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   478
fun add_registration (name, base_morph) mixin export context =
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   479
  let
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   480
    val thy = Context.theory_of context;
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   481
    val mix = (case mixin of NONE => Morphism.identity | SOME (mix, _) => mix);
37102
785348a83a2b Cleaner implementation of sublocale command.
ballarin
parents: 37101
diff changeset
   482
    val morph = base_morph $> mix;
785348a83a2b Cleaner implementation of sublocale command.
ballarin
parents: 37101
diff changeset
   483
    val inst = instance_of thy name morph;
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   484
  in
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   485
    if redundant_ident thy (Idents.get context) (name, inst)
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   486
    then context  (* FIXME amend mixins? *)
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   487
    else
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   488
      (Idents.get context, context)
36095
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   489
      (* add new registrations with inherited mixins *)
46870
wenzelm
parents: 46862
diff changeset
   490
      |> (snd o roundup thy (add_reg thy export) export (name, morph))
36095
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   491
      (* add mixin *)
46870
wenzelm
parents: 46862
diff changeset
   492
      |> (case mixin of NONE => I | SOME mixin => amend_registration (name, morph) mixin export)
36095
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   493
      (* activate import hierarchy as far as not already active *)
38316
88e774d09fbc Revert performance improvement of 8ed3a5fb4d25 since it breaks notes element declarations.
ballarin
parents: 38211
diff changeset
   494
      |> activate_facts (SOME export) (name, morph)
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   495
  end;
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   496
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   497
31988
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   498
(*** Dependencies ***)
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   499
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   500
(*
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   501
fun amend_dependency loc (name, morph) mixin export thy =
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   502
  let
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   503
    val deps = dependencies_of thy loc;
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   504
  in
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   505
    case AList.lookup (fn ((name, morph), ((name', (morph', _)), _)) =>
46860
fe8d6532e1c1 clarified total_ident_ord, swapping first argument back to normal (unlike e464f84f3680) -- NB: "fast" ord is erratic anyway;
wenzelm
parents: 46859
diff changeset
   506
      total_ident_ord ((name, instance_of thy name morph), (name', instance_of thy name' morph')) = EQUAL) deps (name, morph) of
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   507
        NONE => error ("Locale " ^
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   508
          quote (extern thy name) ^ " with\parameter instantiation " ^
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   509
          space_implode " " (map (quote o Syntax.string_of_term_global thy) morph) ^
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   510
          " not a sublocale of " ^ quote (extern thy loc))
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   511
      | SOME (_, serial') => change_locale ...
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   512
  end;
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   513
*)
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   514
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 40782
diff changeset
   515
fun add_dependency loc (name, morph) mixin export thy =
37102
785348a83a2b Cleaner implementation of sublocale command.
ballarin
parents: 37101
diff changeset
   516
  let
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   517
    val serial' = serial ();
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   518
    val thy' = thy |>
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   519
      (change_locale loc o apsnd)
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   520
        (apfst (cons ((name, (morph, export)), serial')) #>
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   521
          apsnd (case mixin of NONE => I | SOME mixin => insert_mixin serial' mixin));
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   522
    val context' = Context.Theory thy';
46858
wenzelm
parents: 45601
diff changeset
   523
    val (_, regs) =
wenzelm
parents: 45601
diff changeset
   524
      fold_rev (roundup thy' cons export)
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   525
        (registrations_of context' loc) (Idents.get context', []);
37102
785348a83a2b Cleaner implementation of sublocale command.
ballarin
parents: 37101
diff changeset
   526
  in
785348a83a2b Cleaner implementation of sublocale command.
ballarin
parents: 37101
diff changeset
   527
    thy'
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   528
    |> fold_rev (fn dep => Context.theory_map (add_registration dep NONE export)) regs
37102
785348a83a2b Cleaner implementation of sublocale command.
ballarin
parents: 37101
diff changeset
   529
  end;
31988
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   530
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   531
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   532
(*** Storing results ***)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   533
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   534
(* Theorems *)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   535
46906
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   536
fun add_thmss _ _ [] ctxt = ctxt
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   537
  | add_thmss loc kind facts ctxt =
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   538
      ctxt
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   539
      |> Proof_Context.note_thmss kind
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   540
        (Attrib.map_facts (map (Attrib.attribute_i (Proof_Context.theory_of ctxt))) facts)
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   541
      |> snd
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   542
      |> Proof_Context.background_theory
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   543
        ((change_locale loc o apfst o apsnd) (cons ((kind, facts), serial ())) #>
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   544
          (* Registrations *)
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   545
          (fn thy => fold_rev (fn (_, morph) =>
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   546
                let
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   547
                  val facts' = facts
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   548
                    |> Element.transform_facts morph
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   549
                    |> Attrib.map_facts (map (Attrib.attribute_i thy));
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   550
                in snd o Global_Theory.note_thmss kind facts' end)
3c1787d46935 suppress vacous notes elements, with subtle change of semantics: 'interpret' no longer pulls-in unnamed facts "by fact";
wenzelm
parents: 46893
diff changeset
   551
            (registrations_of (Context.Theory thy) loc) thy));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   552
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   553
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   554
(* Declarations *)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   555
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   556
fun add_declaration loc decl =
33643
b275f26a638b eliminated obsolete "internal" kind -- collapsed to unspecific "";
wenzelm
parents: 33541
diff changeset
   557
  add_thmss loc ""
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   558
    [((Binding.conceal Binding.empty,
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   559
        [Attrib.internal (fn phi => Thm.declaration_attribute (K (decl phi)))]),
33278
ba9f52f56356 conceal internal bindings;
wenzelm
parents: 33159
diff changeset
   560
      [([Drule.dummy_thm], [])])];
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   561
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   562
fun add_syntax_declaration loc decl =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   563
  Proof_Context.background_theory ((change_locale loc o apfst o apfst) (cons (decl, serial ())))
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   564
  #> add_declaration loc decl;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   565
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   566
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   567
(*** Reasoning about locales ***)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   568
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   569
(* Storage for witnesses, intro and unfold rules *)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   570
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33278
diff changeset
   571
structure Thms = Generic_Data
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   572
(
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   573
  type T = thm list * thm list * thm list;
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   574
  val empty = ([], [], []);
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   575
  val extend = I;
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33278
diff changeset
   576
  fun merge ((witnesses1, intros1, unfolds1), (witnesses2, intros2, unfolds2)) =
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   577
   (Thm.merge_thms (witnesses1, witnesses2),
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   578
    Thm.merge_thms (intros1, intros2),
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   579
    Thm.merge_thms (unfolds1, unfolds2));
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   580
);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   581
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   582
val get_witnesses = #1 o Thms.get o Context.Proof;
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   583
val get_intros = #2 o Thms.get o Context.Proof;
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   584
val get_unfolds = #3 o Thms.get o Context.Proof;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   585
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   586
val witness_add =
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   587
  Thm.declaration_attribute (fn th => Thms.map (fn (x, y, z) => (Thm.add_thm th x, y, z)));
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   588
val intro_add =
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   589
  Thm.declaration_attribute (fn th => Thms.map (fn (x, y, z) => (x, Thm.add_thm th y, z)));
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   590
val unfold_add =
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   591
  Thm.declaration_attribute (fn th => Thms.map (fn (x, y, z) => (x, y, Thm.add_thm th z)));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   592
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   593
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   594
(* Tactics *)
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   595
36093
0880493627ca Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
ballarin
parents: 36091
diff changeset
   596
fun gen_intro_locales_tac intros_tac eager ctxt =
0880493627ca Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
ballarin
parents: 36091
diff changeset
   597
  intros_tac
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   598
    (get_witnesses ctxt @ get_intros ctxt @ (if eager then get_unfolds ctxt else []));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   599
36093
0880493627ca Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
ballarin
parents: 36091
diff changeset
   600
val intro_locales_tac = gen_intro_locales_tac Method.intros_tac;
0880493627ca Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
ballarin
parents: 36091
diff changeset
   601
val try_intro_locales_tac= gen_intro_locales_tac Method.try_intros_tac;
0880493627ca Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
ballarin
parents: 36091
diff changeset
   602
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   603
val _ = Context.>> (Context.map_theory
36093
0880493627ca Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
ballarin
parents: 36091
diff changeset
   604
 (Method.setup (Binding.name "intro_locales") (Scan.succeed (METHOD o try_intro_locales_tac false))
30515
bca05b17b618 simplified method setup;
wenzelm
parents: 30510
diff changeset
   605
    "back-chain introduction rules of locales without unfolding predicates" #>
36093
0880493627ca Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
ballarin
parents: 36091
diff changeset
   606
  Method.setup (Binding.name "unfold_locales") (Scan.succeed (METHOD o try_intro_locales_tac true))
30515
bca05b17b618 simplified method setup;
wenzelm
parents: 30510
diff changeset
   607
    "back-chain all introduction rules of locales"));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   608
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   609
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   610
(*** diagnostic commands and interfaces ***)
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   611
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   612
val all_locales = Symtab.keys o snd o Locales.get;
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   613
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   614
fun print_locales thy =
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 41435
diff changeset
   615
  Pretty.strs ("locales:" ::
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   616
    map #1 (Name_Space.extern_table (Proof_Context.init_global thy) (Locales.get thy)))
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   617
  |> Pretty.writeln;
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   618
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   619
fun print_locale thy show_facts raw_name =
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   620
  let
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46906
diff changeset
   621
    val name = check thy raw_name;
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   622
    val ctxt = init name thy;
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   623
    fun cons_elem (elem as Notes _) = show_facts ? cons elem
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   624
      | cons_elem elem = cons elem;
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   625
    val elems =
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   626
      activate_all name thy cons_elem (K (Element.transfer_morphism thy)) (empty_idents, [])
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   627
      |> snd |> rev;
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   628
  in
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   629
    Pretty.big_list "locale elements:" (map (Pretty.chunks o Element.pretty_ctxt ctxt) elems)
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   630
    |> Pretty.writeln
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   631
  end;
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   632
38109
06fd1914b902 print_interps shows interpretations in proofs.
ballarin
parents: 38107
diff changeset
   633
fun print_registrations ctxt raw_name =
06fd1914b902 print_interps shows interpretations in proofs.
ballarin
parents: 38107
diff changeset
   634
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   635
    val thy = Proof_Context.theory_of ctxt;
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46906
diff changeset
   636
    val name = check thy raw_name;
38109
06fd1914b902 print_interps shows interpretations in proofs.
ballarin
parents: 38107
diff changeset
   637
  in
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   638
    (case registrations_of (Context.Proof ctxt) (* FIXME *) name of
46859
79f712a9a815 misc tuning and simplification;
wenzelm
parents: 46858
diff changeset
   639
      [] => Pretty.str "no interpretations"
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   640
    | regs => Pretty.big_list "interpretations:" (map (pretty_reg ctxt) (rev regs)))
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   641
  end |> Pretty.writeln;
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   642
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   643
fun print_dependencies ctxt clean export insts =
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   644
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   645
    val thy = Proof_Context.theory_of ctxt;
46862
ef45df55127d clarified idents for activated locales, with subtle change of semantics: insert/merge wrt. term equality, but avoid redundant_ident on retrieval;
wenzelm
parents: 46860
diff changeset
   646
    val idents = if clean then empty_idents else Idents.get (Context.Proof ctxt);
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   647
  in
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   648
    (case fold (roundup thy cons export) insts (idents, []) |> snd of
46859
79f712a9a815 misc tuning and simplification;
wenzelm
parents: 46858
diff changeset
   649
      [] => Pretty.str "no dependencies"
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   650
    | deps => Pretty.big_list "dependencies:" (map (pretty_reg ctxt) (rev deps)))
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   651
  end |> Pretty.writeln;
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   652
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   653
fun locale_deps thy =
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   654
  let
46858
wenzelm
parents: 45601
diff changeset
   655
    val names = all_locales thy;
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   656
    fun add_locale_node name =
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   657
      let
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   658
        val params = params_of thy name;
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   659
        val axioms =
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   660
          these (Option.map (Logic.strip_imp_prems o Thm.prop_of) (fst (intros_of thy name)));
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   661
        val registrations =
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   662
          map (instance_of thy name o snd) (registrations_of (Context.Theory thy) name);
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   663
      in
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   664
        Graph.new_node (name, {params = params, axioms = axioms, registrations = registrations})
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   665
      end;
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   666
    fun add_locale_deps name =
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   667
      let
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   668
        val dependencies =
45587
wenzelm
parents: 45492
diff changeset
   669
          map (apsnd (instance_of thy name o op $>) o fst) (dependencies_of thy name);
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   670
      in
46858
wenzelm
parents: 45601
diff changeset
   671
        fold (fn (super, ts) => fn (gr, deps) =>
wenzelm
parents: 45601
diff changeset
   672
         (gr |> Graph.add_edge (super, name),
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   673
          deps |> Symtab.map_default (super, Symtab.empty) (Symtab.cons_list (name, ts))))
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   674
            dependencies
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   675
      end;
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   676
  in
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   677
    Graph.empty
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   678
    |> fold add_locale_node names
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   679
    |> rpair Symtab.empty
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   680
    |> fold add_locale_deps names
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   681
  end;
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   682
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   683
end;