src/Pure/Syntax/syntax.ML
author wenzelm
Tue, 05 Apr 2011 13:07:40 +0200
changeset 42223 098c86e53153
parent 42217 1a2a53d03c31
child 42224 578a51fae383
permissions -rw-r--r--
more precise propagation of reports/results through some inner syntax layers; misc reorganization;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
     1
(*  Title:      Pure/Syntax/syntax.ML
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    Author:     Tobias Nipkow and Markus Wenzel, TU Muenchen
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
     3
24263
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
     4
Standard Isabelle syntax, based on arbitrary context-free grammars
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
     5
(specified by mixfix declarations).
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
     8
signature BASIC_SYNTAX =
2383
4127499d9b52 added extend_trfunsT;
wenzelm
parents: 2366
diff changeset
     9
sig
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
    10
  include AST0
556
3f5f42467717 added type xrule (from sextension.ML);
wenzelm
parents: 383
diff changeset
    11
  include SYN_TRANS0
3f5f42467717 added type xrule (from sextension.ML);
wenzelm
parents: 383
diff changeset
    12
  include MIXFIX0
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
    13
  include PRINTER0
2383
4127499d9b52 added extend_trfunsT;
wenzelm
parents: 2366
diff changeset
    14
end;
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
    15
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    16
signature SYNTAX =
2383
4127499d9b52 added extend_trfunsT;
wenzelm
parents: 2366
diff changeset
    17
sig
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
    18
  include AST1
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    19
  include LEXICON0
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
    20
  include SYN_EXT0
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    21
  include TYPE_EXT0
556
3f5f42467717 added type xrule (from sextension.ML);
wenzelm
parents: 383
diff changeset
    22
  include SYN_TRANS1
3f5f42467717 added type xrule (from sextension.ML);
wenzelm
parents: 383
diff changeset
    23
  include MIXFIX1
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    24
  include PRINTER0
30573
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 30364
diff changeset
    25
  val read_token: string -> Symbol_Pos.T list * Position.T
38238
43c13eb0d842 proper context for Syntax.parse_token;
wenzelm
parents: 38237
diff changeset
    26
  val parse_token: Proof.context -> Markup.T -> string -> Symbol_Pos.T list * Position.T
24263
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    27
  val parse_sort: Proof.context -> string -> sort
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    28
  val parse_typ: Proof.context -> string -> typ
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    29
  val parse_term: Proof.context -> string -> term
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    30
  val parse_prop: Proof.context -> string -> term
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    31
  val unparse_sort: Proof.context -> sort -> Pretty.T
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    32
  val unparse_classrel: Proof.context -> class list -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    33
  val unparse_arity: Proof.context -> arity -> Pretty.T
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    34
  val unparse_typ: Proof.context -> typ -> Pretty.T
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    35
  val unparse_term: Proof.context -> term -> Pretty.T
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    36
  val install_operations:
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    37
   {parse_sort: Proof.context -> string -> sort,
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    38
    parse_typ: Proof.context -> string -> typ,
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    39
    parse_term: Proof.context -> string -> term,
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    40
    parse_prop: Proof.context -> string -> term,
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    41
    unparse_sort: Proof.context -> sort -> Pretty.T,
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    42
    unparse_typ: Proof.context -> typ -> Pretty.T,
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    43
    unparse_term: Proof.context -> term -> Pretty.T} -> unit
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    44
  val print_checks: Proof.context -> unit
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    45
  val add_typ_check: int -> string ->
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25043
diff changeset
    46
    (typ list -> Proof.context -> (typ list * Proof.context) option) ->
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    47
    Context.generic -> Context.generic
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    48
  val add_term_check: int -> string ->
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25043
diff changeset
    49
    (term list -> Proof.context -> (term list * Proof.context) option) ->
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    50
    Context.generic -> Context.generic
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    51
  val add_typ_uncheck: int -> string ->
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25043
diff changeset
    52
    (typ list -> Proof.context -> (typ list * Proof.context) option) ->
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    53
    Context.generic -> Context.generic
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    54
  val add_term_uncheck: int -> string ->
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25043
diff changeset
    55
    (term list -> Proof.context -> (term list * Proof.context) option) ->
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    56
    Context.generic -> Context.generic
24488
646e782ba8ff turned type_check into separate typ/term_check;
wenzelm
parents: 24372
diff changeset
    57
  val check_sort: Proof.context -> sort -> sort
24512
fc4959967b30 added singleton check_typ/term/prop;
wenzelm
parents: 24488
diff changeset
    58
  val check_typ: Proof.context -> typ -> typ
fc4959967b30 added singleton check_typ/term/prop;
wenzelm
parents: 24488
diff changeset
    59
  val check_term: Proof.context -> term -> term
fc4959967b30 added singleton check_typ/term/prop;
wenzelm
parents: 24488
diff changeset
    60
  val check_prop: Proof.context -> term -> term
24488
646e782ba8ff turned type_check into separate typ/term_check;
wenzelm
parents: 24372
diff changeset
    61
  val check_typs: Proof.context -> typ list -> typ list
24263
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    62
  val check_terms: Proof.context -> term list -> term list
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    63
  val check_props: Proof.context -> term list -> term list
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    64
  val uncheck_sort: Proof.context -> sort -> sort
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    65
  val uncheck_arity: Proof.context -> arity -> arity
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    66
  val uncheck_classrel: Proof.context -> class list -> class list
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    67
  val uncheck_typs: Proof.context -> typ list -> typ list
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    68
  val uncheck_terms: Proof.context -> term list -> term list
24263
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    69
  val read_sort: Proof.context -> string -> sort
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    70
  val read_typ: Proof.context -> string -> typ
24488
646e782ba8ff turned type_check into separate typ/term_check;
wenzelm
parents: 24372
diff changeset
    71
  val read_term: Proof.context -> string -> term
646e782ba8ff turned type_check into separate typ/term_check;
wenzelm
parents: 24372
diff changeset
    72
  val read_prop: Proof.context -> string -> term
24263
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    73
  val read_terms: Proof.context -> string list -> term list
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    74
  val read_props: Proof.context -> string list -> term list
24709
ecfb9dcb6c4c removed redundant global_parse operations;
wenzelm
parents: 24680
diff changeset
    75
  val read_sort_global: theory -> string -> sort
ecfb9dcb6c4c removed redundant global_parse operations;
wenzelm
parents: 24680
diff changeset
    76
  val read_typ_global: theory -> string -> typ
ecfb9dcb6c4c removed redundant global_parse operations;
wenzelm
parents: 24680
diff changeset
    77
  val read_term_global: theory -> string -> term
ecfb9dcb6c4c removed redundant global_parse operations;
wenzelm
parents: 24680
diff changeset
    78
  val read_prop_global: theory -> string -> term
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    79
  val pretty_term: Proof.context -> term -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    80
  val pretty_typ: Proof.context -> typ -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    81
  val pretty_sort: Proof.context -> sort -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    82
  val pretty_classrel: Proof.context -> class list -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    83
  val pretty_arity: Proof.context -> arity -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    84
  val string_of_term: Proof.context -> term -> string
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    85
  val string_of_typ: Proof.context -> typ -> string
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    86
  val string_of_sort: Proof.context -> sort -> string
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    87
  val string_of_classrel: Proof.context -> class list -> string
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    88
  val string_of_arity: Proof.context -> arity -> string
26951
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    89
  val is_pretty_global: Proof.context -> bool
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    90
  val set_pretty_global: bool -> Proof.context -> Proof.context
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    91
  val init_pretty_global: theory -> Proof.context
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    92
  val pretty_term_global: theory -> term -> Pretty.T
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    93
  val pretty_typ_global: theory -> typ -> Pretty.T
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    94
  val pretty_sort_global: theory -> sort -> Pretty.T
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    95
  val string_of_term_global: theory -> term -> string
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    96
  val string_of_typ_global: theory -> typ -> string
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    97
  val string_of_sort_global: theory -> sort -> string
24970
050afeec89a7 renamed Syntax.XXX_mode to Syntax.mode_XXX;
wenzelm
parents: 24923
diff changeset
    98
  val pp: Proof.context -> Pretty.pp
26951
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    99
  val pp_global: theory -> Pretty.pp
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   100
  type syntax
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   101
  val eq_syntax: syntax * syntax -> bool
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   102
  val is_keyword: syntax -> string -> bool
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   103
  type mode
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   104
  val mode_default: mode
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   105
  val mode_input: mode
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   106
  val merge_syntaxes: syntax -> syntax -> syntax
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   107
  val basic_syntax: syntax
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   108
  val basic_nonterms: string list
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   109
  val print_gram: syntax -> unit
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   110
  val print_trans: syntax -> unit
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   111
  val print_syntax: syntax -> unit
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   112
  val guess_infix: syntax -> string -> mixfix option
42056
160a630b2c7e enable inner syntax source positions by default (controlled via configuration option);
wenzelm
parents: 42048
diff changeset
   113
  val positions_raw: Config.raw
160a630b2c7e enable inner syntax source positions by default (controlled via configuration option);
wenzelm
parents: 42048
diff changeset
   114
  val positions: bool Config.T
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   115
  val ambiguity_enabled: bool Config.T
39163
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   116
  val ambiguity_level_raw: Config.raw
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   117
  val ambiguity_level: int Config.T
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   118
  val ambiguity_limit: int Config.T
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   119
  val standard_parse_sort: Proof.context -> type_context -> syntax ->
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   120
    Symbol_Pos.T list * Position.T -> sort
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   121
  val standard_parse_typ: Proof.context -> type_context -> syntax ->
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   122
    ((indexname * sort) list -> indexname -> sort) -> Symbol_Pos.T list * Position.T -> typ
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   123
  val standard_parse_term: (term -> term Exn.result) ->
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   124
    Proof.context -> type_context -> term_context -> syntax ->
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   125
    string -> Symbol_Pos.T list * Position.T -> term
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   126
  datatype 'a trrule =
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   127
    Parse_Rule of 'a * 'a |
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   128
    Print_Rule of 'a * 'a |
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   129
    Parse_Print_Rule of 'a * 'a
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   130
  val map_trrule: ('a -> 'b) -> 'a trrule -> 'b trrule
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   131
  val is_const: syntax -> string -> bool
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   132
  val read_rule_pattern: Proof.context -> type_context -> syntax -> string * string -> ast
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   133
  val standard_unparse_sort: {extern_class: string -> xstring} ->
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   134
    Proof.context -> syntax -> sort -> Pretty.T
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   135
  val standard_unparse_typ: {extern_class: string -> xstring, extern_type: string -> xstring} ->
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   136
    Proof.context -> syntax -> typ -> Pretty.T
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   137
  val standard_unparse_term: {structs: string list, fixes: string list} ->
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   138
    {extern_class: string -> xstring, extern_type: string -> xstring,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   139
      extern_const: string -> xstring} -> Proof.context -> syntax -> bool -> term -> Pretty.T
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   140
  val update_trfuns:
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   141
    (string * ((ast list -> ast) * stamp)) list *
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   142
    (string * ((term list -> term) * stamp)) list *
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   143
    (string * ((bool -> typ -> term list -> term) * stamp)) list *
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   144
    (string * ((ast list -> ast) * stamp)) list -> syntax -> syntax
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   145
  val update_advanced_trfuns:
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   146
    (string * ((Proof.context -> ast list -> ast) * stamp)) list *
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   147
    (string * ((Proof.context -> term list -> term) * stamp)) list *
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   148
    (string * ((Proof.context -> bool -> typ -> term list -> term) * stamp)) list *
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   149
    (string * ((Proof.context -> ast list -> ast) * stamp)) list -> syntax -> syntax
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   150
  val extend_tokentrfuns: (string * string * (Proof.context -> string -> Pretty.T)) list ->
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   151
    syntax -> syntax
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   152
  val update_type_gram: bool -> mode -> (string * typ * mixfix) list -> syntax -> syntax
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   153
  val update_const_gram: bool -> (string -> bool) ->
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   154
    mode -> (string * typ * mixfix) list -> syntax -> syntax
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   155
  val update_trrules: ast trrule list -> syntax -> syntax
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   156
  val remove_trrules: ast trrule list -> syntax -> syntax
2383
4127499d9b52 added extend_trfunsT;
wenzelm
parents: 2366
diff changeset
   157
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   158
12094
wenzelm
parents: 12073
diff changeset
   159
structure Syntax: SYNTAX =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   160
struct
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   161
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   162
(** inner syntax operations **)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   163
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   164
(* read token -- with optional YXML encoding of position *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   165
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   166
fun read_token str =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   167
  let
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   168
    val tree = YXML.parse str handle Fail msg => error msg;
39555
ccb223a4d49c added XML.content_of convenience -- cover XML.body, which is the general situation;
wenzelm
parents: 39510
diff changeset
   169
    val text = XML.content_of [tree];
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   170
    val pos =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   171
      (case tree of
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   172
        XML.Elem ((name, props), _) =>
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   173
          if name = Markup.tokenN then Position.of_properties props
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   174
          else Position.none
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   175
      | XML.Text _ => Position.none);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   176
  in (Symbol_Pos.explode (text, pos), pos) end;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   177
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   178
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   179
(* (un)parsing *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   180
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   181
fun parse_token ctxt markup str =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   182
  let
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   183
    val (syms, pos) = read_token str;
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39288
diff changeset
   184
    val _ = Context_Position.report ctxt pos markup;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   185
  in (syms, pos) end;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   186
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   187
local
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   188
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   189
type operations =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   190
 {parse_sort: Proof.context -> string -> sort,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   191
  parse_typ: Proof.context -> string -> typ,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   192
  parse_term: Proof.context -> string -> term,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   193
  parse_prop: Proof.context -> string -> term,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   194
  unparse_sort: Proof.context -> sort -> Pretty.T,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   195
  unparse_typ: Proof.context -> typ -> Pretty.T,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   196
  unparse_term: Proof.context -> term -> Pretty.T};
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   197
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   198
val operations: operations Single_Assignment.var = Single_Assignment.var "Syntax.operations";
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   199
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   200
fun operation which ctxt x =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   201
  (case Single_Assignment.peek operations of
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   202
    NONE => raise Fail "Inner syntax operations not installed"
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   203
  | SOME ops => which ops ctxt x);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   204
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   205
in
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   206
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   207
val parse_sort = operation #parse_sort;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   208
val parse_typ = operation #parse_typ;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   209
val parse_term = operation #parse_term;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   210
val parse_prop = operation #parse_prop;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   211
val unparse_sort = operation #unparse_sort;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   212
val unparse_typ = operation #unparse_typ;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   213
val unparse_term = operation #unparse_term;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   214
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   215
fun install_operations ops = Single_Assignment.assign operations ops;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   216
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   217
end;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   218
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   219
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   220
(* context-sensitive (un)checking *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   221
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   222
local
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   223
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   224
type key = int * bool;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   225
type 'a check = 'a list -> Proof.context -> ('a list * Proof.context) option;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   226
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   227
structure Checks = Generic_Data
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   228
(
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   229
  type T =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   230
    ((key * ((string * typ check) * stamp) list) list *
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   231
     (key * ((string * term check) * stamp) list) list);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   232
  val empty = ([], []);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   233
  val extend = I;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   234
  fun merge ((typ_checks1, term_checks1), (typ_checks2, term_checks2)) : T =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   235
    (AList.join (op =) (K (Library.merge (eq_snd (op =)))) (typ_checks1, typ_checks2),
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   236
     AList.join (op =) (K (Library.merge (eq_snd (op =)))) (term_checks1, term_checks2));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   237
);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   238
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   239
fun gen_add which (key: key) name f =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   240
  Checks.map (which (AList.map_default op = (key, []) (cons ((name, f), stamp ()))));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   241
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   242
fun check_stage fs = perhaps_loop (perhaps_apply (map uncurry fs));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   243
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   244
fun gen_check which uncheck ctxt0 xs0 =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   245
  let
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   246
    val funs = which (Checks.get (Context.Proof ctxt0))
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   247
      |> map_filter (fn ((i, u), fs) => if uncheck = u then SOME (i, map (snd o fst) fs) else NONE)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   248
      |> Library.sort (int_ord o pairself fst) |> map snd
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   249
      |> not uncheck ? map rev;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   250
    val check_all = perhaps_apply (map check_stage funs);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   251
  in #1 (perhaps check_all (xs0, ctxt0)) end;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   252
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   253
fun map_sort f S =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   254
  (case f (TFree ("", S)) of
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   255
    TFree ("", S') => S'
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   256
  | _ => raise TYPE ("map_sort", [TFree ("", S)], []));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   257
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   258
in
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   259
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   260
fun print_checks ctxt =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   261
  let
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   262
    fun split_checks checks =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   263
      List.partition (fn ((_, un), _) => not un) checks
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   264
      |> pairself (map (fn ((i, _), fs) => (i, map (fst o fst) fs))
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   265
          #> sort (int_ord o pairself fst));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   266
    fun pretty_checks kind checks =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   267
      checks |> map (fn (i, names) => Pretty.block
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   268
        [Pretty.str (kind ^ " (stage " ^ signed_string_of_int i ^ "):"),
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   269
          Pretty.brk 1, Pretty.strs names]);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   270
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   271
    val (typs, terms) = Checks.get (Context.Proof ctxt);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   272
    val (typ_checks, typ_unchecks) = split_checks typs;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   273
    val (term_checks, term_unchecks) = split_checks terms;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   274
  in
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   275
    pretty_checks "typ_checks" typ_checks @
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   276
    pretty_checks "term_checks" term_checks @
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   277
    pretty_checks "typ_unchecks" typ_unchecks @
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   278
    pretty_checks "term_unchecks" term_unchecks
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   279
  end |> Pretty.chunks |> Pretty.writeln;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   280
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   281
fun add_typ_check stage = gen_add apfst (stage, false);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   282
fun add_term_check stage = gen_add apsnd (stage, false);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   283
fun add_typ_uncheck stage = gen_add apfst (stage, true);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   284
fun add_term_uncheck stage = gen_add apsnd (stage, true);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   285
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   286
val check_typs = gen_check fst false;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   287
val check_terms = gen_check snd false;
39288
f1ae2493d93f eliminated aliases of Type.constraint;
wenzelm
parents: 39168
diff changeset
   288
fun check_props ctxt = map (Type.constraint propT) #> check_terms ctxt;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   289
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   290
val check_typ = singleton o check_typs;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   291
val check_term = singleton o check_terms;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   292
val check_prop = singleton o check_props;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   293
val check_sort = map_sort o check_typ;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   294
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   295
val uncheck_typs = gen_check fst true;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   296
val uncheck_terms = gen_check snd true;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   297
val uncheck_sort = map_sort o singleton o uncheck_typs;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   298
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   299
end;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   300
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   301
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   302
(* derived operations for classrel and arity *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   303
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   304
val uncheck_classrel = map o singleton o uncheck_sort;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   305
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   306
fun unparse_classrel ctxt cs = Pretty.block (flat
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   307
  (separate [Pretty.str " <", Pretty.brk 1] (map (single o unparse_sort ctxt o single) cs)));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   308
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   309
fun uncheck_arity ctxt (a, Ss, S) =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   310
  let
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   311
    val T = Type (a, replicate (length Ss) dummyT);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   312
    val a' =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   313
      (case singleton (uncheck_typs ctxt) T of
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   314
        Type (a', _) => a'
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   315
      | T => raise TYPE ("uncheck_arity", [T], []));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   316
    val Ss' = map (uncheck_sort ctxt) Ss;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   317
    val S' = uncheck_sort ctxt S;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   318
  in (a', Ss', S') end;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   319
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   320
fun unparse_arity ctxt (a, Ss, S) =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   321
  let
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   322
    val prtT = unparse_typ ctxt (Type (a, []));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   323
    val dom =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   324
      if null Ss then []
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   325
      else [Pretty.list "(" ")" (map (unparse_sort ctxt) Ss), Pretty.brk 1];
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   326
  in Pretty.block ([prtT, Pretty.str " ::", Pretty.brk 1] @ dom @ [unparse_sort ctxt S]) end;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   327
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   328
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   329
(* read = parse + check *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   330
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   331
fun read_sort ctxt = parse_sort ctxt #> check_sort ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   332
fun read_typ ctxt = parse_typ ctxt #> singleton (check_typs ctxt);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   333
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   334
fun read_terms ctxt = map (parse_term ctxt) #> check_terms ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   335
fun read_props ctxt = map (parse_prop ctxt) #> check_props ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   336
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   337
val read_term = singleton o read_terms;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   338
val read_prop = singleton o read_props;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   339
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   340
val read_sort_global = read_sort o ProofContext.init_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   341
val read_typ_global = read_typ o ProofContext.init_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   342
val read_term_global = read_term o ProofContext.init_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   343
val read_prop_global = read_prop o ProofContext.init_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   344
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   345
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   346
(* pretty = uncheck + unparse *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   347
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   348
fun pretty_term ctxt = singleton (uncheck_terms ctxt) #> unparse_term ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   349
fun pretty_typ ctxt = singleton (uncheck_typs ctxt) #> unparse_typ ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   350
fun pretty_sort ctxt = uncheck_sort ctxt #> unparse_sort ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   351
fun pretty_classrel ctxt = uncheck_classrel ctxt #> unparse_classrel ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   352
fun pretty_arity ctxt = uncheck_arity ctxt #> unparse_arity ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   353
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   354
val string_of_term = Pretty.string_of oo pretty_term;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   355
val string_of_typ = Pretty.string_of oo pretty_typ;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   356
val string_of_sort = Pretty.string_of oo pretty_sort;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   357
val string_of_classrel = Pretty.string_of oo pretty_classrel;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   358
val string_of_arity = Pretty.string_of oo pretty_arity;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   359
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   360
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   361
(* global pretty printing *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   362
39508
dfacdb01e1ec simplified some internal flags using Config.T instead of full-blown Proof_Data;
wenzelm
parents: 39507
diff changeset
   363
val pretty_global = Config.bool (Config.declare "Syntax.pretty_global" (K (Config.Bool false)));
dfacdb01e1ec simplified some internal flags using Config.T instead of full-blown Proof_Data;
wenzelm
parents: 39507
diff changeset
   364
fun is_pretty_global ctxt = Config.get ctxt pretty_global;
dfacdb01e1ec simplified some internal flags using Config.T instead of full-blown Proof_Data;
wenzelm
parents: 39507
diff changeset
   365
val set_pretty_global = Config.put pretty_global;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   366
val init_pretty_global = set_pretty_global true o ProofContext.init_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   367
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   368
val pretty_term_global = pretty_term o init_pretty_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   369
val pretty_typ_global = pretty_typ o init_pretty_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   370
val pretty_sort_global = pretty_sort o init_pretty_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   371
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   372
val string_of_term_global = string_of_term o init_pretty_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   373
val string_of_typ_global = string_of_typ o init_pretty_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   374
val string_of_sort_global = string_of_sort o init_pretty_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   375
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   376
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   377
(* pp operations -- deferred evaluation *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   378
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   379
fun pp ctxt = Pretty.pp
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   380
 (fn x => pretty_term ctxt x,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   381
  fn x => pretty_typ ctxt x,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   382
  fn x => pretty_sort ctxt x,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   383
  fn x => pretty_classrel ctxt x,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   384
  fn x => pretty_arity ctxt x);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   385
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   386
fun pp_global thy = Pretty.pp
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   387
 (fn x => pretty_term_global thy x,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   388
  fn x => pretty_typ_global thy x,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   389
  fn x => pretty_sort_global thy x,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   390
  fn x => pretty_classrel (init_pretty_global thy) x,
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   391
  fn x => pretty_arity (init_pretty_global thy) x);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   392
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   393
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   394
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   395
(** tables of translation functions **)
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   396
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   397
(* parse (ast) translations *)
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   398
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17314
diff changeset
   399
fun lookup_tr tab c = Option.map fst (Symtab.lookup tab c);
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   400
23655
d2d1138e0ddc replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents: 23631
diff changeset
   401
fun err_dup_trfun name c =
d2d1138e0ddc replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents: 23631
diff changeset
   402
  error ("More than one " ^ name ^ " for " ^ quote c);
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   403
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   404
fun remove_trtab trfuns = fold (Symtab.remove Syn_Ext.eq_trfun) trfuns;
21536
f119c730f509 extend_trtab: allow identical trfuns to be overwritten;
wenzelm
parents: 20784
diff changeset
   405
29004
a5a91f387791 removed Table.extend, NameSpace.extend_table
haftmann
parents: 28904
diff changeset
   406
fun update_trtab name trfuns tab = fold Symtab.update_new trfuns (remove_trtab trfuns tab)
23655
d2d1138e0ddc replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents: 23631
diff changeset
   407
  handle Symtab.DUP c => err_dup_trfun name c;
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   408
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   409
fun merge_trtabs name tab1 tab2 = Symtab.merge Syn_Ext.eq_trfun (tab1, tab2)
23655
d2d1138e0ddc replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents: 23631
diff changeset
   410
  handle Symtab.DUP c => err_dup_trfun name c;
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   411
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   412
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   413
(* print (ast) translations *)
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   414
18931
427df66052a1 TableFun: renamed xxx_multi to xxx_list;
wenzelm
parents: 18921
diff changeset
   415
fun lookup_tr' tab c = map fst (Symtab.lookup_list tab c);
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   416
fun update_tr'tab trfuns = fold_rev (Symtab.update_list Syn_Ext.eq_trfun) trfuns;
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   417
fun remove_tr'tab trfuns = fold (Symtab.remove_list Syn_Ext.eq_trfun) trfuns;
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   418
fun merge_tr'tabs tab1 tab2 = Symtab.merge_list Syn_Ext.eq_trfun (tab1, tab2);
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   419
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   420
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   421
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   422
(** tables of token translation functions **)
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   423
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   424
fun lookup_tokentr tabs modes =
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19375
diff changeset
   425
  let val trs = distinct (eq_fst (op =)) (maps (these o AList.lookup (op =) tabs) (modes @ [""]))
17314
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
   426
  in fn c => Option.map fst (AList.lookup (op =) trs c) end;
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   427
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   428
fun merge_tokentrtabs tabs1 tabs2 =
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   429
  let
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   430
    fun eq_tr ((c1, (_, s1)), (c2, (_, s2))) = c1 = c2 andalso s1 = s2;
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   431
4703
a50ab39756db adapted to symbols, scan;
wenzelm
parents: 4618
diff changeset
   432
    fun name (s, _) = implode (tl (Symbol.explode s));
2706
91a640a91c6e improved err msg;
wenzelm
parents: 2700
diff changeset
   433
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   434
    fun merge mode =
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   435
      let
17213
ba65f3e5653c fixed ins_tokentr: AList.default;
wenzelm
parents: 17192
diff changeset
   436
        val trs1 = these (AList.lookup (op =) tabs1 mode);
ba65f3e5653c fixed ins_tokentr: AList.default;
wenzelm
parents: 17192
diff changeset
   437
        val trs2 = these (AList.lookup (op =) tabs2 mode);
19046
bc5c6c9b114e removed distinct, renamed gen_distinct to distinct;
wenzelm
parents: 18977
diff changeset
   438
        val trs = distinct eq_tr (trs1 @ trs2);
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   439
      in
18964
67f572e03236 renamed gen_duplicates to duplicates;
wenzelm
parents: 18931
diff changeset
   440
        (case duplicates (eq_fst (op =)) trs of
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   441
          [] => (mode, trs)
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   442
        | dups => error ("More than one token translation function in mode " ^
2706
91a640a91c6e improved err msg;
wenzelm
parents: 2700
diff changeset
   443
            quote mode ^ " for " ^ commas_quote (map name dups)))
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   444
      end;
19046
bc5c6c9b114e removed distinct, renamed gen_distinct to distinct;
wenzelm
parents: 18977
diff changeset
   445
  in map merge (distinct (op =) (map fst (tabs1 @ tabs2))) end;
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   446
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   447
fun extend_tokentrtab tokentrs tabs =
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   448
  let
17213
ba65f3e5653c fixed ins_tokentr: AList.default;
wenzelm
parents: 17192
diff changeset
   449
    fun ins_tokentr (m, c, f) =
ba65f3e5653c fixed ins_tokentr: AList.default;
wenzelm
parents: 17192
diff changeset
   450
      AList.default (op =) (m, [])
ba65f3e5653c fixed ins_tokentr: AList.default;
wenzelm
parents: 17192
diff changeset
   451
      #> AList.map_entry (op =) m (cons ("_" ^ c, (f, stamp ())));
15759
wenzelm
parents: 15755
diff changeset
   452
  in merge_tokentrtabs tabs (fold ins_tokentr tokentrs []) end;
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   453
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   454
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   455
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   456
(** tables of translation rules **)
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   457
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   458
type ruletab = (Ast.ast * Ast.ast) list Symtab.table;
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   459
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19375
diff changeset
   460
fun dest_ruletab tab = maps snd (Symtab.dest tab);
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   461
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   462
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   463
(* empty, update, merge ruletabs *)
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   464
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   465
val update_ruletab = fold_rev (fn r => Symtab.update_list (op =) (Ast.head_of_rule r, r));
18931
427df66052a1 TableFun: renamed xxx_multi to xxx_list;
wenzelm
parents: 18921
diff changeset
   466
val remove_ruletab = fold (fn r => Symtab.remove_list (op =) (Ast.head_of_rule r, r));
427df66052a1 TableFun: renamed xxx_multi to xxx_list;
wenzelm
parents: 18921
diff changeset
   467
fun merge_ruletabs tab1 tab2 = Symtab.merge_list (op =) (tab1, tab2);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   468
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   469
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   470
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   471
(** datatype syntax **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   472
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   473
datatype syntax =
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   474
  Syntax of {
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   475
    input: Syn_Ext.xprod list,
4703
a50ab39756db adapted to symbols, scan;
wenzelm
parents: 4618
diff changeset
   476
    lexicon: Scan.lexicon,
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   477
    gram: Parser.gram,
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   478
    consts: string list,
2913
ce271fa4d8e2 fixed diagnostic output of print modes;
wenzelm
parents: 2706
diff changeset
   479
    prmodes: string list,
21772
7c7ade4f537b advanced translation functions: Proof.context;
wenzelm
parents: 21731
diff changeset
   480
    parse_ast_trtab: ((Proof.context -> Ast.ast list -> Ast.ast) * stamp) Symtab.table,
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   481
    parse_ruletab: ruletab,
21772
7c7ade4f537b advanced translation functions: Proof.context;
wenzelm
parents: 21731
diff changeset
   482
    parse_trtab: ((Proof.context -> term list -> term) * stamp) Symtab.table,
7c7ade4f537b advanced translation functions: Proof.context;
wenzelm
parents: 21731
diff changeset
   483
    print_trtab: ((Proof.context -> bool -> typ -> term list -> term) * stamp) list Symtab.table,
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   484
    print_ruletab: ruletab,
21772
7c7ade4f537b advanced translation functions: Proof.context;
wenzelm
parents: 21731
diff changeset
   485
    print_ast_trtab: ((Proof.context -> Ast.ast list -> Ast.ast) * stamp) list Symtab.table,
26704
51ee753cc2e3 token translations: context dependent, result Pretty.T;
wenzelm
parents: 26684
diff changeset
   486
    tokentrtab: (string * (string * ((Proof.context -> string -> Pretty.T) * stamp)) list) list,
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   487
    prtabs: Printer.prtabs} * stamp;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   488
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   489
fun eq_syntax (Syntax (_, s1), Syntax (_, s2)) = s1 = s2;
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   490
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   491
fun is_keyword (Syntax ({lexicon, ...}, _)) = Scan.is_literal lexicon o Symbol.explode;
14687
e089757b952a added is_keyword;
wenzelm
parents: 14648
diff changeset
   492
20784
eece9aaaf352 Syntax.mode;
wenzelm
parents: 20664
diff changeset
   493
type mode = string * bool;
24970
050afeec89a7 renamed Syntax.XXX_mode to Syntax.mode_XXX;
wenzelm
parents: 24923
diff changeset
   494
val mode_default = ("", true);
37146
f652333bbf8e renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
wenzelm
parents: 36739
diff changeset
   495
val mode_input = (Print_Mode.input, true);
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   496
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   497
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   498
(* empty_syntax *)
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   499
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   500
val empty_syntax = Syntax
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   501
  ({input = [],
4703
a50ab39756db adapted to symbols, scan;
wenzelm
parents: 4618
diff changeset
   502
    lexicon = Scan.empty_lexicon,
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   503
    gram = Parser.empty_gram,
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   504
    consts = [],
2913
ce271fa4d8e2 fixed diagnostic output of print modes;
wenzelm
parents: 2706
diff changeset
   505
    prmodes = [],
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   506
    parse_ast_trtab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   507
    parse_ruletab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   508
    parse_trtab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   509
    print_trtab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   510
    print_ruletab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   511
    print_ast_trtab = Symtab.empty,
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   512
    tokentrtab = [],
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   513
    prtabs = Printer.empty_prtabs}, stamp ());
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   514
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   515
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   516
(* update_syntax *)
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   517
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   518
fun update_syntax (mode, inout) syn_ext (Syntax (tabs, _)) =
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   519
  let
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   520
    val {input, lexicon, gram, consts = consts1, prmodes = prmodes1,
2366
a163d2be1bb5 added chartrans;
wenzelm
parents: 2287
diff changeset
   521
      parse_ast_trtab, parse_ruletab, parse_trtab, print_trtab, print_ruletab,
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   522
      print_ast_trtab, tokentrtab, prtabs} = tabs;
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   523
    val Syn_Ext.Syn_Ext {xprods, consts = consts2, prmodes = prmodes2,
2913
ce271fa4d8e2 fixed diagnostic output of print modes;
wenzelm
parents: 2706
diff changeset
   524
      parse_ast_translation, parse_rules, parse_translation, print_translation, print_rules,
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   525
      print_ast_translation, token_translation} = syn_ext;
36208
74c5e6e3c1d3 update_syntax: add new productions only once, to allow repeated local notation, for example;
wenzelm
parents: 35668
diff changeset
   526
    val new_xprods =
74c5e6e3c1d3 update_syntax: add new productions only once, to allow repeated local notation, for example;
wenzelm
parents: 35668
diff changeset
   527
      if inout then distinct (op =) (filter_out (member (op =) input) xprods) else [];
19546
00d5c7c7ce07 extend/remove_syntax: observe inout flag for translations, too;
wenzelm
parents: 19482
diff changeset
   528
    fun if_inout xs = if inout then xs else [];
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   529
  in
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   530
    Syntax
36208
74c5e6e3c1d3 update_syntax: add new productions only once, to allow repeated local notation, for example;
wenzelm
parents: 35668
diff changeset
   531
    ({input = new_xprods @ input,
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   532
      lexicon = fold Scan.extend_lexicon (Syn_Ext.delims_of new_xprods) lexicon,
37684
d123b1e08856 standard argument order;
wenzelm
parents: 37216
diff changeset
   533
      gram = Parser.extend_gram new_xprods gram,
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35412
diff changeset
   534
      consts = Library.merge (op =) (consts1, filter_out Lexicon.is_marked consts2),
18921
f47c46d7d654 canonical member/insert/merge;
wenzelm
parents: 18857
diff changeset
   535
      prmodes = insert (op =) mode (Library.merge (op =) (prmodes1, prmodes2)),
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   536
      parse_ast_trtab =
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   537
        update_trtab "parse ast translation" (if_inout parse_ast_translation) parse_ast_trtab,
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   538
      parse_ruletab = update_ruletab (if_inout parse_rules) parse_ruletab,
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   539
      parse_trtab = update_trtab "parse translation" (if_inout parse_translation) parse_trtab,
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   540
      print_trtab = update_tr'tab print_translation print_trtab,
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   541
      print_ruletab = update_ruletab print_rules print_ruletab,
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   542
      print_ast_trtab = update_tr'tab print_ast_translation print_ast_trtab,
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   543
      tokentrtab = extend_tokentrtab token_translation tokentrtab,
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   544
      prtabs = Printer.update_prtabs mode xprods prtabs}, stamp ())
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   545
  end;
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   546
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   547
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   548
(* remove_syntax *)
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   549
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   550
fun remove_syntax (mode, inout) syn_ext (Syntax (tabs, _)) =
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   551
  let
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   552
    val Syn_Ext.Syn_Ext {xprods, consts = _, prmodes = _,
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   553
      parse_ast_translation, parse_rules, parse_translation, print_translation, print_rules,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   554
      print_ast_translation, token_translation = _} = syn_ext;
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   555
    val {input, lexicon, gram, consts, prmodes,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   556
      parse_ast_trtab, parse_ruletab, parse_trtab, print_trtab, print_ruletab,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   557
      print_ast_trtab, tokentrtab, prtabs} = tabs;
19300
7689f81f8996 subtract (op =);
wenzelm
parents: 19262
diff changeset
   558
    val input' = if inout then subtract (op =) xprods input else input;
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   559
    val changed = length input <> length input';
19546
00d5c7c7ce07 extend/remove_syntax: observe inout flag for translations, too;
wenzelm
parents: 19482
diff changeset
   560
    fun if_inout xs = if inout then xs else [];
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   561
  in
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   562
    Syntax
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   563
    ({input = input',
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   564
      lexicon = if changed then Scan.make_lexicon (Syn_Ext.delims_of input') else lexicon,
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   565
      gram = if changed then Parser.extend_gram input' Parser.empty_gram else gram,
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   566
      consts = consts,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   567
      prmodes = prmodes,
19546
00d5c7c7ce07 extend/remove_syntax: observe inout flag for translations, too;
wenzelm
parents: 19482
diff changeset
   568
      parse_ast_trtab = remove_trtab (if_inout parse_ast_translation) parse_ast_trtab,
00d5c7c7ce07 extend/remove_syntax: observe inout flag for translations, too;
wenzelm
parents: 19482
diff changeset
   569
      parse_ruletab = remove_ruletab (if_inout parse_rules) parse_ruletab,
00d5c7c7ce07 extend/remove_syntax: observe inout flag for translations, too;
wenzelm
parents: 19482
diff changeset
   570
      parse_trtab = remove_trtab (if_inout parse_translation) parse_trtab,
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   571
      print_trtab = remove_tr'tab print_translation print_trtab,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   572
      print_ruletab = remove_ruletab print_rules print_ruletab,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   573
      print_ast_trtab = remove_tr'tab print_ast_translation print_ast_trtab,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   574
      tokentrtab = tokentrtab,
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   575
      prtabs = Printer.remove_prtabs mode xprods prtabs}, stamp ())
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   576
  end;
14904
7d8dc92fcb7f removed separate logtypes field of syntax; removed test_read, simple_str_of_sort, simple_string_of_typ; provide default_mode;
wenzelm
parents: 14798
diff changeset
   577
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   578
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   579
(* merge_syntaxes *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   580
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   581
fun merge_syntaxes (Syntax (tabs1, _)) (Syntax (tabs2, _)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   582
  let
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   583
    val {input = input1, lexicon = lexicon1, gram = gram1, consts = consts1,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   584
      prmodes = prmodes1, parse_ast_trtab = parse_ast_trtab1,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   585
      parse_ruletab = parse_ruletab1, parse_trtab = parse_trtab1,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   586
      print_trtab = print_trtab1, print_ruletab = print_ruletab1,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   587
      print_ast_trtab = print_ast_trtab1, tokentrtab = tokentrtab1, prtabs = prtabs1} = tabs1;
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   588
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   589
    val {input = input2, lexicon = lexicon2, gram = gram2, consts = consts2,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   590
      prmodes = prmodes2, parse_ast_trtab = parse_ast_trtab2,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   591
      parse_ruletab = parse_ruletab2, parse_trtab = parse_trtab2,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   592
      print_trtab = print_trtab2, print_ruletab = print_ruletab2,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   593
      print_ast_trtab = print_ast_trtab2, tokentrtab = tokentrtab2, prtabs = prtabs2} = tabs2;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   594
  in
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   595
    Syntax
18921
f47c46d7d654 canonical member/insert/merge;
wenzelm
parents: 18857
diff changeset
   596
    ({input = Library.merge (op =) (input1, input2),
27768
398c64b2acef adapted Scan.extend_lexicon/merge_lexicons;
wenzelm
parents: 27265
diff changeset
   597
      lexicon = Scan.merge_lexicons (lexicon1, lexicon2),
37684
d123b1e08856 standard argument order;
wenzelm
parents: 37216
diff changeset
   598
      gram = Parser.merge_gram (gram1, gram2),
18428
4059413acbc1 sort_distinct;
wenzelm
parents: 17496
diff changeset
   599
      consts = sort_distinct string_ord (consts1 @ consts2),
18921
f47c46d7d654 canonical member/insert/merge;
wenzelm
parents: 18857
diff changeset
   600
      prmodes = Library.merge (op =) (prmodes1, prmodes2),
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   601
      parse_ast_trtab =
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   602
        merge_trtabs "parse ast translation" parse_ast_trtab1 parse_ast_trtab2,
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   603
      parse_ruletab = merge_ruletabs parse_ruletab1 parse_ruletab2,
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   604
      parse_trtab = merge_trtabs "parse translation" parse_trtab1 parse_trtab2,
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   605
      print_trtab = merge_tr'tabs print_trtab1 print_trtab2,
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   606
      print_ruletab = merge_ruletabs print_ruletab1 print_ruletab2,
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   607
      print_ast_trtab = merge_tr'tabs print_ast_trtab1 print_ast_trtab2,
2700
80e6b48c5204 added token translation support;
wenzelm
parents: 2585
diff changeset
   608
      tokentrtab = merge_tokentrtabs tokentrtab1 tokentrtab2,
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   609
      prtabs = Printer.merge_prtabs prtabs1 prtabs2}, stamp ())
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   610
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   611
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   612
18720
dd1ebba12151 added basic syntax;
wenzelm
parents: 18678
diff changeset
   613
(* basic syntax *)
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   614
35668
69e1740fbfb1 simplified Syntax.basic_syntax (again);
wenzelm
parents: 35429
diff changeset
   615
val basic_syntax =
17168
e7951b191048 removed obsolete type_syn;
wenzelm
parents: 17079
diff changeset
   616
  empty_syntax
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   617
  |> update_syntax mode_default Type_Ext.type_ext
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   618
  |> update_syntax mode_default Syn_Ext.pure_ext;
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   619
18720
dd1ebba12151 added basic syntax;
wenzelm
parents: 18678
diff changeset
   620
val basic_nonterms =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   621
  (Lexicon.terminals @ [Syn_Ext.logic, "type", "types", "sort", "classes",
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   622
    Syn_Ext.args, Syn_Ext.cargs, "pttrn", "pttrns", "idt", "idts", "aprop",
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   623
    "asms", Syn_Ext.any, Syn_Ext.sprop, "num_const", "float_const", "index",
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   624
    "struct", "id_position", "longid_position", "type_name", "class_name"]);
18720
dd1ebba12151 added basic syntax;
wenzelm
parents: 18678
diff changeset
   625
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   626
4887
bbc13af86c16 added trfun_names;
wenzelm
parents: 4703
diff changeset
   627
15759
wenzelm
parents: 15755
diff changeset
   628
(** print syntax **)
wenzelm
parents: 15755
diff changeset
   629
wenzelm
parents: 15755
diff changeset
   630
local
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   631
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   632
fun pretty_strs_qs name strs =
28840
wenzelm
parents: 28413
diff changeset
   633
  Pretty.strs (name :: map quote (sort_strings strs));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   634
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   635
fun pretty_gram (Syntax (tabs, _)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   636
  let
32784
1a5dde5079ac eliminated redundant bindings;
wenzelm
parents: 32738
diff changeset
   637
    val {lexicon, prmodes, gram, ...} = tabs;
28375
c879d88d038a eliminated polymorphic equality;
wenzelm
parents: 27889
diff changeset
   638
    val prmodes' = sort_strings (filter_out (fn s => s = "") prmodes);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   639
  in
8720
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   640
    [pretty_strs_qs "lexicon:" (Scan.dest_lexicon lexicon),
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   641
      Pretty.big_list "prods:" (Parser.pretty_gram gram),
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   642
      pretty_strs_qs "print modes:" prmodes']
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   643
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   644
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   645
fun pretty_trans (Syntax (tabs, _)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   646
  let
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   647
    fun pretty_trtab name tab =
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   648
      pretty_strs_qs name (Symtab.keys tab);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   649
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   650
    fun pretty_ruletab name tab =
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   651
      Pretty.big_list name (map Ast.pretty_rule (dest_ruletab tab));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   652
28840
wenzelm
parents: 28413
diff changeset
   653
    fun pretty_tokentr (mode, trs) = Pretty.strs (quote mode ^ ":" :: map fst trs);
4703
a50ab39756db adapted to symbols, scan;
wenzelm
parents: 4618
diff changeset
   654
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   655
    val {consts, parse_ast_trtab, parse_ruletab, parse_trtab, print_trtab,
4703
a50ab39756db adapted to symbols, scan;
wenzelm
parents: 4618
diff changeset
   656
      print_ruletab, print_ast_trtab, tokentrtab, ...} = tabs;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   657
  in
8720
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   658
    [pretty_strs_qs "consts:" consts,
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   659
      pretty_trtab "parse_ast_translation:" parse_ast_trtab,
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   660
      pretty_ruletab "parse_rules:" parse_ruletab,
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   661
      pretty_trtab "parse_translation:" parse_trtab,
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   662
      pretty_trtab "print_translation:" print_trtab,
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   663
      pretty_ruletab "print_rules:" print_ruletab,
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   664
      pretty_trtab "print_ast_translation:" print_ast_trtab,
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   665
      Pretty.big_list "token_translation:" (map pretty_tokentr tokentrtab)]
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   666
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   667
15759
wenzelm
parents: 15755
diff changeset
   668
in
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   669
15759
wenzelm
parents: 15755
diff changeset
   670
fun print_gram syn = Pretty.writeln (Pretty.chunks (pretty_gram syn));
wenzelm
parents: 15755
diff changeset
   671
fun print_trans syn = Pretty.writeln (Pretty.chunks (pretty_trans syn));
wenzelm
parents: 15755
diff changeset
   672
fun print_syntax syn = Pretty.writeln (Pretty.chunks (pretty_gram syn @ pretty_trans syn));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   673
15759
wenzelm
parents: 15755
diff changeset
   674
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   675
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   676
26951
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
   677
(* reconstructing infixes -- educated guessing *)
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
   678
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
   679
fun guess_infix (Syntax ({gram, ...}, _)) c =
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
   680
  (case Parser.guess_infix_lr gram c of
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
   681
    SOME (s, l, r, j) => SOME
35130
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 35111
diff changeset
   682
     (if l then Mixfix.Infixl (s, j)
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 35111
diff changeset
   683
      else if r then Mixfix.Infixr (s, j)
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 35111
diff changeset
   684
      else Mixfix.Infix (s, j))
26951
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
   685
  | NONE => NONE);
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
   686
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
   687
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   688
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   689
(** read **)  (* FIXME rename!? *)
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   690
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   691
(* configuration options *)
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   692
42056
160a630b2c7e enable inner syntax source positions by default (controlled via configuration option);
wenzelm
parents: 42048
diff changeset
   693
val positions_raw = Config.declare "syntax_positions" (fn _ => Config.Bool true);
160a630b2c7e enable inner syntax source positions by default (controlled via configuration option);
wenzelm
parents: 42048
diff changeset
   694
val positions = Config.bool positions_raw;
160a630b2c7e enable inner syntax source positions by default (controlled via configuration option);
wenzelm
parents: 42048
diff changeset
   695
39126
ee117c5b3b75 configuration options Syntax.ambiguity_enabled (inverse of former Syntax.ambiguity_is_error), Syntax.ambiguity_level (with Isar attribute "syntax_ambiguity_level"), Syntax.ambiguity_limit;
wenzelm
parents: 38831
diff changeset
   696
val ambiguity_enabled =
ee117c5b3b75 configuration options Syntax.ambiguity_enabled (inverse of former Syntax.ambiguity_is_error), Syntax.ambiguity_level (with Isar attribute "syntax_ambiguity_level"), Syntax.ambiguity_limit;
wenzelm
parents: 38831
diff changeset
   697
  Config.bool (Config.declare "syntax_ambiguity_enabled" (fn _ => Config.Bool true));
ee117c5b3b75 configuration options Syntax.ambiguity_enabled (inverse of former Syntax.ambiguity_is_error), Syntax.ambiguity_level (with Isar attribute "syntax_ambiguity_level"), Syntax.ambiguity_limit;
wenzelm
parents: 38831
diff changeset
   698
39163
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   699
val ambiguity_level_raw = Config.declare "syntax_ambiguity_level" (fn _ => Config.Int 1);
4d701c0388c3 more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
wenzelm
parents: 39137
diff changeset
   700
val ambiguity_level = Config.int ambiguity_level_raw;
39126
ee117c5b3b75 configuration options Syntax.ambiguity_enabled (inverse of former Syntax.ambiguity_is_error), Syntax.ambiguity_level (with Isar attribute "syntax_ambiguity_level"), Syntax.ambiguity_limit;
wenzelm
parents: 38831
diff changeset
   701
ee117c5b3b75 configuration options Syntax.ambiguity_enabled (inverse of former Syntax.ambiguity_is_error), Syntax.ambiguity_level (with Isar attribute "syntax_ambiguity_level"), Syntax.ambiguity_limit;
wenzelm
parents: 38831
diff changeset
   702
val ambiguity_limit =
ee117c5b3b75 configuration options Syntax.ambiguity_enabled (inverse of former Syntax.ambiguity_is_error), Syntax.ambiguity_level (with Isar attribute "syntax_ambiguity_level"), Syntax.ambiguity_limit;
wenzelm
parents: 38831
diff changeset
   703
  Config.int (Config.declare "syntax_ambiguity_limit" (fn _ => Config.Int 10));
882
b118d1ea0dfd moved ambiguity_level from sign.ML to Syntax/syntax.ML
clasohm
parents: 865
diff changeset
   704
27786
4525c6f5d753 added read_token -- with optional YXML encoding of position;
wenzelm
parents: 27768
diff changeset
   705
fun ambiguity_msg pos = "Parse error: ambiguous syntax" ^ Position.str_of pos;
4525c6f5d753 added read_token -- with optional YXML encoding of position;
wenzelm
parents: 27768
diff changeset
   706
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   707
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   708
(* results *)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   709
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   710
fun proper_results results = map_filter (fn (y, Exn.Result x) => SOME (y, x) | _ => NONE) results;
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   711
fun failed_results results = map_filter (fn (y, Exn.Exn e) => SOME (y, e) | _ => NONE) results;
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   712
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   713
fun report ctxt = List.app (fn (pos, m) => Context_Position.report ctxt pos m);
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   714
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   715
fun report_result ctxt pos results =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   716
  (case (proper_results results, failed_results results) of
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   717
    ([], (reports, exn) :: _) => (report ctxt reports; reraise exn)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   718
  | ([(reports, x)], _) => (report ctxt reports; x)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   719
  | _ => error (ambiguity_msg pos));
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   720
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   721
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   722
(* read_asts *)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   723
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   724
fun read_asts ctxt type_ctxt (Syntax (tabs, _)) raw root (syms, pos) =
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   725
  let
14904
7d8dc92fcb7f removed separate logtypes field of syntax; removed test_read, simple_str_of_sort, simple_string_of_typ; provide default_mode;
wenzelm
parents: 14798
diff changeset
   726
    val {lexicon, gram, parse_ast_trtab, ...} = tabs;
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42044
diff changeset
   727
    val toks = Lexicon.tokenize lexicon raw syms;
38237
8b0383334031 prefer Context_Position.report where a proper context is available -- notably for "inner" entities;
wenzelm
parents: 38229
diff changeset
   728
    val _ = List.app (Lexicon.report_token ctxt) toks;
27889
c9e8a5bda32b read_asts: Lexicon.report_token, filter Lexicon.is_proper;
wenzelm
parents: 27822
diff changeset
   729
40959
49765c1104d4 added Syntax.default_root;
wenzelm
parents: 39555
diff changeset
   730
    val pts = Parser.parse ctxt gram root (filter Lexicon.is_proper toks)
39510
d9f5f01faa1b Syntax.read_asts error: report token ranges within message -- no side-effect here;
wenzelm
parents: 39508
diff changeset
   731
      handle ERROR msg =>
d9f5f01faa1b Syntax.read_asts error: report token ranges within message -- no side-effect here;
wenzelm
parents: 39508
diff changeset
   732
        error (msg ^
d9f5f01faa1b Syntax.read_asts error: report token ranges within message -- no side-effect here;
wenzelm
parents: 39508
diff changeset
   733
          implode (map (Markup.markup Markup.report o Lexicon.reported_token_range ctxt) toks));
25993
d542486e39e7 added ambiguity_limit (restricts parse trees / terms printed in messages);
wenzelm
parents: 25476
diff changeset
   734
    val len = length pts;
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 260
diff changeset
   735
39126
ee117c5b3b75 configuration options Syntax.ambiguity_enabled (inverse of former Syntax.ambiguity_is_error), Syntax.ambiguity_level (with Isar attribute "syntax_ambiguity_level"), Syntax.ambiguity_limit;
wenzelm
parents: 38831
diff changeset
   736
    val limit = Config.get ctxt ambiguity_limit;
42043
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 41711
diff changeset
   737
    val _ =
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 41711
diff changeset
   738
      if len <= Config.get ctxt ambiguity_level then ()
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 41711
diff changeset
   739
      else if not (Config.get ctxt ambiguity_enabled) then error (ambiguity_msg pos)
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 41711
diff changeset
   740
      else
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 41711
diff changeset
   741
        (Context_Position.if_visible ctxt warning (cat_lines
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 41711
diff changeset
   742
          (("Ambiguous input" ^ Position.str_of pos ^
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 41711
diff changeset
   743
            "\nproduces " ^ string_of_int len ^ " parse trees" ^
2055515c9d3f clarified Syn_Trans.parsetree_to_ast and Syn_Trans.ast_to_term;
wenzelm
parents: 41711
diff changeset
   744
            (if len <= limit then "" else " (" ^ string_of_int limit ^ " displayed)") ^ ":") ::
42205
22f5cc06c419 direct pretty printing of parsetrees -- prevent diagnostic output from crashing due to undeclared entities;
wenzelm
parents: 42204
diff changeset
   745
            map (Pretty.string_of o Parser.pretty_parsetree) (take limit pts))));
42056
160a630b2c7e enable inner syntax source positions by default (controlled via configuration option);
wenzelm
parents: 42048
diff changeset
   746
160a630b2c7e enable inner syntax source positions by default (controlled via configuration option);
wenzelm
parents: 42048
diff changeset
   747
    val constrain_pos = not raw andalso Config.get ctxt positions;
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   748
    val parsetree_to_ast =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   749
      Syn_Trans.parsetree_to_ast ctxt type_ctxt constrain_pos (lookup_tr parse_ast_trtab);
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   750
  in map parsetree_to_ast pts end;
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   751
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   752
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   753
(* read_raw *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   754
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   755
fun read_raw ctxt type_ctxt (syn as Syntax (tabs, _)) root input =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   756
  let
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   757
    val {parse_ruletab, parse_trtab, ...} = tabs;
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   758
    val norm = Ast.normalize ctxt (Symtab.lookup_list parse_ruletab);
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   759
    val ast_to_term = Syn_Trans.ast_to_term ctxt (lookup_tr parse_trtab);
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   760
  in
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   761
    read_asts ctxt type_ctxt syn false root input
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   762
    |> (map o apsnd o Exn.maps_result) (norm #> Exn.interruptible_capture ast_to_term)
42044
wenzelm
parents: 42043
diff changeset
   763
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   764
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   765
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   766
(* read sorts *)
25993
d542486e39e7 added ambiguity_limit (restricts parse trees / terms printed in messages);
wenzelm
parents: 25476
diff changeset
   767
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   768
fun standard_parse_sort ctxt type_ctxt syn (syms, pos) =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   769
  read_raw ctxt type_ctxt syn (Syn_Ext.typ_to_nonterm Type_Ext.sortT) (syms, pos)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   770
  |> report_result ctxt pos
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   771
  |> Type_Ext.sort_of_term;
22703
d9fbdfe22543 added read_term;
wenzelm
parents: 22573
diff changeset
   772
d9fbdfe22543 added read_term;
wenzelm
parents: 22573
diff changeset
   773
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   774
(* read types *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   775
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   776
fun standard_parse_typ ctxt type_ctxt syn get_sort (syms, pos) =
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   777
  read_raw ctxt type_ctxt syn (Syn_Ext.typ_to_nonterm Syn_Ext.typeT) (syms, pos)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   778
  |> report_result ctxt pos
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   779
  |> (fn t => Type_Ext.typ_of_term (get_sort (Type_Ext.term_sorts t)) t);
144
0a0da273a6c5 added Syntax.read_typ;
wenzelm
parents: 47
diff changeset
   780
0a0da273a6c5 added Syntax.read_typ;
wenzelm
parents: 47
diff changeset
   781
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   782
(* read terms -- brute-force disambiguation via type-inference *)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   783
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   784
fun standard_parse_term check ctxt type_ctxt term_ctxt syn root (syms, pos) =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   785
  let
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   786
    val results =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   787
      read_raw ctxt type_ctxt syn root (syms, pos)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   788
      |> map (Type_Ext.decode_term term_ctxt);
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   789
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   790
    val level = Config.get ctxt ambiguity_level;
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   791
    val limit = Config.get ctxt ambiguity_limit;
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   792
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   793
    val ambiguity = length (proper_results results);
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   794
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   795
    fun ambig_msg () =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   796
      if ambiguity > 1 andalso ambiguity <= level then
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   797
        "Got more than one parse tree.\n\
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   798
        \Retry with smaller syntax_ambiguity_level for more information."
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   799
      else "";
8894
0281bde335ca added read_sort;
wenzelm
parents: 8720
diff changeset
   800
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   801
    val results' =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   802
      if ambiguity > 1 then
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   803
        (Par_List.map_name "Syntax.disambig" o apsnd o Exn.maps_result) check results
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   804
      else results;
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   805
    val reports' = fst (hd results');
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   806
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   807
    val errs = map snd (failed_results results');
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   808
    val checked = map snd (proper_results results');
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   809
    val len = length checked;
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   810
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   811
    val show_term = string_of_term (Config.put Printer.show_brackets true ctxt);
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   812
  in
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   813
    if len = 0 then
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   814
      report_result ctxt pos
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   815
        [(reports', Exn.Exn (Exn.EXCEPTIONS (ERROR (ambig_msg ()) :: errs)))]
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   816
    else if len = 1 then
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   817
      (if ambiguity > level then
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   818
        Context_Position.if_visible ctxt warning
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   819
          "Fortunately, only one parse tree is type correct.\n\
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   820
          \You may still want to disambiguate your grammar or your input."
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   821
      else (); report_result ctxt pos results')
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   822
    else
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   823
      report_result ctxt pos
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   824
        [(reports', Exn.Exn (ERROR (cat_lines (ambig_msg () ::
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   825
          (("Ambiguous input, " ^ string_of_int len ^ " terms are type correct" ^
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   826
            (if len <= limit then "" else " (" ^ string_of_int limit ^ " displayed)") ^ ":") ::
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   827
            map show_term (take limit checked))))))]
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   828
  end;
8894
0281bde335ca added read_sort;
wenzelm
parents: 8720
diff changeset
   829
0281bde335ca added read_sort;
wenzelm
parents: 8720
diff changeset
   830
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   831
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   832
(** prepare translation rules **)
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   833
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   834
(* rules *)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   835
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   836
datatype 'a trrule =
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   837
  Parse_Rule of 'a * 'a |
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   838
  Print_Rule of 'a * 'a |
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   839
  Parse_Print_Rule of 'a * 'a;
888
3a1de9454d13 improved read_xrules: patterns no longer read twice;
wenzelm
parents: 882
diff changeset
   840
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   841
fun map_trrule f (Parse_Rule (x, y)) = Parse_Rule (f x, f y)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   842
  | map_trrule f (Print_Rule (x, y)) = Print_Rule (f x, f y)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   843
  | map_trrule f (Parse_Print_Rule (x, y)) = Parse_Print_Rule (f x, f y);
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   844
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   845
fun parse_rule (Parse_Rule pats) = SOME pats
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   846
  | parse_rule (Print_Rule _) = NONE
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   847
  | parse_rule (Parse_Print_Rule pats) = SOME pats;
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   848
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   849
fun print_rule (Parse_Rule _) = NONE
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   850
  | print_rule (Print_Rule pats) = SOME (swap pats)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   851
  | print_rule (Parse_Print_Rule pats) = SOME (swap pats);
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   852
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   853
35111
18cd034922ba added ML antiquotation @{syntax_const};
wenzelm
parents: 33957
diff changeset
   854
fun is_const (Syntax ({consts, ...}, _)) c = member (op =) consts c;
18cd034922ba added ML antiquotation @{syntax_const};
wenzelm
parents: 33957
diff changeset
   855
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   856
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   857
(* check_rules *)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   858
19262
b98b48496819 added remove_trrules(_i);
wenzelm
parents: 19046
diff changeset
   859
local
b98b48496819 added remove_trrules(_i);
wenzelm
parents: 19046
diff changeset
   860
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42044
diff changeset
   861
fun check_rule rule =
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   862
  (case Ast.rule_error rule of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   863
    SOME msg =>
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   864
      error ("Error in syntax translation rule: " ^ msg ^ "\n" ^
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42044
diff changeset
   865
        Pretty.string_of (Ast.pretty_rule rule))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   866
  | NONE => rule);
888
3a1de9454d13 improved read_xrules: patterns no longer read twice;
wenzelm
parents: 882
diff changeset
   867
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   868
in
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   869
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   870
fun check_rules rules =
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   871
 (map check_rule (map_filter parse_rule rules),
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   872
  map check_rule (map_filter print_rule rules));
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   873
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   874
end;
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   875
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   876
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   877
(* read_rule_pattern *)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   878
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   879
fun read_rule_pattern ctxt type_ctxt syn (root, str) =
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   880
  let
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   881
    fun constify (ast as Ast.Constant _) = ast
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   882
      | constify (ast as Ast.Variable x) =
35111
18cd034922ba added ML antiquotation @{syntax_const};
wenzelm
parents: 33957
diff changeset
   883
          if is_const syn x orelse Long_Name.is_qualified x then Ast.Constant x
3830
7797327eca1d constify: qualified is const;
wenzelm
parents: 3782
diff changeset
   884
          else ast
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   885
      | constify (Ast.Appl asts) = Ast.Appl (map constify asts);
27786
4525c6f5d753 added read_token -- with optional YXML encoding of position;
wenzelm
parents: 27768
diff changeset
   886
4525c6f5d753 added read_token -- with optional YXML encoding of position;
wenzelm
parents: 27768
diff changeset
   887
    val (syms, pos) = read_token str;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   888
  in
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   889
    read_asts ctxt type_ctxt syn true root (syms, pos)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   890
    |> report_result ctxt pos
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   891
    |> constify
27786
4525c6f5d753 added read_token -- with optional YXML encoding of position;
wenzelm
parents: 27768
diff changeset
   892
  end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   893
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   894
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   895
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
   896
(** unparse terms, typs, sorts **)
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   897
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
   898
local
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
   899
32784
1a5dde5079ac eliminated redundant bindings;
wenzelm
parents: 32738
diff changeset
   900
fun unparse_t t_to_ast prt_t markup ctxt (Syntax (tabs, _)) curried t =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   901
  let
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35412
diff changeset
   902
    val {consts, print_trtab, print_ruletab, print_ast_trtab, tokentrtab, prtabs, ...} = tabs;
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35412
diff changeset
   903
    val ast = t_to_ast consts ctxt (lookup_tr' print_trtab) t;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   904
  in
23631
2a9e918653cc pretty_sort/typ/term: markup;
wenzelm
parents: 23615
diff changeset
   905
    Pretty.markup markup (prt_t ctxt curried prtabs (lookup_tr' print_ast_trtab)
24613
bc889c3d55a3 added print_mode_value (CRITICAL);
wenzelm
parents: 24512
diff changeset
   906
      (lookup_tokentr tokentrtab (print_mode_value ()))
41377
390c53904220 configuration option "syntax_ast_trace" and "syntax_ast_stat";
wenzelm
parents: 40959
diff changeset
   907
      (Ast.normalize ctxt (Symtab.lookup_list print_ruletab) ast))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   908
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   909
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
   910
in
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
   911
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   912
fun standard_unparse_sort {extern_class} ctxt syn =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   913
  unparse_t (K Printer.sort_to_ast)
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   914
    (Printer.pretty_typ_ast {extern_class = extern_class, extern_type = I})
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   915
    Markup.sort ctxt syn false;
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
   916
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35412
diff changeset
   917
fun standard_unparse_typ extern ctxt syn =
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35412
diff changeset
   918
  unparse_t (K Printer.typ_to_ast) (Printer.pretty_typ_ast extern) Markup.typ ctxt syn false;
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
   919
42223
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   920
fun standard_unparse_term idents extern =
098c86e53153 more precise propagation of reports/results through some inner syntax layers;
wenzelm
parents: 42217
diff changeset
   921
  unparse_t (Printer.term_to_ast idents) (Printer.pretty_term_ast extern) Markup.term;
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
   922
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
   923
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   924
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   925
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   926
19262
b98b48496819 added remove_trrules(_i);
wenzelm
parents: 19046
diff changeset
   927
(** modify syntax **)
383
fcea89074e4c added incremental extension functions: extend_log_types, extend_type_gram,
wenzelm
parents: 330
diff changeset
   928
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   929
fun ext_syntax f decls = update_syntax mode_default (f decls);
383
fcea89074e4c added incremental extension functions: extend_log_types, extend_type_gram,
wenzelm
parents: 330
diff changeset
   930
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   931
val update_trfuns = ext_syntax Syn_Ext.syn_ext_trfuns;
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   932
val update_advanced_trfuns = ext_syntax Syn_Ext.syn_ext_advanced_trfuns;
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   933
val extend_tokentrfuns = ext_syntax Syn_Ext.syn_ext_tokentrfuns;
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   934
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35394
diff changeset
   935
fun update_type_gram add prmode decls =
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35394
diff changeset
   936
  (if add then update_syntax else remove_syntax) prmode (Mixfix.syn_ext_types decls);
25387
d9ab1e3a8acb added update_const_gram (avoids duplicates);
wenzelm
parents: 25122
diff changeset
   937
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35394
diff changeset
   938
fun update_const_gram add is_logtype prmode decls =
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35394
diff changeset
   939
  (if add then update_syntax else remove_syntax) prmode (Mixfix.syn_ext_consts is_logtype decls);
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   940
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   941
val update_trrules = ext_syntax Syn_Ext.syn_ext_rules o check_rules;
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   942
val remove_trrules = remove_syntax mode_default o Syn_Ext.syn_ext_rules o check_rules;
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   943
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   944
15833
78109c7012ed removed token_trans.ML (some content moved to syn_ext.ML);
wenzelm
parents: 15759
diff changeset
   945
(*export parts of internal Syntax structures*)
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   946
open Lexicon Syn_Ext Ast Parser Type_Ext Syn_Trans Mixfix Printer;
2366
a163d2be1bb5 added chartrans;
wenzelm
parents: 2287
diff changeset
   947
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   948
end;
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   949
35130
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 35111
diff changeset
   950
structure Basic_Syntax: BASIC_SYNTAX = Syntax;
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 35111
diff changeset
   951
open Basic_Syntax;
23923
8c10f3515633 hide internal structures (again);
wenzelm
parents: 23660
diff changeset
   952
26684
wenzelm
parents: 26678
diff changeset
   953
forget_structure "Ast";
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   954
forget_structure "Syn_Ext";
26684
wenzelm
parents: 26678
diff changeset
   955
forget_structure "Parser";
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   956
forget_structure "Type_Ext";
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37146
diff changeset
   957
forget_structure "Syn_Trans";
26684
wenzelm
parents: 26678
diff changeset
   958
forget_structure "Mixfix";
wenzelm
parents: 26678
diff changeset
   959
forget_structure "Printer";