src/HOL/Tools/record_package.ML
author wenzelm
Sun, 17 Sep 2000 22:21:31 +0200
changeset 10008 61eb9f3aa92a
parent 9898 5f28e5b4c68e
child 11473 4546d8d39221
permissions -rw-r--r--
Display.pretty_thm_sg;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Tools/record_package.ML
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
     3
    Author:     Wolfgang Naraschewski and Markus Wenzel, TU Muenchen
9230
wenzelm
parents: 9040
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
     5
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
     6
Extensible records with structural subtyping in HOL.
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
     7
*)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
     8
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
     9
signature BASIC_RECORD_PACKAGE =
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    10
sig
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
    11
  val record_simproc: simproc
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    12
  val record_split_tac: int -> tactic
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
    13
  val record_split_name: string
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    14
  val record_split_wrapper: string * wrapper
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    15
end;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    16
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    17
signature RECORD_PACKAGE =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    18
sig
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    19
  include BASIC_RECORD_PACKAGE
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    20
  val quiet_mode: bool ref
8574
bed3b994ab26 export updateN;
wenzelm
parents: 8428
diff changeset
    21
  val updateN: string
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    22
  val moreS: sort
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    23
  val mk_fieldT: (string * typ) * typ -> typ
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    24
  val dest_fieldT: typ -> (string * typ) * typ
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    25
  val mk_field: (string * term) * term -> term
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    26
  val mk_fst: term -> term
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    27
  val mk_snd: term -> term
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    28
  val mk_recordT: (string * typ) list * typ -> typ
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    29
  val dest_recordT: typ -> (string * typ) list * typ
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    30
  val mk_record: (string * term) list * term -> term
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    31
  val mk_sel: term -> string -> term
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    32
  val mk_update: term -> string * term -> term
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    33
  val print_records: theory -> unit
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    34
  val add_record: (string list * bstring) -> string option
6519
5bd1c469e742 iff_add_global (from simpdata.ML);
wenzelm
parents: 6394
diff changeset
    35
    -> (bstring * string) list -> theory -> theory * {simps: thm list, iffs: thm list}
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    36
  val add_record_i: (string list * bstring) -> (typ list * string) option
6519
5bd1c469e742 iff_add_global (from simpdata.ML);
wenzelm
parents: 6394
diff changeset
    37
    -> (bstring * typ) list -> theory -> theory * {simps: thm list, iffs: thm list}
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    38
  val setup: (theory -> theory) list
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    39
end;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    40
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
    41
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    42
structure RecordPackage: RECORD_PACKAGE =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    43
struct
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    44
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    45
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    46
(*** utilities ***)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    47
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    48
(* messages *)
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    49
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    50
val quiet_mode = ref false;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    51
fun message s = if ! quiet_mode then () else writeln s;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    52
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    53
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    54
(* definitions and equations *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
    55
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    56
infix 0 :== ===;
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    57
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    58
val (op :==) = Logic.mk_defpair;
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    59
val (op ===) = HOLogic.mk_Trueprop o HOLogic.mk_eq;
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    60
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    61
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    62
(* proof by simplification *)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    63
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
    64
fun prove_simp sign ss tacs simps =
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    65
  let
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
    66
    val ss' = Simplifier.addsimps (ss, simps);
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
    67
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
    68
    fun prove goal =
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5890
diff changeset
    69
      Goals.prove_goalw_cterm [] (Thm.cterm_of sign goal)
9626
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
    70
        (K (tacs @ [ALLGOALS (Simplifier.asm_full_simp_tac ss')]))
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5890
diff changeset
    71
      handle ERROR => error ("The error(s) above occurred while trying to prove "
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5890
diff changeset
    72
        ^ quote (Sign.string_of_term sign goal));
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    73
  in prove end;
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    74
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    75
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    76
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    77
(*** syntax operations ***)
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    78
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    79
(** name components **)
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    80
8294
c50607ff9704 rN = "record";
wenzelm
parents: 8274
diff changeset
    81
val recordN = "record";
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    82
val moreN = "more";
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    83
val schemeN = "_scheme";
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    84
val fieldN = "_field";
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    85
val raw_fieldN = "_raw_field";
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    86
val field_typeN = "_field_type";
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    87
val fstN = "_val";
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    88
val sndN = "_more";
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    89
val updateN = "_update";
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    90
val makeN = "make";
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
    91
val make_schemeN = "make_scheme";
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
    92
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    93
(*see datatype package*)
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    94
val caseN = "_case";
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    95
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    96
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    97
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    98
(** generic operations **)
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
    99
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   100
(* adhoc priming of vars *)
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   101
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   102
fun prime (Free (x, T)) = Free (x ^ "'", T)
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   103
  | prime t = raise TERM ("prime: no free variable", [t]);
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   104
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   105
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   106
(* product case *)
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   107
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   108
fun fst_fn T U = Abs ("x", T, Abs ("y", U, Bound 1));
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   109
fun snd_fn T U = Abs ("x", T, Abs ("y", U, Bound 0));
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   110
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   111
fun mk_prod_case name f p =
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   112
  let
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   113
    val fT as Type ("fun", [A, Type ("fun", [B, C])]) = fastype_of f;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   114
    val pT = fastype_of p;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   115
  in Const (suffix caseN name, fT --> pT --> C) $ f $ p end;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   116
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   117
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   118
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   119
(** tuple operations **)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   120
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   121
(* more type class *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   122
5210
54aaa779b6b4 removed global_names flag;
wenzelm
parents: 5201
diff changeset
   123
val moreS = ["Record.more"];
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   124
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   125
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   126
(* types *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   127
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   128
fun mk_fieldT ((c, T), U) = Type (suffix field_typeN c, [T, U]);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   129
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   130
fun dest_fieldT (typ as Type (c_field_type, [T, U])) =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   131
      (case try (unsuffix field_typeN) c_field_type of
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   132
        None => raise TYPE ("dest_fieldT", [typ], [])
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   133
      | Some c => ((c, T), U))
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   134
  | dest_fieldT typ = raise TYPE ("dest_fieldT", [typ], []);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   135
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   136
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   137
(* constructors *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   138
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   139
fun mk_fieldC U (c, T) = (suffix fieldN c, T --> U --> mk_fieldT ((c, T), U));
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   140
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   141
fun gen_mk_field sfx ((c, t), u) =
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   142
  let val T = fastype_of t and U = fastype_of u
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   143
  in Const (suffix sfx c, [T, U] ---> mk_fieldT ((c, T), U)) $ t $ u end;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   144
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   145
val mk_field = gen_mk_field fieldN;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   146
val mk_raw_field = gen_mk_field raw_fieldN;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   147
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   148
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   149
(* destructors *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   150
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   151
fun mk_fstC U (c, T) = (suffix fstN c, mk_fieldT ((c, T), U) --> T);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   152
fun mk_sndC U (c, T) = (suffix sndN c, mk_fieldT ((c, T), U) --> U);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   153
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   154
fun dest_field fst_or_snd p =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   155
  let
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   156
    val pT = fastype_of p;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   157
    val ((c, T), U) = dest_fieldT pT;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   158
    val (destN, destT) = if fst_or_snd then (fstN, T) else (sndN, U);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   159
  in Const (suffix destN c, pT --> destT) $ p end;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   160
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   161
val mk_fst = dest_field true;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   162
val mk_snd = dest_field false;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   163
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   164
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   165
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   166
(** record operations **)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   167
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   168
(* types *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   169
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   170
val mk_recordT = foldr mk_fieldT;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   171
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   172
fun dest_recordT T =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   173
  (case try dest_fieldT T of
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   174
    None => ([], T)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   175
  | Some (c_T, U) => apfst (cons c_T) (dest_recordT U));
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   176
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   177
fun find_fieldT c rT =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   178
  (case assoc (fst (dest_recordT rT), c) of
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   179
    None => raise TYPE ("find_field: " ^ c, [rT], [])
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   180
  | Some T => T);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   181
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   182
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   183
(* constructors *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   184
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   185
val mk_record = foldr mk_field;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   186
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   187
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   188
(* selectors *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   189
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   190
fun mk_selC rT (c, T) = (c, rT --> T);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   191
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   192
fun mk_sel r c =
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   193
  let val rT = fastype_of r
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   194
  in Const (mk_selC rT (c, find_fieldT c rT)) $ r end;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   195
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   196
val mk_moreC = mk_selC;
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   197
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   198
fun mk_more r c =
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   199
  let val rT = fastype_of r
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   200
  in Const (mk_moreC rT (c, snd (dest_recordT rT))) $ r end;
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   201
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   202
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   203
(* updates *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   204
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   205
fun mk_updateC rT (c, T) = (suffix updateN c, T --> rT --> rT);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   206
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   207
fun mk_update r (c, x) =
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   208
  let val rT = fastype_of r
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   209
  in Const (mk_updateC rT (c, find_fieldT c rT)) $ x $ r end;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   210
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   211
val mk_more_updateC = mk_updateC;
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   212
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   213
fun mk_more_update r (c, x) =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   214
  let val rT = fastype_of r
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   215
  in Const (mk_more_updateC rT (c, snd (dest_recordT rT))) $ x $ r end;
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   216
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   217
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   218
(* make *)
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   219
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   220
fun mk_makeC rT (c, Ts) = (c, Ts ---> rT);
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   221
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   222
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   223
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   224
(** concrete syntax for records **)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   225
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   226
(* parse translations *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   227
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   228
fun gen_field_tr mark sfx (t as Const (c, _) $ Free (name, _) $ arg) =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   229
      if c = mark then Syntax.const (suffix sfx name) $ arg
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   230
      else raise TERM ("gen_field_tr: " ^ mark, [t])
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   231
  | gen_field_tr mark _ t = raise TERM ("gen_field_tr: " ^ mark, [t]);
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   232
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   233
fun gen_fields_tr sep mark sfx (tm as Const (c, _) $ t $ u) =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   234
      if c = sep then gen_field_tr mark sfx t :: gen_fields_tr sep mark sfx u
5201
wenzelm
parents: 5197
diff changeset
   235
      else [gen_field_tr mark sfx tm]
wenzelm
parents: 5197
diff changeset
   236
  | gen_fields_tr _ mark sfx tm = [gen_field_tr mark sfx tm];
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   237
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   238
fun gen_record_tr sep mark sfx unit [t] = foldr (op $) (gen_fields_tr sep mark sfx t, unit)
5201
wenzelm
parents: 5197
diff changeset
   239
  | gen_record_tr _ _ _ _ ts = raise TERM ("gen_record_tr", ts);
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   240
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   241
fun gen_record_scheme_tr sep mark sfx [t, more] = foldr (op $) (gen_fields_tr sep mark sfx t, more)
5201
wenzelm
parents: 5197
diff changeset
   242
  | gen_record_scheme_tr _ _ _ ts = raise TERM ("gen_record_scheme_tr", ts);
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   243
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   244
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   245
val record_type_tr = gen_record_tr "_field_types" "_field_type" field_typeN (Syntax.const "unit");
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   246
val record_type_scheme_tr = gen_record_scheme_tr "_field_types" "_field_type" field_typeN;
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   247
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   248
val record_tr = gen_record_tr "_fields" "_field" fieldN HOLogic.unit;
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   249
val record_scheme_tr = gen_record_scheme_tr "_fields" "_field" fieldN;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   250
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   251
fun record_update_tr [t, u] =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   252
      foldr (op $) (rev (gen_fields_tr "_updates" "_update" updateN u), t)
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   253
  | record_update_tr ts = raise TERM ("record_update_tr", ts);
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   254
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   255
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   256
val parse_translation =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   257
 [("_record_type", record_type_tr),
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   258
  ("_record_type_scheme", record_type_scheme_tr),
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   259
  ("_record", record_tr),
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   260
  ("_record_scheme", record_scheme_tr),
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   261
  ("_record_update", record_update_tr)];
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   262
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   263
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   264
(* print translations *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   265
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   266
fun gen_fields_tr' mark sfx (tm as Const (name_field, _) $ t $ u) =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   267
      (case try (unsuffix sfx) name_field of
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   268
        Some name =>
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   269
          apfst (cons (Syntax.const mark $ Syntax.free name $ t)) (gen_fields_tr' mark sfx u)
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   270
      | None => ([], tm))
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   271
  | gen_fields_tr' _ _ tm = ([], tm);
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   272
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   273
fun gen_record_tr' sep mark sfx is_unit record record_scheme tm =
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   274
  let
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   275
    val (ts, u) = gen_fields_tr' mark sfx tm;
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   276
    val t' = foldr1 (fn (v, w) => Syntax.const sep $ v $ w) ts;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   277
  in
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   278
    if is_unit u then Syntax.const record $ t'
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   279
    else Syntax.const record_scheme $ t' $ u
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   280
  end;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   281
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   282
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   283
val record_type_tr' =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   284
  gen_record_tr' "_field_types" "_field_type" field_typeN
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   285
    (fn Const ("unit", _) => true | _ => false) "_record_type" "_record_type_scheme";
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   286
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   287
val record_tr' =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   288
  gen_record_tr' "_fields" "_field" fieldN HOLogic.is_unit "_record" "_record_scheme";
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   289
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   290
fun record_update_tr' tm =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   291
  let val (ts, u) = gen_fields_tr' "_update" updateN tm in
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   292
    Syntax.const "_record_update" $ u $
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   293
      foldr1 (fn (v, w) => Syntax.const "_updates" $ v $ w) (rev ts)
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   294
  end;
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   295
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   296
5201
wenzelm
parents: 5197
diff changeset
   297
fun gen_field_tr' sfx tr' name =
wenzelm
parents: 5197
diff changeset
   298
  let val name_sfx = suffix sfx name
wenzelm
parents: 5197
diff changeset
   299
  in (name_sfx, fn [t, u] => tr' (Syntax.const name_sfx $ t $ u) | _ => raise Match) end;
wenzelm
parents: 5197
diff changeset
   300
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   301
fun print_translation names =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   302
  map (gen_field_tr' field_typeN record_type_tr') names @
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   303
  map (gen_field_tr' fieldN record_tr') names @
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   304
  map (gen_field_tr' updateN record_update_tr') names;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   305
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   306
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   307
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   308
(*** extend theory by record definition ***)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   309
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   310
(** record info **)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   311
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   312
(* type record_info and parent_info *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   313
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   314
type record_info =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   315
 {args: (string * sort) list,
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   316
  parent: (typ list * string) option,
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   317
  fields: (string * typ) list,
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5890
diff changeset
   318
  simps: thm list};
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   319
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   320
type parent_info =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   321
 {name: string,
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   322
  fields: (string * typ) list,
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5890
diff changeset
   323
  simps: thm list};
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   324
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   325
5052
bbe3584b515b fixed comment;
wenzelm
parents: 5006
diff changeset
   326
(* data kind 'HOL/records' *)
5001
9de7fda0a6df accomodate tuned version of theory data;
wenzelm
parents: 4970
diff changeset
   327
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   328
type record_data =
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   329
 {records: record_info Symtab.table,
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   330
  sel_upd:
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   331
   {selectors: unit Symtab.table,
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   332
    updates: string Symtab.table,
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   333
    simpset: Simplifier.simpset},
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   334
  field_splits:
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   335
   {fields: unit Symtab.table,
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   336
    simpset: Simplifier.simpset}};
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   337
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   338
fun make_record_data records sel_upd field_splits =
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   339
 {records = records, sel_upd = sel_upd, field_splits = field_splits}: record_data;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   340
5006
cdc86a914e63 adapted to new theory data interface;
wenzelm
parents: 5001
diff changeset
   341
structure RecordsArgs =
cdc86a914e63 adapted to new theory data interface;
wenzelm
parents: 5001
diff changeset
   342
struct
cdc86a914e63 adapted to new theory data interface;
wenzelm
parents: 5001
diff changeset
   343
  val name = "HOL/records";
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   344
  type T = record_data;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   345
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   346
  val empty =
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   347
    make_record_data Symtab.empty
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   348
      {selectors = Symtab.empty, updates = Symtab.empty, simpset = HOL_basic_ss}
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   349
      {fields = Symtab.empty, simpset = HOL_basic_ss};
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   350
6556
daa00919502b theory data: copy;
wenzelm
parents: 6519
diff changeset
   351
  val copy = I;
5006
cdc86a914e63 adapted to new theory data interface;
wenzelm
parents: 5001
diff changeset
   352
  val prep_ext = I;
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   353
  fun merge
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   354
   ({records = recs1,
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   355
     sel_upd = {selectors = sels1, updates = upds1, simpset = ss1},
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   356
     field_splits = {fields = flds1, simpset = fld_ss1}},
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   357
    {records = recs2,
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   358
     sel_upd = {selectors = sels2, updates = upds2, simpset = ss2},
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   359
     field_splits = {fields = flds2, simpset = fld_ss2}}) =
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   360
    make_record_data
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   361
      (Symtab.merge (K true) (recs1, recs2))
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   362
      {selectors = Symtab.merge (K true) (sels1, sels2),
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   363
        updates = Symtab.merge (K true) (upds1, upds2),
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   364
        simpset = Simplifier.merge_ss (ss1, ss2)}
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   365
      {fields = Symtab.merge (K true) (flds1, flds2),
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   366
        simpset = Simplifier.merge_ss (fld_ss1, fld_ss2)};
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   367
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   368
  fun print sg ({records = recs, ...}: record_data) =
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   369
    let
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   370
      val prt_typ = Sign.pretty_typ sg;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   371
      val ext_const = Sign.cond_extern sg Sign.constK;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   372
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   373
      fun pretty_parent None = []
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   374
        | pretty_parent (Some (Ts, name)) =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   375
            [Pretty.block [prt_typ (Type (name, Ts)), Pretty.str " +"]];
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   376
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   377
      fun pretty_field (c, T) = Pretty.block
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   378
        [Pretty.str (ext_const c), Pretty.str " ::", Pretty.brk 1, Pretty.quote (prt_typ T)];
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   379
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   380
      fun pretty_record (name, {args, parent, fields, simps = _}) = Pretty.block (Pretty.fbreaks
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   381
        (Pretty.block [prt_typ (Type (name, map TFree args)), Pretty.str " = "] ::
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   382
          pretty_parent parent @ map pretty_field fields));
8720
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 8574
diff changeset
   383
    in
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 8574
diff changeset
   384
      map pretty_record (Sign.cond_extern_table sg Sign.typeK recs)
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 8574
diff changeset
   385
      |> Pretty.chunks |> Pretty.writeln
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 8574
diff changeset
   386
    end;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   387
end;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   388
5006
cdc86a914e63 adapted to new theory data interface;
wenzelm
parents: 5001
diff changeset
   389
structure RecordsData = TheoryDataFun(RecordsArgs);
cdc86a914e63 adapted to new theory data interface;
wenzelm
parents: 5001
diff changeset
   390
val print_records = RecordsData.print;
cdc86a914e63 adapted to new theory data interface;
wenzelm
parents: 5001
diff changeset
   391
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   392
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   393
(* access 'records' *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   394
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   395
fun get_record thy name = Symtab.lookup (#records (RecordsData.get thy), name);
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   396
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   397
fun put_record name info thy =
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   398
  let
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   399
    val {records, sel_upd, field_splits} = RecordsData.get thy;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   400
    val data = make_record_data (Symtab.update ((name, info), records)) sel_upd field_splits;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   401
  in RecordsData.put data thy end;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   402
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   403
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   404
(* access 'sel_upd' *)
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   405
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   406
fun get_sel_upd sg = #sel_upd (RecordsData.get_sg sg);
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   407
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   408
fun get_selectors sg name = Symtab.lookup (#selectors (get_sel_upd sg), name);
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   409
fun get_updates sg name = Symtab.lookup (#updates (get_sel_upd sg), name);
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   410
fun get_simpset sg = #simpset (get_sel_upd sg);
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   411
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   412
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   413
fun put_sel_upd names simps thy =
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   414
  let
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   415
    val sels = map (rpair ()) names;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   416
    val upds = map (suffix updateN) names ~~ names;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   417
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   418
    val {records, sel_upd = {selectors, updates, simpset}, field_splits} = RecordsData.get thy;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   419
    val data = make_record_data records
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   420
      {selectors = Symtab.extend (selectors, sels),
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   421
        updates = Symtab.extend (updates, upds),
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   422
        simpset = Simplifier.addsimps (simpset, simps)}
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   423
      field_splits;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   424
  in RecordsData.put data thy end;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   425
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   426
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   427
(* access 'field_splits' *)
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   428
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   429
fun add_record_splits splits thy =
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   430
  let
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   431
    val {records, sel_upd, field_splits = {fields, simpset}} = RecordsData.get thy;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   432
    val flds = map (rpair () o fst) splits;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   433
    val simps = map snd splits;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   434
    val data = make_record_data records sel_upd
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   435
      {fields = Symtab.extend (fields, flds), simpset = Simplifier.addsimps (simpset, simps)};
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   436
  in RecordsData.put data thy end;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   437
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   438
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   439
(* parent records *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   440
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   441
fun inst_record thy (types, name) =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   442
  let
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   443
    val sign = Theory.sign_of thy;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   444
    fun err msg = error (msg ^ " parent record " ^ quote name);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   445
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   446
    val {args, parent, fields, simps} =
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   447
      (case get_record thy name of Some info => info | None => err "Unknown");
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   448
    val _ = if length types <> length args then err "Bad number of arguments for" else ();
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   449
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   450
    fun bad_inst ((x, S), T) =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   451
      if Sign.of_sort sign (T, S) then None else Some x
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   452
    val bads = mapfilter bad_inst (args ~~ types);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   453
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   454
    val inst = map fst args ~~ types;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   455
    val subst = Term.map_type_tfree (fn (x, _) => the (assoc (inst, x)));
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   456
  in
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   457
    if not (null bads) then
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   458
      err ("Ill-sorted instantiation of " ^ commas bads ^ " in")
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   459
    else (apsome (apfst (map subst)) parent, map (apsnd subst) fields, simps)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   460
  end;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   461
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   462
fun add_parents thy (None, parents) = parents
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   463
  | add_parents thy (Some (types, name), parents) =
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   464
      let val (pparent, pfields, psimps) = inst_record thy (types, name)
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   465
      in add_parents thy (pparent, {name = name, fields = pfields, simps = psimps} :: parents) end;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   466
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   467
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   468
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   469
(** record simproc **)
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   470
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   471
local
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   472
8100
6186ee807f2e replaced HOLogic.termTVar by HOLogic.termT;
wenzelm
parents: 7178
diff changeset
   473
val sel_upd_pat = [Thm.read_cterm (Theory.sign_of HOL.thy) ("s (u k r)", HOLogic.termT)];
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   474
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   475
fun proc sg _ t =
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   476
  (case t of (sel as Const (s, _)) $ ((upd as Const (u, _)) $ k $ r) =>
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   477
    (case get_selectors sg s of Some () =>
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   478
      (case get_updates sg u of Some u_name =>
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   479
        let
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   480
          fun atomize x t = Free (x, fastype_of t);
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   481
          val k' = atomize "k" k;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   482
          val r' = atomize "r" r;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   483
          val t' = sel $ (upd $ k' $ r');
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   484
          val prove = mk_meta_eq o prove_simp sg (get_simpset sg) [] [];
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   485
        in
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   486
          if u_name = s then Some (prove (t' === k'))
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   487
          else Some (prove (t' === sel $ r'))
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   488
        end
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   489
      | None => None)
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   490
    | None => None)
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   491
  | _ => None);
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   492
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   493
in
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   494
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   495
val record_simproc = Simplifier.mk_simproc "record_simp" sel_upd_pat proc;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   496
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   497
end;
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   498
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   499
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   500
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   501
(** record field splitting **)
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   502
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   503
(* tactic *)
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   504
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   505
fun record_split_tac i st =
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   506
  let
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   507
    val {field_splits = {fields, simpset}, ...} = RecordsData.get_sg (Thm.sign_of_thm st);
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   508
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   509
    fun is_fieldT (_, Type (a, [_, _])) = is_some (Symtab.lookup (fields, a))
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   510
      | is_fieldT _ = false;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   511
    val params = Logic.strip_params (Library.nth_elem (i - 1, Thm.prems_of st));
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   512
  in
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   513
    if exists is_fieldT params then Simplifier.full_simp_tac simpset i st
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   514
    else Seq.empty
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   515
  end handle Library.LIST _ => Seq.empty;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   516
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   517
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   518
(* wrapper *)
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   519
5707
b0e631634b5a field_injects [iffs];
wenzelm
parents: 5698
diff changeset
   520
val record_split_name = "record_split_tac";
b0e631634b5a field_injects [iffs];
wenzelm
parents: 5698
diff changeset
   521
val record_split_wrapper = (record_split_name, fn tac => record_split_tac ORELSE' tac);
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   522
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   523
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   524
(* method *)
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   525
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   526
val record_split_method =
9705
8eecca293907 Method.SIMPLE_METHOD';
wenzelm
parents: 9626
diff changeset
   527
  ("record_split", Method.no_args (Method.SIMPLE_METHOD' HEADGOAL record_split_tac),
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   528
    "split record fields");
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   529
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   530
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   531
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   532
(** internal theory extenders **)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   533
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   534
(* field_type_defs *)
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   535
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   536
fun field_type_def ((thy, simps), (name, tname, vs, T, U)) =
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   537
  let
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 6384
diff changeset
   538
    val full = Sign.full_name (Theory.sign_of thy);
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   539
    val (thy', {simps = simps', ...}) =
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   540
      thy
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   541
      |> setmp DatatypePackage.quiet_mode true
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   542
        (DatatypePackage.add_datatype_i true [tname]
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   543
          [(vs, tname, Syntax.NoSyn, [(name, [T, U], Syntax.NoSyn)])]);
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   544
    val thy'' =
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   545
      thy'
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   546
      |> setmp AxClass.quiet_mode true
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   547
        (AxClass.add_inst_arity_i (full tname, [HOLogic.termS, moreS], moreS) [] [] None);
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   548
  in (thy'', simps' @ simps) end;
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   549
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   550
fun field_type_defs args thy = foldl field_type_def ((thy, []), args);
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   551
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   552
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   553
(* field_definitions *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   554
9040
249c135057d7 pair split: proper names of params;
wenzelm
parents: 8720
diff changeset
   555
fun field_definitions fields names xs zeta moreT more vars named_vars thy =
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   556
  let
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   557
    val sign = Theory.sign_of thy;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   558
    val base = Sign.base_name;
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   559
    val full_path = Sign.full_name_path sign;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   560
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   561
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   562
    (* prepare declarations and definitions *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   563
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   564
    (*field types*)
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   565
    fun mk_fieldT_spec c =
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   566
      (suffix raw_fieldN c, suffix field_typeN c,
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   567
        ["'a", zeta], TFree ("'a", HOLogic.termS), moreT);
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   568
    val fieldT_specs = map (mk_fieldT_spec o base) names;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   569
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   570
    (*field constructors*)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   571
    val field_decls = map (mk_fieldC moreT) fields;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   572
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   573
    fun mk_field_spec (c, v) =
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   574
      mk_field ((c, v), more) :== mk_raw_field ((c, v), more);
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   575
    val field_specs = map mk_field_spec named_vars;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   576
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   577
    (*field destructors*)
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   578
    val dest_decls = map (mk_fstC moreT) fields @ map (mk_sndC moreT) fields;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   579
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   580
    fun mk_dest_spec dest f (c, T) =
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   581
      let val p = Free ("p", mk_fieldT ((c, T), moreT));
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   582
      in dest p :== mk_prod_case (suffix field_typeN c) (f T moreT) p end;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   583
    val dest_specs =
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   584
      map (mk_dest_spec mk_fst fst_fn) fields @
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   585
      map (mk_dest_spec mk_snd snd_fn) fields;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   586
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   587
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   588
    (* prepare theorems *)
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   589
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   590
    (*constructor injects*)
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   591
    fun mk_inject_prop (c, v) =
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   592
      HOLogic.mk_eq (mk_field ((c, v), more), mk_field ((c, prime v), prime more)) ===
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   593
        (HOLogic.conj $ HOLogic.mk_eq (v, prime v) $ HOLogic.mk_eq (more, prime more));
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   594
    val inject_props = map mk_inject_prop named_vars;
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   595
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   596
    (*destructor conversions*)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   597
    fun mk_dest_prop dest dest' (c, v) =
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   598
      dest (mk_field ((c, v), more)) === dest' (v, more);
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   599
    val dest_props =
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   600
      map (mk_dest_prop mk_fst fst) named_vars @
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   601
      map (mk_dest_prop mk_snd snd) named_vars;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   602
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   603
    (*surjective pairing*)
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   604
    fun mk_surj_prop (c, T) =
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   605
      let val p = Free ("p", mk_fieldT ((c, T), moreT));
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   606
      in p === mk_field ((c, mk_fst p), mk_snd p) end;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   607
    val surj_props = map mk_surj_prop fields;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   608
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   609
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   610
    (* 1st stage: types_thy *)
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   611
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5890
diff changeset
   612
    val (types_thy, datatype_simps) =
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   613
      thy
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   614
      |> field_type_defs fieldT_specs;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   615
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   616
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   617
    (* 2nd stage: defs_thy *)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   618
8428
be4c8a57cf7e adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8294
diff changeset
   619
    val (defs_thy, (field_defs, dest_defs)) =
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   620
      types_thy
8428
be4c8a57cf7e adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8294
diff changeset
   621
       |> (Theory.add_consts_i o map (Syntax.no_syn o apfst base)) (field_decls @ dest_decls)
9315
f793f05024f6 adapted PureThy.add_defs_i;
wenzelm
parents: 9230
diff changeset
   622
       |> (PureThy.add_defs_i false o map (fn x => (x, [Drule.tag_internal]))) field_specs
f793f05024f6 adapted PureThy.add_defs_i;
wenzelm
parents: 9230
diff changeset
   623
       |>>> (PureThy.add_defs_i false o map (fn x => (x, [Drule.tag_internal]))) dest_specs;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   624
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   625
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   626
    (* 3rd stage: thms_thy *)
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   627
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   628
    val prove = prove_simp (Theory.sign_of defs_thy) HOL_basic_ss;
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   629
    val prove_std = prove [] (field_defs @ dest_defs @ datatype_simps);
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   630
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   631
    val field_injects = map prove_std inject_props;
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   632
    val dest_convs = map prove_std dest_props;
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   633
    val surj_pairs = map (prove [DatatypePackage.induct_tac "p" 1]
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5890
diff changeset
   634
      (map Thm.symmetric field_defs @ dest_convs)) surj_props;
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   635
9040
249c135057d7 pair split: proper names of params;
wenzelm
parents: 8720
diff changeset
   636
    fun mk_split (x, th) = SplitPairedAll.rule_params x moreN (th RS eq_reflection);
249c135057d7 pair split: proper names of params;
wenzelm
parents: 8720
diff changeset
   637
    val field_splits = map2 mk_split (xs, surj_pairs);
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   638
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   639
    val thms_thy =
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   640
      defs_thy
8428
be4c8a57cf7e adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8294
diff changeset
   641
      |> (#1 oo (PureThy.add_thmss o map Thm.no_attributes))
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   642
        [("field_defs", field_defs),
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   643
          ("dest_defs", dest_defs),
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   644
          ("dest_convs", dest_convs),
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   645
          ("surj_pairs", surj_pairs),
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   646
          ("field_splits", field_splits)];
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   647
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   648
  in (thms_thy, dest_convs, field_injects, field_splits) end;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   649
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   650
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   651
(* record_definition *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   652
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   653
fun record_definition (args, bname) parent (parents: parent_info list) bfields thy =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   654
  let
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   655
    val sign = Theory.sign_of thy;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   656
    val full = Sign.full_name_path sign bname;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   657
    val base = Sign.base_name;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   658
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   659
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   660
    (* basic components *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   661
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   662
    val alphas = map fst args;
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   663
    val name = Sign.full_name sign bname;       (*not made part of record name space!*)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   664
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   665
    val parent_fields = flat (map #fields parents);
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   666
    val parent_names = map fst parent_fields;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   667
    val parent_types = map snd parent_fields;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   668
    val parent_len = length parent_fields;
8294
c50607ff9704 rN = "record";
wenzelm
parents: 8274
diff changeset
   669
    val parent_xs = variantlist (map (base o fst) parent_fields, [moreN, recordN]);
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   670
    val parent_vars = ListPair.map Free (parent_xs, parent_types);
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   671
    val parent_named_vars = parent_names ~~ parent_vars;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   672
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   673
    val fields = map (apfst full) bfields;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   674
    val names = map fst fields;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   675
    val types = map snd fields;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   676
    val len = length fields;
8294
c50607ff9704 rN = "record";
wenzelm
parents: 8274
diff changeset
   677
    val xs = variantlist (map fst bfields, moreN :: recordN :: parent_xs);
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   678
    val vars = ListPair.map Free (xs, types);
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   679
    val named_vars = names ~~ vars;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   680
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   681
    val all_fields = parent_fields @ fields;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   682
    val all_names = parent_names @ names;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   683
    val all_types = parent_types @ types;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   684
    val all_len = parent_len + len;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   685
    val all_xs = parent_xs @ xs;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   686
    val all_vars = parent_vars @ vars;
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   687
    val all_named_vars = parent_named_vars @ named_vars;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   688
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   689
    val zeta = variant alphas "'z";
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   690
    val moreT = TFree (zeta, moreS);
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   691
    val more = Free (moreN, moreT);
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   692
    val full_moreN = full moreN;
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   693
    fun more_part t = mk_more t full_moreN;
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   694
    fun more_part_update t x = mk_more_update t (full_moreN, x);
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   695
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   696
    val parent_more = funpow parent_len mk_snd;
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   697
    val idxs = 0 upto (len - 1);
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   698
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   699
    val rec_schemeT = mk_recordT (all_fields, moreT);
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   700
    val rec_scheme = mk_record (all_named_vars, more);
8294
c50607ff9704 rN = "record";
wenzelm
parents: 8274
diff changeset
   701
    val r = Free (recordN, rec_schemeT);
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   702
    val recT = mk_recordT (all_fields, HOLogic.unitT);
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   703
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   704
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   705
    (* prepare print translation functions *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   706
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   707
    val field_tr's =
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   708
      print_translation (distinct (flat (map NameSpace.accesses (full_moreN :: names))));
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   709
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   710
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   711
    (* prepare declarations *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   712
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   713
    val sel_decls = map (mk_selC rec_schemeT) bfields @
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   714
      [mk_moreC rec_schemeT (moreN, moreT)];
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   715
    val update_decls = map (mk_updateC rec_schemeT) bfields @
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   716
      [mk_more_updateC rec_schemeT (moreN, moreT)];
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   717
    val make_decls =
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   718
      [(mk_makeC rec_schemeT (make_schemeN, all_types @ [moreT])),
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   719
       (mk_makeC recT (makeN, all_types))];
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   720
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   721
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   722
    (* prepare definitions *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   723
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   724
    (*record (scheme) type abbreviation*)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   725
    val recordT_specs =
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   726
      [(suffix schemeN bname, alphas @ [zeta], rec_schemeT, Syntax.NoSyn),
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   727
        (bname, alphas, recT, Syntax.NoSyn)];
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   728
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   729
    (*selectors*)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   730
    fun mk_sel_spec (i, c) =
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   731
      mk_sel r c :== mk_fst (funpow i mk_snd (parent_more r));
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   732
    val sel_specs =
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   733
      ListPair.map mk_sel_spec (idxs, names) @
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   734
        [more_part r :== funpow len mk_snd (parent_more r)];
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   735
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   736
    (*updates*)
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   737
    val all_sels = all_names ~~ map (mk_sel r) all_names;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   738
    fun mk_upd_spec (i, (c, x)) =
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   739
      mk_update r (c, x) :==
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   740
        mk_record (nth_update (c, x) (parent_len + i, all_sels), more_part r)
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   741
    val update_specs =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   742
      ListPair.map mk_upd_spec (idxs, named_vars) @
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   743
        [more_part_update r more :== mk_record (all_sels, more)];
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   744
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   745
    (*makes*)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   746
    val make_scheme = Const (mk_makeC rec_schemeT (full make_schemeN, all_types @ [moreT]));
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   747
    val make = Const (mk_makeC recT (full makeN, all_types));
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   748
    val make_specs =
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   749
      [list_comb (make_scheme, all_vars) $ more :== rec_scheme,
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   750
        list_comb (make, all_vars) :== mk_record (all_named_vars, HOLogic.unit)];
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   751
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   752
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   753
    (* prepare propositions *)
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   754
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   755
    (*selectors*)
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   756
    val sel_props =
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   757
      map (fn (c, x) => mk_sel rec_scheme c === x) named_vars @
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   758
        [more_part rec_scheme === more];
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   759
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   760
    (*updates*)
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   761
    fun mk_upd_prop (i, (c, T)) =
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   762
      let val x' = Free (variant all_xs (base c ^ "'"), T) in
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   763
        mk_update rec_scheme (c, x') ===
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   764
          mk_record (nth_update (c, x') (parent_len + i, all_named_vars), more)
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   765
      end;
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   766
    val update_props =
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   767
      ListPair.map mk_upd_prop (idxs, fields) @
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   768
        let val more' = Free (variant all_xs (moreN ^ "'"), moreT)
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   769
        in [more_part_update rec_scheme more' === mk_record (all_named_vars, more')] end;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   770
9626
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   771
    (*equality*)
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   772
    fun mk_sel_eq (t, T) =
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   773
      let val t' = Term.abstract_over (r, t)
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   774
      in HOLogic.mk_Trueprop (HOLogic.eq_const T $ Term.incr_boundvars 1 t' $ t') end;
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   775
    val sel_eqs = map2 mk_sel_eq (map (mk_sel r) all_names @ [more_part r], all_types @ [moreT]);
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   776
    val equality_prop =
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   777
      Term.all rec_schemeT $ (Abs ("r", rec_schemeT,
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   778
        Term.all rec_schemeT $ (Abs ("r'", rec_schemeT,
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   779
          Logic.list_implies (sel_eqs,
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   780
            HOLogic.mk_Trueprop (HOLogic.eq_const rec_schemeT $ Bound 1 $ Bound 0))))));
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   781
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   782
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   783
    (* 1st stage: fields_thy *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   784
5713
27d4fcf5fe5f fixed field_injects;
wenzelm
parents: 5707
diff changeset
   785
    val (fields_thy, field_simps, field_injects, field_splits) =
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   786
      thy
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   787
      |> Theory.add_path bname
9040
249c135057d7 pair split: proper names of params;
wenzelm
parents: 8720
diff changeset
   788
      |> field_definitions fields names xs zeta moreT more vars named_vars;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   789
6092
d9db67970c73 eliminated tthm type and Attribute structure;
wenzelm
parents: 5890
diff changeset
   790
    val named_splits = map2 (fn (c, th) => (suffix field_typeN c, th)) (names, field_splits);
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   791
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   792
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   793
    (* 2nd stage: defs_thy *)
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   794
8428
be4c8a57cf7e adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8294
diff changeset
   795
    val (defs_thy, ((sel_defs, update_defs), make_defs)) =
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   796
      fields_thy
9626
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   797
      |> add_record_splits named_splits
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   798
      |> Theory.parent_path
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   799
      |> Theory.add_tyabbrs_i recordT_specs     (*not made part of record name space!*)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   800
      |> Theory.add_path bname
5197
69c77ed95ba3 added more_update;
wenzelm
parents: 5060
diff changeset
   801
      |> Theory.add_trfuns ([], [], field_tr's, [])
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   802
      |> (Theory.add_consts_i o map Syntax.no_syn)
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   803
        (sel_decls @ update_decls @ make_decls)
9315
f793f05024f6 adapted PureThy.add_defs_i;
wenzelm
parents: 9230
diff changeset
   804
      |> (PureThy.add_defs_i false o map (fn x => (x, [Drule.tag_internal]))) sel_specs
f793f05024f6 adapted PureThy.add_defs_i;
wenzelm
parents: 9230
diff changeset
   805
      |>>> (PureThy.add_defs_i false o map (fn x => (x, [Drule.tag_internal]))) update_specs
f793f05024f6 adapted PureThy.add_defs_i;
wenzelm
parents: 9230
diff changeset
   806
      |>>> (PureThy.add_defs_i false o map Thm.no_attributes) make_specs;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   807
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   808
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   809
    (* 3rd stage: thms_thy *)
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   810
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   811
    val parent_simps = flat (map #simps parents);
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   812
    val prove = prove_simp (Theory.sign_of defs_thy) HOL_basic_ss [];
9626
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   813
    val prove' = prove_simp (Theory.sign_of defs_thy) HOL_ss;
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   814
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   815
    val sel_convs = map (prove (parent_simps @ sel_defs @ field_simps)) sel_props;
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   816
    val update_convs = map (prove (parent_simps @ update_defs @ sel_convs)) update_props;
9626
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   817
    val equality =
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   818
      prove' [ALLGOALS record_split_tac] (parent_simps @ sel_convs @ field_injects) equality_prop;
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   819
9626
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   820
    val simps = field_simps @ sel_convs @ update_convs @ make_defs @ [equality];
6519
5bd1c469e742 iff_add_global (from simpdata.ML);
wenzelm
parents: 6394
diff changeset
   821
    val iffs = field_injects;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   822
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   823
    val thms_thy =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   824
      defs_thy
8428
be4c8a57cf7e adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8294
diff changeset
   825
      |> (#1 oo (PureThy.add_thmss o map Thm.no_attributes))
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   826
        [("select_defs", sel_defs),
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   827
          ("update_defs", update_defs),
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   828
          ("make_defs", make_defs),
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   829
          ("select_convs", sel_convs),
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   830
          ("update_convs", update_convs)]
10008
61eb9f3aa92a Display.pretty_thm_sg;
wenzelm
parents: 9898
diff changeset
   831
      |> (#1 oo PureThy.add_thms)
61eb9f3aa92a Display.pretty_thm_sg;
wenzelm
parents: 9898
diff changeset
   832
          [(("equality", equality), [Classical.xtra_intro_global])]
8428
be4c8a57cf7e adapted to new PureThy.add_thms etc.;
wenzelm
parents: 8294
diff changeset
   833
      |> (#1 oo PureThy.add_thmss)
5707
b0e631634b5a field_injects [iffs];
wenzelm
parents: 5698
diff changeset
   834
        [(("simps", simps), [Simplifier.simp_add_global]),
6519
5bd1c469e742 iff_add_global (from simpdata.ML);
wenzelm
parents: 6394
diff changeset
   835
         (("iffs", iffs), [iff_add_global])];
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   836
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   837
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   838
    (* 4th stage: final_thy *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   839
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   840
    val final_thy =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   841
      thms_thy
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   842
      |> put_record name {args = args, parent = parent, fields = fields, simps = simps}
9626
c4a45149cc46 sel_upd proc: include 'more' pseudo-field;
wenzelm
parents: 9315
diff changeset
   843
      |> put_sel_upd (names @ [full_moreN]) (field_simps @ sel_defs @ update_defs)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   844
      |> Theory.parent_path;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   845
6519
5bd1c469e742 iff_add_global (from simpdata.ML);
wenzelm
parents: 6394
diff changeset
   846
  in (final_thy, {simps = simps, iffs = iffs}) end;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   847
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   848
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   849
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   850
(** theory extender interface **)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   851
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   852
(* prepare arguments *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   853
4894
32187e0b8b48 'more' selector;
wenzelm
parents: 4890
diff changeset
   854
(*note: read_raw_typ avoids expanding type abbreviations*)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   855
fun read_raw_parent sign s =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   856
  (case Sign.read_raw_typ (sign, K None) s handle TYPE (msg, _, _) => error msg of
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   857
    Type (name, Ts) => (Ts, name)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   858
  | _ => error ("Bad parent record specification: " ^ quote s));
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   859
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   860
fun read_typ sign (env, s) =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   861
  let
5060
7b86df67cc1a def_sort;
wenzelm
parents: 5052
diff changeset
   862
    fun def_sort (x, ~1) = assoc (env, x)
7b86df67cc1a def_sort;
wenzelm
parents: 5052
diff changeset
   863
      | def_sort _ = None;
7b86df67cc1a def_sort;
wenzelm
parents: 5052
diff changeset
   864
    val T = Type.no_tvars (Sign.read_typ (sign, def_sort) s) handle TYPE (msg, _, _) => error msg;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   865
  in (Term.add_typ_tfrees (T, env), T) end;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   866
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   867
fun cert_typ sign (env, raw_T) =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   868
  let val T = Type.no_tvars (Sign.certify_typ sign raw_T) handle TYPE (msg, _, _) => error msg
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   869
  in (Term.add_typ_tfrees (T, env), T) end;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   870
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   871
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   872
(* add_record *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   873
4895
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   874
(*we do all preparations and error checks here, deferring the real
0fad2acb45fb misc tuning;
wenzelm
parents: 4894
diff changeset
   875
  work to record_definition*)
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   876
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   877
fun gen_add_record prep_typ prep_raw_parent (params, bname) raw_parent raw_fields thy =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   878
  let
4970
8b65444edbb0 Changed require to requires for MLWorks
paulson
parents: 4967
diff changeset
   879
    val _ = Theory.requires thy "Record" "record definitions";
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   880
    val sign = Theory.sign_of thy;
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   881
    val _ = message ("Defining record " ^ quote bname ^ " ...");
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   882
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   883
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   884
    (* parents *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   885
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   886
    fun prep_inst T = snd (cert_typ sign ([], T));
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   887
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   888
    val parent = apsome (apfst (map prep_inst) o prep_raw_parent sign) raw_parent
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   889
      handle ERROR => error ("The error(s) above in parent record specification");
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   890
    val parents = add_parents thy (parent, []);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   891
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   892
    val init_env =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   893
      (case parent of
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   894
        None => []
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   895
      | Some (types, _) => foldr Term.add_typ_tfrees (types, []));
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   896
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   897
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   898
    (* fields *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   899
4967
c9c481bc0216 foldl_map prep_field;
wenzelm
parents: 4895
diff changeset
   900
    fun prep_field (env, (c, raw_T)) =
c9c481bc0216 foldl_map prep_field;
wenzelm
parents: 4895
diff changeset
   901
      let val (env', T) = prep_typ sign (env, raw_T) handle ERROR =>
c9c481bc0216 foldl_map prep_field;
wenzelm
parents: 4895
diff changeset
   902
        error ("The error(s) above occured in field " ^ quote c)
c9c481bc0216 foldl_map prep_field;
wenzelm
parents: 4895
diff changeset
   903
      in (env', (c, T)) end;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   904
4967
c9c481bc0216 foldl_map prep_field;
wenzelm
parents: 4895
diff changeset
   905
    val (envir, bfields) = foldl_map prep_field (init_env, raw_fields);
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   906
    val envir_names = map fst envir;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   907
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   908
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   909
    (* args *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   910
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   911
    val defaultS = Sign.defaultS sign;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   912
    val args = map (fn x => (x, if_none (assoc (envir, x)) defaultS)) params;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   913
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   914
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   915
    (* errors *)
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   916
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   917
    val name = Sign.full_name sign bname;
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   918
    val err_dup_record =
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   919
      if is_none (get_record thy name) then []
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   920
      else ["Duplicate definition of record " ^ quote name];
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   921
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   922
    val err_dup_parms =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   923
      (case duplicates params of
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   924
        [] => []
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   925
      | dups => ["Duplicate parameter(s) " ^ commas dups]);
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   926
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   927
    val err_extra_frees =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   928
      (case gen_rems (op =) (envir_names, params) of
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   929
        [] => []
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   930
      | extras => ["Extra free type variable(s) " ^ commas extras]);
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   931
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   932
    val err_no_fields = if null bfields then ["No fields present"] else [];
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   933
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   934
    val err_dup_fields =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   935
      (case duplicates (map fst bfields) of
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   936
        [] => []
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   937
      | dups => ["Duplicate field(s) " ^ commas_quote dups]);
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   938
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   939
    val err_bad_fields =
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   940
      if forall (not_equal moreN o fst) bfields then []
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   941
      else ["Illegal field name " ^ quote moreN];
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   942
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   943
    val err_dup_sorts =
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   944
      (case duplicates envir_names of
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   945
        [] => []
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   946
      | dups => ["Inconsistent sort constraints for " ^ commas dups]);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   947
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   948
    val errs =
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   949
      err_dup_record @ err_dup_parms @ err_extra_frees @ err_no_fields @
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   950
      err_dup_fields @ err_bad_fields @ err_dup_sorts;
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   951
  in
4890
f0a24bad990a concrete syntax for record terms;
wenzelm
parents: 4867
diff changeset
   952
    if null errs then () else error (cat_lines errs);
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   953
    thy |> record_definition (args, bname) parent parents bfields
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   954
  end
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   955
  handle ERROR => error ("Failed to define record " ^ quote bname);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   956
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   957
val add_record = gen_add_record read_typ read_raw_parent;
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   958
val add_record_i = gen_add_record cert_typ (K I);
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   959
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   960
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   961
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   962
(** package setup **)
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   963
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   964
(* setup theory *)
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   965
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   966
val setup =
5006
cdc86a914e63 adapted to new theory data interface;
wenzelm
parents: 5001
diff changeset
   967
 [RecordsData.init,
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   968
  Theory.add_trfuns ([], parse_translation, [], []),
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   969
  Method.add_methods [record_split_method],
7178
50b9849cf6ad record_simproc for sel-upd (by Sebastian Nanz);
wenzelm
parents: 6851
diff changeset
   970
  Simplifier.change_simpset_of Simplifier.addsimprocs [record_simproc]];
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   971
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   972
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   973
(* outer syntax *)
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   974
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   975
local structure P = OuterParse and K = OuterSyntax.Keyword in
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   976
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   977
val record_decl =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   978
  P.type_args -- P.name -- (P.$$$ "=" |-- Scan.option (P.typ --| P.$$$ "+")
6729
b6e167580a32 formal comments (still dummy);
wenzelm
parents: 6723
diff changeset
   979
    -- Scan.repeat1 (P.name -- (P.$$$ "::" |-- P.typ) --| P.marg_comment));
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   980
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   981
val recordP =
6723
f342449d73ca outer syntax keyword classification;
wenzelm
parents: 6556
diff changeset
   982
  OuterSyntax.command "record" "define extensible record" K.thy_decl
6519
5bd1c469e742 iff_add_global (from simpdata.ML);
wenzelm
parents: 6394
diff changeset
   983
    (record_decl >> (fn (x, (y, z)) => Toplevel.theory (#1 o add_record x y z)));
6358
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   984
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   985
val _ = OuterSyntax.add_parsers [recordP];
92dbe243555f outer syntax for 'record';
wenzelm
parents: 6092
diff changeset
   986
4867
9be2bf0ce909 package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff changeset
   987
end;
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   988
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   989
6384
eed1273c9146 local open OuterParse;
wenzelm
parents: 6358
diff changeset
   990
end;
eed1273c9146 local open OuterParse;
wenzelm
parents: 6358
diff changeset
   991
5698
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   992
structure BasicRecordPackage: BASIC_RECORD_PACKAGE = RecordPackage;
2b5d9bdec5af field types: datatype;
wenzelm
parents: 5290
diff changeset
   993
open BasicRecordPackage;