src/Pure/Syntax/syntax.ML
author wenzelm
Sat, 14 Dec 2024 22:04:39 +0100
changeset 81592 775dc5903ed5
parent 81590 e656c5edc352
child 81596 af21a61dadad
permissions -rw-r--r--
tuned signature: avoid shadowing;
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
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
signature SYNTAX =
2383
4127499d9b52 added extend_trfunsT;
wenzelm
parents: 2366
diff changeset
     9
sig
81589
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
    10
  datatype 'a trrule =
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
    11
    Parse_Rule of 'a * 'a |
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
    12
    Print_Rule of 'a * 'a |
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
    13
    Parse_Print_Rule of 'a * 'a
42382
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
    14
  type operations
62897
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
    15
  val install_operations: operations -> theory -> theory
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
    16
  val root: string Config.T
46512
4f9f61f9b535 simplified configuration options for syntax ambiguity;
wenzelm
parents: 46506
diff changeset
    17
  val ambiguity_warning: bool Config.T
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
    18
  val ambiguity_limit: int Config.T
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
    19
  val encode_input: Input.source -> XML.tree
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
    20
  val implode_input: Input.source -> string
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
    21
  val read_input_pos: string -> Position.T
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
    22
  val read_input: string -> Input.source
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
    23
  val parse_input: Proof.context -> (XML.tree list -> 'a) ->
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 52160
diff changeset
    24
    (bool -> Markup.T) -> (Symbol_Pos.T list * Position.T -> 'a) -> string -> 'a
81589
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
    25
  val parse_trrule: Proof.context -> (string * string) trrule -> Ast.ast trrule
24263
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    26
  val parse_sort: Proof.context -> string -> sort
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    27
  val parse_typ: Proof.context -> string -> typ
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    28
  val parse_term: Proof.context -> string -> term
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    29
  val parse_prop: Proof.context -> string -> term
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    30
  val unparse_sort: Proof.context -> sort -> Pretty.T
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    31
  val unparse_classrel: Proof.context -> class list -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    32
  val unparse_arity: Proof.context -> arity -> Pretty.T
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    33
  val unparse_typ: Proof.context -> typ -> Pretty.T
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    34
  val unparse_term: Proof.context -> term -> Pretty.T
24488
646e782ba8ff turned type_check into separate typ/term_check;
wenzelm
parents: 24372
diff changeset
    35
  val check_sort: Proof.context -> sort -> sort
24512
fc4959967b30 added singleton check_typ/term/prop;
wenzelm
parents: 24488
diff changeset
    36
  val check_typ: Proof.context -> typ -> typ
fc4959967b30 added singleton check_typ/term/prop;
wenzelm
parents: 24488
diff changeset
    37
  val check_term: Proof.context -> term -> term
fc4959967b30 added singleton check_typ/term/prop;
wenzelm
parents: 24488
diff changeset
    38
  val check_prop: Proof.context -> term -> term
24488
646e782ba8ff turned type_check into separate typ/term_check;
wenzelm
parents: 24372
diff changeset
    39
  val check_typs: Proof.context -> typ list -> typ list
24263
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    40
  val check_terms: Proof.context -> term list -> term list
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    41
  val check_props: Proof.context -> term list -> term list
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    42
  val uncheck_sort: Proof.context -> sort -> sort
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    43
  val uncheck_arity: Proof.context -> arity -> arity
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    44
  val uncheck_classrel: Proof.context -> class list -> class list
24768
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    45
  val uncheck_typs: Proof.context -> typ list -> typ list
123e219b66c2 added unparse interfaces (still unused);
wenzelm
parents: 24709
diff changeset
    46
  val uncheck_terms: Proof.context -> term list -> term list
24263
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    47
  val read_sort: Proof.context -> string -> sort
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    48
  val read_typ: Proof.context -> string -> typ
24488
646e782ba8ff turned type_check into separate typ/term_check;
wenzelm
parents: 24372
diff changeset
    49
  val read_term: Proof.context -> string -> term
646e782ba8ff turned type_check into separate typ/term_check;
wenzelm
parents: 24372
diff changeset
    50
  val read_prop: Proof.context -> string -> term
46989
88b0a8052c75 added Syntax.read_typs;
wenzelm
parents: 46849
diff changeset
    51
  val read_typs: Proof.context -> string list -> typ list
24263
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    52
  val read_terms: Proof.context -> string list -> term list
aff00d8b2e32 added generic wrapper for parse/read functions;
wenzelm
parents: 24247
diff changeset
    53
  val read_props: Proof.context -> string list -> term list
24709
ecfb9dcb6c4c removed redundant global_parse operations;
wenzelm
parents: 24680
diff changeset
    54
  val read_sort_global: theory -> string -> sort
ecfb9dcb6c4c removed redundant global_parse operations;
wenzelm
parents: 24680
diff changeset
    55
  val read_typ_global: theory -> string -> typ
ecfb9dcb6c4c removed redundant global_parse operations;
wenzelm
parents: 24680
diff changeset
    56
  val read_term_global: theory -> string -> term
ecfb9dcb6c4c removed redundant global_parse operations;
wenzelm
parents: 24680
diff changeset
    57
  val read_prop_global: theory -> string -> term
24923
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    58
  val pretty_term: Proof.context -> term -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    59
  val pretty_typ: Proof.context -> typ -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    60
  val pretty_sort: Proof.context -> sort -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    61
  val pretty_classrel: Proof.context -> class list -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    62
  val pretty_arity: Proof.context -> arity -> Pretty.T
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    63
  val string_of_term: Proof.context -> term -> string
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    64
  val string_of_typ: Proof.context -> typ -> string
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    65
  val string_of_sort: Proof.context -> sort -> string
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    66
  val string_of_classrel: Proof.context -> class list -> string
9e095546cdac generic Syntax.pretty/string_of operations;
wenzelm
parents: 24768
diff changeset
    67
  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
    68
  val is_pretty_global: Proof.context -> bool
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    69
  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
    70
  val init_pretty_global: theory -> Proof.context
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 59841
diff changeset
    71
  val init_pretty: Context.generic -> Proof.context
26951
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    72
  val pretty_term_global: theory -> term -> Pretty.T
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    73
  val pretty_typ_global: theory -> typ -> Pretty.T
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    74
  val pretty_sort_global: theory -> sort -> Pretty.T
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    75
  val string_of_term_global: theory -> term -> string
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    76
  val string_of_typ_global: theory -> typ -> string
030e4a818b39 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26704
diff changeset
    77
  val string_of_sort_global: theory -> sort -> string
76082
1202e29798a4 tuned signature;
wenzelm
parents: 74561
diff changeset
    78
  val pretty_flexpair: Proof.context -> term * term -> Pretty.T list
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
    79
  type syntax
80073
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
    80
  val cache_persistent: bool Unsynchronized.ref
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
    81
  val cache_syntax: syntax -> unit
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
    82
  val eq_syntax: syntax * syntax -> bool
69077
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
    83
  datatype approx = Prefix of string | Infix of {assoc: Printer.assoc, delim: string, pri: int}
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
    84
  val get_approx: syntax -> string -> approx option
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
    85
  val get_consts: syntax -> string -> string list
80739
60801e5fae26 tuned signature: more operations;
wenzelm
parents: 80073
diff changeset
    86
  val is_const: syntax -> string -> bool
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
    87
  val is_keyword: syntax -> string -> bool
42251
050cc12dd985 explicit Syntax.tokenize, Syntax.parse;
wenzelm
parents: 42247
diff changeset
    88
  val tokenize: syntax -> bool -> Symbol_Pos.T list -> Lexicon.token list
80991
2d07d2bbd8c6 clarified signature;
wenzelm
parents: 80897
diff changeset
    89
  val parse: syntax -> string -> Lexicon.token list -> Parser.tree list
42253
c539d3c9c023 more abstract syntax translation;
wenzelm
parents: 42251
diff changeset
    90
  val parse_ast_translation: syntax -> string -> (Proof.context -> Ast.ast list -> Ast.ast) option
42255
097c93dcd877 eliminated slightly odd Syntax.rep_syntax;
wenzelm
parents: 42254
diff changeset
    91
  val parse_rules: syntax -> string -> (Ast.ast * Ast.ast) list
42253
c539d3c9c023 more abstract syntax translation;
wenzelm
parents: 42251
diff changeset
    92
  val parse_translation: syntax -> string -> (Proof.context -> term list -> term) option
42254
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
    93
  val print_translation: syntax -> string ->
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
    94
    Proof.context -> typ -> term list -> term  (*exception Match*)
42255
097c93dcd877 eliminated slightly odd Syntax.rep_syntax;
wenzelm
parents: 42254
diff changeset
    95
  val print_rules: syntax -> string -> (Ast.ast * Ast.ast) list
42254
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
    96
  val print_ast_translation: syntax -> string ->
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
    97
    Proof.context -> Ast.ast list -> Ast.ast  (*exception Match*)
42255
097c93dcd877 eliminated slightly odd Syntax.rep_syntax;
wenzelm
parents: 42254
diff changeset
    98
  val prtabs: syntax -> Printer.prtabs
81176
c0522b2d3df6 clarified signature: more explicit Syntax.print_mode_tabs, depending on print_mode_value ();
wenzelm
parents: 81163
diff changeset
    99
  val print_mode_tabs: syntax -> Printer.prtab list
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   100
  type mode
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   101
  val mode_default: mode
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   102
  val mode_input: mode
42294
0f4372a2d2e4 simplified Pure syntax bootstrap;
wenzelm
parents: 42293
diff changeset
   103
  val empty_syntax: syntax
45632
b23c42b9f78a prefer Parser.make_gram over Parser.merge_gram, to approximate n-ary merges on theory import;
wenzelm
parents: 45490
diff changeset
   104
  val merge_syntax: syntax * syntax -> syntax
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   105
  val print_gram: syntax -> unit
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   106
  val print_trans: syntax -> unit
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   107
  val print_syntax: syntax -> unit
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   108
  val map_trrule: ('a -> 'b) -> 'a trrule -> 'b trrule
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   109
  val update_trfuns: Proof.context ->
42224
578a51fae383 discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents: 42223
diff changeset
   110
    (string * ((Proof.context -> Ast.ast list -> Ast.ast) * stamp)) list *
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   111
    (string * ((Proof.context -> term list -> term) * stamp)) list *
42247
12fe41a92cd5 typed_print_translation: discontinued show_sorts argument;
wenzelm
parents: 42245
diff changeset
   112
    (string * ((Proof.context -> 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
   113
    (string * ((Proof.context -> Ast.ast list -> Ast.ast) * stamp)) list -> syntax -> syntax
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   114
  val update_type_gram: Proof.context -> bool -> mode -> (string * typ * mixfix) list ->
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   115
    syntax -> syntax
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   116
  val update_const_gram: Proof.context -> bool -> string list ->
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   117
    mode -> (string * typ * mixfix) list -> syntax -> syntax
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   118
  val update_consts: Proof.context -> (string * string list) list -> syntax -> syntax
81590
e656c5edc352 clarified signature;
wenzelm
parents: 81589
diff changeset
   119
  val update_trrules: Proof.context -> bool -> Ast.ast trrule list -> syntax -> syntax
81116
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   120
  val get_polarity: Proof.context -> bool
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   121
  val set_polarity: bool -> Proof.context -> Proof.context
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   122
  val set_polarity_generic: bool -> Context.generic -> Context.generic
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   123
  val effective_polarity: Proof.context -> bool -> bool
42476
d0bc1268ef09 clarified auxiliary structure Lexicon.Syntax;
wenzelm
parents: 42408
diff changeset
   124
  val const: string -> term
d0bc1268ef09 clarified auxiliary structure Lexicon.Syntax;
wenzelm
parents: 42408
diff changeset
   125
  val free: string -> term
d0bc1268ef09 clarified auxiliary structure Lexicon.Syntax;
wenzelm
parents: 42408
diff changeset
   126
  val var: indexname -> term
2383
4127499d9b52 added extend_trfunsT;
wenzelm
parents: 2366
diff changeset
   127
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   128
12094
wenzelm
parents: 12073
diff changeset
   129
structure Syntax: SYNTAX =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   130
struct
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   131
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   132
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   133
(** inner syntax operations **)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   134
62897
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   135
(* operations *)
42382
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   136
81589
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
   137
datatype 'a trrule =
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
   138
  Parse_Rule of 'a * 'a |
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
   139
  Print_Rule of 'a * 'a |
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
   140
  Parse_Print_Rule of 'a * 'a;
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
   141
42382
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   142
type operations =
81589
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
   143
 {parse_trrule: Proof.context -> (string * string) trrule -> Ast.ast trrule,
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
   144
  parse_sort: Proof.context -> string -> sort,
42382
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   145
  parse_typ: Proof.context -> string -> typ,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   146
  parse_term: Proof.context -> string -> term,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   147
  parse_prop: Proof.context -> string -> term,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   148
  unparse_sort: Proof.context -> sort -> Pretty.T,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   149
  unparse_typ: Proof.context -> typ -> Pretty.T,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   150
  unparse_term: Proof.context -> term -> Pretty.T,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   151
  check_typs: Proof.context -> typ list -> typ list,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   152
  check_terms: Proof.context -> term list -> term list,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   153
  check_props: Proof.context -> term list -> term list,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   154
  uncheck_typs: Proof.context -> typ list -> typ list,
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   155
  uncheck_terms: Proof.context -> term list -> term list};
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   156
62897
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   157
structure Operations = Theory_Data
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   158
(
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   159
  type T = operations option;
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   160
  val empty = NONE;
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   161
  val merge = merge_options;
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   162
);
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   163
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   164
fun install_operations ops =
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   165
  Operations.map
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   166
    (fn NONE => SOME ops
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   167
      | SOME _ => raise Fail "Inner syntax operations already installed");
42382
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   168
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   169
fun operation which ctxt x =
62897
8093203f0b89 prefer regular context update, to allow continuous editing of Pure;
wenzelm
parents: 62752
diff changeset
   170
  (case Operations.get (Proof_Context.theory_of ctxt) of
42382
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   171
    NONE => raise Fail "Inner syntax operations not installed"
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   172
  | SOME ops => which ops ctxt x);
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   173
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   174
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   175
(* configuration options *)
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   176
69575
f77cc54f6d47 clarified signature: more types;
wenzelm
parents: 69078
diff changeset
   177
val root = Config.declare_string ("syntax_root", \<^here>) (K "any");
f77cc54f6d47 clarified signature: more types;
wenzelm
parents: 69078
diff changeset
   178
val ambiguity_warning = Config.declare_bool ("syntax_ambiguity_warning", \<^here>) (K true);
f77cc54f6d47 clarified signature: more types;
wenzelm
parents: 69078
diff changeset
   179
val ambiguity_limit = Config.declare_int ("syntax_ambiguity_limit", \<^here>) (K 10);
44069
d7c7ec248ef0 make syntax ambiguity warnings a config option
kleing
parents: 43731
diff changeset
   180
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   181
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   182
(* formal input *)
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   183
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   184
fun encode_input source =
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   185
  let
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   186
    val delimited = Input.is_delimited source;
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   187
    val pos = Input.pos_of source;
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   188
    val text = Input.text_of source;
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   189
  in XML.Elem (Markup.input delimited (Position.properties_of pos), [XML.Text text]) end;
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   190
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   191
val implode_input = encode_input #> YXML.string_of;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   192
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 52160
diff changeset
   193
local
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 52160
diff changeset
   194
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   195
fun input_range (XML.Elem ((name, props), _)) =
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   196
      if name = Markup.inputN
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58047
diff changeset
   197
      then (Markup.is_delimited props, Position.range_of_properties props)
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58047
diff changeset
   198
      else (false, Position.no_range)
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   199
  | input_range (XML.Text _) = (false, Position.no_range);
46849
36f392239b6a tuned signature;
wenzelm
parents: 46512
diff changeset
   200
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   201
fun input_source tree =
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   202
  let
39555
ccb223a4d49c added XML.content_of convenience -- cover XML.body, which is the general situation;
wenzelm
parents: 39510
diff changeset
   203
    val text = XML.content_of [tree];
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   204
    val (delimited, range) = input_range tree;
59064
a8bcb5a446c8 more abstract type Input.source;
wenzelm
parents: 58993
diff changeset
   205
  in Input.source delimited text range end;
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 52160
diff changeset
   206
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 52160
diff changeset
   207
in
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 52160
diff changeset
   208
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   209
fun read_input_pos str = #1 (#2 (input_range (YXML.parse str handle Fail msg => error msg)));
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   210
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   211
fun read_input str = input_source (YXML.parse str handle Fail msg => error msg);
43731
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   212
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   213
fun parse_input ctxt decode markup parse str =
43731
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   214
  let
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   215
    fun parse_tree tree =
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   216
      let
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   217
        val source = input_source tree;
59064
a8bcb5a446c8 more abstract type Input.source;
wenzelm
parents: 58993
diff changeset
   218
        val syms = Input.source_explode source;
a8bcb5a446c8 more abstract type Input.source;
wenzelm
parents: 58993
diff changeset
   219
        val pos = Input.pos_of source;
69971
4e98239aa083 clarified markup;
wenzelm
parents: 69589
diff changeset
   220
        val _ =
4e98239aa083 clarified markup;
wenzelm
parents: 69589
diff changeset
   221
          Context_Position.reports ctxt
4e98239aa083 clarified markup;
wenzelm
parents: 69589
diff changeset
   222
            [(pos, Markup.cartouche), (pos, markup (Input.is_delimited source))];
69589
e15f053a42d8 support for isabelle update -u inner_syntax_cartouches;
wenzelm
parents: 69576
diff changeset
   223
        val _ =
e15f053a42d8 support for isabelle update -u inner_syntax_cartouches;
wenzelm
parents: 69576
diff changeset
   224
          if Options.default_bool "update_inner_syntax_cartouches" then
e15f053a42d8 support for isabelle update -u inner_syntax_cartouches;
wenzelm
parents: 69576
diff changeset
   225
            Context_Position.report_text ctxt
e15f053a42d8 support for isabelle update -u inner_syntax_cartouches;
wenzelm
parents: 69576
diff changeset
   226
              pos Markup.update (cartouche (Symbol_Pos.content syms))
e15f053a42d8 support for isabelle update -u inner_syntax_cartouches;
wenzelm
parents: 69576
diff changeset
   227
          else ();
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58047
diff changeset
   228
      in parse (syms, pos) end;
43731
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   229
  in
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   230
    (case YXML.parse_body str handle Fail msg => error msg of
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   231
      body as [tree as XML.Elem ((name, _), _)] =>
59795
d453c69596cc clarified input source;
wenzelm
parents: 59064
diff changeset
   232
        if name = Markup.inputN then parse_tree tree else decode body
43731
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   233
    | [tree as XML.Text _] => parse_tree tree
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   234
    | body => decode body)
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   235
  end;
70072780e095 inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents: 43558
diff changeset
   236
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 52160
diff changeset
   237
end;
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 52160
diff changeset
   238
39135
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
(* (un)parsing *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   241
81589
fcf44ef51057 clarified signature and modules;
wenzelm
parents: 81588
diff changeset
   242
val parse_trrule = operation #parse_trrule;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   243
val parse_sort = operation #parse_sort;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   244
val parse_typ = operation #parse_typ;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   245
val parse_term = operation #parse_term;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   246
val parse_prop = operation #parse_prop;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   247
val unparse_sort = operation #unparse_sort;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   248
val unparse_typ = operation #unparse_typ;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   249
val unparse_term = operation #unparse_term;
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
45429
fd58cbf8cae3 tuned signature;
wenzelm
parents: 45423
diff changeset
   252
(* (un)checking *)
42382
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   253
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   254
val check_typs = operation #check_typs;
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   255
val check_terms = operation #check_terms;
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   256
val check_props = operation #check_props;
39135
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
val check_typ = singleton o check_typs;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   259
val check_term = singleton o check_terms;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   260
val check_prop = singleton o check_props;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   261
42382
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   262
val uncheck_typs = operation #uncheck_typs;
dcd983ee2c29 provide structure Syntax early (before structure Type), back-patch check/uncheck later;
wenzelm
parents: 42360
diff changeset
   263
val uncheck_terms = operation #uncheck_terms;
42402
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   264
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   265
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   266
(* derived operations for algebra of sorts *)
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   267
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   268
local
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   269
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   270
fun map_sort f S =
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   271
  (case f (TFree ("", S)) of
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   272
    TFree ("", S') => S'
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   273
  | _ => raise TYPE ("map_sort", [TFree ("", S)], []));
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   274
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   275
in
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   276
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42383
diff changeset
   277
val check_sort = map_sort o check_typ;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   278
val uncheck_sort = map_sort o singleton o uncheck_typs;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   279
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   280
end;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   281
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   282
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   283
val uncheck_classrel = map o singleton o uncheck_sort;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   284
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   285
fun unparse_classrel ctxt cs = Pretty.block (flat
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   286
  (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
   287
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   288
fun uncheck_arity ctxt (a, Ss, S) =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   289
  let
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   290
    val T = Type (a, replicate (length Ss) dummyT);
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   291
    val a' =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   292
      (case singleton (uncheck_typs ctxt) T of
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   293
        Type (a', _) => a'
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   294
      | T => raise TYPE ("uncheck_arity", [T], []));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   295
    val Ss' = map (uncheck_sort ctxt) Ss;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   296
    val S' = uncheck_sort ctxt S;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   297
  in (a', Ss', S') 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
fun unparse_arity ctxt (a, Ss, S) =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   300
  let
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   301
    val prtT = unparse_typ ctxt (Type (a, []));
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   302
    val dom =
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   303
      if null Ss then []
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   304
      else [Pretty.list "(" ")" (map (unparse_sort ctxt) Ss), Pretty.brk 1];
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   305
  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
   306
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   307
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   308
(* read = parse + check *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   309
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   310
fun read_sort ctxt = parse_sort ctxt #> check_sort ctxt;
46989
88b0a8052c75 added Syntax.read_typs;
wenzelm
parents: 46849
diff changeset
   311
88b0a8052c75 added Syntax.read_typs;
wenzelm
parents: 46849
diff changeset
   312
fun read_typs ctxt =
58993
302104d8366b prefer independent parallel map where user input is processed -- avoid non-deterministic feedback in error situations;
wenzelm
parents: 58978
diff changeset
   313
  grouped 10 Par_List.map_independent (parse_typ ctxt) #> check_typs ctxt;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   314
46989
88b0a8052c75 added Syntax.read_typs;
wenzelm
parents: 46849
diff changeset
   315
fun read_terms ctxt =
58993
302104d8366b prefer independent parallel map where user input is processed -- avoid non-deterministic feedback in error situations;
wenzelm
parents: 58978
diff changeset
   316
  grouped 10 Par_List.map_independent (parse_term ctxt) #> check_terms ctxt;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   317
46989
88b0a8052c75 added Syntax.read_typs;
wenzelm
parents: 46849
diff changeset
   318
fun read_props ctxt =
58993
302104d8366b prefer independent parallel map where user input is processed -- avoid non-deterministic feedback in error situations;
wenzelm
parents: 58978
diff changeset
   319
  grouped 10 Par_List.map_independent (parse_prop ctxt) #> check_props ctxt;
46989
88b0a8052c75 added Syntax.read_typs;
wenzelm
parents: 46849
diff changeset
   320
88b0a8052c75 added Syntax.read_typs;
wenzelm
parents: 46849
diff changeset
   321
val read_typ = singleton o read_typs;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   322
val read_term = singleton o read_terms;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   323
val read_prop = singleton o read_props;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   324
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42298
diff changeset
   325
val read_sort_global = read_sort o Proof_Context.init_global;
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42298
diff changeset
   326
val read_typ_global = read_typ o Proof_Context.init_global;
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42298
diff changeset
   327
val read_term_global = read_term o Proof_Context.init_global;
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42298
diff changeset
   328
val read_prop_global = read_prop o Proof_Context.init_global;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   329
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   330
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   331
(* pretty = uncheck + unparse *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   332
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   333
fun pretty_term ctxt = singleton (uncheck_terms ctxt) #> unparse_term ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   334
fun pretty_typ ctxt = singleton (uncheck_typs ctxt) #> unparse_typ ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   335
fun pretty_sort ctxt = uncheck_sort ctxt #> unparse_sort ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   336
fun pretty_classrel ctxt = uncheck_classrel ctxt #> unparse_classrel ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   337
fun pretty_arity ctxt = uncheck_arity ctxt #> unparse_arity ctxt;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   338
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   339
val string_of_term = Pretty.string_of oo pretty_term;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   340
val string_of_typ = Pretty.string_of oo pretty_typ;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   341
val string_of_sort = Pretty.string_of oo pretty_sort;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   342
val string_of_classrel = Pretty.string_of oo pretty_classrel;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   343
val string_of_arity = Pretty.string_of oo pretty_arity;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   344
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   345
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   346
(* global pretty printing *)
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   347
69575
f77cc54f6d47 clarified signature: more types;
wenzelm
parents: 69078
diff changeset
   348
val pretty_global = Config.declare_bool ("Syntax.pretty_global", \<^here>) (K false);
69576
cfac69e7b962 tuned signature;
wenzelm
parents: 69575
diff changeset
   349
val is_pretty_global = Config.apply pretty_global;
39508
dfacdb01e1ec simplified some internal flags using Config.T instead of full-blown Proof_Data;
wenzelm
parents: 39507
diff changeset
   350
val set_pretty_global = Config.put pretty_global;
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42298
diff changeset
   351
val init_pretty_global = set_pretty_global true o Proof_Context.init_global;
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 59841
diff changeset
   352
val init_pretty = Context.cases init_pretty_global I;
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   353
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   354
val pretty_term_global = pretty_term o init_pretty_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   355
val pretty_typ_global = pretty_typ o init_pretty_global;
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   356
val pretty_sort_global = pretty_sort o init_pretty_global;
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
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
   359
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
   360
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
   361
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   362
70443
a21a96eda033 clarified modules;
wenzelm
parents: 69971
diff changeset
   363
(* derived operations *)
a21a96eda033 clarified modules;
wenzelm
parents: 69971
diff changeset
   364
76082
1202e29798a4 tuned signature;
wenzelm
parents: 74561
diff changeset
   365
fun pretty_flexpair ctxt (t, u) =
70443
a21a96eda033 clarified modules;
wenzelm
parents: 69971
diff changeset
   366
  [pretty_term ctxt t, Pretty.str " \<equiv>\<^sup>?", Pretty.brk 1, pretty_term ctxt u];
a21a96eda033 clarified modules;
wenzelm
parents: 69971
diff changeset
   367
a21a96eda033 clarified modules;
wenzelm
parents: 69971
diff changeset
   368
39135
6f5f64542405 structure Syntax: define "interfaces" before actual implementations;
wenzelm
parents: 39126
diff changeset
   369
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   370
(** keywords **)
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   371
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   372
abstype keywords = Keywords of Symset.T * Scan.lexicon lazy
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   373
with
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   374
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   375
val empty_keywords =
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   376
  Keywords (Symset.empty, Lazy.value Scan.empty_lexicon);
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   377
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   378
fun make_keywords set =
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   379
  let fun lex () = Scan.build_lexicon (set |> Symset.fold (Scan.extend_lexicon o Symbol.explode))
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   380
  in Keywords (set, Lazy.lazy lex) end;
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   381
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   382
fun add_keywords s (keywords as Keywords (set, lex)) =
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   383
  if Symset.member set s then keywords
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   384
  else
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   385
    let
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   386
      val set' = Symset.insert s set;
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   387
      val lex' = Lazy.map_finished (fn x => Scan.extend_lexicon (Symbol.explode s) x) lex;
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   388
    in Keywords (set', lex') end;
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   389
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   390
fun merge_keywords (keywords1 as Keywords (set1, lex1), keywords2 as Keywords (set2, lex2)) =
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   391
  if pointer_eq (keywords1, keywords2) then keywords1
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   392
  else if Symset.is_empty set1 then keywords2
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   393
  else if Symset.is_empty set2 then keywords1
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   394
  else if Symset.subset (set1, set2) then keywords2
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   395
  else if Symset.subset (set2, set1) then keywords1
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   396
  else
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   397
    let
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   398
      val set' = Symset.merge (set1, set2);
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   399
      val lex' = Lazy.value (Scan.merge_lexicons (apply2 Lazy.force (lex1, lex2)));
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   400
    in Keywords (set', lex') end;
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   401
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   402
fun member_keywords (Keywords (set, _)) = Symset.member set;
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   403
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   404
fun dest_keywords (Keywords (set, _)) = sort_strings (Symset.dest set);
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   405
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   406
fun tokenize_keywords (Keywords (_, lex)) = Lexicon.tokenize (Lazy.force lex);
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   407
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   408
end;
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   409
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   410
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   411
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   412
(** tables of translation functions **)
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   413
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   414
(* parse (ast) translations *)
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   415
23655
d2d1138e0ddc replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents: 23631
diff changeset
   416
fun err_dup_trfun name c =
d2d1138e0ddc replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents: 23631
diff changeset
   417
  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
   418
42253
c539d3c9c023 more abstract syntax translation;
wenzelm
parents: 42251
diff changeset
   419
fun lookup_tr tab c = Option.map fst (Symtab.lookup tab c);
c539d3c9c023 more abstract syntax translation;
wenzelm
parents: 42251
diff changeset
   420
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   421
fun remove_trtab trfuns = fold (Symtab.remove Syntax_Ext.eq_trfun) trfuns;
21536
f119c730f509 extend_trtab: allow identical trfuns to be overwritten;
wenzelm
parents: 20784
diff changeset
   422
29004
a5a91f387791 removed Table.extend, NameSpace.extend_table
haftmann
parents: 28904
diff changeset
   423
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
   424
  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
   425
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   426
fun merge_trtabs name tab1 tab2 = Symtab.merge Syntax_Ext.eq_trfun (tab1, tab2)
23655
d2d1138e0ddc replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents: 23631
diff changeset
   427
  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
   428
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   429
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   430
(* print (ast) translations *)
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   431
42254
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   432
fun apply_tr' tab c ctxt T args =
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   433
  let
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   434
    val fns = map fst (Symtab.lookup_list tab c);
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   435
    fun app_first [] = raise Match
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   436
      | app_first (f :: fs) = f ctxt T args handle Match => app_first fs;
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   437
  in app_first fns end;
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   438
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   439
fun apply_ast_tr' tab c ctxt args =
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   440
  let
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   441
    val fns = map fst (Symtab.lookup_list tab c);
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   442
    fun app_first [] = raise Match
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   443
      | app_first (f :: fs) = f ctxt args handle Match => app_first fs;
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   444
  in app_first fns end;
42253
c539d3c9c023 more abstract syntax translation;
wenzelm
parents: 42251
diff changeset
   445
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   446
fun update_tr'tab trfuns = fold_rev (Symtab.update_list Syntax_Ext.eq_trfun) trfuns;
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   447
fun remove_tr'tab trfuns = fold (Symtab.remove_list Syntax_Ext.eq_trfun) trfuns;
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   448
fun merge_tr'tabs tab1 tab2 = Symtab.merge_list Syntax_Ext.eq_trfun (tab1, tab2);
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   449
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   450
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   451
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   452
(** tables of translation rules **)
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   453
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   454
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
   455
81005
7846fa2c1c1e clarified order for 'print_syntax' command;
wenzelm
parents: 80991
diff changeset
   456
fun dest_ruletab tab = Symtab.dest tab |> sort_by #1 |> maps #2;
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   457
81152
ece9fe9bf440 clarified signature;
wenzelm
parents: 81116
diff changeset
   458
val update_ruletab = fold_rev (fn r => Symtab.update_list (op =) (Ast.rule_index r, r));
ece9fe9bf440 clarified signature;
wenzelm
parents: 81116
diff changeset
   459
val remove_ruletab = fold (fn r => Symtab.remove_list (op =) (Ast.rule_index r, r));
18931
427df66052a1 TableFun: renamed xxx_multi to xxx_list;
wenzelm
parents: 18921
diff changeset
   460
fun merge_ruletabs tab1 tab2 = Symtab.merge_list (op =) (tab1, tab2);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   461
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   462
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   463
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   464
(** datatype syntax **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   465
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   466
datatype syntax =
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   467
  Syntax of {
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   468
    input: Syntax_Ext.xprod list,
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   469
    keywords: keywords,
78009
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   470
    gram: Parser.gram Synchronized.cache,
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   471
    consts: unit Graph.T,
2913
ce271fa4d8e2 fixed diagnostic output of print modes;
wenzelm
parents: 2706
diff changeset
   472
    prmodes: string list,
21772
7c7ade4f537b advanced translation functions: Proof.context;
wenzelm
parents: 21731
diff changeset
   473
    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
   474
    parse_ruletab: ruletab,
21772
7c7ade4f537b advanced translation functions: Proof.context;
wenzelm
parents: 21731
diff changeset
   475
    parse_trtab: ((Proof.context -> term list -> term) * stamp) Symtab.table,
42247
12fe41a92cd5 typed_print_translation: discontinued show_sorts argument;
wenzelm
parents: 42245
diff changeset
   476
    print_trtab: ((Proof.context -> 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
   477
    print_ruletab: ruletab,
21772
7c7ade4f537b advanced translation functions: Proof.context;
wenzelm
parents: 21731
diff changeset
   478
    print_ast_trtab: ((Proof.context -> Ast.ast list -> Ast.ast) * stamp) list Symtab.table,
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   479
    prtabs: Printer.prtabs} * stamp;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   480
80073
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
   481
val cache_persistent = Unsynchronized.ref false;
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
   482
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
   483
fun cache_eval (gram: Parser.gram Synchronized.cache) =
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
   484
  Synchronized.cache_eval {persistent = ! cache_persistent} gram;
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
   485
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
   486
fun cache_syntax (Syntax ({gram, ...}, _)) = ignore (cache_eval gram);
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
   487
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   488
fun eq_syntax (Syntax (_, s1), Syntax (_, s2)) = s1 = s2;
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   489
69077
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
   490
datatype approx = Prefix of string | Infix of {assoc: Printer.assoc, delim: string, pri: int};
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
   491
fun get_approx (Syntax ({prtabs, ...}, _)) c =
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
   492
  (case Printer.get_infix prtabs c of
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
   493
    SOME infx => SOME (Infix infx)
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
   494
  | NONE =>
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
   495
      (case Printer.get_prefix prtabs c of
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
   496
        SOME prfx => SOME prfx
69078
a5e904112ea9 more accurate syntax: e.g. avoid brackets as prefix notation;
wenzelm
parents: 69077
diff changeset
   497
      | NONE => Printer.get_binder prtabs c)
69077
11529ae45786 more approximative prefix syntax, including binder;
wenzelm
parents: 69071
diff changeset
   498
      |> Option.map Prefix);
69003
a015f1d3ba0c export plain infix syntax;
wenzelm
parents: 69002
diff changeset
   499
80767
079fe4292526 clarified Syntax.is_const (after 43c4817375bf): exclude logical consts from 'syntax_consts' / 'syntax_types', e.g. relevant for @{syntax_const} antiquotation;
wenzelm
parents: 80751
diff changeset
   500
fun is_const (Syntax ({consts, ...}, _)) c =
079fe4292526 clarified Syntax.is_const (after 43c4817375bf): exclude logical consts from 'syntax_consts' / 'syntax_types', e.g. relevant for @{syntax_const} antiquotation;
wenzelm
parents: 80751
diff changeset
   501
  Graph.defined consts c andalso not (Lexicon.is_marked c);
079fe4292526 clarified Syntax.is_const (after 43c4817375bf): exclude logical consts from 'syntax_consts' / 'syntax_types', e.g. relevant for @{syntax_const} antiquotation;
wenzelm
parents: 80751
diff changeset
   502
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   503
fun is_keyword (Syntax ({keywords, ...}, _)) = member_keywords keywords;
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   504
fun tokenize (Syntax ({keywords, ...}, _)) = tokenize_keywords keywords;
80073
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
   505
fun parse (Syntax ({gram, ...}, _)) = Parser.parse (cache_eval gram);
14687
e089757b952a added is_keyword;
wenzelm
parents: 14648
diff changeset
   506
42253
c539d3c9c023 more abstract syntax translation;
wenzelm
parents: 42251
diff changeset
   507
fun parse_ast_translation (Syntax ({parse_ast_trtab, ...}, _)) = lookup_tr parse_ast_trtab;
c539d3c9c023 more abstract syntax translation;
wenzelm
parents: 42251
diff changeset
   508
fun parse_translation (Syntax ({parse_trtab, ...}, _)) = lookup_tr parse_trtab;
42255
097c93dcd877 eliminated slightly odd Syntax.rep_syntax;
wenzelm
parents: 42254
diff changeset
   509
fun parse_rules (Syntax ({parse_ruletab, ...}, _)) = Symtab.lookup_list parse_ruletab;
42254
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   510
fun print_translation (Syntax ({print_trtab, ...}, _)) = apply_tr' print_trtab;
42255
097c93dcd877 eliminated slightly odd Syntax.rep_syntax;
wenzelm
parents: 42254
diff changeset
   511
fun print_rules (Syntax ({print_ruletab, ...}, _)) = Symtab.lookup_list print_ruletab;
42254
f427c9890c46 more abstract print translation;
wenzelm
parents: 42253
diff changeset
   512
fun print_ast_translation (Syntax ({print_ast_trtab, ...}, _)) = apply_ast_tr' print_ast_trtab;
42253
c539d3c9c023 more abstract syntax translation;
wenzelm
parents: 42251
diff changeset
   513
42255
097c93dcd877 eliminated slightly odd Syntax.rep_syntax;
wenzelm
parents: 42254
diff changeset
   514
fun prtabs (Syntax ({prtabs, ...}, _)) = prtabs;
81176
c0522b2d3df6 clarified signature: more explicit Syntax.print_mode_tabs, depending on print_mode_value ();
wenzelm
parents: 81163
diff changeset
   515
val print_mode_tabs = Printer.print_mode_tabs o prtabs;
42255
097c93dcd877 eliminated slightly odd Syntax.rep_syntax;
wenzelm
parents: 42254
diff changeset
   516
20784
eece9aaaf352 Syntax.mode;
wenzelm
parents: 20664
diff changeset
   517
type mode = string * bool;
24970
050afeec89a7 renamed Syntax.XXX_mode to Syntax.mode_XXX;
wenzelm
parents: 24923
diff changeset
   518
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
   519
val mode_input = (Print_Mode.input, true);
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   520
78009
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   521
fun extend_gram new_xprods old_xprods gram =
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   522
  Synchronized.cache (fn () =>
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   523
    Parser.make_gram new_xprods old_xprods (Synchronized.cache_peek gram));
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   524
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   525
fun new_gram new_xprods =
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   526
  Synchronized.cache (fn () => Parser.make_gram new_xprods [] NONE);
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   527
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   528
80742
179a24b40200 clarified signature;
wenzelm
parents: 80739
diff changeset
   529
(* syntax consts *)
179a24b40200 clarified signature;
wenzelm
parents: 80739
diff changeset
   530
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   531
fun err_cyclic_consts css =
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   532
  error (cat_lines (map (fn cs =>
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   533
    "Cycle in syntax consts: " ^ (space_implode " \<leadsto> " (map quote cs))) css));
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   534
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   535
fun get_consts (Syntax ({consts, ...}, _)) c =
81163
wenzelm
parents: 81152
diff changeset
   536
  if Graph.defined consts c
wenzelm
parents: 81152
diff changeset
   537
  then filter (Graph.is_minimal consts) (Graph.all_preds consts [c])
80751
c7f7e58509af more accurate markup (amending 43c4817375bf): only consider primitive syntax consts, avoid extra Markup.intensify e.g. due to "\<^const>Pure.all_binder";
wenzelm
parents: 80748
diff changeset
   538
  else [c];
80742
179a24b40200 clarified signature;
wenzelm
parents: 80739
diff changeset
   539
81592
775dc5903ed5 tuned signature: avoid shadowing;
wenzelm
parents: 81590
diff changeset
   540
fun add_consts (c, bs) consts =
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   541
  if c = "" orelse (null bs andalso (Lexicon.is_marked c orelse Graph.defined consts c))
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   542
  then consts
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   543
  else
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   544
    consts
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   545
    |> fold (fn a => Graph.default_node (a, ())) (c :: bs)
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   546
    |> Graph.add_deps_acyclic (c, bs)
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   547
    handle Graph.CYCLES css => err_cyclic_consts css;
80742
179a24b40200 clarified signature;
wenzelm
parents: 80739
diff changeset
   548
179a24b40200 clarified signature;
wenzelm
parents: 80739
diff changeset
   549
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   550
(* empty_syntax *)
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   551
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   552
val empty_syntax = Syntax
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   553
  ({input = [],
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   554
    keywords = empty_keywords,
78009
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   555
    gram = Synchronized.cache (fn () => Parser.empty_gram),
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   556
    consts = Graph.empty,
2913
ce271fa4d8e2 fixed diagnostic output of print modes;
wenzelm
parents: 2706
diff changeset
   557
    prmodes = [],
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   558
    parse_ast_trtab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   559
    parse_ruletab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   560
    parse_trtab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   561
    print_trtab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   562
    print_ruletab = Symtab.empty,
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   563
    print_ast_trtab = Symtab.empty,
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   564
    prtabs = Printer.empty_prtabs}, stamp ());
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   565
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   566
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   567
(* update_syntax *)
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   568
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   569
fun update_syntax (mode, inout) syn_ext (Syntax (tabs, _)) =
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   570
  let
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   571
    val {input, keywords, gram, consts = consts1, prmodes, parse_ast_trtab, parse_ruletab,
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   572
      parse_trtab, print_trtab, print_ruletab, print_ast_trtab, prtabs} = tabs;
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   573
    val Syntax_Ext.Syn_Ext {xprods, consts = consts2, parse_ast_translation,
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   574
      parse_rules, parse_translation, print_translation, print_rules,
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   575
      print_ast_translation} = syn_ext;
36208
74c5e6e3c1d3 update_syntax: add new productions only once, to allow repeated local notation, for example;
wenzelm
parents: 35668
diff changeset
   576
    val new_xprods =
74c5e6e3c1d3 update_syntax: add new productions only once, to allow repeated local notation, for example;
wenzelm
parents: 35668
diff changeset
   577
      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
   578
    fun if_inout xs = if inout then xs else [];
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   579
  in
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   580
    Syntax
36208
74c5e6e3c1d3 update_syntax: add new productions only once, to allow repeated local notation, for example;
wenzelm
parents: 35668
diff changeset
   581
    ({input = new_xprods @ input,
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   582
      keywords = (fold o Syntax_Ext.fold_delims) add_keywords new_xprods keywords,
78009
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   583
      gram = if null new_xprods then gram else extend_gram new_xprods input gram,
81592
775dc5903ed5 tuned signature: avoid shadowing;
wenzelm
parents: 81590
diff changeset
   584
      consts = fold add_consts consts2 consts1,
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   585
      prmodes = insert (op =) mode prmodes,
167
128e122acc89 added (partial) extend_tables;
wenzelm
parents: 144
diff changeset
   586
      parse_ast_trtab =
25394
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   587
        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
   588
      parse_ruletab = update_ruletab (if_inout parse_rules) parse_ruletab,
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   589
      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
   590
      print_trtab = update_tr'tab print_translation print_trtab,
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   591
      print_ruletab = update_ruletab print_rules print_ruletab,
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   592
      print_ast_trtab = update_tr'tab print_ast_translation print_ast_trtab,
db25c98f32e1 syntax operations: turned extend'' into update'' (absorb duplicates);
wenzelm
parents: 25387
diff changeset
   593
      prtabs = Printer.update_prtabs mode xprods prtabs}, stamp ())
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   594
  end;
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   595
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   596
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   597
(* remove_syntax *)
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   598
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   599
fun remove_syntax (mode, inout) syn_ext (Syntax (tabs, _)) =
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   600
  let
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   601
    val Syntax_Ext.Syn_Ext {xprods, consts = _, parse_ast_translation, parse_rules,
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   602
      parse_translation, print_translation, print_rules, print_ast_translation} = syn_ext;
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   603
    val {input, keywords, gram, consts, prmodes, parse_ast_trtab, parse_ruletab,
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   604
      parse_trtab, print_trtab, print_ruletab, print_ast_trtab, prtabs} = tabs;
19300
7689f81f8996 subtract (op =);
wenzelm
parents: 19262
diff changeset
   605
    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
   606
    val changed = length input <> length input';
19546
00d5c7c7ce07 extend/remove_syntax: observe inout flag for translations, too;
wenzelm
parents: 19482
diff changeset
   607
    fun if_inout xs = if inout then xs else [];
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   608
  in
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   609
    Syntax
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   610
    ({input = input',
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   611
      keywords =
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   612
        if changed
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   613
        then make_keywords (Symset.build (input' |> (fold o Syntax_Ext.fold_delims) Symset.insert))
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   614
        else keywords,
78009
f906f7f83dae performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents: 76082
diff changeset
   615
      gram = if changed then new_gram input' else gram,
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   616
      consts = consts,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   617
      prmodes = prmodes,
19546
00d5c7c7ce07 extend/remove_syntax: observe inout flag for translations, too;
wenzelm
parents: 19482
diff changeset
   618
      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
   619
      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
   620
      parse_trtab = remove_trtab (if_inout parse_translation) parse_trtab,
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   621
      print_trtab = remove_tr'tab print_translation print_trtab,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   622
      print_ruletab = remove_ruletab print_rules print_ruletab,
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   623
      print_ast_trtab = remove_tr'tab print_ast_translation print_ast_trtab,
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   624
      prtabs = Printer.remove_prtabs mode xprods prtabs}, stamp ())
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   625
  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
   626
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   627
45632
b23c42b9f78a prefer Parser.make_gram over Parser.merge_gram, to approximate n-ary merges on theory import;
wenzelm
parents: 45490
diff changeset
   628
(* merge_syntax *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   629
45632
b23c42b9f78a prefer Parser.make_gram over Parser.merge_gram, to approximate n-ary merges on theory import;
wenzelm
parents: 45490
diff changeset
   630
fun merge_syntax (Syntax (tabs1, _), Syntax (tabs2, _)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   631
  let
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   632
    val {input = input1, keywords = keywords1, gram = gram1, consts = consts1,
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   633
      prmodes = prmodes1, parse_ast_trtab = parse_ast_trtab1, parse_ruletab = parse_ruletab1,
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   634
      parse_trtab = parse_trtab1, print_trtab = print_trtab1, print_ruletab = print_ruletab1,
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   635
      print_ast_trtab = print_ast_trtab1, prtabs = prtabs1} = tabs1;
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   636
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   637
    val {input = input2, keywords = keywords2, gram = gram2, consts = consts2,
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   638
      prmodes = prmodes2, parse_ast_trtab = parse_ast_trtab2, parse_ruletab = parse_ruletab2,
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   639
      parse_trtab = parse_trtab2, print_trtab = print_trtab2, print_ruletab = print_ruletab2,
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   640
      print_ast_trtab = print_ast_trtab2, prtabs = prtabs2} = tabs2;
45632
b23c42b9f78a prefer Parser.make_gram over Parser.merge_gram, to approximate n-ary merges on theory import;
wenzelm
parents: 45490
diff changeset
   641
b23c42b9f78a prefer Parser.make_gram over Parser.merge_gram, to approximate n-ary merges on theory import;
wenzelm
parents: 45490
diff changeset
   642
    val (input', gram') =
70526
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   643
      if pointer_eq (input1, input2) then (input1, gram1)
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   644
      else
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   645
        (case subtract (op =) input1 input2 of
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   646
          [] => (input1, gram1)
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   647
        | new_xprods2 =>
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   648
            if subset (op =) (input1, input2) then (input2, gram2)
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   649
            else
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   650
              let
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   651
                val input' = new_xprods2 @ input1;
78013
f5b67198b019 backed out changeset 6c2494750a4e: it hardly makes a difference for heap size, but crashes arm64_32-darwin for unknown reasons;
wenzelm
parents: 78010
diff changeset
   652
                val gram' = new_gram input';
70526
bb18c7ac9cff minor performance tuning;
wenzelm
parents: 70443
diff changeset
   653
              in (input', gram') end);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   654
  in
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   655
    Syntax
45632
b23c42b9f78a prefer Parser.make_gram over Parser.merge_gram, to approximate n-ary merges on theory import;
wenzelm
parents: 45490
diff changeset
   656
    ({input = input',
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   657
      keywords = merge_keywords (keywords1, keywords2),
45632
b23c42b9f78a prefer Parser.make_gram over Parser.merge_gram, to approximate n-ary merges on theory import;
wenzelm
parents: 45490
diff changeset
   658
      gram = gram',
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   659
      consts =
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   660
        Graph.merge_acyclic (op =) (consts1, consts2)
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   661
          handle Graph.CYCLES css => err_cyclic_consts css,
18921
f47c46d7d654 canonical member/insert/merge;
wenzelm
parents: 18857
diff changeset
   662
      prmodes = Library.merge (op =) (prmodes1, prmodes2),
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   663
      parse_ast_trtab =
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   664
        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
   665
      parse_ruletab = merge_ruletabs parse_ruletab1 parse_ruletab2,
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   666
      parse_trtab = merge_trtabs "parse translation" parse_trtab1 parse_trtab2,
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   667
      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
   668
      print_ruletab = merge_ruletabs print_ruletab1 print_ruletab2,
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   669
      print_ast_trtab = merge_tr'tabs print_ast_trtab1 print_ast_trtab2,
81176
c0522b2d3df6 clarified signature: more explicit Syntax.print_mode_tabs, depending on print_mode_value ();
wenzelm
parents: 81163
diff changeset
   670
      prtabs = Printer.merge_prtabs (prtabs1, prtabs2)}, stamp ())
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   671
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   672
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   673
4887
bbc13af86c16 added trfun_names;
wenzelm
parents: 4703
diff changeset
   674
15759
wenzelm
parents: 15755
diff changeset
   675
(** print syntax **)
wenzelm
parents: 15755
diff changeset
   676
wenzelm
parents: 15755
diff changeset
   677
local
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   678
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   679
fun pretty_strs_qs name strs =
28840
wenzelm
parents: 28413
diff changeset
   680
  Pretty.strs (name :: map quote (sort_strings strs));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   681
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   682
fun pretty_gram (Syntax (tabs, _)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   683
  let
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   684
    val {keywords, prmodes, gram, ...} = tabs;
28375
c879d88d038a eliminated polymorphic equality;
wenzelm
parents: 27889
diff changeset
   685
    val prmodes' = sort_strings (filter_out (fn s => s = "") prmodes);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   686
  in
67513
731b1ad6759a tuned output;
wenzelm
parents: 66167
diff changeset
   687
    [Pretty.block (Pretty.breaks
81588
81a72b7fcb0c minor performance tuning: avoid excessive Library.insert and Symbol.explode operations;
wenzelm
parents: 81176
diff changeset
   688
      (Pretty.str "lexicon:" :: map (Pretty.quote o Pretty.keyword1) (dest_keywords keywords))),
80073
40f5ddeda2b4 further performance tuning (after f906f7f83dae): interactive mode is closer to earlier approach with Lazy.value, which could be relevant with rather complex grammars under tight memory situations;
wenzelm
parents: 78013
diff changeset
   689
      Pretty.big_list "productions:" (Parser.pretty_gram (cache_eval gram)),
8720
840c75ab2a7f Pretty.chunks;
wenzelm
parents: 7944
diff changeset
   690
      pretty_strs_qs "print modes:" prmodes']
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   691
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   692
17079
ce9663987126 added eq_syntax;
wenzelm
parents: 16716
diff changeset
   693
fun pretty_trans (Syntax (tabs, _)) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   694
  let
42298
d622145603ee more accurate markup for syntax consts, notably binders which point back to the original logical entity;
wenzelm
parents: 42297
diff changeset
   695
    fun pretty_tab name tab =
d622145603ee more accurate markup for syntax consts, notably binders which point back to the original logical entity;
wenzelm
parents: 42297
diff changeset
   696
      pretty_strs_qs name (sort_strings (Symtab.keys tab));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   697
260
967813b8a7bf added simple_string_of_typ, simple_pprint_typ;
wenzelm
parents: 237
diff changeset
   698
    fun pretty_ruletab name tab =
51580
64ef8260dc60 Pretty.item markup for improved readability of lists of items;
wenzelm
parents: 50201
diff changeset
   699
      Pretty.big_list name (map (Pretty.item o single o Ast.pretty_rule) (dest_ruletab tab));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   700
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 175
diff changeset
   701
    val {consts, parse_ast_trtab, parse_ruletab, parse_trtab, print_trtab,
42268
01401287c3f7 discontinued user-defined token translations;
wenzelm
parents: 42264
diff changeset
   702
      print_ruletab, print_ast_trtab, ...} = tabs;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   703
  in
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   704
   [pretty_strs_qs "consts:" (sort_strings (Graph.keys consts)),
42298
d622145603ee more accurate markup for syntax consts, notably binders which point back to the original logical entity;
wenzelm
parents: 42297
diff changeset
   705
    pretty_tab "parse_ast_translation:" parse_ast_trtab,
d622145603ee more accurate markup for syntax consts, notably binders which point back to the original logical entity;
wenzelm
parents: 42297
diff changeset
   706
    pretty_ruletab "parse_rules:" parse_ruletab,
d622145603ee more accurate markup for syntax consts, notably binders which point back to the original logical entity;
wenzelm
parents: 42297
diff changeset
   707
    pretty_tab "parse_translation:" parse_trtab,
d622145603ee more accurate markup for syntax consts, notably binders which point back to the original logical entity;
wenzelm
parents: 42297
diff changeset
   708
    pretty_tab "print_translation:" print_trtab,
d622145603ee more accurate markup for syntax consts, notably binders which point back to the original logical entity;
wenzelm
parents: 42297
diff changeset
   709
    pretty_ruletab "print_rules:" print_ruletab,
d622145603ee more accurate markup for syntax consts, notably binders which point back to the original logical entity;
wenzelm
parents: 42297
diff changeset
   710
    pretty_tab "print_ast_translation:" print_ast_trtab]
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   711
  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   712
15759
wenzelm
parents: 15755
diff changeset
   713
in
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   714
56334
6b3739fee456 some shortcuts for chunks, which sometimes avoid bulky string output;
wenzelm
parents: 55829
diff changeset
   715
fun print_gram syn = Pretty.writeln_chunks (pretty_gram syn);
6b3739fee456 some shortcuts for chunks, which sometimes avoid bulky string output;
wenzelm
parents: 55829
diff changeset
   716
fun print_trans syn = Pretty.writeln_chunks (pretty_trans syn);
6b3739fee456 some shortcuts for chunks, which sometimes avoid bulky string output;
wenzelm
parents: 55829
diff changeset
   717
fun print_syntax syn = Pretty.writeln_chunks (pretty_gram syn @ pretty_trans syn);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   718
15759
wenzelm
parents: 15755
diff changeset
   719
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   720
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   721
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   722
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   723
(** prepare translation rules **)
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   724
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   725
(* rules *)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   726
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   727
fun map_trrule f (Parse_Rule (x, y)) = Parse_Rule (f x, f y)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   728
  | map_trrule f (Print_Rule (x, y)) = Print_Rule (f x, f y)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   729
  | 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
   730
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   731
fun parse_rule (Parse_Rule pats) = SOME pats
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   732
  | parse_rule (Print_Rule _) = NONE
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   733
  | parse_rule (Parse_Print_Rule pats) = SOME pats;
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   734
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   735
fun print_rule (Parse_Rule _) = NONE
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   736
  | print_rule (Print_Rule pats) = SOME (swap pats)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   737
  | print_rule (Parse_Print_Rule pats) = SOME (swap pats);
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   738
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   739
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   740
(* check_rules *)
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   741
19262
b98b48496819 added remove_trrules(_i);
wenzelm
parents: 19046
diff changeset
   742
local
b98b48496819 added remove_trrules(_i);
wenzelm
parents: 19046
diff changeset
   743
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 42044
diff changeset
   744
fun check_rule rule =
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   745
  (case Ast.rule_error rule of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   746
    SOME msg =>
1158
96804ce95516 added extend_trrules_i;
wenzelm
parents: 1147
diff changeset
   747
      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
   748
        Pretty.string_of (Ast.pretty_rule rule))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   749
  | NONE => rule);
888
3a1de9454d13 improved read_xrules: patterns no longer read twice;
wenzelm
parents: 882
diff changeset
   750
42204
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   751
in
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   752
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   753
fun check_rules rules =
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   754
 (map check_rule (map_filter parse_rule rules),
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   755
  map check_rule (map_filter print_rule rules));
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   756
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   757
end;
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   758
b3277168c1e7 added Position.reports convenience;
wenzelm
parents: 42134
diff changeset
   759
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents: 0
diff changeset
   760
19262
b98b48496819 added remove_trrules(_i);
wenzelm
parents: 19046
diff changeset
   761
(** modify syntax **)
383
fcea89074e4c added incremental extension functions: extend_log_types, extend_type_gram,
wenzelm
parents: 330
diff changeset
   762
81116
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   763
(* updates *)
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   764
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   765
fun update_trfuns ctxt = update_syntax mode_default o Syntax_Ext.syn_ext_trfuns ctxt;
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   766
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   767
fun update_type_gram ctxt add prmode decls =
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   768
  (if add then update_syntax else remove_syntax) prmode (Mixfix.syn_ext_types ctxt decls);
25387
d9ab1e3a8acb added update_const_gram (avoids duplicates);
wenzelm
parents: 25122
diff changeset
   769
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   770
fun update_const_gram ctxt add logical_types prmode decls =
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   771
  (if add then update_syntax else remove_syntax) prmode
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   772
    (Mixfix.syn_ext_consts ctxt logical_types decls);
15755
50ac97ebe7d8 expect translations functions to be stamped already;
wenzelm
parents: 15574
diff changeset
   773
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80767
diff changeset
   774
val update_consts = update_syntax mode_default oo Syntax_Ext.syn_ext_consts;
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80742
diff changeset
   775
81590
e656c5edc352 clarified signature;
wenzelm
parents: 81589
diff changeset
   776
fun update_trrules ctxt add =
e656c5edc352 clarified signature;
wenzelm
parents: 81589
diff changeset
   777
  (if add then update_syntax else remove_syntax) mode_default o
e656c5edc352 clarified signature;
wenzelm
parents: 81589
diff changeset
   778
    Syntax_Ext.syn_ext_rules ctxt o check_rules;
5692
2e873c5f0e2c no open;
wenzelm
parents: 4887
diff changeset
   779
42476
d0bc1268ef09 clarified auxiliary structure Lexicon.Syntax;
wenzelm
parents: 42408
diff changeset
   780
81116
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   781
(* polarity of declarations: true = add, false = del *)
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   782
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   783
val polarity = Config.declare_bool ("polarity", Position.none) (K true);
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   784
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   785
fun get_polarity ctxt = Config.get ctxt polarity;
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   786
val set_polarity = Config.put polarity;
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   787
val set_polarity_generic = Config.put_generic polarity;
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   788
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   789
fun effective_polarity ctxt add = get_polarity ctxt = add;
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   790
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 81005
diff changeset
   791
42476
d0bc1268ef09 clarified auxiliary structure Lexicon.Syntax;
wenzelm
parents: 42408
diff changeset
   792
open Lexicon.Syntax;
d0bc1268ef09 clarified auxiliary structure Lexicon.Syntax;
wenzelm
parents: 42408
diff changeset
   793
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   794
end;