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