src/Pure/Isar/named_target.ML
author wenzelm
Wed, 28 Dec 2011 13:00:51 +0100
changeset 46003 c0fe5e8e4864
parent 45601 d5178f19b671
child 47000 fba03dec7cbf
permissions -rw-r--r--
print case syntax depending on "show_cases" configuration option;
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
38350
480b2de9927c renamed Theory_Target to the more appropriate Named_Target
haftmann
parents: 38349
diff changeset
     5
Targets for theory, locale and class.
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
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    10
  val init: (local_theory -> local_theory) -> string -> theory -> local_theory
38388
94d5624dd1f7 Named_Target.theory_init
haftmann
parents: 38381
diff changeset
    11
  val theory_init: theory -> local_theory
38391
ba1cc1815ce1 named target is optional; explicit Name_Target.reinit
haftmann
parents: 38389
diff changeset
    12
  val reinit: local_theory -> local_theory -> local_theory
45488
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 45390
diff changeset
    13
  val context_cmd: xstring * Position.T -> theory -> local_theory
38391
ba1cc1815ce1 named target is optional; explicit Name_Target.reinit
haftmann
parents: 38389
diff changeset
    14
  val peek: local_theory -> {target: string, is_locale: bool, is_class: bool} option
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    15
end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    16
38350
480b2de9927c renamed Theory_Target to the more appropriate Named_Target
haftmann
parents: 38349
diff changeset
    17
structure Named_Target: NAMED_TARGET =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    18
struct
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    19
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    20
(* context data *)
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    21
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    22
datatype target =
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    23
  Target of {target: string, is_locale: bool, is_class: bool,
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    24
    before_exit: local_theory -> local_theory};
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    25
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    26
fun make_target target is_locale is_class before_exit =
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    27
  Target {target = target, is_locale = is_locale, is_class = is_class,
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    28
    before_exit = before_exit};
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    29
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    30
fun named_target _ "" before_exit = make_target "" false false before_exit
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    31
  | named_target thy locale before_exit =
38378
haftmann
parents: 38350
diff changeset
    32
      if Locale.defined thy locale
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    33
      then make_target locale true (Class.is_class thy locale) before_exit
38378
haftmann
parents: 38350
diff changeset
    34
      else error ("No such locale: " ^ quote locale);
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    35
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33466
diff changeset
    36
structure Data = Proof_Data
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    37
(
38391
ba1cc1815ce1 named target is optional; explicit Name_Target.reinit
haftmann
parents: 38389
diff changeset
    38
  type T = target option;
ba1cc1815ce1 named target is optional; explicit Name_Target.reinit
haftmann
parents: 38389
diff changeset
    39
  fun init _ = NONE;
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    40
);
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    41
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    42
val peek =
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    43
  Data.get #> Option.map (fn Target {target, is_locale, is_class, ...} =>
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
    44
    {target = target, is_locale = is_locale, is_class = is_class});
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    45
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    46
33456
fbd47f9b9b12 allow "pervasive" local theory declarations, which are applied the background theory;
wenzelm
parents: 33282
diff changeset
    47
(* generic declarations *)
fbd47f9b9b12 allow "pervasive" local theory declarations, which are applied the background theory;
wenzelm
parents: 33282
diff changeset
    48
45311
ca9e66c523a2 even more uniform Local_Theory.declaration for locales (cf. 57def0b39696, aa35859c8741);
wenzelm
parents: 45310
diff changeset
    49
fun locale_declaration locale syntax decl lthy =
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    50
  let
38305
ebc2abe6e160 restructured code for `declaration`
haftmann
parents: 38303
diff changeset
    51
    val add = if syntax then Locale.add_syntax_declaration else Locale.add_declaration;
ebc2abe6e160 restructured code for `declaration`
haftmann
parents: 38303
diff changeset
    52
    val locale_decl = Morphism.transform (Local_Theory.target_morphism lthy) decl;
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    53
  in
38305
ebc2abe6e160 restructured code for `declaration`
haftmann
parents: 38303
diff changeset
    54
    lthy
ebc2abe6e160 restructured code for `declaration`
haftmann
parents: 38303
diff changeset
    55
    |> Local_Theory.target (add locale locale_decl)
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    56
  end;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    57
45311
ca9e66c523a2 even more uniform Local_Theory.declaration for locales (cf. 57def0b39696, aa35859c8741);
wenzelm
parents: 45310
diff changeset
    58
fun target_declaration (Target {target, ...}) {syntax, pervasive} decl =
ca9e66c523a2 even more uniform Local_Theory.declaration for locales (cf. 57def0b39696, aa35859c8741);
wenzelm
parents: 45310
diff changeset
    59
  if target = "" then Generic_Target.theory_declaration decl
ca9e66c523a2 even more uniform Local_Theory.declaration for locales (cf. 57def0b39696, aa35859c8741);
wenzelm
parents: 45310
diff changeset
    60
  else
ca9e66c523a2 even more uniform Local_Theory.declaration for locales (cf. 57def0b39696, aa35859c8741);
wenzelm
parents: 45310
diff changeset
    61
    locale_declaration target syntax decl
ca9e66c523a2 even more uniform Local_Theory.declaration for locales (cf. 57def0b39696, aa35859c8741);
wenzelm
parents: 45310
diff changeset
    62
    #> pervasive ? Generic_Target.theory_declaration decl
ca9e66c523a2 even more uniform Local_Theory.declaration for locales (cf. 57def0b39696, aa35859c8741);
wenzelm
parents: 45310
diff changeset
    63
    #> not pervasive ? Context.proof_map (Morphism.form decl);
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    64
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    65
38297
e0ad78503186 more convenient order
haftmann
parents: 38296
diff changeset
    66
(* consts in locales *)
e0ad78503186 more convenient order
haftmann
parents: 38296
diff changeset
    67
45352
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    68
fun locale_const (ta as Target {target, is_class, ...}) (prmode as (mode, _)) ((b, mx), rhs) =
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    69
  locale_declaration target true (fn phi =>
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    70
    let
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    71
      val b' = Morphism.binding phi b;
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    72
      val rhs' = Morphism.term phi rhs;
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    73
      val arg = (b', Term.close_schematic_term rhs');
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    74
      val same_shape = Term.aconv_untyped (rhs, rhs');
38297
e0ad78503186 more convenient order
haftmann
parents: 38296
diff changeset
    75
45352
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    76
      (* FIXME workaround based on educated guess *)
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    77
      val prefix' = Binding.prefix_of b';
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    78
      val is_canonical_class = is_class andalso
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    79
        (Binding.eq_name (b, b')
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    80
          andalso not (null prefix')
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    81
          andalso List.last prefix' = (Class.class_prefix target, false)
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    82
        orelse same_shape);
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    83
    in
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    84
      not is_canonical_class ?
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    85
        (Context.mapping_result
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    86
          (Sign.add_abbrev Print_Mode.internal arg)
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    87
          (Proof_Context.add_abbrev Print_Mode.internal arg)
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    88
        #-> (fn (lhs' as Const (d, _), _) =>
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    89
            same_shape ?
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    90
              (Context.mapping
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    91
                (Sign.revert_abbrev mode d) (Proof_Context.revert_abbrev mode d) #>
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    92
               Morphism.form (Proof_Context.target_notation true prmode [(lhs', mx)]))))
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
    93
    end);
38305
ebc2abe6e160 restructured code for `declaration`
haftmann
parents: 38303
diff changeset
    94
38297
e0ad78503186 more convenient order
haftmann
parents: 38296
diff changeset
    95
38318
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
    96
(* define *)
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
    97
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
    98
fun locale_foundation ta (((b, U), mx), (b_def, rhs)) (type_params, term_params) =
38341
72dba5bd5f63 moved theory-level target operation fragements to Generic_Target; adjusted bootstrap order
haftmann
parents: 38339
diff changeset
    99
  Generic_Target.theory_foundation (((b, U), NoSyn), (b_def, rhs)) (type_params, term_params)
45352
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
   100
  #-> (fn (lhs, def) => locale_const ta Syntax.mode_default ((b, mx), lhs)
38318
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
   101
    #> pair (lhs, def))
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
   102
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
   103
fun class_foundation (ta as Target {target, ...})
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
   104
    (((b, U), mx), (b_def, rhs)) (type_params, term_params) =
38341
72dba5bd5f63 moved theory-level target operation fragements to Generic_Target; adjusted bootstrap order
haftmann
parents: 38339
diff changeset
   105
  Generic_Target.theory_foundation (((b, U), NoSyn), (b_def, rhs)) (type_params, term_params)
45352
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
   106
  #-> (fn (lhs, def) => locale_const ta Syntax.mode_default ((b, NoSyn), lhs)
38619
25e401d53900 tuned: less formal noise in Named_Target, more coherence in Class
haftmann
parents: 38392
diff changeset
   107
    #> Class.const target ((b, mx), (type_params, lhs))
38318
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
   108
    #> pair (lhs, def))
1fade69519ab different foundations for different targets; simplified syntax handling of abbreviations
haftmann
parents: 38314
diff changeset
   109
39639
haftmann
parents: 39557
diff changeset
   110
fun target_foundation (ta as Target {is_locale, is_class, ...}) =
38349
ed50e21e715a discontinue old implementation of `foundation`
haftmann
parents: 38348
diff changeset
   111
  if is_class then class_foundation ta
ed50e21e715a discontinue old implementation of `foundation`
haftmann
parents: 38348
diff changeset
   112
  else if is_locale then locale_foundation ta
ed50e21e715a discontinue old implementation of `foundation`
haftmann
parents: 38348
diff changeset
   113
  else Generic_Target.theory_foundation;
38303
ad4b59e9d0f9 factored out foundation of `define` into separate function
haftmann
parents: 38302
diff changeset
   114
24939
wenzelm
parents: 24935
diff changeset
   115
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   116
(* notes *)
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   117
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39639
diff changeset
   118
fun locale_notes locale kind global_facts local_facts lthy =
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   119
  let
45390
e29521ef9059 tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents: 45375
diff changeset
   120
    val global_facts' = Attrib.map_facts (K []) global_facts;
45581
ac32737ff69e partial evaluation of locale facts leads to static scoping of rule attributes;
wenzelm
parents: 45488
diff changeset
   121
    val local_facts' = local_facts
ac32737ff69e partial evaluation of locale facts leads to static scoping of rule attributes;
wenzelm
parents: 45488
diff changeset
   122
      |> Attrib.partial_evaluation lthy
45601
d5178f19b671 tuned signature;
wenzelm
parents: 45581
diff changeset
   123
      |> Element.transform_facts (Local_Theory.target_morphism lthy);
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   124
  in
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   125
    lthy
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 38757
diff changeset
   126
    |> Local_Theory.background_theory (Global_Theory.note_thmss kind global_facts' #> snd)
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   127
    |> Local_Theory.target (Locale.add_thmss locale kind local_facts')
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   128
  end
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   129
39639
haftmann
parents: 39557
diff changeset
   130
fun target_notes (Target {target, is_locale, ...}) =
38319
1cfc2b128e33 separate initialisation for overloading and instantiation target
haftmann
parents: 38318
diff changeset
   131
  if is_locale then locale_notes target
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39639
diff changeset
   132
  else fn kind => fn global_facts => fn _ => Generic_Target.theory_notes kind global_facts;
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   133
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   134
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   135
(* abbrev *)
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   136
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: 38619
diff changeset
   137
fun locale_abbrev ta prmode ((b, mx), t) xs =
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: 38619
diff changeset
   138
  Local_Theory.background_theory_result
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: 38619
diff changeset
   139
    (Sign.add_abbrev Print_Mode.internal (b, t)) #->
45352
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
   140
      (fn (lhs, _) => locale_const ta prmode
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: 38619
diff changeset
   141
        ((b, mx), Term.list_comb (Logic.unvarify_global lhs, xs)));
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   142
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   143
fun target_abbrev (ta as Target {target, is_locale, is_class, ...})
38312
9dd57db3c0f2 moved extra_tfrees check for mixfix syntax to Generic_Target
haftmann
parents: 38311
diff changeset
   144
    prmode (b, mx) (global_rhs, t') xs lthy =
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: 38619
diff changeset
   145
  if is_locale then
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: 38619
diff changeset
   146
    lthy
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: 38619
diff changeset
   147
    |> locale_abbrev ta prmode ((b, if is_class then NoSyn else mx), global_rhs) xs
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: 38619
diff changeset
   148
    |> is_class ? Class.abbrev target prmode ((b, mx), t')
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: 38619
diff changeset
   149
  else
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: 38619
diff changeset
   150
    lthy
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: 38619
diff changeset
   151
    |> Generic_Target.theory_abbrev prmode ((b, mx), global_rhs);
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   152
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   153
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   154
(* pretty *)
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   155
39639
haftmann
parents: 39557
diff changeset
   156
fun pretty (Target {target, is_locale, is_class, ...}) ctxt =
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   157
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 41959
diff changeset
   158
    val thy = Proof_Context.theory_of ctxt;
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   159
    val target_name =
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   160
      [Pretty.command (if is_class then "class" else "locale"),
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   161
        Pretty.str (" " ^ Locale.extern thy target)];
45353
wenzelm
parents: 45352
diff changeset
   162
    val fixes =
wenzelm
parents: 45352
diff changeset
   163
      map (fn (x, T) => (Binding.name x, SOME T, NoSyn))
wenzelm
parents: 45352
diff changeset
   164
        (#1 (Proof_Context.inferred_fixes ctxt));
wenzelm
parents: 45352
diff changeset
   165
    val assumes =
wenzelm
parents: 45352
diff changeset
   166
      map (fn A => (Attrib.empty_binding, [(Thm.term_of A, [])]))
wenzelm
parents: 45352
diff changeset
   167
        (Assumption.all_assms_of ctxt);
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   168
    val elems =
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   169
      (if null fixes then [] else [Element.Fixes fixes]) @
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   170
      (if null assumes then [] else [Element.Assumes assumes]);
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39639
diff changeset
   171
    val body_elems =
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39639
diff changeset
   172
      if not is_locale then []
39639
haftmann
parents: 39557
diff changeset
   173
      else if null elems then [Pretty.block target_name]
haftmann
parents: 39557
diff changeset
   174
      else [Pretty.block (Pretty.fbreaks (Pretty.block (target_name @ [Pretty.str " ="]) ::
40782
aa533c5e3f48 superficial tuning;
wenzelm
parents: 39639
diff changeset
   175
        map (Pretty.chunks o Element.pretty_ctxt ctxt) elems))];
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   176
  in
39639
haftmann
parents: 39557
diff changeset
   177
    Pretty.block [Pretty.command "theory", Pretty.brk 1,
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 41959
diff changeset
   178
      Pretty.str (Context.theory_name (Proof_Context.theory_of ctxt))] :: body_elems
38308
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   179
  end;
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   180
0e4649095739 try to uniformly follow define/note/abbrev/declaration order as close as possible
haftmann
parents: 38307
diff changeset
   181
38378
haftmann
parents: 38350
diff changeset
   182
(* init *)
25291
870455627720 misc cleanup of init functions;
wenzelm
parents: 25269
diff changeset
   183
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
   184
fun init_context (Target {target, is_locale, is_class, ...}) =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 41959
diff changeset
   185
  if not is_locale then Proof_Context.init_global
29576
669b560fc2b9 wrecked old locale package and related modules
haftmann
parents: 29393
diff changeset
   186
  else if not is_class then Locale.init target
38379
67d71449e85b more convenient split of class modules: class and class_declaration
haftmann
parents: 38378
diff changeset
   187
  else Class.init target;
25269
f9090ae5cec9 clarified theory target interface
haftmann
parents: 25240
diff changeset
   188
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
   189
fun init before_exit target thy =
39639
haftmann
parents: 39557
diff changeset
   190
  let
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
   191
    val ta = named_target thy target before_exit;
39639
haftmann
parents: 39557
diff changeset
   192
  in
haftmann
parents: 39557
diff changeset
   193
    thy
haftmann
parents: 39557
diff changeset
   194
    |> init_context ta
haftmann
parents: 39557
diff changeset
   195
    |> Data.put (SOME ta)
haftmann
parents: 39557
diff changeset
   196
    |> Local_Theory.init NONE (Long_Name.base_name target)
haftmann
parents: 39557
diff changeset
   197
       {define = Generic_Target.define (target_foundation ta),
haftmann
parents: 39557
diff changeset
   198
        notes = Generic_Target.notes (target_notes ta),
haftmann
parents: 39557
diff changeset
   199
        abbrev = Generic_Target.abbrev (target_abbrev ta),
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 45290
diff changeset
   200
        declaration = target_declaration ta,
39639
haftmann
parents: 39557
diff changeset
   201
        pretty = pretty ta,
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
   202
        exit = Local_Theory.target_of o before_exit}
39639
haftmann
parents: 39557
diff changeset
   203
  end;
38247
12d3a5f04a72 unravelled target initialization code
haftmann
parents: 37314
diff changeset
   204
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
   205
val theory_init = init I "";
25269
f9090ae5cec9 clarified theory target interface
haftmann
parents: 25240
diff changeset
   206
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: 38619
diff changeset
   207
fun reinit lthy =
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 40782
diff changeset
   208
  (case Data.get lthy of
45352
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
   209
    SOME (Target {target, before_exit, ...}) =>
0b4038361a3a misc tuning;
wenzelm
parents: 45311
diff changeset
   210
      init before_exit target o Local_Theory.exit_global
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: 38619
diff changeset
   211
  | NONE => error "Not in a named target");
38391
ba1cc1815ce1 named target is optional; explicit Name_Target.reinit
haftmann
parents: 38389
diff changeset
   212
45488
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 45390
diff changeset
   213
fun context_cmd ("-", _) thy = init I "" thy
6d71d9e52369 pass positions for named targets, for formal links in the document model;
wenzelm
parents: 45390
diff changeset
   214
  | context_cmd target thy = init I (Locale.check thy target) thy;
33282
c6364889fea5 misc tuning;
wenzelm
parents: 33173
diff changeset
   215
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   216
end;