src/Pure/Isar/local_theory.ML
author wenzelm
Mon, 20 Sep 2021 23:15:02 +0200
changeset 74333 a9b20bc32fa6
parent 73846 9447668d1b77
child 74338 534b231ce041
permissions -rw-r--r--
localized command 'syntax' and 'no_syntax';
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/local_theory.ML
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     3
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
     4
Local theory operations, with abstract target context.
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     5
*)
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     6
18951
4f5f6c632127 type local_theory = Proof.context;
wenzelm
parents: 18876
diff changeset
     7
type local_theory = Proof.context;
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 36610
diff changeset
     8
type generic_theory = Context.generic;
18951
4f5f6c632127 type local_theory = Proof.context;
wenzelm
parents: 18876
diff changeset
     9
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: 57925
diff changeset
    10
structure Attrib =
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: 57925
diff changeset
    11
struct
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57941
diff changeset
    12
  type binding = binding * Token.src list;
63267
ac1a0b81453e tuned signature;
wenzelm
parents: 63090
diff changeset
    13
  type thms = (thm list * Token.src list) list;
67652
11716a084cae clarified signature;
wenzelm
parents: 66336
diff changeset
    14
  type fact = binding * thms;
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: 57925
diff changeset
    15
end;
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: 57925
diff changeset
    16
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 67652
diff changeset
    17
structure Locale =
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 67652
diff changeset
    18
struct
69058
f4fb93197670 tuned signature;
wenzelm
parents: 68865
diff changeset
    19
  type registration = {inst: string * morphism, mixin: (morphism * bool) option, export: morphism};
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 67652
diff changeset
    20
end;
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 67652
diff changeset
    21
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    22
signature LOCAL_THEORY =
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    23
sig
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    24
  type operations
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47064
diff changeset
    25
  val assert: local_theory -> local_theory
47064
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
    26
  val level: Proof.context -> int
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
    27
  val map_contexts: (int -> Proof.context -> Proof.context) -> local_theory -> local_theory
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
    28
  val background_naming_of: local_theory -> Name_Space.naming
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
    29
  val map_background_naming: (Name_Space.naming -> Name_Space.naming) ->
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
    30
    local_theory -> local_theory
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
    31
  val restore_background_naming: local_theory -> local_theory -> local_theory
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    32
  val full_name: local_theory -> binding -> string
33724
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33671
diff changeset
    33
  val new_group: local_theory -> local_theory
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33671
diff changeset
    34
  val reset_group: local_theory -> local_theory
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
    35
  val standard_morphism: local_theory -> Proof.context -> morphism
63270
7dd3ee7ee422 support for bundle definition via target;
wenzelm
parents: 63267
diff changeset
    36
  val standard_morphism_theory: local_theory -> morphism
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
    37
  val standard_form: local_theory -> Proof.context -> (morphism -> 'a) -> 'a
20960
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
    38
  val raw_theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
    39
  val raw_theory: (theory -> theory) -> local_theory -> local_theory
38757
2b3e054ae6fc renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38756
diff changeset
    40
  val background_theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory
2b3e054ae6fc renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38756
diff changeset
    41
  val background_theory: (theory -> theory) -> local_theory -> local_theory
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
    42
  val target_of: local_theory -> Proof.context
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    43
  val target: (Proof.context -> Proof.context) -> local_theory -> local_theory
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
    44
  val target_morphism: local_theory -> morphism
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 36610
diff changeset
    45
  val propagate_ml_env: generic_theory -> generic_theory
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47064
diff changeset
    46
  val operations_of: local_theory -> operations
33764
7bcefaab8d41 Local_Theory.define: eliminated slightly odd kind argument -- such low-level definitions should be hardly ever exposed to end-users anyway;
wenzelm
parents: 33724
diff changeset
    47
  val define: (binding * mixfix) * (Attrib.binding * term) -> local_theory ->
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
    48
    (term * (string * thm)) * local_theory
46992
eeea81b86b70 refined Local_Theory.define vs. Local_Theory.define_internal, which allows to pass alternative name to the foundational axiom -- expecially important for 'instantiation' or 'overloading', which loose name information due to Long_Name.base_name cooking etc.;
wenzelm
parents: 45298
diff changeset
    49
  val define_internal: (binding * mixfix) * (Attrib.binding * term) -> local_theory ->
eeea81b86b70 refined Local_Theory.define vs. Local_Theory.define_internal, which allows to pass alternative name to the foundational axiom -- expecially important for 'instantiation' or 'overloading', which loose name information due to Long_Name.base_name cooking etc.;
wenzelm
parents: 45298
diff changeset
    50
    (term * (string * thm)) * local_theory
33670
02b7738aef6a eliminated slightly odd kind argument of LocalTheory.note(s);
wenzelm
parents: 33519
diff changeset
    51
  val note: Attrib.binding * thm list -> local_theory -> (string * thm list) * local_theory
67652
11716a084cae clarified signature;
wenzelm
parents: 66336
diff changeset
    52
  val notes: Attrib.fact list -> local_theory -> (string * thm list) list * local_theory
11716a084cae clarified signature;
wenzelm
parents: 66336
diff changeset
    53
  val notes_kind: string -> Attrib.fact list -> local_theory ->
63267
ac1a0b81453e tuned signature;
wenzelm
parents: 63090
diff changeset
    54
    (string * thm list) list * local_theory
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 37949
diff changeset
    55
  val abbrev: Syntax.mode -> (binding * mixfix) * term -> local_theory ->
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 37949
diff changeset
    56
    (term * term) * local_theory
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42360
diff changeset
    57
  val declaration: {syntax: bool, pervasive: bool} -> declaration -> local_theory -> local_theory
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 67652
diff changeset
    58
  val theory_registration: Locale.registration -> local_theory -> local_theory
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 67652
diff changeset
    59
  val locale_dependency: Locale.registration -> local_theory -> local_theory
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 37949
diff changeset
    60
  val pretty: local_theory -> Pretty.T list
57929
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
    61
  val add_thms_dynamic: binding * (Context.generic -> thm list) -> local_theory -> local_theory
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36004
diff changeset
    62
  val set_defsort: sort -> local_theory -> local_theory
74333
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
    63
  val syntax: bool -> Syntax.mode -> (string * typ * mixfix) list ->
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
    64
    local_theory -> local_theory
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
    65
  val syntax_cmd: bool -> Syntax.mode -> (string * string * mixfix) list ->
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
    66
    local_theory -> local_theory
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 33764
diff changeset
    67
  val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> local_theory -> local_theory
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24933
diff changeset
    68
  val notation: bool -> Syntax.mode -> (term * mixfix) list -> local_theory -> local_theory
35738
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
    69
  val type_alias: binding -> string -> local_theory -> local_theory
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
    70
  val const_alias: binding -> string -> local_theory -> local_theory
72516
17dc99589a91 unified Local_Theory.init with Generic_Target.init
haftmann
parents: 72505
diff changeset
    71
  val init: {background_naming: Name_Space.naming, setup: theory -> Proof.context,
17dc99589a91 unified Local_Theory.init with Generic_Target.init
haftmann
parents: 72505
diff changeset
    72
    conclude: local_theory -> Proof.context} -> operations -> theory -> local_theory
21292
11143b6ad87f simplified exit;
wenzelm
parents: 21273
diff changeset
    73
  val exit: local_theory -> Proof.context
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
    74
  val exit_global: local_theory -> theory
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
    75
  val exit_result: (morphism -> 'a -> 'b) -> 'a * local_theory -> 'b * Proof.context
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
    76
  val exit_result_global: (morphism -> 'a -> 'b) -> 'a * local_theory -> 'b * theory
72450
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
    77
  val begin_nested: local_theory -> Binding.scope * local_theory
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
    78
  val end_nested: local_theory -> local_theory
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
    79
  val end_nested_result: (morphism -> 'a -> 'b) ->  'a * local_theory -> 'b * local_theory
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    80
end;
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    81
69708
1c201e4792cb Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
haftmann
parents: 69699
diff changeset
    82
signature PRIVATE_LOCAL_THEORY =
1c201e4792cb Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
haftmann
parents: 69699
diff changeset
    83
sig
1c201e4792cb Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
haftmann
parents: 69699
diff changeset
    84
  include LOCAL_THEORY
1c201e4792cb Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
haftmann
parents: 69699
diff changeset
    85
  val reset: local_theory -> local_theory
1c201e4792cb Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
haftmann
parents: 69699
diff changeset
    86
end
1c201e4792cb Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
haftmann
parents: 69699
diff changeset
    87
1c201e4792cb Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
haftmann
parents: 69699
diff changeset
    88
structure Local_Theory: PRIVATE_LOCAL_THEORY =
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    89
struct
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    90
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    91
(** local theory data **)
19059
b4ca3100e818 init/exit no longer change the theory (no naming);
wenzelm
parents: 19032
diff changeset
    92
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    93
(* type lthy *)
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    94
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    95
type operations =
46992
eeea81b86b70 refined Local_Theory.define vs. Local_Theory.define_internal, which allows to pass alternative name to the foundational axiom -- expecially important for 'instantiation' or 'overloading', which loose name information due to Long_Name.base_name cooking etc.;
wenzelm
parents: 45298
diff changeset
    96
 {define: bool -> (binding * mixfix) * (Attrib.binding * term) -> local_theory ->
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
    97
    (term * (string * thm)) * local_theory,
67652
11716a084cae clarified signature;
wenzelm
parents: 66336
diff changeset
    98
  notes: string -> Attrib.fact list -> local_theory -> (string * thm list) list * local_theory,
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 37949
diff changeset
    99
  abbrev: Syntax.mode -> (binding * mixfix) * term -> local_theory ->
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 37949
diff changeset
   100
    (term * term) * local_theory,
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42360
diff changeset
   101
  declaration: {syntax: bool, pervasive: bool} -> declaration -> local_theory -> local_theory,
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 67652
diff changeset
   102
  theory_registration: Locale.registration -> local_theory -> local_theory,
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 67652
diff changeset
   103
  locale_dependency: Locale.registration -> local_theory -> local_theory,
66335
a849ce33923d treat exit separate from regular local theory operations
haftmann
parents: 66259
diff changeset
   104
  pretty: local_theory -> Pretty.T list};
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   105
47064
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
   106
type lthy =
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   107
 {background_naming: Name_Space.naming,
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   108
  operations: operations,
72517
c2b643c9f2bf unified slots
haftmann
parents: 72516
diff changeset
   109
  conclude: Proof.context -> Proof.context,
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   110
  target: Proof.context};
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   111
72953
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   112
fun make_lthy (background_naming, operations, conclude, target) : lthy =
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   113
  {background_naming = background_naming, operations = operations,
72953
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   114
    conclude = conclude, target = target};
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   115
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   116
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   117
(* context data *)
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
   118
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33456
diff changeset
   119
structure Data = Proof_Data
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
   120
(
52118
2a976115c7c3 mark local theory as brittle also after interpretation inside locales;
haftmann
parents: 51735
diff changeset
   121
  type T = lthy list;
2a976115c7c3 mark local theory as brittle also after interpretation inside locales;
haftmann
parents: 51735
diff changeset
   122
  fun init _ = [];
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
   123
);
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
   124
72153
bdbd6ff5fd0b misc tuning;
wenzelm
parents: 69708
diff changeset
   125
66259
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   126
(* nested structure *)
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   127
72153
bdbd6ff5fd0b misc tuning;
wenzelm
parents: 69708
diff changeset
   128
val level = length o Data.get;  (*1: main target at bottom, >= 2: nested target context*)
66259
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   129
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47064
diff changeset
   130
fun assert lthy =
66259
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   131
  if level lthy = 0 then error "Missing local theory context" else lthy;
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   132
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   133
fun assert_bottom lthy =
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   134
  let
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   135
    val _ = assert lthy;
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   136
  in
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   137
    if level lthy > 1 then error "Not at bottom of local theory nesting"
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   138
    else lthy
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   139
  end;
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   140
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   141
fun assert_not_bottom lthy =
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   142
  let
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   143
    val _ = assert lthy;
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   144
  in
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   145
    if level lthy = 1 then error "Already at bottom of local theory nesting"
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   146
    else lthy
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   147
  end;
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47064
diff changeset
   148
57194
d110b0d1bc12 tuned terminology: emphasize stack-like nature of nested local theories
haftmann
parents: 56809
diff changeset
   149
val bottom_of = List.last o Data.get o assert;
d110b0d1bc12 tuned terminology: emphasize stack-like nature of nested local theories
haftmann
parents: 56809
diff changeset
   150
val top_of = hd o Data.get o assert;
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47064
diff changeset
   151
57925
2bd92d3f92d7 clarified terminology: first is top (amending d110b0d1bc12);
wenzelm
parents: 57924
diff changeset
   152
fun map_top f =
50739
5165d7e6d3b9 more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
wenzelm
parents: 49062
diff changeset
   153
  assert #>
72953
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   154
  Data.map (fn {background_naming, operations, conclude, target} :: parents =>
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   155
    make_lthy (f (background_naming, operations, conclude, target)) :: parents);
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47064
diff changeset
   156
62514
aae510e9a698 tuned signature;
wenzelm
parents: 61890
diff changeset
   157
fun reset lthy = #target (top_of lthy) |> Data.put (Data.get lthy);
47273
ea089b484157 better restore to first target, not last target;
wenzelm
parents: 47271
diff changeset
   158
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   159
fun map_contexts f lthy =
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   160
  let val n = level lthy in
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   161
    lthy |> (Data.map o map_index)
72953
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   162
      (fn (i, {background_naming, operations, conclude, target}) =>
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   163
        make_lthy (background_naming, operations, conclude,
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   164
          target
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   165
          |> Context_Position.set_visible false
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   166
          |> f (n - i - 1)
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   167
          |> Context_Position.restore_visible target))
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   168
      |> f n
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   169
  end;
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   170
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   171
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   172
(* naming for background theory *)
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   173
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   174
val background_naming_of = #background_naming o top_of;
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   175
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   176
fun map_background_naming f =
72953
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   177
  map_top (fn (background_naming, operations, conclude, target) =>
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   178
    (f background_naming, operations, conclude, target));
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   179
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   180
val restore_background_naming = map_background_naming o K o background_naming_of;
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   181
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   182
val full_name = Name_Space.full_name o background_naming_of;
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   183
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   184
val new_group = map_background_naming Name_Space.new_group;
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   185
val reset_group = map_background_naming Name_Space.reset_group;
33276
f2bc8bc6e73d added restore_naming;
wenzelm
parents: 33166
diff changeset
   186
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   187
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   188
(* standard morphisms *)
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   189
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   190
fun standard_morphism lthy ctxt =
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   191
  Proof_Context.norm_export_morphism lthy ctxt $>
54740
91f54d386680 maintain morphism names for diagnostic purposes;
wenzelm
parents: 52788
diff changeset
   192
  Morphism.binding_morphism "Local_Theory.standard_binding"
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
   193
    (Name_Space.transform_binding (Proof_Context.naming_of lthy));
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   194
63270
7dd3ee7ee422 support for bundle definition via target;
wenzelm
parents: 63267
diff changeset
   195
fun standard_morphism_theory lthy =
7dd3ee7ee422 support for bundle definition via target;
wenzelm
parents: 63267
diff changeset
   196
  standard_morphism lthy (Proof_Context.init_global (Proof_Context.theory_of lthy));
7dd3ee7ee422 support for bundle definition via target;
wenzelm
parents: 63267
diff changeset
   197
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   198
fun standard_form lthy ctxt x =
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   199
  Morphism.form (Morphism.transform (standard_morphism lthy ctxt) x);
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   200
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   201
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   202
(* background theory *)
19661
baab85f25e0e added syntax interface;
wenzelm
parents: 19630
diff changeset
   203
20960
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   204
fun raw_theory_result f lthy =
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   205
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 38757
diff changeset
   206
    val (res, thy') = f (Proof_Context.theory_of lthy);
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   207
    val lthy' = map_contexts (K (Proof_Context.transfer thy')) lthy;
20960
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   208
  in (res, lthy') end;
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   209
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   210
fun raw_theory f = #2 o raw_theory_result (f #> pair ());
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   211
38757
2b3e054ae6fc renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38756
diff changeset
   212
fun background_theory_result f lthy =
59887
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   213
  let
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   214
    val naming =
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   215
      background_naming_of lthy
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   216
      |> Name_Space.transform_naming (Proof_Context.naming_of lthy);
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   217
  in
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   218
    lthy |> raw_theory_result (fn thy =>
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   219
      thy
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   220
      |> Sign.map_naming (K naming)
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   221
      |> f
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   222
      ||> Sign.restore_naming thy)
43dc3c660f41 more visibility flags on background naming;
wenzelm
parents: 59886
diff changeset
   223
  end;
19661
baab85f25e0e added syntax interface;
wenzelm
parents: 19630
diff changeset
   224
38757
2b3e054ae6fc renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38756
diff changeset
   225
fun background_theory f = #2 o background_theory_result (f #> pair ());
19661
baab85f25e0e added syntax interface;
wenzelm
parents: 19630
diff changeset
   226
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   227
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   228
(* target contexts *)
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   229
57194
d110b0d1bc12 tuned terminology: emphasize stack-like nature of nested local theories
haftmann
parents: 56809
diff changeset
   230
val target_of = #target o bottom_of;
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   231
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   232
fun target f lthy =
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
   233
  let
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   234
    val ctxt = target_of lthy;
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   235
    val ctxt' = ctxt
33383
12d79ece3f7e modernized structure Context_Position;
wenzelm
parents: 33281
diff changeset
   236
      |> Context_Position.set_visible false
28406
daeb21fec18f target update: invisible context position avoids duplication of reports etc.;
wenzelm
parents: 28395
diff changeset
   237
      |> f
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   238
      |> Context_Position.restore_visible ctxt;
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 38757
diff changeset
   239
    val thy' = Proof_Context.theory_of ctxt';
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   240
  in map_contexts (fn 0 => K ctxt' | _ => Proof_Context.transfer thy') lthy end;
18876
ddb6803da197 added consts_retricted;
wenzelm
parents: 18823
diff changeset
   241
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   242
fun target_morphism lthy = standard_morphism lthy (target_of lthy);
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   243
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 36610
diff changeset
   244
fun propagate_ml_env (context as Context.Proof lthy) =
68865
dd44e31ca2c6 support multiple inheritance of ML environments, with canonical merge order as in Context.begin_theory;
wenzelm
parents: 68851
diff changeset
   245
      let val inherit = ML_Env.inherit [context] in
47064
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
   246
        lthy
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
   247
        |> background_theory (Context.theory_map inherit)
47245
ff1770df59b8 Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
wenzelm
parents: 47081
diff changeset
   248
        |> map_contexts (K (Context.proof_map inherit))
47064
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
   249
        |> Context.Proof
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
   250
      end
37949
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 36610
diff changeset
   251
  | propagate_ml_env context = context;
48a874444164 moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
wenzelm
parents: 36610
diff changeset
   252
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   253
47064
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
   254
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
   255
(** operations **)
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
   256
57194
d110b0d1bc12 tuned terminology: emphasize stack-like nature of nested local theories
haftmann
parents: 56809
diff changeset
   257
val operations_of = #operations o top_of;
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47064
diff changeset
   258
57938
wenzelm
parents: 57937
diff changeset
   259
fun operation f lthy = f (operations_of lthy) lthy;
73846
9447668d1b77 global interpretation into nested targets
haftmann
parents: 72953
diff changeset
   260
fun operation1 f x = operation (fn ops => f ops x);
57938
wenzelm
parents: 57937
diff changeset
   261
fun operation2 f x y = operation (fn ops => f ops x y);
wenzelm
parents: 57937
diff changeset
   262
47066
8a6124d09ff5 basic support for nested contexts including bundles;
wenzelm
parents: 47064
diff changeset
   263
47064
6cd9d6c93276 basic support for nested local theory targets;
wenzelm
parents: 47061
diff changeset
   264
(* primitives *)
18781
ea3b5e22eab5 added constant definition;
wenzelm
parents: 18767
diff changeset
   265
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   266
val pretty = operation #pretty;
52788
da1fdbfebd39 type theory is purely value-oriented;
wenzelm
parents: 52153
diff changeset
   267
val abbrev = operation2 #abbrev;
da1fdbfebd39 type theory is purely value-oriented;
wenzelm
parents: 52153
diff changeset
   268
val define = operation2 #define false;
da1fdbfebd39 type theory is purely value-oriented;
wenzelm
parents: 52153
diff changeset
   269
val define_internal = operation2 #define true;
da1fdbfebd39 type theory is purely value-oriented;
wenzelm
parents: 52153
diff changeset
   270
val notes_kind = operation2 #notes;
da1fdbfebd39 type theory is purely value-oriented;
wenzelm
parents: 52153
diff changeset
   271
val declaration = operation2 #declaration;
73846
9447668d1b77 global interpretation into nested targets
haftmann
parents: 72953
diff changeset
   272
val theory_registration = operation1 #theory_registration;
68851
6c9825c1e26b clarified signature: explicit type Locale.registration;
wenzelm
parents: 67652
diff changeset
   273
fun locale_dependency registration =
73846
9447668d1b77 global interpretation into nested targets
haftmann
parents: 72953
diff changeset
   274
  assert_bottom #> operation1 #locale_dependency registration;
18781
ea3b5e22eab5 added constant definition;
wenzelm
parents: 18767
diff changeset
   275
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36004
diff changeset
   276
57938
wenzelm
parents: 57937
diff changeset
   277
(* theorems *)
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36004
diff changeset
   278
33670
02b7738aef6a eliminated slightly odd kind argument of LocalTheory.note(s);
wenzelm
parents: 33519
diff changeset
   279
val notes = notes_kind "";
02b7738aef6a eliminated slightly odd kind argument of LocalTheory.note(s);
wenzelm
parents: 33519
diff changeset
   280
fun note (a, ths) = notes [(a, [(ths, [])])] #>> the_single;
18781
ea3b5e22eab5 added constant definition;
wenzelm
parents: 18767
diff changeset
   281
57929
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   282
fun add_thms_dynamic (binding, f) lthy =
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   283
  lthy
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   284
  |> background_theory_result (fn thy => thy
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   285
      |> Global_Theory.add_thms_dynamic' (Sign.inherit_naming thy lthy) (binding, f))
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   286
  |-> (fn name =>
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   287
    map_contexts (fn _ => fn ctxt =>
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   288
      Proof_Context.transfer_facts (Proof_Context.theory_of ctxt) ctxt) #>
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   289
    declaration {syntax = false, pervasive = false} (fn phi =>
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   290
      let val binding' = Morphism.binding phi binding in
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   291
        Context.mapping
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   292
          (Global_Theory.alias_fact binding' name)
66246
c2c18b6b48da tuned signature;
wenzelm
parents: 66245
diff changeset
   293
          (Proof_Context.alias_fact binding' name)
57929
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   294
      end));
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57926
diff changeset
   295
57938
wenzelm
parents: 57937
diff changeset
   296
wenzelm
parents: 57937
diff changeset
   297
(* default sort *)
wenzelm
parents: 57937
diff changeset
   298
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36004
diff changeset
   299
fun set_defsort S =
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42360
diff changeset
   300
  declaration {syntax = true, pervasive = false}
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42360
diff changeset
   301
    (K (Context.mapping (Sign.set_defsort S) (Proof_Context.set_defsort S)));
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36004
diff changeset
   302
35738
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
   303
74333
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   304
(* syntax *)
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   305
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   306
fun gen_syntax prep_type add mode raw_args lthy =
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   307
  let
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   308
    val args = map (fn (c, T, mx) => (c, prep_type lthy T, mx)) raw_args;
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   309
    val args' = map (fn (c, T, mx) => (c, T, Mixfix.reset_pos mx)) args;
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   310
    val _ = lthy |> Context_Position.is_visible lthy ? Proof_Context.syntax add mode args;
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   311
  in
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   312
    declaration {syntax = true, pervasive = false}
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   313
      (fn _ => Proof_Context.generic_syntax add mode args') lthy
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   314
  end;
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   315
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   316
val syntax = gen_syntax (K I);
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   317
val syntax_cmd = gen_syntax Proof_Context.read_typ_syntax;
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   318
a9b20bc32fa6 localized command 'syntax' and 'no_syntax';
wenzelm
parents: 73846
diff changeset
   319
35738
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
   320
(* notation *)
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
   321
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 33764
diff changeset
   322
fun type_notation add mode raw_args lthy =
50741
20e6e1a92e54 less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
wenzelm
parents: 50739
diff changeset
   323
  let
20e6e1a92e54 less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
wenzelm
parents: 50739
diff changeset
   324
    val args = map (apfst (Logic.type_map (Assumption.export_term lthy (target_of lthy)))) raw_args;
62844
eeea384cafc8 avoid duplicate reports;
wenzelm
parents: 62514
diff changeset
   325
    val args' = map (apsnd Mixfix.reset_pos) args;
eeea384cafc8 avoid duplicate reports;
wenzelm
parents: 62514
diff changeset
   326
    val _ = lthy |> Context_Position.is_visible lthy ? Proof_Context.type_notation add mode args;
50741
20e6e1a92e54 less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
wenzelm
parents: 50739
diff changeset
   327
  in
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42360
diff changeset
   328
    declaration {syntax = true, pervasive = false}
62844
eeea384cafc8 avoid duplicate reports;
wenzelm
parents: 62514
diff changeset
   329
      (Proof_Context.generic_type_notation add mode args') lthy
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42360
diff changeset
   330
  end;
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 33764
diff changeset
   331
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24933
diff changeset
   332
fun notation add mode raw_args lthy =
50741
20e6e1a92e54 less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
wenzelm
parents: 50739
diff changeset
   333
  let
20e6e1a92e54 less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
wenzelm
parents: 50739
diff changeset
   334
    val args = map (apfst (Assumption.export_term lthy (target_of lthy))) raw_args
62844
eeea384cafc8 avoid duplicate reports;
wenzelm
parents: 62514
diff changeset
   335
    val args' = map (apsnd Mixfix.reset_pos) args;
eeea384cafc8 avoid duplicate reports;
wenzelm
parents: 62514
diff changeset
   336
    val _ = lthy |> Context_Position.is_visible lthy ? Proof_Context.notation add mode args;
50741
20e6e1a92e54 less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
wenzelm
parents: 50739
diff changeset
   337
  in
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42360
diff changeset
   338
    declaration {syntax = true, pervasive = false}
62844
eeea384cafc8 avoid duplicate reports;
wenzelm
parents: 62514
diff changeset
   339
      (Proof_Context.generic_notation add mode args') lthy
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42360
diff changeset
   340
  end;
21743
fe94c6797c09 added notation/abbrev (from term_syntax.ML);
wenzelm
parents: 21700
diff changeset
   341
21664
dd4e89123359 notation/abbreviation: more serious handling of morphisms;
wenzelm
parents: 21614
diff changeset
   342
35738
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
   343
(* name space aliases *)
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
   344
57938
wenzelm
parents: 57937
diff changeset
   345
fun syntax_alias global_alias local_alias b name =
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42360
diff changeset
   346
  declaration {syntax = true, pervasive = false} (fn phi =>
35738
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
   347
    let val b' = Morphism.binding phi b
45298
aa35859c8741 uniform treatment of syntax declaration wrt. aux. context (NB: notation avoids duplicate mixfix internally);
wenzelm
parents: 45291
diff changeset
   348
    in Context.mapping (global_alias b' name) (local_alias b' name) end);
35738
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
   349
57938
wenzelm
parents: 57937
diff changeset
   350
val type_alias = syntax_alias Sign.type_alias Proof_Context.type_alias;
wenzelm
parents: 57937
diff changeset
   351
val const_alias = syntax_alias Sign.const_alias Proof_Context.const_alias;
35738
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
   352
98fd035c3fe3 added Local_Theory.alias operations (independent of target);
wenzelm
parents: 35412
diff changeset
   353
56055
8fe7414f00b1 slightly more rubust (and opportunistic) exit for old-fashioned theory_to_proof, which is used by global 'sublocale' with Named_Target.init but without proper exit;
wenzelm
parents: 54740
diff changeset
   354
59890
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   355
(** manage targets **)
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36004
diff changeset
   356
72153
bdbd6ff5fd0b misc tuning;
wenzelm
parents: 69708
diff changeset
   357
(* main target *)
20910
0e129a1df180 added exit;
wenzelm
parents: 20888
diff changeset
   358
72517
c2b643c9f2bf unified slots
haftmann
parents: 72516
diff changeset
   359
fun init_target background_naming conclude operations target =
72953
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   360
  Data.map (K [make_lthy (background_naming, operations, conclude, target)]) target
72516
17dc99589a91 unified Local_Theory.init with Generic_Target.init
haftmann
parents: 72505
diff changeset
   361
17dc99589a91 unified Local_Theory.init with Generic_Target.init
haftmann
parents: 72505
diff changeset
   362
fun init {background_naming, setup, conclude} operations thy =
17dc99589a91 unified Local_Theory.init with Generic_Target.init
haftmann
parents: 72505
diff changeset
   363
  thy
17dc99589a91 unified Local_Theory.init with Generic_Target.init
haftmann
parents: 72505
diff changeset
   364
  |> Sign.change_begin
17dc99589a91 unified Local_Theory.init with Generic_Target.init
haftmann
parents: 72505
diff changeset
   365
  |> setup
17dc99589a91 unified Local_Theory.init with Generic_Target.init
haftmann
parents: 72505
diff changeset
   366
  |> init_target background_naming (conclude #> target_of #> Sign.change_end_local) operations;
20910
0e129a1df180 added exit;
wenzelm
parents: 20888
diff changeset
   367
72517
c2b643c9f2bf unified slots
haftmann
parents: 72516
diff changeset
   368
val exit_of = #conclude o bottom_of;
66335
a849ce33923d treat exit separate from regular local theory operations
haftmann
parents: 66259
diff changeset
   369
72502
ff181cd78bb7 enforce strict nesting of local theories
haftmann
parents: 72451
diff changeset
   370
fun exit lthy = exit_of lthy (assert_bottom lthy);
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 38757
diff changeset
   371
val exit_global = Proof_Context.theory_of o exit;
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   372
72153
bdbd6ff5fd0b misc tuning;
wenzelm
parents: 69708
diff changeset
   373
fun exit_result decl (x, lthy) =
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   374
  let
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   375
    val ctxt = exit lthy;
33281
223ef9bc399a let naming transform binding beforehand -- covering only the "conceal" flag for now;
wenzelm
parents: 33276
diff changeset
   376
    val phi = standard_morphism lthy ctxt;
72153
bdbd6ff5fd0b misc tuning;
wenzelm
parents: 69708
diff changeset
   377
  in (decl phi x, ctxt) end;
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   378
72153
bdbd6ff5fd0b misc tuning;
wenzelm
parents: 69708
diff changeset
   379
fun exit_result_global decl (x, lthy) =
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   380
  let
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   381
    val thy = exit_global lthy;
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 38757
diff changeset
   382
    val thy_ctxt = Proof_Context.init_global thy;
33281
223ef9bc399a let naming transform binding beforehand -- covering only the "conceal" flag for now;
wenzelm
parents: 33276
diff changeset
   383
    val phi = standard_morphism lthy thy_ctxt;
72153
bdbd6ff5fd0b misc tuning;
wenzelm
parents: 69708
diff changeset
   384
  in (decl phi x, thy) end;
20910
0e129a1df180 added exit;
wenzelm
parents: 20888
diff changeset
   385
59890
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   386
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   387
(* nested targets *)
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   388
72450
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
   389
fun begin_nested lthy =
59890
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   390
  let
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   391
    val _ = assert lthy;
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   392
    val (scope, target) = Proof_Context.new_scope lthy;
72436
d62d84634b06 direct exit to theory when ending nested target on theory target
haftmann
parents: 72433
diff changeset
   393
    val entry = make_lthy (background_naming_of lthy, operations_of lthy,
72953
90ada01470cb clarified scope of concept
haftmann
parents: 72952
diff changeset
   394
      Proof_Context.restore_naming lthy, target);
72153
bdbd6ff5fd0b misc tuning;
wenzelm
parents: 69708
diff changeset
   395
    val lthy' = Data.map (cons entry) target;
59890
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   396
  in (scope, lthy') end;
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   397
72450
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
   398
fun end_nested lthy =
59890
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   399
  let
66259
b5279a21e658 clarified
haftmann
parents: 66246
diff changeset
   400
    val _ = assert_not_bottom lthy;
72517
c2b643c9f2bf unified slots
haftmann
parents: 72516
diff changeset
   401
    val ({conclude, ...} :: rest) = Data.get lthy;
c2b643c9f2bf unified slots
haftmann
parents: 72516
diff changeset
   402
  in lthy |> Data.put rest |> reset |> conclude end;
59890
01aff5aa081d tuned signature;
wenzelm
parents: 59887
diff changeset
   403
72450
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
   404
fun end_nested_result decl (x, lthy) =
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
   405
   let
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
   406
    val outer_lthy = end_nested lthy;
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
   407
    val phi = Proof_Context.export_morphism lthy outer_lthy;
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
   408
  in (decl phi x, outer_lthy) end;
24bd1316eaae consolidated names and operations
haftmann
parents: 72436
diff changeset
   409
18781
ea3b5e22eab5 added constant definition;
wenzelm
parents: 18767
diff changeset
   410
end;