src/Pure/Thy/thy_parse.ML
author clasohm
Wed, 29 Nov 1995 16:47:38 +0100
changeset 1371 2f97fc253763
parent 1321 9a6e7bd2bfaf
child 1377 f800f533aa83
permissions -rw-r--r--
added type class to simple_type
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Thy/thy_parse.ML
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
     4
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
     5
The parser for theory files.
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
     6
*)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
     7
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
     8
infix 5 -- --$$ $$-- ^^;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
     9
infix 3 >>;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    10
infix 0 ||;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    11
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    12
signature THY_PARSE =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    13
sig
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    14
  type token
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    15
  val !! : ('a -> 'b * 'c) -> 'a -> 'b * 'c
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    16
  val >> : ('a -> 'b * 'c) * ('b -> 'd) -> 'a -> 'd * 'c
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    17
  val || : ('a -> 'b) * ('a -> 'b) -> 'a -> 'b
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    18
  val -- : ('a -> 'b * 'c) * ('c -> 'd * 'e) -> 'a -> ('b * 'd) * 'e
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    19
  val ^^ : ('a -> string * 'b) * ('b -> string * 'c) -> 'a -> string * 'c
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    20
  val $$ : string -> token list -> string * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    21
  val $$-- : string * (token list -> 'b * 'c) -> token list -> 'b * 'c
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    22
  val --$$ : ('a -> 'b * token list) * string -> 'a -> 'b * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    23
  val ident: token list -> string * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    24
  val long_ident: token list -> string * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    25
  val long_id: token list -> string * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    26
  val type_var: token list -> string * token list
636
31b36d96f7d6 type_args, opt_witness now exported;
wenzelm
parents: 587
diff changeset
    27
  val type_args: token list -> string list * token list
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    28
  val nat: token list -> string * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    29
  val string: token list -> string * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    30
  val verbatim: token list -> string * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    31
  val empty: 'a -> 'b list * 'a
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    32
  val optional: ('a -> 'b * 'a) -> 'b -> 'a -> 'b * 'a
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    33
  val repeat: ('a -> 'b * 'a) -> 'a -> 'b list * 'a
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    34
  val repeat1: ('a -> 'b * 'a) -> 'a -> 'b list * 'a
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    35
  val enum: string -> (token list -> 'a * token list)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    36
    -> token list -> 'a list * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    37
  val enum1: string -> (token list -> 'a * token list)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    38
    -> token list -> 'a list * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    39
  val list: (token list -> 'a * token list)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    40
    -> token list -> 'a list * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    41
  val list1: (token list -> 'a * token list)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    42
    -> token list -> 'a list * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    43
  val name: token list -> string * token list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    44
  val sort: token list -> string * token list
451
9ebdead316e0 exported opt_infix, opt_mixfix parsers;
wenzelm
parents: 425
diff changeset
    45
  val opt_infix: token list -> string * token list
9ebdead316e0 exported opt_infix, opt_mixfix parsers;
wenzelm
parents: 425
diff changeset
    46
  val opt_mixfix: token list -> string * token list
636
31b36d96f7d6 type_args, opt_witness now exported;
wenzelm
parents: 587
diff changeset
    47
  val opt_witness: token list -> string * token list
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    48
  type syntax
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    49
  val make_syntax: string list ->
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    50
    (string * (token list -> (string * string) * token list)) list -> syntax
476
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
    51
  val parse_thy: syntax -> string -> string -> string
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    52
  val section: string -> string -> (token list -> string * token list)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    53
    -> (string * (token list -> (string * string) * token list))
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    54
  val axm_section: string -> string
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    55
    -> (token list -> (string * string list) * token list)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    56
    -> (string * (token list -> (string * string) * token list))
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    57
  val pure_keywords: string list
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    58
  val pure_sections:
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    59
    (string * (token list -> (string * string) * token list)) list
570
6333c181a3f7 Pure/Thy/thy_parse/THY_PARSE: deleted duplicate specifications of parens,
lcp
parents: 558
diff changeset
    60
  (*items for building strings*)
710
53fef17a729a exported 'cat';
wenzelm
parents: 656
diff changeset
    61
  val cat: string -> string -> string
656
ec05d2fdfeee strip_quotes now exported;
wenzelm
parents: 636
diff changeset
    62
  val parens: string -> string
ec05d2fdfeee strip_quotes now exported;
wenzelm
parents: 636
diff changeset
    63
  val brackets: string -> string
ec05d2fdfeee strip_quotes now exported;
wenzelm
parents: 636
diff changeset
    64
  val mk_list: string list -> string
ec05d2fdfeee strip_quotes now exported;
wenzelm
parents: 636
diff changeset
    65
  val mk_big_list: string list -> string
ec05d2fdfeee strip_quotes now exported;
wenzelm
parents: 636
diff changeset
    66
  val mk_pair: string * string -> string
ec05d2fdfeee strip_quotes now exported;
wenzelm
parents: 636
diff changeset
    67
  val mk_triple: string * string * string -> string
ec05d2fdfeee strip_quotes now exported;
wenzelm
parents: 636
diff changeset
    68
  val strip_quotes: string -> string
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    69
end;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    70
1321
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
    71
functor ThyParseFun(structure Symtab: SYMTAB and ThyScan: THY_SCAN): THY_PARSE=
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    72
struct
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    73
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    74
open ThyScan;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    75
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    76
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    77
(** parser toolbox **)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    78
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    79
type token = token_kind * string * int;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    80
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    81
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    82
(* errors *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    83
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    84
exception SYNTAX_ERROR of string * string * int;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    85
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    86
fun syn_err s1 s2 n = raise SYNTAX_ERROR (s1, s2, n);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    87
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    88
fun eof_err () = error "Unexpected end-of-file";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    89
570
6333c181a3f7 Pure/Thy/thy_parse/THY_PARSE: deleted duplicate specifications of parens,
lcp
parents: 558
diff changeset
    90
(*Similar to Prolog's cut: reports any syntax error instead of backtracking
6333c181a3f7 Pure/Thy/thy_parse/THY_PARSE: deleted duplicate specifications of parens,
lcp
parents: 558
diff changeset
    91
  through a superior || *)
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    92
fun !! parse toks = parse toks
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    93
  handle SYNTAX_ERROR (s1, s2, n) => error ("Syntax error on line " ^
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    94
    string_of_int n ^ ": " ^ s1 ^ " expected and " ^ s2 ^ " was found");
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    95
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    96
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    97
(* parser combinators *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    98
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
    99
fun (parse >> f) toks = apfst f (parse toks);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   100
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   101
fun (parse1 || parse2) toks =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   102
  parse1 toks handle SYNTAX_ERROR _ => parse2 toks;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   103
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   104
fun (parse1 -- parse2) toks =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   105
  let
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   106
    val (x, toks') = parse1 toks;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   107
    val (y, toks'') = parse2 toks';
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   108
  in
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   109
    ((x, y), toks'')
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   110
  end;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   111
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   112
fun (parse1 ^^ parse2) = parse1 -- parse2 >> op ^;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   113
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   114
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   115
(* generic parsers *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   116
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   117
fun $$ a ((k, b, n) :: toks) =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   118
      if k = Keyword andalso a = b then (a, toks)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   119
      else syn_err (quote a) (quote b) n
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   120
  | $$ _ [] = eof_err ();
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   121
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   122
fun (a $$-- parse) = $$ a -- parse >> #2;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   123
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   124
fun (parse --$$ a) = parse -- $$ a >> #1;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   125
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   126
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   127
fun kind k1 ((k2, s, n) :: toks) =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   128
      if k1 = k2 then (s, toks)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   129
      else syn_err (name_of_kind k1) (quote s) n
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   130
  | kind _ [] = eof_err ();
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   131
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   132
val ident = kind Ident;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   133
val long_ident = kind LongIdent;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   134
val long_id = ident || long_ident;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   135
val type_var = kind TypeVar >> quote;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   136
val nat = kind Nat;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   137
val string = kind String;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   138
val verbatim = kind Verbatim;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   139
val eof = kind EOF;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   140
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   141
fun empty toks = ([], toks);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   142
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   143
fun optional parse def = parse || empty >> K def;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   144
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   145
fun repeat parse toks = (parse -- repeat parse >> op :: || empty) toks;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   146
fun repeat1 parse = parse -- repeat parse >> op ::;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   147
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   148
fun enum1 sep parse = parse -- repeat (sep $$-- parse) >> op ::;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   149
fun enum sep parse = enum1 sep parse || empty;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   150
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   151
val list = enum ",";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   152
val list1 = enum1 ",";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   153
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   154
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   155
(** theory parsers **)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   156
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   157
(* misc utilities *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   158
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   159
fun cat s1 s2 = s1 ^ " " ^ s2;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   160
558
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   161
val parens = enclose "(" ")";
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   162
val brackets = enclose "[" "]";
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   163
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   164
val mk_list = brackets o commas;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   165
val mk_big_list = brackets o space_implode ",\n ";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   166
558
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   167
fun mk_pair (x, y) = parens (commas [x, y]);
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   168
fun mk_triple (x, y, z) = parens (commas [x, y, z]);
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   169
fun mk_triple1 ((x, y), z) = mk_triple (x, y, z);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   170
fun mk_triple2 (x, (y, z)) = mk_triple (x, y, z);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   171
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   172
val split_decls = flat o map (fn (xs, y) => map (rpair y) xs);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   173
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   174
fun strip_quotes str =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   175
  implode (tl (take (size str - 1, explode str)));
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   176
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   177
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   178
(* names *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   179
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   180
val name = ident >> quote || string;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   181
val names = list name;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   182
val names1 = list1 name;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   183
val name_list = names >> mk_list;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   184
val name_list1 = names1 >> mk_list;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   185
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   186
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   187
(* classes *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   188
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   189
val subclass = name -- optional ("<" $$-- !! name_list1) "[]";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   190
558
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   191
val class_decls = repeat1 (subclass >> mk_pair) >> mk_big_list;
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   192
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   193
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   194
(* arities *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   195
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   196
val sort =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   197
  name >> brackets ||
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   198
  "{" $$-- name_list --$$ "}";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   199
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   200
val sort_list1 = list1 sort >> mk_list;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   201
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   202
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   203
val arity = optional ("(" $$-- !! (sort_list1 --$$")")) "[]" -- sort;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   204
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   205
val arity_decls = repeat1 (names1 --$$ "::" -- !! arity)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   206
  >> (mk_big_list o map mk_triple2 o split_decls);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   207
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   208
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   209
(* mixfix annotations *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   210
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   211
val infxl = "infixl" $$-- !! nat >> cat "Infixl";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   212
val infxr = "infixr" $$-- !! nat >> cat "Infixr";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   213
889
e87c01fd0351 binder: optional body pri now [bracketted];
wenzelm
parents: 865
diff changeset
   214
val binder = "binder" $$--
1027
651637377289 (binder "Q" p) generates Binder("Q",p,p); it used to be Binder("Q",0,p).
nipkow
parents: 889
diff changeset
   215
  !! (string -- ( ("[" $$-- nat --$$ "]") -- nat
651637377289 (binder "Q" p) generates Binder("Q",p,p); it used to be Binder("Q",0,p).
nipkow
parents: 889
diff changeset
   216
                || nat >> (fn n => (n,n))
651637377289 (binder "Q" p) generates Binder("Q",p,p); it used to be Binder("Q",0,p).
nipkow
parents: 889
diff changeset
   217
     )          )
651637377289 (binder "Q" p) generates Binder("Q",p,p); it used to be Binder("Q",0,p).
nipkow
parents: 889
diff changeset
   218
  >> (cat "Binder" o mk_triple2);
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   219
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   220
val opt_pris = optional ("[" $$-- !! (list nat --$$ "]")) [] >> mk_list;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   221
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   222
val mixfix = string -- !! (opt_pris -- optional nat "max_pri")
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   223
  >> (cat "Mixfix" o mk_triple2);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   224
558
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   225
fun opt_syn fx = optional ("(" $$-- fx --$$ ")") "NoSyn";
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   226
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   227
val opt_infix = opt_syn (infxl || infxr);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   228
val opt_mixfix = opt_syn (mixfix || infxl || infxr || binder);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   229
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   230
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   231
(* types *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   232
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   233
fun mk_old_type_decl ((ts, n), syn) =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   234
  map (fn t => (mk_triple (t, n, syn), false)) ts;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   235
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   236
fun mk_type_decl (((xs, t), None), syn) =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   237
      [(mk_triple (t, string_of_int (length xs), syn), false)]
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   238
  | mk_type_decl (((xs, t), Some rhs), syn) =
558
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   239
      [(parens (commas [t, mk_list xs, rhs, syn]), true)];
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   240
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   241
fun mk_type_decls tys =
414
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   242
  "|> add_types\n" ^ mk_big_list (keyfilter tys false) ^ "\n\n\
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   243
  \|> add_tyabbrs\n" ^ mk_big_list (keyfilter tys true);
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   244
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   245
425
c42f384c89de added 'subclass' section;
wenzelm
parents: 414
diff changeset
   246
val old_type_decl = names1 -- nat -- opt_infix >> mk_old_type_decl;
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   247
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   248
val type_args =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   249
  type_var >> (fn x => [x]) ||
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   250
  "(" $$-- !! (list1 type_var --$$ ")") ||
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   251
  empty >> K [];
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   252
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   253
val type_decl = type_args -- name -- optional ("=" $$-- !! string >> Some) None
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   254
  -- opt_infix >> mk_type_decl;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   255
1321
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   256
val type_decls = repeat1 (old_type_decl || type_decl) >>
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   257
                 (mk_type_decls o flat);
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   258
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   259
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   260
(* consts *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   261
1371
2f97fc253763 added type class to simple_type
clasohm
parents: 1321
diff changeset
   262
val simple_type = ident ||
2f97fc253763 added type class to simple_type
clasohm
parents: 1321
diff changeset
   263
  (kind TypeVar -- optional ("::" $$-- ident >> cat "::") "" >>
2f97fc253763 added type class to simple_type
clasohm
parents: 1321
diff changeset
   264
   (fn (tv, cl) => tv ^ cl));
1321
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   265
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   266
(*Types with type arguments, like e.g. "'a list list"*)
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   267
fun complex_type toks =
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   268
  let val typ = simple_type || "(" $$-- complex_type --$$ ")" >> parens;
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   269
      val typ2 = complex_type || "(" $$-- complex_type --$$ ")" >> parens;
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   270
  in
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   271
   (typ -- repeat ident >> (fn (t, ts) => space_implode " " (t::ts)) ||
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   272
    "(" $$-- !! (list1 typ2) --$$ ")" -- !! (repeat1 ident) >>
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   273
      (fn (tas, ts) => space_implode " " (parens (commas tas) :: ts))) toks
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   274
  end;
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   275
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   276
(*Const type which is limited at the end by "=>", ")", "]" or ","*)
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   277
fun param_type toks =
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   278
  ((complex_type || "(" $$-- param_type --$$ ")" >> parens ||
1371
2f97fc253763 added type class to simple_type
clasohm
parents: 1321
diff changeset
   279
    "[" $$-- (list1 param_type) --$$ "]" >> mk_list) --
1321
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   280
     repeat ("=>" $$-- param_type >> cat " =>") >>
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   281
     (fn (t, ts) => t ^ implode ts)) toks;
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   282
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   283
(*Parse an identifier, but only if it is not followed by colons or a comma*)
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   284
fun ident_no_colon [] = eof_err()
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   285
  | ident_no_colon ((Ident, s, n) :: (rest as (Keyword, s2, n2) :: toks)) =
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   286
      if s2 = "::" orelse s2 = "," then
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   287
        syn_err (name_of_kind Ident) (quote s2) n2
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   288
      else (s, rest)
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   289
  | ident_no_colon ((Ident, s, n) :: toks) = (s, toks)
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   290
  | ident_no_colon ((k, s, n) :: _) =
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   291
      syn_err (name_of_kind Ident) (quote s) n;
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   292
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   293
(*Type after last "=>"*)
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   294
val appl_last =
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   295
  (simple_type || "(" $$-- param_type --$$ ")" >> parens) --
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   296
  repeat ident_no_colon >> (fn (t, ts) => space_implode " " (t::ts));
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   297
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   298
(*Type specified before "=>"*)
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   299
val appl_param =
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   300
  (complex_type || "(" $$-- param_type --$$ ")" >> parens ||
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   301
   "[" $$-- !! (list1 param_type) --$$ "]" >> (brackets o commas)) --$$ "=>";
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   302
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   303
(*Top level const type*)
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   304
val const_type = repeat appl_param -- appl_last >>
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   305
  (fn (ts, t) => space_implode " => " (ts@[t]));
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   306
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   307
val const_decls = repeat1 (names1 --$$ "::" -- !!
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   308
                    ((string || const_type>>quote) -- opt_mixfix)) >>
9a6e7bd2bfaf types in consts section of .thy files can now be specified without quotes
clasohm
parents: 1250
diff changeset
   309
                  (mk_big_list o map mk_triple2 o split_decls);
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   310
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   311
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   312
(* translations *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   313
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   314
val trans_pat =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   315
  optional ("(" $$-- !! (name --$$ ")")) "\"logic\"" -- string >> mk_pair;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   316
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   317
val trans_arrow =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   318
  $$ "=>" >> K " |-> " ||
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   319
  $$ "<=" >> K " <-| " ||
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   320
  $$ "==" >> K " <-> ";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   321
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   322
val trans_decls = repeat1 (trans_pat ^^ !! (trans_arrow ^^ trans_pat))
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   323
  >> mk_big_list;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   324
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   325
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   326
(* ML translations *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   327
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   328
val trfun_defs =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   329
  " val parse_ast_translation = [];\n\
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   330
  \ val parse_translation = [];\n\
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   331
  \ val print_translation = [];\n\
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   332
  \ val print_ast_translation = [];";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   333
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   334
val trfun_args =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   335
  "(parse_ast_translation, parse_translation, \
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   336
  \print_translation, print_ast_translation)";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   337
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   338
fun mk_mltrans txt =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   339
  "let\n"
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   340
  ^ trfun_defs ^ "\n"
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   341
  ^ txt ^ "\n\
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   342
  \in\n\
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   343
  \ " ^ trfun_args ^ "\n\
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   344
  \end";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   345
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   346
val mltrans = verbatim >> mk_mltrans;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   347
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   348
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   349
(* axioms *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   350
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   351
val mk_axms = mk_big_list o map (mk_pair o apfst quote);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   352
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   353
fun mk_axiom_decls axms = (mk_axms axms, map fst axms);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   354
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   355
val axiom_decls = repeat1 (ident -- !! string) >> mk_axiom_decls;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   356
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   357
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   358
(* axclass *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   359
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   360
fun mk_axclass_decl ((c, cs), axms) =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   361
  (mk_pair (c, cs) ^ "\n" ^ mk_axms axms,
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   362
    (strip_quotes c ^ "I") :: map fst axms);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   363
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   364
val axclass_decl = subclass -- repeat (ident -- !! string) >> mk_axclass_decl;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   365
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   366
451
9ebdead316e0 exported opt_infix, opt_mixfix parsers;
wenzelm
parents: 425
diff changeset
   367
(* instance *)
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   368
425
c42f384c89de added 'subclass' section;
wenzelm
parents: 414
diff changeset
   369
fun mk_witness (axths, opt_tac) =
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   370
  mk_list (keyfilter axths false) ^ "\n" ^
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   371
  mk_list (keyfilter axths true) ^ "\n" ^
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   372
  opt_tac;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   373
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   374
val axm_or_thm =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   375
  string >> rpair false ||
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   376
  long_id >> rpair true;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   377
451
9ebdead316e0 exported opt_infix, opt_mixfix parsers;
wenzelm
parents: 425
diff changeset
   378
425
c42f384c89de added 'subclass' section;
wenzelm
parents: 414
diff changeset
   379
val opt_witness =
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   380
  optional ("(" $$-- list1 axm_or_thm --$$ ")") [] --
558
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   381
  optional (verbatim >> (parens o cat "Some" o parens)) "None"
425
c42f384c89de added 'subclass' section;
wenzelm
parents: 414
diff changeset
   382
  >> mk_witness;
c42f384c89de added 'subclass' section;
wenzelm
parents: 414
diff changeset
   383
c42f384c89de added 'subclass' section;
wenzelm
parents: 414
diff changeset
   384
val instance_decl =
636
31b36d96f7d6 type_args, opt_witness now exported;
wenzelm
parents: 587
diff changeset
   385
  (name --$$ "<" -- name >> (pair "|> AxClass.add_inst_subclass" o mk_pair) ||
31b36d96f7d6 type_args, opt_witness now exported;
wenzelm
parents: 587
diff changeset
   386
    name --$$ "::" -- arity >> (pair "|> AxClass.add_inst_arity" o mk_triple2))
451
9ebdead316e0 exported opt_infix, opt_mixfix parsers;
wenzelm
parents: 425
diff changeset
   387
  -- opt_witness
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   388
  >> (fn ((x, y), z) => (cat_lines [x, y, z]));
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   390
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   391
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   392
(** theory syntax **)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   393
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   394
type syntax =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   395
  lexicon * (token list -> (string * string) * token list) Symtab.table;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   396
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   397
fun make_syntax keywords sects =
451
9ebdead316e0 exported opt_infix, opt_mixfix parsers;
wenzelm
parents: 425
diff changeset
   398
  (make_lexicon (map fst sects @ keywords),
9ebdead316e0 exported opt_infix, opt_mixfix parsers;
wenzelm
parents: 425
diff changeset
   399
    Symtab.make sects handle Symtab.DUPS dups =>
9ebdead316e0 exported opt_infix, opt_mixfix parsers;
wenzelm
parents: 425
diff changeset
   400
      error ("Duplicate sections in theory file syntax: " ^ commas_quote dups));
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   401
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   402
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   403
(* header *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   404
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   405
fun mk_header (thy_name, bases) =
586
201e115d8031 renamed base_on into mk_base and moved it to the beginning of the generated
clasohm
parents: 570
diff changeset
   406
  (thy_name, "mk_base " ^ mk_list bases ^ " " ^ quote thy_name);
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   407
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   408
val base =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   409
  ident >> (cat "Thy" o quote) ||
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   410
  string >> cat "File";
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   411
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   412
val header = ident --$$ "=" -- enum1 "+" base >> mk_header;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   413
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   414
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   415
(* extension *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   416
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   417
fun mk_extension (txts, mltxt) =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   418
  let
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   419
    val cat_sects = space_implode "\n\n" o filter_out (equal "");
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   420
    val (extxts, postxts) = split_list txts;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   421
  in
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   422
    (cat_sects extxts, cat_sects postxts, mltxt)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   423
  end;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   424
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   425
fun sect tab ((Keyword, s, n) :: toks) =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   426
      (case Symtab.lookup (tab, s) of
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   427
        Some parse => !! parse toks
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   428
      | None => syn_err "section" s n)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   429
  | sect _ ((_, s, n) :: _) = syn_err "section" s n
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   430
  | sect _ [] = eof_err ();
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   431
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   432
fun extension sectab = "+" $$-- !! (repeat (sect sectab) --$$ "end") --
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   433
  optional ("ML" $$-- verbatim) "" >> mk_extension;
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   434
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   435
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   436
(* theory definition *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   437
558
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   438
fun mk_structure tname ((thy_name, old_thys), opt_txts) =
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   439
  if thy_name <> tname then
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   440
    error ("Filename \"" ^ tname ^ ".thy\" and theory name "
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   441
      ^ quote thy_name ^ " are different")
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   442
  else
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   443
    (case opt_txts of
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   444
      Some (extxt, postxt, mltxt) =>
587
3ba470399605 renamed temporary variable 'base' to 'thy' in mk_structure
clasohm
parents: 586
diff changeset
   445
        "val thy = " ^ old_thys ^ " true;\n\n\
586
201e115d8031 renamed base_on into mk_base and moved it to the beginning of the generated
clasohm
parents: 570
diff changeset
   446
        \structure " ^ thy_name ^ " =\n\
476
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   447
        \struct\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   448
        \\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   449
        \local\n"
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   450
        ^ trfun_defs ^ "\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   451
        \in\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   452
        \\n"
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   453
        ^ mltxt ^ "\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   454
        \\n\
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   455
        \val thy = thy\n\
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   456
        \\n\
476
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   457
        \|> add_trfuns\n"
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   458
        ^ trfun_args ^ "\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   459
        \\n"
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   460
        ^ extxt ^ "\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   461
        \\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   462
        \|> add_thyname " ^ quote thy_name ^ ";\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   463
        \\n\
1235
b4056a71eca2 minor fix to make less noise with SML/NJ;
wenzelm
parents: 1027
diff changeset
   464
        \val _ = store_theory (thy, " ^ quote thy_name ^ ");\n\
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   465
        \\n\
476
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   466
        \\n"
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   467
        ^ postxt ^ "\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   468
        \\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   469
        \end;\n\
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   470
        \end;\n"
558
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   471
    | None =>
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   472
        "val thy = " ^ old_thys ^ " false;\n\
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   473
        \\n\
586
201e115d8031 renamed base_on into mk_base and moved it to the beginning of the generated
clasohm
parents: 570
diff changeset
   474
        \structure " ^ thy_name ^ " =\n\
476
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   475
        \struct\n\
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   476
        \\n\
587
3ba470399605 renamed temporary variable 'base' to 'thy' in mk_structure
clasohm
parents: 586
diff changeset
   477
        \val thy = thy\n\
476
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   478
        \\n\
1235
b4056a71eca2 minor fix to make less noise with SML/NJ;
wenzelm
parents: 1027
diff changeset
   479
        \val _ = store_theory (thy, " ^ quote thy_name ^ ");\n\
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   480
        \\n\
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   481
        \end;\n");
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   482
476
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   483
fun theory_defn sectab tname =
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   484
  header -- optional (extension sectab >> Some) None -- eof
476
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   485
  >> (mk_structure tname o #1);
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   486
476
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   487
fun parse_thy (lex, sectab) tname str =
836cad329311 added check for concistency of filename and theory name;
clasohm
parents: 451
diff changeset
   488
  #1 (!! (theory_defn sectab tname) (tokenize lex str));
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   489
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   490
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   491
(* standard sections *)
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   492
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   493
fun mk_val ax = "val " ^ ax ^ " = get_axiom thy " ^ quote ax ^ ";";
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   494
val mk_vals = cat_lines o map mk_val;
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   495
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   496
fun mk_axm_sect "" (txt, axs) = (txt, mk_vals axs)
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   497
  | mk_axm_sect pretxt (txt, axs) = (pretxt ^ "\n" ^ txt, mk_vals axs);
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   498
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   499
fun axm_section name pretxt parse =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   500
  (name, parse >> mk_axm_sect pretxt);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   501
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   502
fun section name pretxt parse =
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   503
  axm_section name pretxt (parse >> rpair []);
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   504
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   505
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   506
val pure_keywords =
451
9ebdead316e0 exported opt_infix, opt_mixfix parsers;
wenzelm
parents: 425
diff changeset
   507
 ["end", "ML", "mixfix", "infixr", "infixl", "binder", "=", "+", ",", "<",
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   508
  "{", "}", "(", ")", "[", "]", "::", "==", "=>", "<="];
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   509
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   510
val pure_sections =
414
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   511
 [section "classes" "|> add_classes" class_decls,
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   512
  section "default" "|> add_defsort" sort,
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   513
  section "types" "" type_decls,
414
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   514
  section "arities" "|> add_arities" arity_decls,
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   515
  section "consts" "|> add_consts" const_decls,
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   516
  section "syntax" "|> add_syntax" const_decls,
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   517
  section "translations" "|> add_trrules" trans_decls,
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   518
  section "MLtrans" "|> add_trfuns" mltrans,
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   519
  section "MLtext" "" verbatim,
414
9dca566d6d96 added signature constraint;
wenzelm
parents: 389
diff changeset
   520
  axm_section "rules" "|> add_axioms" axiom_decls,
558
c4092ae47210 renamed 'defns' to 'defs';
wenzelm
parents: 476
diff changeset
   521
  axm_section "defs" "|> add_defs" axiom_decls,
636
31b36d96f7d6 type_args, opt_witness now exported;
wenzelm
parents: 587
diff changeset
   522
  axm_section "axclass" "|> AxClass.add_axclass" axclass_decl,
777
c007eba368b7 minor internal changes;
wenzelm
parents: 759
diff changeset
   523
  section "instance" "" instance_decl];
389
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   524
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   525
85105a7fb668 (replaces Thy/parse.ML and Thy/syntax.ML)
wenzelm
parents:
diff changeset
   526
end;