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