src/Pure/Isar/named_target.ML
author haftmann
Fri, 20 Aug 2010 08:52:01 +0200
changeset 38842 25e401d53900
parent 38618 8a3ca8b96b23
child 39032 2b3e054ae6fc
permissions -rw-r--r--
tuned: less formal noise in Named_Target, more coherence in Class
     1 (*  Title:      Pure/Isar/theory_target.ML
     2     Author:     Makarius
     3     Author:     Florian Haftmann, TU Muenchen
     4 
     5 Targets for theory, locale and class.
     6 *)
     7 
     8 signature NAMED_TARGET =
     9 sig
    10   val init: string -> theory -> local_theory
    11   val theory_init: theory -> local_theory
    12   val reinit: local_theory -> local_theory -> local_theory
    13   val context_cmd: xstring -> theory -> local_theory
    14   val peek: local_theory -> {target: string, is_locale: bool, is_class: bool} option
    15 end;
    16 
    17 structure Named_Target: NAMED_TARGET =
    18 struct
    19 
    20 (* context data *)
    21 
    22 datatype target = Target of {target: string, is_locale: bool, is_class: bool};
    23 
    24 fun make_target target is_locale is_class =
    25   Target {target = target, is_locale = is_locale, is_class = is_class};
    26 
    27 val global_target = Target {target = "", is_locale = false, is_class = false};
    28 
    29 fun named_target _ "" = global_target
    30   | named_target thy locale =
    31       if Locale.defined thy locale
    32       then Target {target = locale, is_locale = true, is_class = Class.is_class thy locale}
    33       else error ("No such locale: " ^ quote locale);
    34 
    35 structure Data = Proof_Data
    36 (
    37   type T = target option;
    38   fun init _ = NONE;
    39 );
    40 
    41 val peek = Option.map (fn Target args => args) o Data.get;
    42 
    43 
    44 (* generic declarations *)
    45 
    46 fun locale_declaration locale { syntax, pervasive } decl lthy =
    47   let
    48     val add = if syntax then Locale.add_syntax_declaration else Locale.add_declaration;
    49     val locale_decl = Morphism.transform (Local_Theory.target_morphism lthy) decl;
    50   in
    51     lthy
    52     |> pervasive ? Generic_Target.theory_declaration decl
    53     |> Local_Theory.target (add locale locale_decl)
    54   end;
    55 
    56 fun target_declaration (Target {target, ...}) { syntax, pervasive } =
    57   if target = "" then Generic_Target.theory_declaration
    58   else locale_declaration target { syntax = syntax, pervasive = pervasive };
    59 
    60 
    61 (* consts in locales *)
    62 
    63 fun locale_const (Target {target, is_class, ...}) (prmode as (mode, _)) ((b, mx), rhs) phi =
    64   let
    65     val b' = Morphism.binding phi b;
    66     val rhs' = Morphism.term phi rhs;
    67     val arg = (b', Term.close_schematic_term rhs');
    68     val same_shape = Term.aconv_untyped (rhs, rhs');
    69     (* FIXME workaround based on educated guess *)
    70     val prefix' = Binding.prefix_of b';
    71     val is_canonical_class = is_class andalso
    72       (Binding.eq_name (b, b')
    73         andalso not (null prefix')
    74         andalso List.last prefix' = (Class.class_prefix target, false)
    75       orelse same_shape);
    76   in
    77     not is_canonical_class ?
    78       (Context.mapping_result
    79         (Sign.add_abbrev Print_Mode.internal arg)
    80         (ProofContext.add_abbrev Print_Mode.internal arg)
    81       #-> (fn (lhs' as Const (d, _), _) =>
    82           same_shape ?
    83             (Context.mapping
    84               (Sign.revert_abbrev mode d) (ProofContext.revert_abbrev mode d) #>
    85              Morphism.form (ProofContext.target_notation true prmode [(lhs', mx)]))))
    86   end;
    87 
    88 fun locale_const_declaration (ta as Target {target, ...}) prmode arg =
    89   locale_declaration target { syntax = true, pervasive = false } (locale_const ta prmode arg);
    90 
    91 
    92 (* define *)
    93 
    94 fun locale_foundation ta (((b, U), mx), (b_def, rhs)) (type_params, term_params) =
    95   Generic_Target.theory_foundation (((b, U), NoSyn), (b_def, rhs)) (type_params, term_params)
    96   #-> (fn (lhs, def) => locale_const_declaration ta Syntax.mode_default ((b, mx), lhs)
    97     #> pair (lhs, def))
    98 
    99 fun class_foundation (ta as Target {target, ...})
   100     (((b, U), mx), (b_def, rhs)) (type_params, term_params) =
   101   Generic_Target.theory_foundation (((b, U), NoSyn), (b_def, rhs)) (type_params, term_params)
   102   #-> (fn (lhs, def) => locale_const_declaration ta Syntax.mode_default ((b, NoSyn), lhs)
   103     #> Class.const target ((b, mx), (type_params, lhs))
   104     #> pair (lhs, def))
   105 
   106 fun target_foundation (ta as Target {target, is_locale, is_class, ...}) =
   107   if is_class then class_foundation ta
   108   else if is_locale then locale_foundation ta
   109   else Generic_Target.theory_foundation;
   110 
   111 
   112 (* notes *)
   113 
   114 fun locale_notes locale kind global_facts local_facts lthy = 
   115   let
   116     val global_facts' = Attrib.map_facts (K I) global_facts;
   117     val local_facts' = Element.facts_map
   118       (Element.morph_ctxt (Local_Theory.target_morphism lthy)) local_facts;
   119   in
   120     lthy
   121     |> Local_Theory.theory (PureThy.note_thmss kind global_facts' #> snd)
   122     |> Local_Theory.target (Locale.add_thmss locale kind local_facts')
   123   end
   124 
   125 fun target_notes (ta as Target {target, is_locale, ...}) =
   126   if is_locale then locale_notes target
   127     else fn kind => fn global_facts => fn _ => Generic_Target.theory_notes kind global_facts;
   128 
   129 
   130 (* abbrev *)
   131 
   132 fun locale_abbrev ta prmode ((b, mx), t) xs = Local_Theory.theory_result
   133   (Sign.add_abbrev Print_Mode.internal (b, t)) #->
   134     (fn (lhs, _) => locale_const_declaration ta prmode
   135       ((b, mx), Term.list_comb (Logic.unvarify_global lhs, xs)));
   136 
   137 fun target_abbrev (ta as Target {target, is_locale, is_class, ...})
   138     prmode (b, mx) (global_rhs, t') xs lthy =
   139   if is_locale
   140     then lthy
   141       |> locale_abbrev ta prmode ((b, if is_class then NoSyn else mx), global_rhs) xs
   142       |> is_class ? Class.abbrev target prmode ((b, mx), t')
   143     else lthy
   144       |> Generic_Target.theory_abbrev prmode ((b, mx), global_rhs);
   145 
   146 
   147 (* pretty *)
   148 
   149 fun pretty_thy ctxt target is_class =
   150   let
   151     val thy = ProofContext.theory_of ctxt;
   152     val target_name =
   153       [Pretty.command (if is_class then "class" else "locale"),
   154         Pretty.str (" " ^ Locale.extern thy target)];
   155     val fixes = map (fn (x, T) => (Binding.name x, SOME T, NoSyn))
   156       (#1 (ProofContext.inferred_fixes ctxt));
   157     val assumes = map (fn A => (Attrib.empty_binding, [(Thm.term_of A, [])]))
   158       (Assumption.all_assms_of ctxt);
   159     val elems =
   160       (if null fixes then [] else [Element.Fixes fixes]) @
   161       (if null assumes then [] else [Element.Assumes assumes]);
   162   in
   163     if target = "" then []
   164     else if null elems then [Pretty.block target_name]
   165     else [Pretty.block (Pretty.fbreaks (Pretty.block (target_name @ [Pretty.str " ="]) ::
   166       map (Pretty.chunks o Element.pretty_ctxt ctxt) elems))]
   167   end;
   168 
   169 fun pretty (Target {target, is_class, ...}) ctxt =
   170   Pretty.block [Pretty.command "theory", Pretty.brk 1,
   171       Pretty.str (Context.theory_name (ProofContext.theory_of ctxt))] ::
   172     pretty_thy ctxt target is_class;
   173 
   174 
   175 (* init *)
   176 
   177 local
   178 
   179 fun init_context (Target {target, is_locale, is_class}) =
   180   if not is_locale then ProofContext.init_global
   181   else if not is_class then Locale.init target
   182   else Class.init target;
   183 
   184 fun init_target (ta as Target {target, ...}) thy =
   185   thy
   186   |> init_context ta
   187   |> Data.put (SOME ta)
   188   |> Local_Theory.init NONE (Long_Name.base_name target)
   189      {define = Generic_Target.define (target_foundation ta),
   190       notes = Generic_Target.notes (target_notes ta),
   191       abbrev = Generic_Target.abbrev (target_abbrev ta),
   192       declaration = fn pervasive => target_declaration ta
   193         { syntax = false, pervasive = pervasive },
   194       syntax_declaration = fn pervasive => target_declaration ta
   195         { syntax = true, pervasive = pervasive },
   196       pretty = pretty ta,
   197       exit = Local_Theory.target_of};
   198 
   199 in
   200 
   201 fun init target thy = init_target (named_target thy target) thy;
   202 
   203 fun reinit lthy = case peek lthy
   204  of SOME {target, ...} => init target o Local_Theory.exit_global
   205   | NONE => error "Not in a named target";
   206 
   207 val theory_init = init_target global_target;
   208 
   209 fun context_cmd "-" thy = init "" thy
   210   | context_cmd target thy = init (Locale.intern thy target) thy;
   211 
   212 end;
   213 
   214 end;