src/HOL/Tools/Datatype/datatype_data.ML
author wenzelm
Mon, 10 Jan 2011 15:19:48 +0100
changeset 41489 8e2b8649507d
parent 41423 25df154b8ffc
child 42289 dafae095d733
permissions -rw-r--r--
standardized split_last/last_elem towards List.last; eliminated obsolete Library.last_elem;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33970
haftmann
parents: 33969
diff changeset
     1
(*  Title:      HOL/Tools/Datatype/datatype_data.ML
11539
0f17da240450 tuned headers;
wenzelm
parents: 11345
diff changeset
     2
    Author:     Stefan Berghofer, TU Muenchen
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     3
33970
haftmann
parents: 33969
diff changeset
     4
Datatype package: bookkeeping; interpretation of existing types as datatypes.
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     5
*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     6
33970
haftmann
parents: 33969
diff changeset
     7
signature DATATYPE_DATA =
6360
83573ae0f22c outer syntax for 'datatype';
wenzelm
parents: 6305
diff changeset
     8
sig
33970
haftmann
parents: 33969
diff changeset
     9
  include DATATYPE_COMMON
haftmann
parents: 33969
diff changeset
    10
  val derive_datatype_props : config -> string list -> string list option
haftmann
parents: 33969
diff changeset
    11
    -> descr list -> (string * sort) list -> thm -> thm list list -> thm list list
haftmann
parents: 33969
diff changeset
    12
    -> theory -> string list * theory
haftmann
parents: 33969
diff changeset
    13
  val rep_datatype : config -> (string list -> Proof.context -> Proof.context)
haftmann
parents: 33969
diff changeset
    14
    -> string list option -> term list -> theory -> Proof.state
haftmann
parents: 33969
diff changeset
    15
  val rep_datatype_cmd : string list option -> string list -> theory -> Proof.state
haftmann
parents: 33969
diff changeset
    16
  val get_info : theory -> string -> info option
haftmann
parents: 33969
diff changeset
    17
  val the_info : theory -> string -> info
haftmann
parents: 33969
diff changeset
    18
  val the_descr : theory -> string list
haftmann
parents: 33969
diff changeset
    19
    -> descr * (string * sort) list * string list
haftmann
parents: 33969
diff changeset
    20
      * string * (string list * string list) * (typ list * typ list)
haftmann
parents: 33969
diff changeset
    21
  val the_spec : theory -> string -> (string * sort) list * (string * typ list) list
haftmann
parents: 33969
diff changeset
    22
  val all_distincts : theory -> typ list -> thm list list
haftmann
parents: 33969
diff changeset
    23
  val get_constrs : theory -> string -> (string * typ) list option
haftmann
parents: 33969
diff changeset
    24
  val get_all : theory -> info Symtab.table
haftmann
parents: 33969
diff changeset
    25
  val info_of_constr : theory -> string * typ -> info option
haftmann
parents: 33969
diff changeset
    26
  val info_of_case : theory -> string -> info option
haftmann
parents: 33969
diff changeset
    27
  val interpretation : (config -> string list -> theory -> theory) -> theory -> theory
haftmann
parents: 33969
diff changeset
    28
  val make_case :  Proof.context -> Datatype_Case.config -> string list -> term ->
haftmann
parents: 33969
diff changeset
    29
    (term * term) list -> term * (term * (int * bool)) list
haftmann
parents: 33969
diff changeset
    30
  val strip_case : Proof.context -> bool -> term -> (term * (term * term) list) option
haftmann
parents: 33969
diff changeset
    31
  val read_typ: theory -> string -> (string * sort) list -> typ * (string * sort) list
haftmann
parents: 33969
diff changeset
    32
  val cert_typ: theory -> typ -> (string * sort) list -> typ * (string * sort) list
haftmann
parents: 33969
diff changeset
    33
  val mk_case_names_induct: descr -> attribute
haftmann
parents: 33969
diff changeset
    34
  val setup: theory -> theory
32717
0e787c721fa3 re-established reasonable inner outline for module
haftmann
parents: 32712
diff changeset
    35
end;
0e787c721fa3 re-established reasonable inner outline for module
haftmann
parents: 32712
diff changeset
    36
33970
haftmann
parents: 33969
diff changeset
    37
structure Datatype_Data: DATATYPE_DATA =
33963
977b94b64905 renamed former datatype.ML to datatype_data.ML; datatype.ML provides uniform view on datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33959
diff changeset
    38
struct
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    39
33970
haftmann
parents: 33969
diff changeset
    40
(** theory data **)
haftmann
parents: 33969
diff changeset
    41
haftmann
parents: 33969
diff changeset
    42
(* data management *)
haftmann
parents: 33969
diff changeset
    43
haftmann
parents: 33969
diff changeset
    44
structure DatatypesData = Theory_Data
haftmann
parents: 33969
diff changeset
    45
(
haftmann
parents: 33969
diff changeset
    46
  type T =
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
    47
    {types: Datatype_Aux.info Symtab.table,
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
    48
     constrs: (string * Datatype_Aux.info) list Symtab.table,
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
    49
     cases: Datatype_Aux.info Symtab.table};
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
    50
33970
haftmann
parents: 33969
diff changeset
    51
  val empty =
haftmann
parents: 33969
diff changeset
    52
    {types = Symtab.empty, constrs = Symtab.empty, cases = Symtab.empty};
haftmann
parents: 33969
diff changeset
    53
  val extend = I;
haftmann
parents: 33969
diff changeset
    54
  fun merge
haftmann
parents: 33969
diff changeset
    55
    ({types = types1, constrs = constrs1, cases = cases1},
haftmann
parents: 33969
diff changeset
    56
     {types = types2, constrs = constrs2, cases = cases2}) : T =
haftmann
parents: 33969
diff changeset
    57
    {types = Symtab.merge (K true) (types1, types2),
haftmann
parents: 33969
diff changeset
    58
     constrs = Symtab.join (K (AList.merge (op =) (K true))) (constrs1, constrs2),
haftmann
parents: 33969
diff changeset
    59
     cases = Symtab.merge (K true) (cases1, cases2)};
haftmann
parents: 33969
diff changeset
    60
);
haftmann
parents: 33969
diff changeset
    61
haftmann
parents: 33969
diff changeset
    62
val get_all = #types o DatatypesData.get;
haftmann
parents: 33969
diff changeset
    63
val get_info = Symtab.lookup o get_all;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
    64
33970
haftmann
parents: 33969
diff changeset
    65
fun the_info thy name =
haftmann
parents: 33969
diff changeset
    66
  (case get_info thy name of
haftmann
parents: 33969
diff changeset
    67
    SOME info => info
haftmann
parents: 33969
diff changeset
    68
  | NONE => error ("Unknown datatype " ^ quote name));
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
    69
33970
haftmann
parents: 33969
diff changeset
    70
fun info_of_constr thy (c, T) =
haftmann
parents: 33969
diff changeset
    71
  let
haftmann
parents: 33969
diff changeset
    72
    val tab = Symtab.lookup_list ((#constrs o DatatypesData.get) thy) c;
40844
5895c525739d more direct use of binder_types/body_type;
wenzelm
parents: 39557
diff changeset
    73
    val hint = case body_type T of Type (tyco, _) => SOME tyco | _ => NONE;
41489
8e2b8649507d standardized split_last/last_elem towards List.last;
wenzelm
parents: 41423
diff changeset
    74
    val default =
8e2b8649507d standardized split_last/last_elem towards List.last;
wenzelm
parents: 41423
diff changeset
    75
      if null tab then NONE
8e2b8649507d standardized split_last/last_elem towards List.last;
wenzelm
parents: 41423
diff changeset
    76
      else SOME (snd (List.last tab))
33970
haftmann
parents: 33969
diff changeset
    77
        (*conservative wrt. overloaded constructors*);
haftmann
parents: 33969
diff changeset
    78
  in case hint
haftmann
parents: 33969
diff changeset
    79
   of NONE => default
haftmann
parents: 33969
diff changeset
    80
    | SOME tyco => case AList.lookup (op =) tab tyco
haftmann
parents: 33969
diff changeset
    81
       of NONE => default (*permissive*)
haftmann
parents: 33969
diff changeset
    82
        | SOME info => SOME info
haftmann
parents: 33969
diff changeset
    83
  end;
haftmann
parents: 33969
diff changeset
    84
haftmann
parents: 33969
diff changeset
    85
val info_of_case = Symtab.lookup o #cases o DatatypesData.get;
haftmann
parents: 33969
diff changeset
    86
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
    87
fun register (dt_infos : (string * Datatype_Aux.info) list) =
33970
haftmann
parents: 33969
diff changeset
    88
  DatatypesData.map (fn {types, constrs, cases} =>
haftmann
parents: 33969
diff changeset
    89
    {types = types |> fold Symtab.update dt_infos,
haftmann
parents: 33969
diff changeset
    90
     constrs = constrs |> fold (fn (constr, dtname_info) =>
haftmann
parents: 33969
diff changeset
    91
         Symtab.map_default (constr, []) (cons dtname_info))
haftmann
parents: 33969
diff changeset
    92
       (maps (fn (dtname, info as {descr, index, ...}) =>
haftmann
parents: 33969
diff changeset
    93
          map (rpair (dtname, info) o fst)
haftmann
parents: 33969
diff changeset
    94
            (#3 (the (AList.lookup op = descr index)))) dt_infos),
haftmann
parents: 33969
diff changeset
    95
     cases = cases |> fold Symtab.update
haftmann
parents: 33969
diff changeset
    96
       (map (fn (_, info as {case_name, ...}) => (case_name, info)) dt_infos)});
haftmann
parents: 33969
diff changeset
    97
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
    98
33970
haftmann
parents: 33969
diff changeset
    99
(* complex queries *)
haftmann
parents: 33969
diff changeset
   100
haftmann
parents: 33969
diff changeset
   101
fun the_spec thy dtco =
haftmann
parents: 33969
diff changeset
   102
  let
haftmann
parents: 33969
diff changeset
   103
    val { descr, index, sorts = raw_sorts, ... } = the_info thy dtco;
haftmann
parents: 33969
diff changeset
   104
    val SOME (_, dtys, raw_cos) = AList.lookup (op =) descr index;
haftmann
parents: 33969
diff changeset
   105
    val sorts = map ((fn v => (v, (the o AList.lookup (op =) raw_sorts) v))
haftmann
parents: 33969
diff changeset
   106
      o Datatype_Aux.dest_DtTFree) dtys;
haftmann
parents: 33969
diff changeset
   107
    val cos = map
haftmann
parents: 33969
diff changeset
   108
      (fn (co, tys) => (co, map (Datatype_Aux.typ_of_dtyp descr sorts) tys)) raw_cos;
haftmann
parents: 33969
diff changeset
   109
  in (sorts, cos) end;
haftmann
parents: 33969
diff changeset
   110
haftmann
parents: 33969
diff changeset
   111
fun the_descr thy (raw_tycos as raw_tyco :: _) =
haftmann
parents: 33969
diff changeset
   112
  let
haftmann
parents: 33969
diff changeset
   113
    val info = the_info thy raw_tyco;
haftmann
parents: 33969
diff changeset
   114
    val descr = #descr info;
haftmann
parents: 33969
diff changeset
   115
haftmann
parents: 33969
diff changeset
   116
    val SOME (_, dtys, _) = AList.lookup (op =) descr (#index info);
haftmann
parents: 33969
diff changeset
   117
    val vs = map ((fn v => (v, (the o AList.lookup (op =) (#sorts info)) v))
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   118
      o Datatype_Aux.dest_DtTFree) dtys;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   119
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   120
    fun is_DtTFree (Datatype_Aux.DtTFree _) = true
33970
haftmann
parents: 33969
diff changeset
   121
      | is_DtTFree _ = false
haftmann
parents: 33969
diff changeset
   122
    val k = find_index (fn (_, (_, dTs, _)) => not (forall is_DtTFree dTs)) descr;
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   123
    val protoTs as (dataTs, _) =
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   124
      chop k descr
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   125
      |> (pairself o map)
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   126
        (fn (_, (tyco, dTs, _)) => (tyco, map (Datatype_Aux.typ_of_dtyp descr vs) dTs));
33970
haftmann
parents: 33969
diff changeset
   127
    
haftmann
parents: 33969
diff changeset
   128
    val tycos = map fst dataTs;
haftmann
parents: 33969
diff changeset
   129
    val _ = if eq_set (op =) (tycos, raw_tycos) then ()
haftmann
parents: 33969
diff changeset
   130
      else error ("Type constructors " ^ commas (map quote raw_tycos)
haftmann
parents: 33969
diff changeset
   131
        ^ " do not belong exhaustively to one mutual recursive datatype");
haftmann
parents: 33969
diff changeset
   132
haftmann
parents: 33969
diff changeset
   133
    val (Ts, Us) = (pairself o map) Type protoTs;
haftmann
parents: 33969
diff changeset
   134
haftmann
parents: 33969
diff changeset
   135
    val names = map Long_Name.base_name (the_default tycos (#alt_names info));
haftmann
parents: 33969
diff changeset
   136
    val (auxnames, _) = Name.make_context names
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   137
      |> fold_map (yield_singleton Name.variants o Datatype_Aux.name_of_typ) Us;
33970
haftmann
parents: 33969
diff changeset
   138
    val prefix = space_implode "_" names;
haftmann
parents: 33969
diff changeset
   139
haftmann
parents: 33969
diff changeset
   140
  in (descr, vs, tycos, prefix, (names, auxnames), (Ts, Us)) end;
haftmann
parents: 33969
diff changeset
   141
haftmann
parents: 33969
diff changeset
   142
fun all_distincts thy Ts =
haftmann
parents: 33969
diff changeset
   143
  let
haftmann
parents: 33969
diff changeset
   144
    fun add_tycos (Type (tyco, Ts)) = insert (op =) tyco #> fold add_tycos Ts
haftmann
parents: 33969
diff changeset
   145
      | add_tycos _ = I;
haftmann
parents: 33969
diff changeset
   146
    val tycos = fold add_tycos Ts [];
haftmann
parents: 33969
diff changeset
   147
  in map_filter (Option.map #distinct o get_info thy) tycos end;
haftmann
parents: 33969
diff changeset
   148
haftmann
parents: 33969
diff changeset
   149
fun get_constrs thy dtco =
haftmann
parents: 33969
diff changeset
   150
  case try (the_spec thy) dtco
haftmann
parents: 33969
diff changeset
   151
   of SOME (sorts, cos) =>
haftmann
parents: 33969
diff changeset
   152
        let
haftmann
parents: 33969
diff changeset
   153
          fun subst (v, sort) = TVar ((v, 0), sort);
haftmann
parents: 33969
diff changeset
   154
          fun subst_ty (TFree v) = subst v
haftmann
parents: 33969
diff changeset
   155
            | subst_ty ty = ty;
haftmann
parents: 33969
diff changeset
   156
          val dty = Type (dtco, map subst sorts);
haftmann
parents: 33969
diff changeset
   157
          fun mk_co (co, tys) = (co, map (Term.map_atyps subst_ty) tys ---> dty);
haftmann
parents: 33969
diff changeset
   158
        in SOME (map mk_co cos) end
haftmann
parents: 33969
diff changeset
   159
    | NONE => NONE;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   160
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   161
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   162
33970
haftmann
parents: 33969
diff changeset
   163
(** various auxiliary **)
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   164
33970
haftmann
parents: 33969
diff changeset
   165
(* prepare datatype specifications *)
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   166
33970
haftmann
parents: 33969
diff changeset
   167
fun read_typ thy str sorts =
haftmann
parents: 33969
diff changeset
   168
  let
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36602
diff changeset
   169
    val ctxt = ProofContext.init_global thy
33970
haftmann
parents: 33969
diff changeset
   170
      |> fold (Variable.declare_typ o TFree) sorts;
haftmann
parents: 33969
diff changeset
   171
    val T = Syntax.read_typ ctxt str;
haftmann
parents: 33969
diff changeset
   172
  in (T, Term.add_tfreesT T sorts) end;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   173
33970
haftmann
parents: 33969
diff changeset
   174
fun cert_typ sign raw_T sorts =
haftmann
parents: 33969
diff changeset
   175
  let
haftmann
parents: 33969
diff changeset
   176
    val T = Type.no_tvars (Sign.certify_typ sign raw_T)
haftmann
parents: 33969
diff changeset
   177
      handle TYPE (msg, _, _) => error msg;
haftmann
parents: 33969
diff changeset
   178
    val sorts' = Term.add_tfreesT T sorts;
haftmann
parents: 33969
diff changeset
   179
    val _ =
haftmann
parents: 33969
diff changeset
   180
      case duplicates (op =) (map fst sorts') of
haftmann
parents: 33969
diff changeset
   181
        [] => ()
haftmann
parents: 33969
diff changeset
   182
      | dups => error ("Inconsistent sort constraints for " ^ commas dups)
haftmann
parents: 33969
diff changeset
   183
  in (T, sorts') end;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   184
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   185
33970
haftmann
parents: 33969
diff changeset
   186
(* case names *)
haftmann
parents: 33969
diff changeset
   187
haftmann
parents: 33969
diff changeset
   188
local
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   189
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   190
fun dt_recs (Datatype_Aux.DtTFree _) = []
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   191
  | dt_recs (Datatype_Aux.DtType (_, dts)) = maps dt_recs dts
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   192
  | dt_recs (Datatype_Aux.DtRec i) = [i];
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   193
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   194
fun dt_cases (descr: Datatype_Aux.descr) (_, args, constrs) =
33970
haftmann
parents: 33969
diff changeset
   195
  let
haftmann
parents: 33969
diff changeset
   196
    fun the_bname i = Long_Name.base_name (#1 (the (AList.lookup (op =) descr i)));
haftmann
parents: 33969
diff changeset
   197
    val bnames = map the_bname (distinct (op =) (maps dt_recs args));
haftmann
parents: 33969
diff changeset
   198
  in map (fn (c, _) => space_implode "_" (Long_Name.base_name c :: bnames)) constrs end;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   199
33970
haftmann
parents: 33969
diff changeset
   200
fun induct_cases descr =
haftmann
parents: 33969
diff changeset
   201
  Datatype_Prop.indexify_names (maps (dt_cases descr) (map #2 descr));
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   202
33970
haftmann
parents: 33969
diff changeset
   203
fun exhaust_cases descr i = dt_cases descr (the (AList.lookup (op =) descr i));
haftmann
parents: 33969
diff changeset
   204
haftmann
parents: 33969
diff changeset
   205
in
haftmann
parents: 33969
diff changeset
   206
haftmann
parents: 33969
diff changeset
   207
fun mk_case_names_induct descr = Rule_Cases.case_names (induct_cases descr);
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   208
33970
haftmann
parents: 33969
diff changeset
   209
fun mk_case_names_exhausts descr new =
haftmann
parents: 33969
diff changeset
   210
  map (Rule_Cases.case_names o exhaust_cases descr o #1)
haftmann
parents: 33969
diff changeset
   211
    (filter (fn ((_, (name, _, _))) => member (op =) new name) descr);
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   212
33970
haftmann
parents: 33969
diff changeset
   213
end;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   214
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   215
33970
haftmann
parents: 33969
diff changeset
   216
(* translation rules for case *)
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   217
33970
haftmann
parents: 33969
diff changeset
   218
fun make_case ctxt = Datatype_Case.make_case
haftmann
parents: 33969
diff changeset
   219
  (info_of_constr (ProofContext.theory_of ctxt)) ctxt;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   220
33970
haftmann
parents: 33969
diff changeset
   221
fun strip_case ctxt = Datatype_Case.strip_case
haftmann
parents: 33969
diff changeset
   222
  (info_of_case (ProofContext.theory_of ctxt));
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   223
33970
haftmann
parents: 33969
diff changeset
   224
fun add_case_tr' case_names thy =
haftmann
parents: 33969
diff changeset
   225
  Sign.add_advanced_trfuns ([], [],
haftmann
parents: 33969
diff changeset
   226
    map (fn case_name =>
35262
9ea4445d2ccf slightly more abstract syntax mark/unmark operations;
wenzelm
parents: 35256
diff changeset
   227
      let val case_name' = Syntax.mark_const case_name
33970
haftmann
parents: 33969
diff changeset
   228
      in (case_name', Datatype_Case.case_tr' info_of_case case_name')
haftmann
parents: 33969
diff changeset
   229
      end) case_names, []) thy;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   230
33970
haftmann
parents: 33969
diff changeset
   231
val trfun_setup =
haftmann
parents: 33969
diff changeset
   232
  Sign.add_advanced_trfuns ([],
35124
33976519c888 formal markup of constants;
wenzelm
parents: 34911
diff changeset
   233
    [(@{syntax_const "_case_syntax"}, Datatype_Case.case_tr true info_of_constr)],
33970
haftmann
parents: 33969
diff changeset
   234
    [], []);
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   235
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   236
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   237
33970
haftmann
parents: 33969
diff changeset
   238
(** document antiquotation **)
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   239
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36960
diff changeset
   240
val _ = Thy_Output.antiquotation "datatype" (Args.type_name true)
33970
haftmann
parents: 33969
diff changeset
   241
  (fn {source = src, context = ctxt, ...} => fn dtco =>
haftmann
parents: 33969
diff changeset
   242
    let
haftmann
parents: 33969
diff changeset
   243
      val thy = ProofContext.theory_of ctxt;
haftmann
parents: 33969
diff changeset
   244
      val (vs, cos) = the_spec thy dtco;
haftmann
parents: 33969
diff changeset
   245
      val ty = Type (dtco, map TFree vs);
40957
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   246
      val pretty_typ_bracket =
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   247
        Syntax.pretty_typ (Config.put Syntax.pretty_priority (Syntax.max_pri + 1) ctxt);
33970
haftmann
parents: 33969
diff changeset
   248
      fun pretty_constr (co, tys) =
40957
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   249
        Pretty.block (Pretty.breaks
33970
haftmann
parents: 33969
diff changeset
   250
          (Syntax.pretty_term ctxt (Const (co, tys ---> ty)) ::
40957
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   251
            map pretty_typ_bracket tys));
33970
haftmann
parents: 33969
diff changeset
   252
      val pretty_datatype =
haftmann
parents: 33969
diff changeset
   253
        Pretty.block
40957
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   254
         (Pretty.command "datatype" :: Pretty.brk 1 ::
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   255
          Syntax.pretty_typ ctxt ty ::
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   256
          Pretty.str " =" :: Pretty.brk 1 ::
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   257
          flat (separate [Pretty.brk 1, Pretty.str "| "] (map (single o pretty_constr) cos)));
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38756
diff changeset
   258
    in
40957
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   259
      Thy_Output.output ctxt
f840361f8e69 tuned @{datatype} using Syntax.pretty_priority (NB: postfix type application yields Syntax.max_pri, so arguments in prefix application require higher priority);
wenzelm
parents: 40929
diff changeset
   260
        (Thy_Output.maybe_pretty_source (K (K pretty_datatype)) ctxt src [()])
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38756
diff changeset
   261
    end);
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   262
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   263
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   264
33970
haftmann
parents: 33969
diff changeset
   265
(** abstract theory extensions relative to a datatype characterisation **)
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   266
33970
haftmann
parents: 33969
diff changeset
   267
structure Datatype_Interpretation = Interpretation
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   268
  (type T = Datatype_Aux.config * string list val eq: T * T -> bool = eq_snd op =);
33970
haftmann
parents: 33969
diff changeset
   269
fun interpretation f = Datatype_Interpretation.interpretation (uncurry f);
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   270
33970
haftmann
parents: 33969
diff changeset
   271
fun make_dt_info alt_names descr sorts induct inducts rec_names rec_rewrites
haftmann
parents: 33969
diff changeset
   272
    (index, (((((((((((_, (tname, _, _))), inject), distinct),
haftmann
parents: 33969
diff changeset
   273
      exhaust), nchotomy), case_name), case_rewrites), case_cong), weak_case_cong),
haftmann
parents: 33969
diff changeset
   274
        (split, split_asm))) =
haftmann
parents: 33969
diff changeset
   275
  (tname,
haftmann
parents: 33969
diff changeset
   276
   {index = index,
haftmann
parents: 33969
diff changeset
   277
    alt_names = alt_names,
haftmann
parents: 33969
diff changeset
   278
    descr = descr,
haftmann
parents: 33969
diff changeset
   279
    sorts = sorts,
haftmann
parents: 33969
diff changeset
   280
    inject = inject,
haftmann
parents: 33969
diff changeset
   281
    distinct = distinct,
haftmann
parents: 33969
diff changeset
   282
    induct = induct,
haftmann
parents: 33969
diff changeset
   283
    inducts = inducts,
haftmann
parents: 33969
diff changeset
   284
    exhaust = exhaust,
haftmann
parents: 33969
diff changeset
   285
    nchotomy = nchotomy,
haftmann
parents: 33969
diff changeset
   286
    rec_names = rec_names,
haftmann
parents: 33969
diff changeset
   287
    rec_rewrites = rec_rewrites,
haftmann
parents: 33969
diff changeset
   288
    case_name = case_name,
haftmann
parents: 33969
diff changeset
   289
    case_rewrites = case_rewrites,
haftmann
parents: 33969
diff changeset
   290
    case_cong = case_cong,
haftmann
parents: 33969
diff changeset
   291
    weak_case_cong = weak_case_cong,
haftmann
parents: 33969
diff changeset
   292
    split = split,
haftmann
parents: 33969
diff changeset
   293
    split_asm = split_asm});
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   294
33970
haftmann
parents: 33969
diff changeset
   295
fun derive_datatype_props config dt_names alt_names descr sorts
haftmann
parents: 33969
diff changeset
   296
    induct inject distinct thy1 =
haftmann
parents: 33969
diff changeset
   297
  let
haftmann
parents: 33969
diff changeset
   298
    val thy2 = thy1 |> Theory.checkpoint;
haftmann
parents: 33969
diff changeset
   299
    val flat_descr = flat descr;
haftmann
parents: 33969
diff changeset
   300
    val new_type_names = map Long_Name.base_name (the_default dt_names alt_names);
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   301
    val _ =
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   302
      Datatype_Aux.message config
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   303
        ("Deriving properties for datatype(s) " ^ commas_quote new_type_names);
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   304
33970
haftmann
parents: 33969
diff changeset
   305
    val (exhaust, thy3) = Datatype_Abs_Proofs.prove_casedist_thms config new_type_names
haftmann
parents: 33969
diff changeset
   306
      descr sorts induct (mk_case_names_exhausts flat_descr dt_names) thy2;
haftmann
parents: 33969
diff changeset
   307
    val (nchotomys, thy4) = Datatype_Abs_Proofs.prove_nchotomys config new_type_names
haftmann
parents: 33969
diff changeset
   308
      descr sorts exhaust thy3;
haftmann
parents: 33969
diff changeset
   309
    val ((rec_names, rec_rewrites), thy5) = Datatype_Abs_Proofs.prove_primrec_thms
haftmann
parents: 33969
diff changeset
   310
      config new_type_names descr sorts (#inject o the o Symtab.lookup (get_all thy4))
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   311
      inject (distinct, all_distincts thy2 (Datatype_Aux.get_rec_types flat_descr sorts))
33970
haftmann
parents: 33969
diff changeset
   312
      induct thy4;
haftmann
parents: 33969
diff changeset
   313
    val ((case_rewrites, case_names), thy6) = Datatype_Abs_Proofs.prove_case_thms
haftmann
parents: 33969
diff changeset
   314
      config new_type_names descr sorts rec_names rec_rewrites thy5;
haftmann
parents: 33969
diff changeset
   315
    val (case_congs, thy7) = Datatype_Abs_Proofs.prove_case_congs new_type_names
haftmann
parents: 33969
diff changeset
   316
      descr sorts nchotomys case_rewrites thy6;
haftmann
parents: 33969
diff changeset
   317
    val (weak_case_congs, thy8) = Datatype_Abs_Proofs.prove_weak_case_congs new_type_names
haftmann
parents: 33969
diff changeset
   318
      descr sorts thy7;
haftmann
parents: 33969
diff changeset
   319
    val (splits, thy9) = Datatype_Abs_Proofs.prove_split_thms
haftmann
parents: 33969
diff changeset
   320
      config new_type_names descr sorts inject distinct exhaust case_rewrites thy8;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   321
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36602
diff changeset
   322
    val inducts = Project_Rule.projections (ProofContext.init_global thy2) induct;
33970
haftmann
parents: 33969
diff changeset
   323
    val dt_infos = map_index
haftmann
parents: 33969
diff changeset
   324
      (make_dt_info alt_names flat_descr sorts induct inducts rec_names rec_rewrites)
haftmann
parents: 33969
diff changeset
   325
      (hd descr ~~ inject ~~ distinct ~~ exhaust ~~ nchotomys ~~
haftmann
parents: 33969
diff changeset
   326
        case_names ~~ case_rewrites ~~ case_congs ~~ weak_case_congs ~~ splits);
haftmann
parents: 33969
diff changeset
   327
    val dt_names = map fst dt_infos;
haftmann
parents: 33969
diff changeset
   328
    val prfx = Binding.qualify true (space_implode "_" new_type_names);
haftmann
parents: 33969
diff changeset
   329
    val simps = flat (inject @ distinct @ case_rewrites) @ rec_rewrites;
haftmann
parents: 33969
diff changeset
   330
    val named_rules = flat (map_index (fn (index, tname) =>
haftmann
parents: 33969
diff changeset
   331
      [((Binding.empty, [nth inducts index]), [Induct.induct_type tname]),
haftmann
parents: 33969
diff changeset
   332
       ((Binding.empty, [nth exhaust index]), [Induct.cases_type tname])]) dt_names);
haftmann
parents: 33969
diff changeset
   333
    val unnamed_rules = map (fn induct =>
haftmann
parents: 33969
diff changeset
   334
      ((Binding.empty, [induct]), [Rule_Cases.inner_rule, Induct.induct_type ""]))
haftmann
parents: 33969
diff changeset
   335
        (drop (length dt_names) inducts);
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   336
  in
33970
haftmann
parents: 33969
diff changeset
   337
    thy9
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 38767
diff changeset
   338
    |> Global_Theory.add_thmss ([((prfx (Binding.name "simps"), simps), []),
33970
haftmann
parents: 33969
diff changeset
   339
        ((prfx (Binding.name "inducts"), inducts), []),
haftmann
parents: 33969
diff changeset
   340
        ((prfx (Binding.name "splits"), maps (fn (x, y) => [x, y]) splits), []),
haftmann
parents: 33969
diff changeset
   341
        ((Binding.empty, flat case_rewrites @ flat distinct @ rec_rewrites),
haftmann
parents: 33969
diff changeset
   342
          [Simplifier.simp_add]),
haftmann
parents: 33969
diff changeset
   343
        ((Binding.empty, rec_rewrites), [Code.add_default_eqn_attribute]),
haftmann
parents: 33969
diff changeset
   344
        ((Binding.empty, flat inject), [iff_add]),
haftmann
parents: 33969
diff changeset
   345
        ((Binding.empty, map (fn th => th RS notE) (flat distinct)),
haftmann
parents: 33969
diff changeset
   346
          [Classical.safe_elim NONE]),
34911
771830d3bd5e Injectivity / distinctness theorems are now used to simplify induction rules.
berghofe
parents: 33970
diff changeset
   347
        ((Binding.empty, weak_case_congs), [Simplifier.attrib (op addcongs)]),
36602
0cbcdfd9e527 slightly more standard induct_simp_add/del attributes;
wenzelm
parents: 36323
diff changeset
   348
        ((Binding.empty, flat (distinct @ inject)), [Induct.induct_simp_add])] @
0cbcdfd9e527 slightly more standard induct_simp_add/del attributes;
wenzelm
parents: 36323
diff changeset
   349
          named_rules @ unnamed_rules)
33970
haftmann
parents: 33969
diff changeset
   350
    |> snd
haftmann
parents: 33969
diff changeset
   351
    |> add_case_tr' case_names
haftmann
parents: 33969
diff changeset
   352
    |> register dt_infos
haftmann
parents: 33969
diff changeset
   353
    |> Datatype_Interpretation.data (config, dt_names)
haftmann
parents: 33969
diff changeset
   354
    |> pair dt_names
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   355
  end;
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   356
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   357
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   358
33970
haftmann
parents: 33969
diff changeset
   359
(** declare existing type as datatype **)
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   360
33970
haftmann
parents: 33969
diff changeset
   361
fun prove_rep_datatype config dt_names alt_names descr sorts
haftmann
parents: 33969
diff changeset
   362
    raw_inject half_distinct raw_induct thy1 =
haftmann
parents: 33969
diff changeset
   363
  let
haftmann
parents: 33969
diff changeset
   364
    val raw_distinct = (map o maps) (fn thm => [thm, thm RS not_sym]) half_distinct;
haftmann
parents: 33969
diff changeset
   365
    val new_type_names = map Long_Name.base_name (the_default dt_names alt_names);
40929
7ff03a5e044f theorem names generated by the (rep_)datatype command now have mandatory qualifiers
huffman
parents: 40844
diff changeset
   366
    val prfx = Binding.qualify true (space_implode "_" new_type_names);
33970
haftmann
parents: 33969
diff changeset
   367
    val (((inject, distinct), [induct]), thy2) =
haftmann
parents: 33969
diff changeset
   368
      thy1
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   369
      |> Datatype_Aux.store_thmss "inject" new_type_names raw_inject
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   370
      ||>> Datatype_Aux.store_thmss "distinct" new_type_names raw_distinct
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 38767
diff changeset
   371
      ||>> Global_Theory.add_thms
40929
7ff03a5e044f theorem names generated by the (rep_)datatype command now have mandatory qualifiers
huffman
parents: 40844
diff changeset
   372
        [((prfx (Binding.name "induct"), raw_induct),
7ff03a5e044f theorem names generated by the (rep_)datatype command now have mandatory qualifiers
huffman
parents: 40844
diff changeset
   373
          [mk_case_names_induct descr])];
33970
haftmann
parents: 33969
diff changeset
   374
  in
haftmann
parents: 33969
diff changeset
   375
    thy2
haftmann
parents: 33969
diff changeset
   376
    |> derive_datatype_props config dt_names alt_names [descr] sorts
haftmann
parents: 33969
diff changeset
   377
         induct inject distinct
haftmann
parents: 33969
diff changeset
   378
 end;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   379
33970
haftmann
parents: 33969
diff changeset
   380
fun gen_rep_datatype prep_term config after_qed alt_names raw_ts thy =
haftmann
parents: 33969
diff changeset
   381
  let
haftmann
parents: 33969
diff changeset
   382
    fun constr_of_term (Const (c, T)) = (c, T)
haftmann
parents: 33969
diff changeset
   383
      | constr_of_term t =
haftmann
parents: 33969
diff changeset
   384
          error ("Not a constant: " ^ Syntax.string_of_term_global thy t);
haftmann
parents: 33969
diff changeset
   385
    fun no_constr (c, T) = error ("Bad constructor: "
haftmann
parents: 33969
diff changeset
   386
      ^ Sign.extern_const thy c ^ "::"
haftmann
parents: 33969
diff changeset
   387
      ^ Syntax.string_of_typ_global thy T);
haftmann
parents: 33969
diff changeset
   388
    fun type_of_constr (cT as (_, T)) =
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   389
      let
33970
haftmann
parents: 33969
diff changeset
   390
        val frees = OldTerm.typ_tfrees T;
40844
5895c525739d more direct use of binder_types/body_type;
wenzelm
parents: 39557
diff changeset
   391
        val (tyco, vs) = (apsnd o map) dest_TFree (dest_Type (body_type T))
33970
haftmann
parents: 33969
diff changeset
   392
          handle TYPE _ => no_constr cT
haftmann
parents: 33969
diff changeset
   393
        val _ = if has_duplicates (eq_fst (op =)) vs then no_constr cT else ();
haftmann
parents: 33969
diff changeset
   394
        val _ = if length frees <> length vs then no_constr cT else ();
haftmann
parents: 33969
diff changeset
   395
      in (tyco, (vs, cT)) end;
haftmann
parents: 33969
diff changeset
   396
haftmann
parents: 33969
diff changeset
   397
    val raw_cs = AList.group (op =) (map (type_of_constr o constr_of_term o prep_term thy) raw_ts);
haftmann
parents: 33969
diff changeset
   398
    val _ = case map_filter (fn (tyco, _) =>
haftmann
parents: 33969
diff changeset
   399
        if Symtab.defined (get_all thy) tyco then SOME tyco else NONE) raw_cs
haftmann
parents: 33969
diff changeset
   400
     of [] => ()
haftmann
parents: 33969
diff changeset
   401
      | tycos => error ("Type(s) " ^ commas (map quote tycos)
haftmann
parents: 33969
diff changeset
   402
          ^ " already represented inductivly");
haftmann
parents: 33969
diff changeset
   403
    val raw_vss = maps (map (map snd o fst) o snd) raw_cs;
haftmann
parents: 33969
diff changeset
   404
    val ms = case distinct (op =) (map length raw_vss)
haftmann
parents: 33969
diff changeset
   405
     of [n] => 0 upto n - 1
haftmann
parents: 33969
diff changeset
   406
      | _ => error ("Different types in given constructors");
haftmann
parents: 33969
diff changeset
   407
    fun inter_sort m = map (fn xs => nth xs m) raw_vss
haftmann
parents: 33969
diff changeset
   408
      |> Library.foldr1 (Sorts.inter_sort (Sign.classes_of thy))
haftmann
parents: 33969
diff changeset
   409
    val sorts = map inter_sort ms;
haftmann
parents: 33969
diff changeset
   410
    val vs = Name.names Name.context Name.aT sorts;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   411
33970
haftmann
parents: 33969
diff changeset
   412
    fun norm_constr (raw_vs, (c, T)) = (c, map_atyps
haftmann
parents: 33969
diff changeset
   413
      (TFree o (the o AList.lookup (op =) (map fst raw_vs ~~ vs)) o fst o dest_TFree) T);
haftmann
parents: 33969
diff changeset
   414
haftmann
parents: 33969
diff changeset
   415
    val cs = map (apsnd (map norm_constr)) raw_cs;
40844
5895c525739d more direct use of binder_types/body_type;
wenzelm
parents: 39557
diff changeset
   416
    val dtyps_of_typ =
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   417
      map (Datatype_Aux.dtyp_of_typ (map (rpair (map fst vs) o fst) cs)) o binder_types;
33970
haftmann
parents: 33969
diff changeset
   418
    val dt_names = map fst cs;
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   419
33970
haftmann
parents: 33969
diff changeset
   420
    fun mk_spec (i, (tyco, constr)) = (i, (tyco,
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   421
      map (Datatype_Aux.DtTFree o fst) vs,
33970
haftmann
parents: 33969
diff changeset
   422
      (map o apsnd) dtyps_of_typ constr))
haftmann
parents: 33969
diff changeset
   423
    val descr = map_index mk_spec cs;
haftmann
parents: 33969
diff changeset
   424
    val injs = Datatype_Prop.make_injs [descr] vs;
haftmann
parents: 33969
diff changeset
   425
    val half_distincts = map snd (Datatype_Prop.make_distincts [descr] vs);
haftmann
parents: 33969
diff changeset
   426
    val ind = Datatype_Prop.make_ind [descr] vs;
haftmann
parents: 33969
diff changeset
   427
    val rules = (map o map o map) Logic.close_form [[[ind]], injs, half_distincts];
haftmann
parents: 33969
diff changeset
   428
haftmann
parents: 33969
diff changeset
   429
    fun after_qed' raw_thms =
haftmann
parents: 33969
diff changeset
   430
      let
haftmann
parents: 33969
diff changeset
   431
        val [[[raw_induct]], raw_inject, half_distinct] =
haftmann
parents: 33969
diff changeset
   432
          unflat rules (map Drule.zero_var_indexes_list raw_thms);
haftmann
parents: 33969
diff changeset
   433
            (*FIXME somehow dubious*)
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   434
      in
38756
d07959fabde6 renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 37216
diff changeset
   435
        ProofContext.background_theory_result
33970
haftmann
parents: 33969
diff changeset
   436
          (prove_rep_datatype config dt_names alt_names descr vs
haftmann
parents: 33969
diff changeset
   437
            raw_inject half_distinct raw_induct)
haftmann
parents: 33969
diff changeset
   438
        #-> after_qed
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   439
      end;
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   440
  in
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   441
    thy
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36602
diff changeset
   442
    |> ProofContext.init_global
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 35360
diff changeset
   443
    |> Proof.theorem NONE after_qed' ((map o map) (rpair []) (flat rules))
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   444
  end;
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   445
33970
haftmann
parents: 33969
diff changeset
   446
val rep_datatype = gen_rep_datatype Sign.cert_term;
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   447
val rep_datatype_cmd = gen_rep_datatype Syntax.read_term_global Datatype_Aux.default_config (K I);
33970
haftmann
parents: 33969
diff changeset
   448
haftmann
parents: 33969
diff changeset
   449
haftmann
parents: 33969
diff changeset
   450
haftmann
parents: 33969
diff changeset
   451
(** package setup **)
haftmann
parents: 33969
diff changeset
   452
haftmann
parents: 33969
diff changeset
   453
(* setup theory *)
haftmann
parents: 33969
diff changeset
   454
haftmann
parents: 33969
diff changeset
   455
val setup =
haftmann
parents: 33969
diff changeset
   456
  trfun_setup #>
haftmann
parents: 33969
diff changeset
   457
  Datatype_Interpretation.init;
haftmann
parents: 33969
diff changeset
   458
haftmann
parents: 33969
diff changeset
   459
haftmann
parents: 33969
diff changeset
   460
(* outer syntax *)
33968
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   461
f94fb13ecbb3 modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
haftmann
parents: 33963
diff changeset
   462
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   463
  Outer_Syntax.command "rep_datatype" "represent existing types inductively" Keyword.thy_goal
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   464
    (Scan.option (Parse.$$$ "(" |-- Scan.repeat1 Parse.name --| Parse.$$$ ")") --
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   465
      Scan.repeat1 Parse.term
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   466
      >> (fn (alt_names, ts) =>
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   467
        Toplevel.print o Toplevel.theory_to_proof (rep_datatype_cmd alt_names ts)));
6385
5a6570458d9e rep_datatype: '_i' version, attributes, outer syntax;
wenzelm
parents: 6360
diff changeset
   468
41423
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   469
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   470
open Datatype_Aux;
25df154b8ffc do not open auxiliary ML structures;
wenzelm
parents: 40957
diff changeset
   471
30391
d930432adb13 adapted to simplified ThyOutput.antiquotation interface;
wenzelm
parents: 30364
diff changeset
   472
end;