src/Pure/Isar/named_target.ML
author haftmann
Fri, 04 Aug 2017 08:13:00 +0200
changeset 66338 1a8441ec5ced
parent 66337 5caea089dd17
child 67615 967213048e55
permissions -rw-r--r--
tuned
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41959
b460124855b8 tuned headers;
wenzelm
parents: 41585
diff changeset
     1
(*  Title:      Pure/Isar/named_target.ML
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
30437
910a7aeb8dec more precise treatment of qualified bindings;
wenzelm
parents: 30364
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     4
66338
haftmann
parents: 66337
diff changeset
     5
Targets for theory, locale, class -- at the bottom of the nested structure.
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     6
*)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     7
38350
480b2de9927c renamed Theory_Target to the more appropriate Named_Target
haftmann
parents: 38349
diff changeset
     8
signature NAMED_TARGET =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     9
sig
52140
88a69da5d3fa tuned structure
haftmann
parents: 52103
diff changeset
    10
  val is_theory: local_theory -> bool
57182
79d43c510b84 less baroque interface
haftmann
parents: 57181
diff changeset
    11
  val locale_of: local_theory -> string option
57195
ec0e10f11276 recovered level-free fishing for locale, accidentally lost in dce365931721
haftmann
parents: 57193
diff changeset
    12
  val bottom_locale_of: local_theory -> string option
57182
79d43c510b84 less baroque interface
haftmann
parents: 57181
diff changeset
    13
  val class_of: local_theory -> string option
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
    14
  val init: string -> theory -> local_theory
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
    15
  val init': {setup: local_theory -> local_theory, conclude: local_theory -> local_theory} ->
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
    16
    string -> theory -> local_theory
38388
94d5624dd1f7 Named_Target.theory_init
haftmann
parents: 38381
diff changeset
    17
  val theory_init: theory -> local_theory
58665
50b229a5a097 tuned signature;
wenzelm
parents: 57485
diff changeset
    18
  val theory_map: (local_theory -> local_theory) -> theory -> theory
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
    19
  val begin: xstring * Position.T -> theory -> local_theory
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
    20
  val exit: local_theory -> theory
63402
f199837304d7 tuned signature;
wenzelm
parents: 63352
diff changeset
    21
  val switch: (xstring * Position.T) option -> Context.generic ->
f199837304d7 tuned signature;
wenzelm
parents: 63352
diff changeset
    22
    (local_theory -> Context.generic) * local_theory
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    23
end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    24
38350
480b2de9927c renamed Theory_Target to the more appropriate Named_Target
haftmann
parents: 38349
diff changeset
    25
structure Named_Target: NAMED_TARGET =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    26
struct
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    27
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    28
(* context data *)
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    29
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    30
datatype target = Theory | Locale of string | Class of string;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    31
66338
haftmann
parents: 66337
diff changeset
    32
fun target_of_ident _ "" = Theory
haftmann
parents: 66337
diff changeset
    33
  | target_of_ident thy ident =
haftmann
parents: 66337
diff changeset
    34
      if Locale.defined thy ident
haftmann
parents: 66337
diff changeset
    35
      then (if Class.is_class thy ident then Class else Locale) ident
haftmann
parents: 66337
diff changeset
    36
      else error ("No such locale: " ^ quote ident);
haftmann
parents: 66337
diff changeset
    37
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    38
fun ident_of_target Theory = ""
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    39
  | ident_of_target (Locale locale) = locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    40
  | ident_of_target (Class class) = class;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    41
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    42
fun target_is_theory (SOME Theory) = true
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    43
  | target_is_theory _ = false;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    44
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    45
fun locale_of_target (SOME (Locale locale)) = SOME locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    46
  | locale_of_target (SOME (Class locale)) = SOME locale
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    47
  | locale_of_target _ = NONE;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    48
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    49
fun class_of_target (SOME (Class class)) = SOME class
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    50
  | class_of_target _ = NONE;
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    51
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33466
diff changeset
    52
structure Data = Proof_Data
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    53
(
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    54
  type T = target option;
38391
ba1cc1815ce1 named target is optional; explicit Name_Target.reinit
haftmann
parents: 38389
diff changeset
    55
  fun init _ = NONE;
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    56
);
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    57
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    58
val get_bottom_target = Data.get;
57195
ec0e10f11276 recovered level-free fishing for locale, accidentally lost in dce365931721
haftmann
parents: 57193
diff changeset
    59
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    60
fun get_target lthy =
57177
dce365931721 sharpened criterion: bare named target is only at the bottom level
haftmann
parents: 57176
diff changeset
    61
  if Local_Theory.level lthy = 1
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    62
  then get_bottom_target lthy
57177
dce365931721 sharpened criterion: bare named target is only at the bottom level
haftmann
parents: 57176
diff changeset
    63
  else NONE;
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    64
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    65
fun ident_of lthy =
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    66
  case get_target lthy of
57484
cc309f3c0490 restore exactly named target, prevent non-named targets to participate in the ad-hoc switch game
haftmann
parents: 57483
diff changeset
    67
    NONE => error "Not in a named target"
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    68
  | SOME target => ident_of_target target;
57484
cc309f3c0490 restore exactly named target, prevent non-named targets to participate in the ad-hoc switch game
haftmann
parents: 57483
diff changeset
    69
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    70
val is_theory = target_is_theory o get_target;
57195
ec0e10f11276 recovered level-free fishing for locale, accidentally lost in dce365931721
haftmann
parents: 57193
diff changeset
    71
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    72
val locale_of = locale_of_target o get_target;
57196
d9a18e44b80d tuned data structure
haftmann
parents: 57195
diff changeset
    73
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    74
val bottom_locale_of = locale_of_target o get_bottom_target;
57182
79d43c510b84 less baroque interface
haftmann
parents: 57181
diff changeset
    75
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
    76
val class_of = class_of_target o get_target;
57182
79d43c510b84 less baroque interface
haftmann
parents: 57181
diff changeset
    77
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    78
61777
f9e05eab6e3c tuned sections
haftmann
parents: 60344
diff changeset
    79
(* operations *)
38318
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
    80
57074
9a631586e3e5 tuned names
haftmann
parents: 57073
diff changeset
    81
fun locale_foundation locale (((b, U), mx), (b_def, rhs)) params =
47289
wenzelm
parents: 47288
diff changeset
    82
  Generic_Target.background_foundation (((b, U), NoSyn), (b_def, rhs)) params
57074
9a631586e3e5 tuned names
haftmann
parents: 57073
diff changeset
    83
  #-> (fn (lhs, def) => Generic_Target.locale_const locale Syntax.mode_default ((b, mx), lhs)
47282
57d486231c92 more general standard_declaration;
wenzelm
parents: 47279
diff changeset
    84
    #> pair (lhs, def));
38318
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
    85
57074
9a631586e3e5 tuned names
haftmann
parents: 57073
diff changeset
    86
fun class_foundation class (((b, U), mx), (b_def, rhs)) params =
47289
wenzelm
parents: 47288
diff changeset
    87
  Generic_Target.background_foundation (((b, U), NoSyn), (b_def, rhs)) params
57074
9a631586e3e5 tuned names
haftmann
parents: 57073
diff changeset
    88
  #-> (fn (lhs, def) => Class.const class ((b, mx), lhs) params
47282
57d486231c92 more general standard_declaration;
wenzelm
parents: 47279
diff changeset
    89
    #> pair (lhs, def));
38318
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
    90
66338
haftmann
parents: 66337
diff changeset
    91
fun operations Theory =
haftmann
parents: 66337
diff changeset
    92
      {define = Generic_Target.define Generic_Target.theory_target_foundation,
haftmann
parents: 66337
diff changeset
    93
       notes = Generic_Target.notes Generic_Target.theory_target_notes,
haftmann
parents: 66337
diff changeset
    94
       abbrev = Generic_Target.theory_abbrev,
haftmann
parents: 66337
diff changeset
    95
       declaration = fn _ => Generic_Target.theory_declaration,
haftmann
parents: 66337
diff changeset
    96
       theory_registration = Generic_Target.theory_registration,
haftmann
parents: 66337
diff changeset
    97
       locale_dependency = fn _ => error "Not possible in theory target",
haftmann
parents: 66337
diff changeset
    98
       pretty = fn ctxt => [Pretty.block [Pretty.keyword1 "theory", Pretty.brk 1,
haftmann
parents: 66337
diff changeset
    99
        Pretty.str (Context.theory_name (Proof_Context.theory_of ctxt))]]}
haftmann
parents: 66337
diff changeset
   100
  | operations (Locale locale) =
haftmann
parents: 66337
diff changeset
   101
      {define = Generic_Target.define (locale_foundation locale),
haftmann
parents: 66337
diff changeset
   102
       notes = Generic_Target.notes (Generic_Target.locale_target_notes locale),
haftmann
parents: 66337
diff changeset
   103
       abbrev = Generic_Target.locale_abbrev locale,
haftmann
parents: 66337
diff changeset
   104
       declaration = Generic_Target.locale_declaration locale,
haftmann
parents: 66337
diff changeset
   105
       theory_registration = fn _ => error "Not possible in locale target",
haftmann
parents: 66337
diff changeset
   106
       locale_dependency = Generic_Target.locale_dependency locale,
haftmann
parents: 66337
diff changeset
   107
       pretty = fn ctxt => Locale.pretty_locale (Proof_Context.theory_of ctxt) false locale}
haftmann
parents: 66337
diff changeset
   108
  | operations (Class class) =
haftmann
parents: 66337
diff changeset
   109
      {define = Generic_Target.define (class_foundation class),
haftmann
parents: 66337
diff changeset
   110
       notes = Generic_Target.notes (Generic_Target.locale_target_notes class),
haftmann
parents: 66337
diff changeset
   111
       abbrev = Class.abbrev class,
haftmann
parents: 66337
diff changeset
   112
       declaration = Generic_Target.locale_declaration class,
haftmann
parents: 66337
diff changeset
   113
       theory_registration = fn _ => error "Not possible in class target",
haftmann
parents: 66337
diff changeset
   114
       locale_dependency = Generic_Target.locale_dependency class,
haftmann
parents: 66337
diff changeset
   115
       pretty = fn ctxt => Class.pretty_specification (Proof_Context.theory_of ctxt) class};
61890
f6ded81f5690 abandoned attempt to unify sublocale and interpretation into global theories
haftmann
parents: 61777
diff changeset
   116
66338
haftmann
parents: 66337
diff changeset
   117
fun setup_context Theory = Proof_Context.init_global
haftmann
parents: 66337
diff changeset
   118
  | setup_context (Locale locale) = Locale.init locale
haftmann
parents: 66337
diff changeset
   119
  | setup_context (Class class) = Class.init class;
25269
f9090ae5cec9 clarified theory target interface
haftmann
parents: 25240
diff changeset
   120
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   121
fun init' {setup, conclude} ident thy =
39639
haftmann
parents: 39557
diff changeset
   122
  let
66338
haftmann
parents: 66337
diff changeset
   123
    val target = target_of_ident thy ident;
39639
haftmann
parents: 39557
diff changeset
   124
  in
haftmann
parents: 39557
diff changeset
   125
    thy
66337
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   126
    |> Generic_Target.init
66335
a849ce33923d treat exit separate from regular local theory operations
haftmann
parents: 66334
diff changeset
   127
       {background_naming = Sign.naming_of thy |> Name_Space.mandatory_path (Long_Name.base_name ident),
66338
haftmann
parents: 66337
diff changeset
   128
        setup = setup_context target #> setup,
66337
5caea089dd17 more structural sharing between common target Generic_Target.init
haftmann
parents: 66335
diff changeset
   129
        conclude = conclude}
66338
haftmann
parents: 66337
diff changeset
   130
       (operations target)
39639
haftmann
parents: 39557
diff changeset
   131
  end;
38247
12d3a5f04a72 unravelled target initialization code
haftmann
parents: 37314
diff changeset
   132
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   133
fun init ident thy =
66338
haftmann
parents: 66337
diff changeset
   134
  init' {setup = Data.put (SOME (target_of_ident thy ident)), conclude = I} ident thy;
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   135
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   136
val theory_init = init "";
66333
30c1639a343a prefer explicit datatype over implicit sum;
haftmann
parents: 66259
diff changeset
   137
58665
50b229a5a097 tuned signature;
wenzelm
parents: 57485
diff changeset
   138
fun theory_map f = theory_init #> f #> Local_Theory.exit_global;
50b229a5a097 tuned signature;
wenzelm
parents: 57485
diff changeset
   139
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   140
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   141
(* toplevel interaction *)
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   142
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   143
fun begin ("-", _) thy = theory_init thy
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   144
  | begin target thy = init (Locale.check thy target) thy;
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   145
66259
b5279a21e658 clarified
haftmann
parents: 63402
diff changeset
   146
val exit = Local_Theory.assert_bottom #> Local_Theory.exit_global;
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   147
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   148
fun switch NONE (Context.Theory thy) =
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   149
      (Context.Theory o exit, theory_init thy)
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   150
  | switch (SOME name) (Context.Theory thy) =
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   151
      (Context.Theory o exit, begin name thy)
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   152
  | switch NONE (Context.Proof lthy) =
62514
aae510e9a698 tuned signature;
wenzelm
parents: 62239
diff changeset
   153
      (Context.Proof o Local_Theory.reset, lthy)
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   154
  | switch (SOME name) (Context.Proof lthy) =
66334
b210ae666a42 provide explicit variant initializers for regular named target vs. almost-named target
haftmann
parents: 66333
diff changeset
   155
      (Context.Proof o init (ident_of lthy) o exit,
57483
950dc7446454 centralized (ad-hoc) switching of targets in named_target.ML
haftmann
parents: 57196
diff changeset
   156
        (begin name o exit o Local_Theory.assert_nonbrittle) lthy);
33282
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   157
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   158
end;