src/Pure/Isar/locale.ML
author wenzelm
Thu, 18 May 2023 17:21:29 +0200
changeset 78072 001739cb8d08
parent 78065 11d6a1e62841
child 78075 15ab73949713
permissions -rw-r--r--
clarified signature: more explicit types;
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
66581
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
     8
meta-logic.  Furthermore, structured composition of contexts (with merge
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
     9
and instantiation) is provided, as well as type-inference of the
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    10
signature parts and predicate definitions of the specification text.
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    11
66581
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    12
Interpretation enables the transfer of declarations and theorems to other
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    13
contexts, namely those defined by theories, structured proofs and locales
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    14
themselves.
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    15
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    16
A comprehensive account of locales is available:
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    17
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    18
[1] Clemens Ballarin. Locales: a module system for mathematical theories.
66588
e0e3065c63ba eliminated suspicious Unicode;
wenzelm
parents: 66581
diff changeset
    19
    Journal of Automated Reasoning, 52(2):123-153, 2014.
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    20
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    21
See also:
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    22
66581
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    23
[2] Clemens Ballarin. Locales and Locale Expressions in Isabelle/Isar.
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    24
    In Stefano Berardi et al., Types for Proofs and Programs: International
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    25
    Workshop, TYPES 2003, Torino, Italy, LNCS 3085, pages 34-50, 2004.
66581
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    26
[3] Clemens Ballarin. Interpretation of Locales in Isabelle: Managing
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    27
    Dependencies between Locales. Technical Report TUM-I0607, Technische
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    28
    Universitaet Muenchen, 2006.
66581
72bb0eefd148 Update header of locale.ML
ballarin
parents: 66333
diff changeset
    29
[4] Clemens Ballarin. Interpretation of Locales in Isabelle: Theories and
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    30
    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
    31
    pages 31-43, 2006.
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    32
*)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    33
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    34
signature LOCALE =
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    35
sig
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29544
diff changeset
    36
  (* Locale specification *)
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30223
diff changeset
    37
  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
    38
    (string * sort) list * ((string * typ) * mixfix) list ->
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    39
    term option * term list ->
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
    40
    thm option * thm option -> thm list ->
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 58028
diff changeset
    41
    Element.context_i list ->
78072
001739cb8d08 clarified signature: more explicit types;
wenzelm
parents: 78065
diff changeset
    42
    Morphism.declaration list ->
67652
11716a084cae clarified signature;
wenzelm
parents: 67649
diff changeset
    43
    (string * Attrib.fact list) list ->
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    44
    (string * morphism) list -> theory -> theory
68862
47e9912c53c3 export locale content;
wenzelm
parents: 68861
diff changeset
    45
  val locale_space: theory -> Name_Space.T
55728
aaf024d63b35 reverted c05d3e22adaf: Locale.intern is still required by AFP/Simpl;
wenzelm
parents: 55695
diff changeset
    46
  val intern: theory -> xstring -> string
45488
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 45390
diff changeset
    47
  val check: theory -> xstring * Position.T -> string
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    48
  val extern: theory -> string -> xstring
53041
d51bac27d4a0 more markup -- avoid old Locale.extern;
wenzelm
parents: 52788
diff changeset
    49
  val markup_name: Proof.context -> string -> string
52103
fb577a13abbd more markup;
wenzelm
parents: 51727
diff changeset
    50
  val pretty_name: Proof.context -> string -> Pretty.T
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
    51
  val defined: theory -> string -> bool
69068
6ce325825ad7 tuned signature;
wenzelm
parents: 69063
diff changeset
    52
  val parameters_of: theory -> string -> (string * sort) list * ((string * typ) * mixfix) list
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30754
diff changeset
    53
  val params_of: theory -> string -> ((string * typ) * mixfix) list
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
    54
  val intros_of: theory -> string -> thm option * thm option
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
    55
  val axioms_of: theory -> string -> thm list
29544
bc50244cd1d7 exported depedencies; tuned signature
haftmann
parents: 29502
diff changeset
    56
  val instance_of: theory -> string -> morphism -> term list
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    57
  val specification_of: theory -> string -> term option * term list
68861
wenzelm
parents: 68856
diff changeset
    58
  val hyp_spec_of: theory -> string -> Element.context_i list
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    59
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    60
  (* Storing results *)
67654
49f45fcd335b clarified signature;
wenzelm
parents: 67653
diff changeset
    61
  val add_facts: string -> string -> Attrib.fact list -> Proof.context -> Proof.context
78072
001739cb8d08 clarified signature: more explicit types;
wenzelm
parents: 78065
diff changeset
    62
  val add_declaration: string -> bool -> Morphism.declaration -> Proof.context -> Proof.context
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    63
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    64
  (* Activation *)
67666
wenzelm
parents: 67664
diff changeset
    65
  val activate_facts: morphism option -> string * morphism -> Context.generic -> Context.generic
30764
3e3e7aa0cc7a simplified Locale.activate operations, using generic context;
wenzelm
parents: 30763
diff changeset
    66
  val activate_declarations: string * morphism -> Proof.context -> Proof.context
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    67
  val init: string -> theory -> Proof.context
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    68
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    69
  (* Reasoning about locales *)
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    70
  val get_witnesses: Proof.context -> thm list
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    71
  val get_intros: Proof.context -> thm list
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    72
  val get_unfolds: Proof.context -> thm list
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    73
  val witness_add: attribute
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    74
  val intro_add: attribute
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
    75
  val unfold_add: attribute
69017
0c1d7a414185 clarified signature;
wenzelm
parents: 69016
diff changeset
    76
  val intro_locales_tac: {strict: bool, eager: bool} -> Proof.context -> thm list -> tactic
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    77
31988
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
    78
  (* Registrations and dependencies *)
69058
f4fb93197670 tuned signature;
wenzelm
parents: 69057
diff changeset
    79
  type registration = {inst: string * morphism, mixin: (morphism * bool) option, export: morphism}
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
    80
  val amend_registration: registration -> Context.generic -> Context.generic
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
    81
  val add_registration: registration -> Context.generic -> Context.generic
38111
77f56abf158b More consistent naming of locale api functions.
ballarin
parents: 38109
diff changeset
    82
  val registrations_of: Context.generic -> string -> (string * morphism) list
73845
bfce186331be more succint interfaces
haftmann
parents: 72953
diff changeset
    83
  val add_dependency: string -> registration -> theory -> theory
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    84
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    85
  (* Diagnostic *)
69029
aec64b88e708 clarified locale content: proper args with types for interpretation/axioms and typargs derived from the result;
wenzelm
parents: 69017
diff changeset
    86
  val get_locales: theory -> string list
77738
e64428b6b170 more operations, notably for profiling;
wenzelm
parents: 74563
diff changeset
    87
  val locale_notes: theory -> string -> (string * Attrib.fact list) list
69059
70f9826753f6 tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69058
diff changeset
    88
  val pretty_locales: theory -> bool -> Pretty.T
69057
56c6378ebaea tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69056
diff changeset
    89
  val pretty_locale: theory -> bool -> string -> Pretty.T
69059
70f9826753f6 tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69058
diff changeset
    90
  val pretty_registrations: Proof.context -> string -> Pretty.T
49569
7b6aaf446496 tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
wenzelm
parents: 47249
diff changeset
    91
  val pretty_locale_deps: theory -> {name: string, parents: string list, body: Pretty.T} list
69063
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
    92
  type locale_dependency =
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
    93
    {source: string, target: string, prefix: (string * bool) list, morphism: morphism,
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
    94
      pos: Position.T, serial: serial}
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
    95
  val dest_dependencies: theory list -> theory -> locale_dependency list
70622
2fb2e7661e16 Integrate locale activation fallback diagnostics with 'trace_locales'.
ballarin
parents: 70608
diff changeset
    96
  val tracing : Proof.context -> string -> unit
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    97
end;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    98
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
    99
structure Locale: LOCALE =
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   100
struct
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   101
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   102
datatype ctxt = datatype Element.ctxt;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   103
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   104
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   105
(*** Locales ***)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   106
69063
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   107
type dep = {name: string, morphisms: morphism * morphism, pos: Position.T, serial: serial};
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   108
fun eq_dep (dep1: dep, dep2: dep) = #serial dep1 = #serial dep2;
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   109
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   110
fun transfer_dep thy ({name, morphisms, pos, serial}: dep) : dep =
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   111
  {name = name, morphisms = apply2 (Morphism.set_context thy) morphisms, pos = pos, serial = serial};
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   112
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   113
fun make_dep (name, morphisms) : dep =
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   114
 {name = name,
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   115
  morphisms = apply2 Morphism.reset_context morphisms,
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   116
  pos = Position.thread_data (),
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   117
  serial = serial ()};
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   118
69046
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   119
(*table of mixin lists, per list mixins in reverse order of declaration;
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   120
  lists indexed by registration/dependency serial,
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   121
  entries for empty lists may be omitted*)
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   122
type mixin = (morphism * bool) * serial;
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   123
type mixins = mixin list Inttab.table;
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   124
69047
17f9f50e2dbe tuned signature: canonical argument order;
wenzelm
parents: 69046
diff changeset
   125
fun lookup_mixins (mixins: mixins) serial' = Inttab.lookup_list mixins serial';
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   126
69046
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   127
val merge_mixins: mixins * mixins -> mixins = Inttab.merge_list (eq_snd op =);
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   128
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   129
fun insert_mixin serial' (morph, b) : mixins -> mixins =
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   130
  Inttab.cons_list (serial', ((Morphism.reset_context morph, b), serial ()));
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   131
69046
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   132
fun rename_mixin (old, new) (mixins: mixins) =
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   133
  (case Inttab.lookup mixins old of
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   134
    NONE => mixins
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   135
  | SOME mixin => Inttab.delete old mixins |> Inttab.update_new (new, mixin));
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   136
69046
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   137
fun compose_mixins (mixins: mixin list) =
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   138
  fold_rev Morphism.compose (map (fst o fst) mixins) Morphism.identity;
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   139
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   140
datatype locale = Loc of {
63029
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   141
  (* static part *)
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   142
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   143
  (*type and term parameters*)
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30754
diff changeset
   144
  parameters: (string * sort) list * ((string * typ) * mixfix) list,
63029
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   145
  (*assumptions (as a single predicate expression) and defines*)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   146
  spec: term option * term list,
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   147
  intros: thm option * thm option,
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   148
  axioms: thm list,
63029
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   149
  (*diagnostic device: theorem part of hypothetical body as specified by the user*)
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 58028
diff changeset
   150
  hyp_spec: Element.context_i list,
63029
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   151
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   152
  (* dynamic part *)
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   153
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   154
  (*syntax declarations*)
78072
001739cb8d08 clarified signature: more explicit types;
wenzelm
parents: 78065
diff changeset
   155
  syntax_decls: (Morphism.declaration * serial) list,
63029
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   156
  (*theorem declarations*)
67652
11716a084cae clarified signature;
wenzelm
parents: 67649
diff changeset
   157
  notes: ((string * Attrib.fact list) * serial) list,
63029
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   158
  (*locale dependencies (sublocale relation) in reverse order*)
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   159
  dependencies: dep list,
63029
8b830d2bf94c tuned comments;
wenzelm
parents: 61820
diff changeset
   160
  (*mixin part of dependencies*)
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   161
  mixins: mixins
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   162
};
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   163
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 58028
diff changeset
   164
fun mk_locale ((parameters, spec, intros, axioms, hyp_spec),
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   165
    ((syntax_decls, notes), (dependencies, mixins))) =
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 58028
diff changeset
   166
  Loc {parameters = parameters, spec = spec, intros = intros, axioms = axioms, hyp_spec = hyp_spec,
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   167
    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
   168
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 58028
diff changeset
   169
fun map_locale f (Loc {parameters, spec, intros, axioms, hyp_spec,
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   170
    syntax_decls, notes, dependencies, mixins}) =
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 58028
diff changeset
   171
  mk_locale (f ((parameters, spec, intros, axioms, hyp_spec),
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   172
    ((syntax_decls, notes), (dependencies, mixins))));
30754
c896167de3d5 minor tuning;
wenzelm
parents: 30725
diff changeset
   173
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   174
fun merge_locale
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 58028
diff changeset
   175
 (Loc {parameters, spec, intros, axioms, hyp_spec, syntax_decls, notes, dependencies, mixins},
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   176
  Loc {syntax_decls = syntax_decls', notes = notes',
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   177
      dependencies = dependencies', mixins = mixins', ...}) =
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   178
    mk_locale
59296
002d817b4c37 formal pretty bodies for class specifications, accepting additional formal bookkeeping in locale.ML
haftmann
parents: 58028
diff changeset
   179
      ((parameters, spec, intros, axioms, hyp_spec),
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 33643
diff changeset
   180
        ((merge (eq_snd op =) (syntax_decls, syntax_decls'),
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   181
          merge (eq_snd op =) (notes, notes')),
69063
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   182
            (merge eq_dep (dependencies, dependencies'),
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   183
              (merge_mixins (mixins, mixins')))));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   184
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33519
diff changeset
   185
structure Locales = Theory_Data
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   186
(
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33092
diff changeset
   187
  type T = locale Name_Space.table;
74112
d0527bb2e590 more uniform signatures in ML and Scala;
wenzelm
parents: 73845
diff changeset
   188
  val empty : T = Name_Space.empty_table Markup.localeN;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33519
diff changeset
   189
  val merge = Name_Space.join_tables (K merge_locale);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   190
);
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   191
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 55763
diff changeset
   192
val locale_space = Name_Space.space_of_table o Locales.get;
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 55763
diff changeset
   193
val intern = Name_Space.intern o locale_space;
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46978
diff changeset
   194
fun check thy = #1 o Name_Space.check (Context.Theory thy) (Locales.get thy);
53041
d51bac27d4a0 more markup -- avoid old Locale.extern;
wenzelm
parents: 52788
diff changeset
   195
74559
9189d949abb9 clarified modules;
wenzelm
parents: 74152
diff changeset
   196
val _ = Theory.setup
9189d949abb9 clarified modules;
wenzelm
parents: 74152
diff changeset
   197
 (ML_Antiquotation.inline_embedded \<^binding>\<open>locale\<close>
74563
042041c0ebeb clarified modules;
wenzelm
parents: 74561
diff changeset
   198
   (Args.theory -- Scan.lift Parse.embedded_position >>
74559
9189d949abb9 clarified modules;
wenzelm
parents: 74152
diff changeset
   199
      (ML_Syntax.print_string o uncurry check)));
9189d949abb9 clarified modules;
wenzelm
parents: 74152
diff changeset
   200
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 55763
diff changeset
   201
fun extern thy = Name_Space.extern (Proof_Context.init_global thy) (locale_space thy);
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   202
53041
d51bac27d4a0 more markup -- avoid old Locale.extern;
wenzelm
parents: 52788
diff changeset
   203
fun markup_extern ctxt =
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 55763
diff changeset
   204
  Name_Space.markup_extern ctxt (locale_space (Proof_Context.theory_of ctxt));
53041
d51bac27d4a0 more markup -- avoid old Locale.extern;
wenzelm
parents: 52788
diff changeset
   205
d51bac27d4a0 more markup -- avoid old Locale.extern;
wenzelm
parents: 52788
diff changeset
   206
fun markup_name ctxt name = markup_extern ctxt name |-> Markup.markup;
d51bac27d4a0 more markup -- avoid old Locale.extern;
wenzelm
parents: 52788
diff changeset
   207
fun pretty_name ctxt name = markup_extern ctxt name |> Pretty.mark_str;
52103
fb577a13abbd more markup;
wenzelm
parents: 51727
diff changeset
   208
59884
bbf49d7dfd6f tuned signature;
wenzelm
parents: 59859
diff changeset
   209
val get_locale = Name_Space.lookup o Locales.get;
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 55763
diff changeset
   210
val defined = is_some oo get_locale;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   211
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   212
fun the_locale thy name =
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   213
  (case get_locale thy name of
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   214
    SOME (Loc loc) => loc
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   215
  | NONE => error ("Unknown locale " ^ quote name));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   216
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   217
fun register_locale
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   218
    binding parameters spec intros axioms hyp_spec 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
   219
  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
   220
    (binding,
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   221
      mk_locale ((parameters, spec, (apply2 o Option.map) Thm.trim_context intros,
78041
1828b174768e proper Thm.trim_context / Thm.transfer;
wenzelm
parents: 77895
diff changeset
   222
          map Thm.trim_context axioms,
78064
4e865c45458b clarified transfer / trim_context on persistent Token.source (e.g. attribute expressions): actually set/reset implicit context;
wenzelm
parents: 78060
diff changeset
   223
          map Element.trim_context_ctxt hyp_spec),
78041
1828b174768e proper Thm.trim_context / Thm.transfer;
wenzelm
parents: 77895
diff changeset
   224
        ((map (fn decl => (decl, serial ())) syntax_decls,
1828b174768e proper Thm.trim_context / Thm.transfer;
wenzelm
parents: 77895
diff changeset
   225
          map (fn (a, facts) => ((a, map Attrib.trim_context_fact facts), serial ())) notes),
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   226
          (map (fn (name, morph) => make_dep (name, (morph, Morphism.identity))) dependencies,
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   227
            Inttab.empty)))) #> snd);
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   228
          (* FIXME Morphism.identity *)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   229
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   230
fun change_locale name =
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 55763
diff changeset
   231
  Locales.map o Name_Space.map_table_entry name o map_locale o apsnd;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   232
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   233
68862
47e9912c53c3 export locale content;
wenzelm
parents: 68861
diff changeset
   234
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   235
(** Primitive operations **)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   236
69068
6ce325825ad7 tuned signature;
wenzelm
parents: 69063
diff changeset
   237
fun parameters_of thy = #parameters o the_locale thy;
6ce325825ad7 tuned signature;
wenzelm
parents: 69063
diff changeset
   238
val params_of = #2 oo parameters_of;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   239
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   240
fun intros_of thy = (apply2 o Option.map) (Thm.transfer thy) o #intros o the_locale thy;
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   241
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   242
fun axioms_of thy = map (Thm.transfer thy) o #axioms o the_locale thy;
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29392
diff changeset
   243
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   244
fun instance_of thy name morph = params_of thy name |>
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   245
  map (Morphism.term (Morphism.set_context thy morph) o Free o #1);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   246
29392
aa3a30b625d1 tuned signature; internal code reorganisation
haftmann
parents: 29363
diff changeset
   247
fun specification_of thy = #spec o the_locale thy;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   248
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   249
fun hyp_spec_of thy = map (Element.transfer_ctxt thy) o #hyp_spec o the_locale thy;
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   250
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   251
fun dependencies_of thy = map (transfer_dep thy) o #dependencies o the_locale thy;
68861
wenzelm
parents: 68856
diff changeset
   252
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   253
fun mixins_of thy name serial =
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   254
  lookup_mixins (#mixins (the_locale thy name)) serial
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   255
  |> (map o apfst o apfst) (Morphism.set_context thy);
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   256
29544
bc50244cd1d7 exported depedencies; tuned signature
haftmann
parents: 29502
diff changeset
   257
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   258
(* Print instance and qualifiers *)
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   259
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   260
fun pretty_reg_inst ctxt qs (name, ts) =
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   261
  let
61731
cb142691ef44 Clarify locale qualifiers: output and tutorial.
ballarin
parents: 61093
diff changeset
   262
    fun print_qual (qual, mandatory) = qual ^ (if mandatory then "" else "?");
52431
7fa1245f50df tuned message;
wenzelm
parents: 52103
diff changeset
   263
    fun prt_quals qs = Pretty.str (space_implode "." (map print_qual qs));
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   264
    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
   265
    fun prt_term' t =
917b4b6ba3d2 turned show_sorts/show_types into proper configuration options;
wenzelm
parents: 38797
diff changeset
   266
      if Config.get ctxt show_types
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   267
      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
   268
        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
   269
      else prt_term t;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   270
    fun prt_inst ts =
52103
fb577a13abbd more markup;
wenzelm
parents: 51727
diff changeset
   271
      Pretty.block (Pretty.breaks (pretty_name ctxt name :: map prt_term' ts));
37133
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   272
  in
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   273
    (case qs of
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   274
      [] => prt_inst ts
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   275
    | 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
   276
  end;
1d048c6940c8 Merge mixins of distinct interpretations with same base.
ballarin
parents: 37105
diff changeset
   277
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   278
fun pretty_reg ctxt export (name, morph) =
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   279
  let
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   280
    val thy = Proof_Context.theory_of ctxt;
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   281
    val morph' = morph $> export;
69062
5eda37c06f42 tuned signature;
wenzelm
parents: 69061
diff changeset
   282
    val qs = Morphism.binding_prefix morph';
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   283
    val ts = instance_of thy name morph';
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   284
  in pretty_reg_inst ctxt qs (name, ts) end;
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   285
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   286
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   287
(*** Identifiers: activated locales in theory or proof context ***)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   288
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
   289
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
   290
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
   291
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
   292
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
   293
val merge_idents = Symtab.merge_list (eq_list (op aconv));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   294
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
   295
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
   296
  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
   297
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
   298
structure Idents = Generic_Data
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   299
(
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
  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
   301
  val empty = empty_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
   302
  val merge = merge_idents;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   303
);
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   304
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   305
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   306
(** Resolve locale dependencies in a depth-first fashion **)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   307
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   308
local
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   309
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   310
val roundup_bound = 120;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   311
51515
c3eb0b517ced Fix issue related to mixins in roundup.
ballarin
parents: 50301
diff changeset
   312
fun add thy depth stem export (name, morph) (deps, marked) =
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   313
  if depth > roundup_bound
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   314
  then error "Roundup bound exceeded (sublocale relation probably not terminating)."
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   315
  else
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   316
    let
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   317
      val instance = instance_of thy name (morph $> stem $> export);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   318
    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
   319
      if redundant_ident thy marked (name, instance) then (deps, marked)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   320
      else
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   321
        let
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   322
          (*no inheritance of mixins, regardless of requests by clients*)
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   323
          val dependencies =
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   324
            dependencies_of thy name |> map (fn dep as {morphisms = (morph', export'), ...} =>
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   325
              (#name dep, morph' $> export' $> compose_mixins (mixins_of thy name (#serial 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
   326
          val marked' = insert_idents (name, instance) marked;
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   327
          val (deps', marked'') =
51515
c3eb0b517ced Fix issue related to mixins in roundup.
ballarin
parents: 50301
diff changeset
   328
            fold_rev (add thy (depth + 1) (morph $> stem) export) dependencies
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   329
              ([], marked');
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   330
        in ((name, morph $> stem) :: deps' @ deps, marked'') end
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   331
    end;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   332
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   333
in
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   334
33541
e716c6ad381b Removed obsolete code.
ballarin
parents: 33522
diff changeset
   335
(* Note that while identifiers always have the external (exported) view, activate_dep
46870
wenzelm
parents: 46862
diff changeset
   336
   is presented with the internal view. *)
32803
fc02b4b9eccc Archive registrations by external view.
ballarin
parents: 32800
diff changeset
   337
fc02b4b9eccc Archive registrations by external view.
ballarin
parents: 32800
diff changeset
   338
fun roundup thy activate_dep export (name, morph) (marked, input) =
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   339
  let
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   340
    (* Find all dependencies including new ones (which are dependencies enriching
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   341
      existing registrations). *)
41272
b806a7678083 Add mixins to locale dependencies.
ballarin
parents: 41270
diff changeset
   342
    val (dependencies, marked') =
51515
c3eb0b517ced Fix issue related to mixins in roundup.
ballarin
parents: 50301
diff changeset
   343
      add thy 0 Morphism.identity export (name, morph) ([], empty_idents);
32800
57fcca4e7c0e Improved comments and api names.
ballarin
parents: 32113
diff changeset
   344
    (* Filter out fragments from marked; these won't be activated. *)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   345
    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
   346
      redundant_ident thy marked (name, instance_of thy name (morph $> export))) dependencies;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   347
  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
   348
    (merge_idents (marked, marked'), input |> fold_rev activate_dep dependencies')
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   349
  end;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   350
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   351
end;
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   352
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   353
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   354
(*** Registrations: interpretations in theories or proof contexts ***)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   355
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
   356
val total_ident_ord = prod_ord fast_string_ord (list_ord Term_Ord.fast_term_ord);
69051
3cda9402a22a tuned signature: more explicit types;
wenzelm
parents: 69050
diff changeset
   357
structure Idtab = Table(type key = string * term list val ord = total_ident_ord);
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
   358
69053
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   359
type reg = {morphisms: morphism * morphism, pos: Position.T, serial: serial};
77817
wenzelm
parents: 77738
diff changeset
   360
val eq_reg: reg * reg -> bool = op = o apply2 #serial;
37105
e464f84f3680 Store registrations in efficient data structure.
ballarin
parents: 37104
diff changeset
   361
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   362
(* FIXME consolidate with locale dependencies, consider one data slot only *)
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   363
structure Global_Registrations = Theory_Data'
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   364
(
69046
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   365
  (*registrations, indexed by locale name and instance;
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   366
    unique registration serial points to mixin list*)
77817
wenzelm
parents: 77738
diff changeset
   367
  type T = reg Idtab.table * mixins;
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   368
  val empty: T = (Idtab.empty, Inttab.empty);
77895
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77817
diff changeset
   369
  fun merge args =
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   370
    let
77895
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77817
diff changeset
   371
      val ctxt0 = Syntax.init_pretty_global (#1 (hd args));
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   372
      fun recursive_merge ((regs1, mixins1), (regs2, mixins2)) : T =
77817
wenzelm
parents: 77738
diff changeset
   373
        (Idtab.merge eq_reg (regs1, regs2), merge_mixins (mixins1, mixins2))
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   374
        handle Idtab.DUP id =>
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   375
          (*distinct interpretations with same base: merge their mixins*)
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   376
          let
69053
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   377
            val reg1 = Idtab.lookup regs1 id |> the;
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   378
            val reg2 = Idtab.lookup regs2 id |> the;
69053
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   379
            val reg2' =
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   380
             {morphisms = #morphisms reg2,
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   381
              pos = Position.thread_data (),
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   382
              serial = #serial reg1};
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   383
            val regs2' = Idtab.update (id, reg2') regs2;
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   384
            val mixins2' = rename_mixin (#serial reg2, #serial reg1) mixins2;
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   385
            val _ =
69053
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   386
              warning ("Removed duplicate interpretation after retrieving its mixins" ^
480d60d3c5ef more position information;
wenzelm
parents: 69052
diff changeset
   387
                Position.here_list [#pos reg1, #pos reg2] ^ ":\n  " ^
77895
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77817
diff changeset
   388
                Pretty.string_of (pretty_reg_inst ctxt0 [] id));
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   389
          in recursive_merge ((regs1, mixins1), (regs2', mixins2')) end;
77895
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77817
diff changeset
   390
    in Library.foldl1 recursive_merge (map #2 args) end;
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   391
);
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   392
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   393
structure Local_Registrations = Proof_Data
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   394
(
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   395
  type T = Global_Registrations.T;
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   396
  val init = Global_Registrations.get;
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   397
);
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   398
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   399
val get_registrations = Context.cases Global_Registrations.get Local_Registrations.get;
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   400
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   401
fun map_registrations f (Context.Theory thy) = Context.Theory (Global_Registrations.map f thy)
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   402
  | map_registrations f (Context.Proof ctxt) = Context.Proof (Local_Registrations.map f ctxt);
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   403
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   404
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   405
(* Primitive operations *)
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   406
37104
3877a6c45d57 Avoid recomputation of registration instance for lookup.
ballarin
parents: 37103
diff changeset
   407
fun add_reg thy export (name, morph) =
69051
3cda9402a22a tuned signature: more explicit types;
wenzelm
parents: 69050
diff changeset
   408
  let
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   409
    val reg =
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   410
     {morphisms = (Morphism.reset_context morph, Morphism.reset_context export),
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   411
      pos = Position.thread_data (),
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   412
      serial = serial ()};
69051
3cda9402a22a tuned signature: more explicit types;
wenzelm
parents: 69050
diff changeset
   413
    val id = (name, instance_of thy name (morph $> export));
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   414
  in (map_registrations o apfst) (Idtab.insert (K false) (id, reg)) end;
31988
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   415
36095
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   416
fun add_mixin serial' mixin =
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   417
  (* registration to be amended identified by its serial id *)
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   418
  (map_registrations o apsnd) (insert_mixin serial' mixin);
69046
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   419
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   420
val get_regs = #1 o get_registrations;
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   421
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   422
fun get_mixins context (name, morph) =
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   423
  let
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   424
    val thy = Context.theory_of context;
69052
cc5d5d9f9a4b clarified message;
wenzelm
parents: 69051
diff changeset
   425
    val (regs, mixins) = get_registrations context;
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   426
  in
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   427
    (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
   428
      NONE => []
69051
3cda9402a22a tuned signature: more explicit types;
wenzelm
parents: 69050
diff changeset
   429
    | SOME {serial, ...} => lookup_mixins mixins serial)
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   430
  end;
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   431
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   432
fun collect_mixins context (name, morph) =
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   433
  let
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   434
    val thy = Context.theory_of context;
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   435
  in
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   436
    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
   437
      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
   438
      (insert_idents (name, instance_of thy name morph) empty_idents, [])
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   439
    |> snd |> filter (snd o fst)  (* only inheritable mixins *)
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   440
    |> (fn x => merge (eq_snd op =) (x, get_mixins context (name, morph)))
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   441
    |> compose_mixins
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   442
  end;
36091
055934ed89b0 A rough implementation of full mixin inheritance; additional unit tests.
ballarin
parents: 36090
diff changeset
   443
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   444
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   445
(*** Activate context elements of locale ***)
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   446
70608
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   447
fun activate_err msg kind (name, morph) context =
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   448
  cat_error msg ("The above error(s) occurred while activating " ^ kind ^ " of locale instance\n" ^
63723
dacc380ab327 Improved error reporting when activating a locale instance.
ballarin
parents: 63352
diff changeset
   449
    (pretty_reg (Context.proof_of context) Morphism.identity (name, morph) |>
dacc380ab327 Improved error reporting when activating a locale instance.
ballarin
parents: 63352
diff changeset
   450
      Pretty.string_of));
dacc380ab327 Improved error reporting when activating a locale instance.
ballarin
parents: 63352
diff changeset
   451
67667
189c68964ab2 clarified modules;
wenzelm
parents: 67666
diff changeset
   452
fun init_element elem context =
189c68964ab2 clarified modules;
wenzelm
parents: 67666
diff changeset
   453
  context
189c68964ab2 clarified modules;
wenzelm
parents: 67666
diff changeset
   454
  |> Context.mapping I (Thm.unchecked_hyps #> Context_Position.not_really)
189c68964ab2 clarified modules;
wenzelm
parents: 67666
diff changeset
   455
  |> Element.init elem
189c68964ab2 clarified modules;
wenzelm
parents: 67666
diff changeset
   456
  |> Context.mapping I (fn ctxt =>
189c68964ab2 clarified modules;
wenzelm
parents: 67666
diff changeset
   457
      let val ctxt0 = Context.proof_of context
189c68964ab2 clarified modules;
wenzelm
parents: 67666
diff changeset
   458
      in ctxt |> Context_Position.restore_visible ctxt0 |> Thm.restore_hyps ctxt0 end);
189c68964ab2 clarified modules;
wenzelm
parents: 67666
diff changeset
   459
67671
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   460
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   461
(* Potentially lazy notes *)
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   462
67677
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   463
fun make_notes kind = map (fn ((b, atts), facts) =>
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   464
  if null atts andalso forall (null o #2) facts
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   465
  then Lazy_Notes (kind, (b, Lazy.value (maps #1 facts)))
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   466
  else Notes (kind, [((b, atts), facts)]));
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   467
77738
e64428b6b170 more operations, notably for profiling;
wenzelm
parents: 74563
diff changeset
   468
fun locale_notes thy loc =
e64428b6b170 more operations, notably for profiling;
wenzelm
parents: 74563
diff changeset
   469
  fold (cons o #1) (#notes (the_locale thy loc)) [];
e64428b6b170 more operations, notably for profiling;
wenzelm
parents: 74563
diff changeset
   470
67671
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   471
fun lazy_notes thy loc =
77738
e64428b6b170 more operations, notably for profiling;
wenzelm
parents: 74563
diff changeset
   472
  locale_notes thy loc
e64428b6b170 more operations, notably for profiling;
wenzelm
parents: 74563
diff changeset
   473
  |> maps (fn (kind, notes) => make_notes kind notes);
67671
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   474
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   475
fun consolidate_notes elems =
67677
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   476
  elems
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   477
  |> map_filter (fn Lazy_Notes (_, (_, ths)) => SOME ths | _ => NONE)
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   478
  |> Lazy.consolidate
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   479
  |> ignore;
67671
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   480
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   481
fun force_notes (Lazy_Notes (kind, (b, ths))) = Notes (kind, [((b, []), [(Lazy.force ths, [])])])
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   482
  | force_notes elem = elem;
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   483
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   484
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   485
(* Declarations, facts and entire locale content *)
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   486
70608
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   487
val trace_locales =
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   488
  Attrib.setup_config_bool (Binding.make ("trace_locales", \<^here>)) (K false);
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   489
70622
2fb2e7661e16 Integrate locale activation fallback diagnostics with 'trace_locales'.
ballarin
parents: 70608
diff changeset
   490
fun tracing context msg =
2fb2e7661e16 Integrate locale activation fallback diagnostics with 'trace_locales'.
ballarin
parents: 70608
diff changeset
   491
  if Config.get context trace_locales then Output.tracing msg else ();
2fb2e7661e16 Integrate locale activation fallback diagnostics with 'trace_locales'.
ballarin
parents: 70608
diff changeset
   492
  
70608
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   493
fun trace kind (name, morph) context =
70622
2fb2e7661e16 Integrate locale activation fallback diagnostics with 'trace_locales'.
ballarin
parents: 70608
diff changeset
   494
  tracing (Context.proof_of context) ("Activating " ^ kind ^ " of " ^
2fb2e7661e16 Integrate locale activation fallback diagnostics with 'trace_locales'.
ballarin
parents: 70608
diff changeset
   495
    (pretty_reg (Context.proof_of context) Morphism.identity (name, morph) |> Pretty.string_of));
70608
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   496
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   497
fun activate_syntax_decls (name, morph) context =
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   498
  let
70608
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   499
    val _ = trace "syntax" (name, morph) context;
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   500
    val thy = Context.theory_of context;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   501
    val {syntax_decls, ...} = the_locale thy name;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   502
  in
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   503
    context
78072
001739cb8d08 clarified signature: more explicit types;
wenzelm
parents: 78065
diff changeset
   504
    |> fold_rev (Morphism.form o Morphism.transform morph o #1) syntax_decls
70608
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   505
      handle ERROR msg => activate_err msg "syntax" (name, morph) context
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   506
  end;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   507
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   508
fun activate_notes activ_elem context export' (name, morph) input =
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   509
  let
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   510
    val thy = Context.theory_of context;
46880
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   511
    val mixin =
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   512
      (case export' of
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   513
        NONE => Morphism.identity
af8e516953ce refined activate_notes: simultaneous transformation before activation;
wenzelm
parents: 46870
diff changeset
   514
      | SOME export => collect_mixins context (name, morph $> export) $> export);
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   515
    val morph' = Morphism.set_context thy (morph $> mixin);
67680
175a070e9dd8 eliminated questionable Par_List.map -- locale interpretation is mostly lazy (see also b81f1de9f57e);
wenzelm
parents: 67677
diff changeset
   516
    val notes' = map (Element.transform_ctxt morph') (lazy_notes thy name);
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   517
  in
67671
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   518
    (notes', input) |-> fold (fn elem => fn res =>
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   519
      activ_elem (Element.transfer_ctxt thy elem) res)
70608
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   520
  end handle ERROR msg => activate_err msg "facts" (name, morph) context;
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   521
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   522
fun activate_notes_trace activ_elem context export' (name, morph) context' =
70608
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   523
  let
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   524
    val _ = trace "facts" (name, morph) context';
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   525
  in
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   526
    activate_notes activ_elem context export' (name, morph) context'
70608
d997c7ba3305 Tracing of locale activation.
ballarin
parents: 69068
diff changeset
   527
  end;
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   528
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   529
fun activate_all name thy activ_elem (marked, input) =
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   530
  let
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   531
    val {parameters = (_, params), spec = (asm, defs), ...} = the_locale thy name;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   532
    val input' = input |>
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   533
      (not (null params) ?
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   534
        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
   535
      (* FIXME type parameters *)
63352
4eaf35781b23 tuned signature;
wenzelm
parents: 63267
diff changeset
   536
      (case asm of SOME A => activ_elem (Assumes [(Binding.empty_atts, [(A, [])])]) | _ => I) |>
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   537
      (not (null defs) ?
63352
4eaf35781b23 tuned signature;
wenzelm
parents: 63267
diff changeset
   538
        activ_elem (Defines (map (fn def => (Binding.empty_atts, (def, []))) defs)));
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   539
    val activate = activate_notes activ_elem (Context.Theory thy) NONE;
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   540
  in
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   541
    roundup thy activate Morphism.identity (name, Morphism.identity) (marked, input')
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   542
  end;
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   543
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   544
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   545
(** Public activation functions **)
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   546
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   547
fun activate_facts export dep context =
63030
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   548
  context
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   549
  |> Context_Position.set_visible_generic false
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   550
  |> pair (Idents.get context)
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   551
  |> roundup (Context.theory_of context)
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   552
      (activate_notes_trace init_element context export)
78060
b6c886b7184f clarified signature;
wenzelm
parents: 78041
diff changeset
   553
      (Morphism.default export) dep
63030
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   554
  |-> Idents.put
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   555
  |> Context_Position.restore_visible_generic context;
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   556
67666
wenzelm
parents: 67664
diff changeset
   557
fun activate_declarations dep = Context.proof_map (fn context =>
wenzelm
parents: 67664
diff changeset
   558
  context
wenzelm
parents: 67664
diff changeset
   559
  |> Context_Position.set_visible_generic false
wenzelm
parents: 67664
diff changeset
   560
  |> pair (Idents.get context)
wenzelm
parents: 67664
diff changeset
   561
  |> roundup (Context.theory_of context) activate_syntax_decls Morphism.identity dep
wenzelm
parents: 67664
diff changeset
   562
  |-> Idents.put
wenzelm
parents: 67664
diff changeset
   563
  |> Context_Position.restore_visible_generic context);
wenzelm
parents: 67664
diff changeset
   564
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   565
fun init name thy =
54795
e58623a33ba5 initalize locale with idents from background theory rather than empty idents: must treat idents and registrations synchronously to provide consistent setup for interpretation in locale contexts
haftmann
parents: 53171
diff changeset
   566
  let
e58623a33ba5 initalize locale with idents from background theory rather than empty idents: must treat idents and registrations synchronously to provide consistent setup for interpretation in locale contexts
haftmann
parents: 53171
diff changeset
   567
    val context = Context.Proof (Proof_Context.init_global thy);
e58623a33ba5 initalize locale with idents from background theory rather than empty idents: must treat idents and registrations synchronously to provide consistent setup for interpretation in locale contexts
haftmann
parents: 53171
diff changeset
   568
    val marked = Idents.get context;
e58623a33ba5 initalize locale with idents from background theory rather than empty idents: must treat idents and registrations synchronously to provide consistent setup for interpretation in locale contexts
haftmann
parents: 53171
diff changeset
   569
  in
63030
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   570
    context
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   571
    |> Context_Position.set_visible_generic false
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   572
    |> pair empty_idents
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   573
    |> activate_all name thy init_element
63030
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   574
    |-> (fn marked' => Idents.put (merge_idents (marked, marked')))
4e7eff53bee7 avoid massive multiplication of reports due to interpretation;
wenzelm
parents: 63029
diff changeset
   575
    |> Context_Position.restore_visible_generic context
54795
e58623a33ba5 initalize locale with idents from background theory rather than empty idents: must treat idents and registrations synchronously to provide consistent setup for interpretation in locale contexts
haftmann
parents: 53171
diff changeset
   576
    |> Context.proof_of
e58623a33ba5 initalize locale with idents from background theory rather than empty idents: must treat idents and registrations synchronously to provide consistent setup for interpretation in locale contexts
haftmann
parents: 53171
diff changeset
   577
  end;
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   578
38211
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   579
8ed3a5fb4d25 Remove duplicate locale activation code; performance improvement.
ballarin
parents: 38111
diff changeset
   580
(*** Add and extend registrations ***)
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   581
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   582
type registration = Locale.registration;
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   583
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   584
fun amend_registration {mixin = NONE, ...} context = context
69058
f4fb93197670 tuned signature;
wenzelm
parents: 69057
diff changeset
   585
  | amend_registration {inst = (name, morph), mixin = SOME mixin, export} context =
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   586
      let
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   587
        val thy = Context.theory_of context;
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   588
        val ctxt = Context.proof_of context;
53041
d51bac27d4a0 more markup -- avoid old Locale.extern;
wenzelm
parents: 52788
diff changeset
   589
69046
587d0b8a7609 tuned signature;
wenzelm
parents: 69029
diff changeset
   590
        val regs = get_regs context;
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   591
        val base = instance_of thy name (morph $> export);
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   592
        val serial' =
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   593
          (case Idtab.lookup regs (name, base) of
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   594
            NONE =>
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   595
              error ("No interpretation of locale " ^ quote (markup_name ctxt name) ^
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   596
                " with\nparameter instantiation " ^
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   597
                space_implode " " (map (quote o Syntax.string_of_term_global thy) base) ^
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   598
                " available")
69051
3cda9402a22a tuned signature: more explicit types;
wenzelm
parents: 69050
diff changeset
   599
          | SOME {serial = serial', ...} => serial');
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   600
      in
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   601
        add_mixin serial' mixin context
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 68029
diff changeset
   602
      end;
32804
ca430e6aee1c Propagation of mixins for interpretation; reactivated diagnostic command print_interps.
ballarin
parents: 32803 32801
diff changeset
   603
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   604
(* 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
   605
   generated, and it will not be possible to amend it. *)
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   606
69058
f4fb93197670 tuned signature;
wenzelm
parents: 69057
diff changeset
   607
fun add_registration {inst = (name, base_morph), mixin, export} context =
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   608
  let
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   609
    val thy = Context.theory_of context;
68855
59ce31e15c33 more careful treatment position: existing facts refer to interpretation command, future facts refer to themselves (see also 4270da306442);
wenzelm
parents: 68853
diff changeset
   610
    val pos_morph = Morphism.binding_morphism "position" (Binding.set_pos (Position.thread_data ()));
68856
wenzelm
parents: 68855
diff changeset
   611
    val mix_morph = (case mixin of NONE => base_morph | SOME (mix, _) => base_morph $> mix);
wenzelm
parents: 68855
diff changeset
   612
    val inst = instance_of thy name mix_morph;
51727
cf97bb5bbc90 tuned for uniformity
haftmann
parents: 51565
diff changeset
   613
    val idents = Idents.get context;
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   614
  in
68856
wenzelm
parents: 68855
diff changeset
   615
    if redundant_ident thy idents (name, inst) then context  (* FIXME amend mixins? *)
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   616
    else
51727
cf97bb5bbc90 tuned for uniformity
haftmann
parents: 51565
diff changeset
   617
      (idents, context)
36095
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   618
      (* add new registrations with inherited mixins *)
68856
wenzelm
parents: 68855
diff changeset
   619
      |> roundup thy (add_reg thy export) export (name, mix_morph) |> #2
36095
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   620
      (* add mixin *)
69058
f4fb93197670 tuned signature;
wenzelm
parents: 69057
diff changeset
   621
      |> amend_registration {inst = (name, mix_morph), mixin = mixin, export = export}
36095
059c3568fdc8 Proper inheritance of mixins for activated facts and locale dependencies.
ballarin
parents: 36094
diff changeset
   622
      (* activate import hierarchy as far as not already active *)
68856
wenzelm
parents: 68855
diff changeset
   623
      |> activate_facts (SOME export) (name, mix_morph $> pos_morph)
32801
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   624
  end;
6f97a67e8da8 Explicit management of registration mixins.
ballarin
parents: 32800
diff changeset
   625
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   626
57926
59b2572e8e93 load local_theory.ML before attrib.ML, with subtle change of semantics due to canonical Local_Theory.map_contexts instead of private Local_Theory.map_top;
wenzelm
parents: 57864
diff changeset
   627
31988
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   628
(*** Dependencies ***)
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   629
69056
bc4cc763b0ea tuned (according to signature);
wenzelm
parents: 69055
diff changeset
   630
fun registrations_of context loc =
bc4cc763b0ea tuned (according to signature);
wenzelm
parents: 69055
diff changeset
   631
  Idtab.fold_rev (fn ((name, _), {morphisms, ...}) =>
bc4cc763b0ea tuned (according to signature);
wenzelm
parents: 69055
diff changeset
   632
    name = loc ? cons (name, morphisms)) (get_regs context) []
bc4cc763b0ea tuned (according to signature);
wenzelm
parents: 69055
diff changeset
   633
  (*with inherited mixins*)
bc4cc763b0ea tuned (according to signature);
wenzelm
parents: 69055
diff changeset
   634
  |> map (fn (name, (base, export)) =>
bc4cc763b0ea tuned (according to signature);
wenzelm
parents: 69055
diff changeset
   635
      (name, base $> (collect_mixins context (name, base $> export)) $> export));
bc4cc763b0ea tuned (according to signature);
wenzelm
parents: 69055
diff changeset
   636
73845
bfce186331be more succint interfaces
haftmann
parents: 72953
diff changeset
   637
fun add_dependency loc {inst = (name, morph), mixin, export} thy =
37102
785348a83a2b Cleaner implementation of sublocale command.
ballarin
parents: 37101
diff changeset
   638
  let
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   639
    val dep = make_dep (name, (morph, export));
69060
wenzelm
parents: 69059
diff changeset
   640
    val add_dep =
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   641
      apfst (cons dep) #>
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   642
      apsnd (case mixin of NONE => I | SOME mixin => insert_mixin (#serial dep) mixin);
69060
wenzelm
parents: 69059
diff changeset
   643
    val thy' = change_locale loc (apsnd add_dep) thy;
38107
3a46cebd7983 Make registrations generic data.
ballarin
parents: 37973
diff changeset
   644
    val context' = Context.Theory thy';
46858
wenzelm
parents: 45601
diff changeset
   645
    val (_, regs) =
wenzelm
parents: 45601
diff changeset
   646
      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
   647
        (registrations_of context' loc) (Idents.get context', []);
68853
d36f00510e40 tuned signature;
wenzelm
parents: 68852
diff changeset
   648
  in
73845
bfce186331be more succint interfaces
haftmann
parents: 72953
diff changeset
   649
    fold_rev (fn inst => Context.theory_map (add_registration {inst = inst, mixin = NONE, export = export}))
69060
wenzelm
parents: 69059
diff changeset
   650
      regs thy'
68853
d36f00510e40 tuned signature;
wenzelm
parents: 68852
diff changeset
   651
  end;
31988
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   652
72505
974071d873ba tuned interfaces
haftmann
parents: 71166
diff changeset
   653
31988
801aabf9f376 tuned locale interface
haftmann
parents: 30777
diff changeset
   654
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   655
(*** Storing results ***)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   656
67654
49f45fcd335b clarified signature;
wenzelm
parents: 67653
diff changeset
   657
fun add_facts loc kind facts ctxt =
61079
wenzelm
parents: 61061
diff changeset
   658
  if null facts then ctxt
wenzelm
parents: 61061
diff changeset
   659
  else
wenzelm
parents: 61061
diff changeset
   660
    let
67677
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   661
      val stored_notes = ((kind, map Attrib.trim_context_fact facts), serial ());
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   662
      val applied_notes = make_notes kind facts;
61088
66225f7dd314 more thorough transfer;
wenzelm
parents: 61081
diff changeset
   663
67677
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   664
      fun apply_notes morph = applied_notes |> fold (fn elem => fn context =>
78064
4e865c45458b clarified transfer / trim_context on persistent Token.source (e.g. attribute expressions): actually set/reset implicit context;
wenzelm
parents: 78060
diff changeset
   665
        let val elem' = Element.transform_ctxt (Morphism.set_context'' context morph) elem
67677
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   666
        in Element.init elem' context end);
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   667
      val apply_registrations = Context.theory_map (fn context =>
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   668
        fold_rev (apply_notes o #2) (registrations_of context loc) context);
61079
wenzelm
parents: 61061
diff changeset
   669
    in
wenzelm
parents: 61061
diff changeset
   670
      ctxt
67655
wenzelm
parents: 67654
diff changeset
   671
      |> Attrib.local_notes kind facts |> #2
61079
wenzelm
parents: 61061
diff changeset
   672
      |> Proof_Context.background_theory
67677
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   673
        ((change_locale loc o apfst o apsnd) (cons stored_notes) #> apply_registrations)
61079
wenzelm
parents: 61061
diff changeset
   674
    end;
wenzelm
parents: 61061
diff changeset
   675
47246
2bbab021c0e6 clarified Named_Target.target_declaration: propagate through other levels as well;
wenzelm
parents: 47005
diff changeset
   676
fun add_declaration loc syntax decl =
2bbab021c0e6 clarified Named_Target.target_declaration: propagate through other levels as well;
wenzelm
parents: 47005
diff changeset
   677
  syntax ?
2bbab021c0e6 clarified Named_Target.target_declaration: propagate through other levels as well;
wenzelm
parents: 47005
diff changeset
   678
    Proof_Context.background_theory ((change_locale loc o apfst o apfst) (cons (decl, serial ())))
67654
49f45fcd335b clarified signature;
wenzelm
parents: 67653
diff changeset
   679
  #> add_facts loc "" [(Binding.empty_atts, Attrib.internal_declaration decl)];
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   680
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   681
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   682
(*** Reasoning about locales ***)
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   683
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   684
(* Storage for witnesses, intro and unfold rules *)
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   685
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33278
diff changeset
   686
structure Thms = Generic_Data
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   687
(
74151
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   688
  type T = thm Item_Net.T * thm Item_Net.T * thm Item_Net.T;
74152
069f6b2c5a07 tuned signature;
wenzelm
parents: 74151
diff changeset
   689
  val empty = (Thm.item_net, Thm.item_net, Thm.item_net);
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33278
diff changeset
   690
  fun merge ((witnesses1, intros1, unfolds1), (witnesses2, intros2, unfolds2)) =
74151
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   691
   (Item_Net.merge (witnesses1, witnesses2),
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   692
    Item_Net.merge (intros1, intros2),
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   693
    Item_Net.merge (unfolds1, unfolds2));
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   694
);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   695
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   696
fun get_thms which ctxt =
67649
1e1782c1aedf tuned signature;
wenzelm
parents: 67147
diff changeset
   697
  map (Thm.transfer' ctxt) (which (Thms.get (Context.Proof ctxt)));
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   698
74151
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   699
val get_witnesses = get_thms (Item_Net.content o #1);
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   700
val get_intros = get_thms (Item_Net.content o #2);
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   701
val get_unfolds = get_thms (Item_Net.content o #3);
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   702
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   703
val witness_add =
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   704
  Thm.declaration_attribute (fn th =>
74151
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   705
    Thms.map (fn (x, y, z) => (Item_Net.update (Thm.trim_context th) x, y, z)));
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   706
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   707
val intro_add =
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   708
  Thm.declaration_attribute (fn th =>
74151
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   709
    Thms.map (fn (x, y, z) => (x, Item_Net.update (Thm.trim_context th) y, z)));
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   710
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   711
val unfold_add =
61093
0f48b7b80e88 trim context for persistent storage;
wenzelm
parents: 61088
diff changeset
   712
  Thm.declaration_attribute (fn th =>
74151
c3b3517ef4ba more scalable data structures;
wenzelm
parents: 74112
diff changeset
   713
    Thms.map (fn (x, y, z) => (x, y, Item_Net.update (Thm.trim_context th) z)));
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   714
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   715
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39557
diff changeset
   716
(* Tactics *)
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   717
69017
0c1d7a414185 clarified signature;
wenzelm
parents: 69016
diff changeset
   718
fun intro_locales_tac {strict, eager} ctxt =
0c1d7a414185 clarified signature;
wenzelm
parents: 69016
diff changeset
   719
  (if strict then Method.intros_tac else Method.try_intros_tac) ctxt
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   720
    (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
   721
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53087
diff changeset
   722
val _ = Theory.setup
69017
0c1d7a414185 clarified signature;
wenzelm
parents: 69016
diff changeset
   723
 (Method.setup \<^binding>\<open>intro_locales\<close>
0c1d7a414185 clarified signature;
wenzelm
parents: 69016
diff changeset
   724
    (Scan.succeed (METHOD o intro_locales_tac {strict = false, eager = false}))
30515
bca05b17b618 simplified method setup;
wenzelm
parents: 30510
diff changeset
   725
    "back-chain introduction rules of locales without unfolding predicates" #>
69017
0c1d7a414185 clarified signature;
wenzelm
parents: 69016
diff changeset
   726
  Method.setup \<^binding>\<open>unfold_locales\<close>
0c1d7a414185 clarified signature;
wenzelm
parents: 69016
diff changeset
   727
    (Scan.succeed (METHOD o intro_locales_tac {strict = false, eager = true}))
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53087
diff changeset
   728
    "back-chain all introduction rules of locales");
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   729
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   730
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   731
(*** diagnostic commands and interfaces ***)
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   732
69029
aec64b88e708 clarified locale content: proper args with types for interpretation/axioms and typargs derived from the result;
wenzelm
parents: 69017
diff changeset
   733
fun get_locales thy = map #1 (Name_Space.dest_table (Locales.get thy));
aec64b88e708 clarified locale content: proper args with types for interpretation/axioms and typargs derived from the result;
wenzelm
parents: 69017
diff changeset
   734
69059
70f9826753f6 tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69058
diff changeset
   735
fun pretty_locales thy verbose =
50301
56b4c9afd7be print formal entities with markup;
wenzelm
parents: 49569
diff changeset
   736
  Pretty.block
56b4c9afd7be print formal entities with markup;
wenzelm
parents: 49569
diff changeset
   737
    (Pretty.breaks
56b4c9afd7be print formal entities with markup;
wenzelm
parents: 49569
diff changeset
   738
      (Pretty.str "locales:" ::
56b4c9afd7be print formal entities with markup;
wenzelm
parents: 49569
diff changeset
   739
        map (Pretty.mark_str o #1)
69059
70f9826753f6 tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69058
diff changeset
   740
          (Name_Space.markup_table verbose (Proof_Context.init_global thy) (Locales.get thy))));
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   741
49569
7b6aaf446496 tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
wenzelm
parents: 47249
diff changeset
   742
fun pretty_locale thy show_facts name =
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   743
  let
52103
fb577a13abbd more markup;
wenzelm
parents: 51727
diff changeset
   744
    val locale_ctxt = init name thy;
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   745
    fun cons_elem (elem as Notes _) = show_facts ? cons elem
67671
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   746
      | cons_elem (elem as Lazy_Notes _) = show_facts ? cons elem
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   747
      | cons_elem elem = cons elem;
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   748
    val elems =
78065
11d6a1e62841 more careful treatment of set_context / reset_context for persistent morphisms;
wenzelm
parents: 78064
diff changeset
   749
      activate_all name thy cons_elem (empty_idents, [])
67671
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   750
      |> snd |> rev
67677
ac4b475fc8c3 use lazy notes for locale context init and later additions of facts;
wenzelm
parents: 67671
diff changeset
   751
      |> tap consolidate_notes
67671
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67667
diff changeset
   752
      |> map force_notes;
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   753
  in
69057
56c6378ebaea tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69056
diff changeset
   754
    Pretty.block (Pretty.keyword1 "locale" :: Pretty.brk 1 :: pretty_name locale_ctxt name ::
56c6378ebaea tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69056
diff changeset
   755
      maps (fn elem => [Pretty.fbrk, Pretty.chunks (Element.pretty_ctxt locale_ctxt elem)]) elems)
37471
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   756
  end;
907e13072675 separate section for diagnostic commands
haftmann
parents: 37133
diff changeset
   757
69059
70f9826753f6 tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69058
diff changeset
   758
fun pretty_registrations ctxt name =
70f9826753f6 tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69058
diff changeset
   759
  (case registrations_of (Context.Proof ctxt) name of
70f9826753f6 tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69058
diff changeset
   760
    [] => Pretty.str "no interpretations"
70f9826753f6 tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69058
diff changeset
   761
  | regs => Pretty.big_list "interpretations:" (map (pretty_reg ctxt Morphism.identity) (rev regs)));
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41272
diff changeset
   762
49569
7b6aaf446496 tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
wenzelm
parents: 47249
diff changeset
   763
fun pretty_locale_deps thy =
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   764
  let
49569
7b6aaf446496 tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
wenzelm
parents: 47249
diff changeset
   765
    fun make_node name =
7b6aaf446496 tuned pretty_locale/print_locale, with more basic pretty_locale_deps based on that;
wenzelm
parents: 47249
diff changeset
   766
     {name = name,
69061
da448868a18a tuned signature: more explicit types;
wenzelm
parents: 69060
diff changeset
   767
      parents = map #name (dependencies_of thy name),
69057
56c6378ebaea tuned signature: prefer value-oriented pretty-printing;
wenzelm
parents: 69056
diff changeset
   768
      body = pretty_locale thy false name};
56025
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 55763
diff changeset
   769
    val names = sort_strings (Name_Space.fold_table (cons o #1) (Locales.get thy) []);
d74fed45fa8b abstract type Name_Space.table;
wenzelm
parents: 55763
diff changeset
   770
  in map make_node names end;
37897
c5ad6fec3470 abstract visualization of locale ingredients; all_locales yields proper locale identifiers
haftmann
parents: 37491
diff changeset
   771
69063
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   772
type locale_dependency =
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   773
  {source: string, target: string, prefix: (string * bool) list, morphism: morphism,
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   774
    pos: Position.T, serial: serial};
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   775
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   776
fun dest_dependencies prev_thys thy =
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   777
  let
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   778
    fun remove_prev loc prev_thy deps =
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   779
      (case get_locale prev_thy loc of
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   780
        NONE => deps
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   781
      | SOME (Loc {dependencies = prev_deps, ...}) =>
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   782
          if eq_list eq_dep (prev_deps, deps) then []
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   783
          else subtract eq_dep prev_deps deps);
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   784
    fun result loc (dep: dep) =
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   785
      let val morphism = op $> (#morphisms dep) in
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   786
       {source = #name dep,
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   787
        target = loc,
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   788
        prefix = Morphism.binding_prefix morphism,
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   789
        morphism = morphism,
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   790
        pos = #pos dep,
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   791
        serial = #serial dep}
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   792
      end;
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   793
    fun add (loc, Loc {dependencies = deps, ...}) =
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   794
      fold (cons o result loc) (fold (remove_prev loc) prev_thys deps);
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   795
  in
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   796
    Name_Space.fold_table add (Locales.get thy) []
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   797
    |> sort (int_ord o apply2 #serial)
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   798
  end;
765ff343a7aa expose locale_dependency information;
wenzelm
parents: 69062
diff changeset
   799
29361
764d51ab0198 locale -> old_locale, new_locale -> locale
haftmann
parents:
diff changeset
   800
end;