author | wenzelm |
Sat, 10 Apr 2021 21:50:59 +0200 | |
changeset 73556 | 192bcee4f8b8 |
parent 70997 | 325247f32da9 |
child 73570 | e21aef453cd4 |
permissions | -rw-r--r-- |
44698 | 1 |
(* Title: Pure/PIDE/xml.ML |
2 |
Author: David Aspinall |
|
3 |
Author: Stefan Berghofer |
|
4 |
Author: Makarius |
|
24264 | 5 |
|
46840 | 6 |
Untyped XML trees and representation of ML values. |
24264 | 7 |
*) |
8 |
||
43767 | 9 |
signature XML_DATA_OPS = |
10 |
sig |
|
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
11 |
type 'a A |
43767 | 12 |
type 'a T |
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
13 |
type 'a V |
70828 | 14 |
type 'a P |
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
15 |
val int_atom: int A |
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
16 |
val bool_atom: bool A |
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
17 |
val unit_atom: unit A |
43767 | 18 |
val properties: Properties.T T |
19 |
val string: string T |
|
20 |
val int: int T |
|
21 |
val bool: bool T |
|
22 |
val unit: unit T |
|
23 |
val pair: 'a T -> 'b T -> ('a * 'b) T |
|
24 |
val triple: 'a T -> 'b T -> 'c T -> ('a * 'b * 'c) T |
|
25 |
val list: 'a T -> 'a list T |
|
26 |
val option: 'a T -> 'a option T |
|
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
27 |
val variant: 'a V list -> 'a T |
43767 | 28 |
end; |
29 |
||
24264 | 30 |
signature XML = |
31 |
sig |
|
46837
5bdd68f380b3
clarified XML signature (again) -- coincide with basic Markup without explicit dependency;
wenzelm
parents:
45155
diff
changeset
|
32 |
type attributes = (string * string) list |
24264 | 33 |
datatype tree = |
46837
5bdd68f380b3
clarified XML signature (again) -- coincide with basic Markup without explicit dependency;
wenzelm
parents:
45155
diff
changeset
|
34 |
Elem of (string * attributes) * tree list |
24264 | 35 |
| Text of string |
38266
492d377ecfe2
type XML.body as basic data representation language;
wenzelm
parents:
38228
diff
changeset
|
36 |
type body = tree list |
70991
f9f7c34b7dd4
more scalable protocol_message: use XML.body directly (Output.output hook is not required);
wenzelm
parents:
70828
diff
changeset
|
37 |
val blob: string list -> body |
73556
192bcee4f8b8
more robust treatment of empty markup: it allows to produce formal chunks;
wenzelm
parents:
70997
diff
changeset
|
38 |
val chunk: body -> tree |
70994 | 39 |
val is_empty: tree -> bool |
40 |
val is_empty_body: body -> bool |
|
69234 | 41 |
val xml_elemN: string |
42 |
val xml_nameN: string |
|
43 |
val xml_bodyN: string |
|
49650
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
44 |
val wrap_elem: ((string * attributes) * tree list) * tree list -> tree |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
45 |
val unwrap_elem: tree -> (((string * attributes) * tree list) * tree list) option |
26546 | 46 |
val add_content: tree -> Buffer.T -> Buffer.T |
39555
ccb223a4d49c
added XML.content_of convenience -- cover XML.body, which is the general situation;
wenzelm
parents:
38474
diff
changeset
|
47 |
val content_of: body -> string |
56059
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
48 |
val trim_blanks: body -> body |
26546 | 49 |
val header: string |
50 |
val text: string -> string |
|
51 |
val element: string -> attributes -> string list -> string |
|
69345
6bd63c94cf62
tuned signature (see also src/Tools/Haskell/Markup.hs);
wenzelm
parents:
69234
diff
changeset
|
52 |
val output_markup: Markup.T -> Markup.output |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
53 |
val string_of: tree -> string |
43791 | 54 |
val pretty: int -> tree -> Pretty.T |
26984
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
55 |
val parse_comments: string list -> unit * string list |
24264 | 56 |
val parse_string : string -> string option |
26546 | 57 |
val parse_element: string list -> tree * string list |
26984
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
58 |
val parse_document: string list -> tree * string list |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
59 |
val parse: string -> tree |
43767 | 60 |
exception XML_ATOM of string |
61 |
exception XML_BODY of body |
|
65333 | 62 |
structure Encode: |
63 |
sig |
|
64 |
include XML_DATA_OPS |
|
65 |
val tree: tree T |
|
66 |
end |
|
67 |
structure Decode: |
|
68 |
sig |
|
69 |
include XML_DATA_OPS |
|
70 |
val tree: tree T |
|
71 |
end |
|
24264 | 72 |
end; |
73 |
||
74 |
structure XML: XML = |
|
75 |
struct |
|
76 |
||
26546 | 77 |
(** XML trees **) |
78 |
||
70991
f9f7c34b7dd4
more scalable protocol_message: use XML.body directly (Output.output hook is not required);
wenzelm
parents:
70828
diff
changeset
|
79 |
open Output_Primitives.XML; |
26546 | 80 |
|
70991
f9f7c34b7dd4
more scalable protocol_message: use XML.body directly (Output.output hook is not required);
wenzelm
parents:
70828
diff
changeset
|
81 |
val blob = map Text; |
38266
492d377ecfe2
type XML.body as basic data representation language;
wenzelm
parents:
38228
diff
changeset
|
82 |
|
73556
192bcee4f8b8
more robust treatment of empty markup: it allows to produce formal chunks;
wenzelm
parents:
70997
diff
changeset
|
83 |
fun chunk body = Elem (Markup.empty, body); |
192bcee4f8b8
more robust treatment of empty markup: it allows to produce formal chunks;
wenzelm
parents:
70997
diff
changeset
|
84 |
|
70994 | 85 |
fun is_empty (Text "") = true |
86 |
| is_empty _ = false; |
|
87 |
||
88 |
val is_empty_body = forall is_empty; |
|
89 |
||
49650
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
90 |
|
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
91 |
(* wrapped elements *) |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
92 |
|
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
93 |
val xml_elemN = "xml_elem"; |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
94 |
val xml_nameN = "xml_name"; |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
95 |
val xml_bodyN = "xml_body"; |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
96 |
|
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
97 |
fun wrap_elem (((a, atts), body1), body2) = |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
98 |
Elem ((xml_elemN, (xml_nameN, a) :: atts), Elem ((xml_bodyN, []), body1) :: body2); |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
99 |
|
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
100 |
fun unwrap_elem (Elem ((name, (n, a) :: atts), Elem ((name', atts'), body1) :: body2)) = |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
101 |
if name = xml_elemN andalso n = xml_nameN andalso name' = xml_bodyN andalso null atts' |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
102 |
then SOME (((a, atts), body1), body2) else NONE |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
103 |
| unwrap_elem _ = NONE; |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
104 |
|
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
105 |
|
69224 | 106 |
(* text content *) |
49650
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
107 |
|
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
108 |
fun add_content tree = |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
109 |
(case unwrap_elem tree of |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
110 |
SOME (_, ts) => fold add_content ts |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
111 |
| NONE => |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
112 |
(case tree of |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
113 |
Elem (_, ts) => fold add_content ts |
9fad6480300d
support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents:
49599
diff
changeset
|
114 |
| Text s => Buffer.add s)); |
26546 | 115 |
|
39555
ccb223a4d49c
added XML.content_of convenience -- cover XML.body, which is the general situation;
wenzelm
parents:
38474
diff
changeset
|
116 |
fun content_of body = Buffer.empty |> fold add_content body |> Buffer.content; |
ccb223a4d49c
added XML.content_of convenience -- cover XML.body, which is the general situation;
wenzelm
parents:
38474
diff
changeset
|
117 |
|
26546 | 118 |
|
56059
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
119 |
(* trim blanks *) |
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
120 |
|
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
121 |
fun trim_blanks trees = |
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
122 |
trees |> maps |
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
123 |
(fn Elem (markup, body) => [Elem (markup, trim_blanks body)] |
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
124 |
| Text s => |
61707 | 125 |
let val s' = s |> raw_explode |> trim Symbol.is_blank |> implode; |
56059
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
126 |
in if s' = "" then [] else [Text s'] end); |
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
127 |
|
2390391584c2
some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents:
49650
diff
changeset
|
128 |
|
24264 | 129 |
|
26525 | 130 |
(** string representation **) |
131 |
||
69806 | 132 |
val header = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"; |
24264 | 133 |
|
134 |
||
26546 | 135 |
(* escaped text *) |
24264 | 136 |
|
137 |
fun decode "<" = "<" |
|
138 |
| decode ">" = ">" |
|
139 |
| decode "&" = "&" |
|
140 |
| decode "'" = "'" |
|
141 |
| decode """ = "\"" |
|
142 |
| decode c = c; |
|
143 |
||
144 |
fun encode "<" = "<" |
|
145 |
| encode ">" = ">" |
|
146 |
| encode "&" = "&" |
|
147 |
| encode "'" = "'" |
|
148 |
| encode "\"" = """ |
|
149 |
| encode c = c; |
|
150 |
||
25838 | 151 |
val text = translate_string encode; |
24264 | 152 |
|
153 |
||
154 |
(* elements *) |
|
155 |
||
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
156 |
fun elem name atts = |
26551 | 157 |
space_implode " " (name :: map (fn (a, x) => a ^ "=\"" ^ text x ^ "\"") atts); |
24264 | 158 |
|
26525 | 159 |
fun element name atts body = |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
160 |
let val b = implode body in |
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
161 |
if b = "" then enclose "<" "/>" (elem name atts) |
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
162 |
else enclose "<" ">" (elem name atts) ^ b ^ enclose "</" ">" name |
24264 | 163 |
end; |
164 |
||
27884 | 165 |
fun output_markup (markup as (name, atts)) = |
38474
e498dc2eb576
uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents:
38266
diff
changeset
|
166 |
if Markup.is_empty markup then Markup.no_output |
27884 | 167 |
else (enclose "<" ">" (elem name atts), enclose "</" ">" name); |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
168 |
|
24264 | 169 |
|
26546 | 170 |
(* output *) |
24264 | 171 |
|
43791 | 172 |
fun buffer_of depth tree = |
24264 | 173 |
let |
43791 | 174 |
fun traverse _ (Elem ((name, atts), [])) = |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
175 |
Buffer.add "<" #> Buffer.add (elem name atts) #> Buffer.add "/>" |
43791 | 176 |
| traverse d (Elem ((name, atts), ts)) = |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
177 |
Buffer.add "<" #> Buffer.add (elem name atts) #> Buffer.add ">" #> |
43791 | 178 |
traverse_body d ts #> |
26525 | 179 |
Buffer.add "</" #> Buffer.add name #> Buffer.add ">" |
43791 | 180 |
| traverse _ (Text s) = Buffer.add (text s) |
181 |
and traverse_body 0 _ = Buffer.add "..." |
|
182 |
| traverse_body d ts = fold (traverse (d - 1)) ts; |
|
183 |
in Buffer.empty |> traverse depth tree end; |
|
24264 | 184 |
|
43791 | 185 |
val string_of = Buffer.content o buffer_of ~1; |
186 |
||
187 |
fun pretty depth tree = |
|
188 |
Pretty.str (Buffer.content (buffer_of (Int.max (0, depth)) tree)); |
|
25838 | 189 |
|
62819
d3ff367a16a0
careful export of type-dependent functions, without losing their special status;
wenzelm
parents:
62663
diff
changeset
|
190 |
val _ = ML_system_pp (fn depth => fn _ => Pretty.to_polyml o pretty (FixedInt.toInt depth)); |
62663 | 191 |
|
24264 | 192 |
|
193 |
||
44698 | 194 |
(** XML parsing **) |
26546 | 195 |
|
196 |
local |
|
24264 | 197 |
|
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43844
diff
changeset
|
198 |
fun err msg (xs, _) = |
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43844
diff
changeset
|
199 |
fn () => "XML parsing error: " ^ msg () ^ "\nfound: " ^ quote (Symbol.beginning 100 xs); |
24264 | 200 |
|
26984
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
201 |
fun ignored _ = []; |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
202 |
|
45155
3216d65d8f34
slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents:
44809
diff
changeset
|
203 |
fun name_start_char c = Symbol.is_ascii_letter c orelse c = ":" orelse c = "_"; |
3216d65d8f34
slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents:
44809
diff
changeset
|
204 |
fun name_char c = name_start_char c orelse Symbol.is_ascii_digit c orelse c = "-" orelse c = "."; |
3216d65d8f34
slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents:
44809
diff
changeset
|
205 |
val parse_name = Scan.one name_start_char ::: Scan.many name_char; |
3216d65d8f34
slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents:
44809
diff
changeset
|
206 |
|
26551 | 207 |
val blanks = Scan.many Symbol.is_blank; |
45155
3216d65d8f34
slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents:
44809
diff
changeset
|
208 |
val special = $$ "&" ^^ (parse_name >> implode) ^^ $$ ";" >> decode; |
58854 | 209 |
val regular = Scan.one Symbol.not_eof; |
210 |
fun regular_except x = Scan.one (fn c => Symbol.not_eof c andalso c <> x); |
|
24264 | 211 |
|
26551 | 212 |
val parse_chars = Scan.repeat1 (special || regular_except "<") >> implode; |
24264 | 213 |
|
26551 | 214 |
val parse_cdata = |
215 |
Scan.this_string "<![CDATA[" |-- |
|
216 |
(Scan.repeat (Scan.unless (Scan.this_string "]]>") regular) >> implode) --| |
|
217 |
Scan.this_string "]]>"; |
|
24264 | 218 |
|
219 |
val parse_att = |
|
45155
3216d65d8f34
slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents:
44809
diff
changeset
|
220 |
((parse_name >> implode) --| (blanks -- $$ "=" -- blanks)) -- |
26551 | 221 |
(($$ "\"" || $$ "'") :|-- (fn s => |
222 |
(Scan.repeat (special || regular_except s) >> implode) --| $$ s)); |
|
24264 | 223 |
|
26551 | 224 |
val parse_comment = |
225 |
Scan.this_string "<!--" -- |
|
226 |
Scan.repeat (Scan.unless (Scan.this_string "-->") regular) -- |
|
26984
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
227 |
Scan.this_string "-->" >> ignored; |
24264 | 228 |
|
26551 | 229 |
val parse_processing_instruction = |
230 |
Scan.this_string "<?" -- |
|
231 |
Scan.repeat (Scan.unless (Scan.this_string "?>") regular) -- |
|
26984
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
232 |
Scan.this_string "?>" >> ignored; |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
233 |
|
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
234 |
val parse_doctype = |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
235 |
Scan.this_string "<!DOCTYPE" -- |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
236 |
Scan.repeat (Scan.unless ($$ ">") regular) -- |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
237 |
$$ ">" >> ignored; |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
238 |
|
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
239 |
val parse_misc = |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
240 |
Scan.one Symbol.is_blank >> ignored || |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
241 |
parse_processing_instruction || |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
242 |
parse_comment; |
26551 | 243 |
|
244 |
val parse_optional_text = |
|
245 |
Scan.optional (parse_chars >> (single o Text)) []; |
|
24264 | 246 |
|
26546 | 247 |
in |
248 |
||
26984
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
249 |
val parse_comments = |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
250 |
blanks -- Scan.repeat (parse_comment -- blanks >> K ()) >> K (); |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
251 |
|
40627
becf5d5187cc
renamed raw "explode" function to "raw_explode" to emphasize its meaning;
wenzelm
parents:
40131
diff
changeset
|
252 |
val parse_string = Scan.read Symbol.stopper parse_chars o raw_explode; |
26546 | 253 |
|
24264 | 254 |
fun parse_content xs = |
26551 | 255 |
(parse_optional_text @@@ |
61476 | 256 |
Scan.repeats |
26551 | 257 |
((parse_element >> single || |
258 |
parse_cdata >> (single o Text) || |
|
26984
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
259 |
parse_processing_instruction || |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
260 |
parse_comment) |
61476 | 261 |
@@@ parse_optional_text)) xs |
24264 | 262 |
|
26546 | 263 |
and parse_element xs = |
43949
94033767ef9b
more precise parse_name according to XML standard;
wenzelm
parents:
43947
diff
changeset
|
264 |
($$ "<" |-- parse_name -- Scan.repeat (blanks |-- parse_att) --| blanks :-- |
94033767ef9b
more precise parse_name according to XML standard;
wenzelm
parents:
43947
diff
changeset
|
265 |
(fn (name, _) => |
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43844
diff
changeset
|
266 |
!! (err (fn () => "Expected > or />")) |
43949
94033767ef9b
more precise parse_name according to XML standard;
wenzelm
parents:
43947
diff
changeset
|
267 |
($$ "/" -- $$ ">" >> ignored || |
94033767ef9b
more precise parse_name according to XML standard;
wenzelm
parents:
43947
diff
changeset
|
268 |
$$ ">" |-- parse_content --| |
94033767ef9b
more precise parse_name according to XML standard;
wenzelm
parents:
43947
diff
changeset
|
269 |
!! (err (fn () => "Expected </" ^ implode name ^ ">")) |
94033767ef9b
more precise parse_name according to XML standard;
wenzelm
parents:
43947
diff
changeset
|
270 |
($$ "<" -- $$ "/" -- Scan.this name -- blanks -- $$ ">"))) |
94033767ef9b
more precise parse_name according to XML standard;
wenzelm
parents:
43947
diff
changeset
|
271 |
>> (fn ((name, atts), body) => Elem ((implode name, atts), body))) xs; |
24264 | 272 |
|
26984
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
273 |
val parse_document = |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
274 |
(Scan.repeat parse_misc -- Scan.option parse_doctype -- Scan.repeat parse_misc) |
d0e098e206f3
added parse_document (optional unchecked header material);
wenzelm
parents:
26554
diff
changeset
|
275 |
|-- parse_element; |
24264 | 276 |
|
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
277 |
fun parse s = |
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43844
diff
changeset
|
278 |
(case Scan.finite Symbol.stopper (Scan.error (!! (err (fn () => "Malformed element")) |
40627
becf5d5187cc
renamed raw "explode" function to "raw_explode" to emphasize its meaning;
wenzelm
parents:
40131
diff
changeset
|
279 |
(blanks |-- parse_document --| blanks))) (raw_explode s) of |
24264 | 280 |
(x, []) => x |
48769 | 281 |
| (_, ys) => error ("XML parsing error: unprocessed input\n" ^ Symbol.beginning 100 ys)); |
24264 | 282 |
|
283 |
end; |
|
26546 | 284 |
|
43767 | 285 |
|
286 |
||
287 |
(** XML as data representation language **) |
|
288 |
||
289 |
exception XML_ATOM of string; |
|
290 |
exception XML_BODY of tree list; |
|
291 |
||
292 |
||
293 |
structure Encode = |
|
294 |
struct |
|
295 |
||
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
296 |
type 'a A = 'a -> string; |
43767 | 297 |
type 'a T = 'a -> body; |
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
298 |
type 'a V = 'a -> string list * body; |
70828 | 299 |
type 'a P = 'a -> string list; |
43767 | 300 |
|
301 |
||
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
302 |
(* atomic values *) |
43767 | 303 |
|
69574 | 304 |
fun int_atom i = Value.print_int i; |
43767 | 305 |
|
306 |
fun bool_atom false = "0" |
|
307 |
| bool_atom true = "1"; |
|
308 |
||
309 |
fun unit_atom () = ""; |
|
310 |
||
311 |
||
312 |
(* structural nodes *) |
|
313 |
||
314 |
fun node ts = Elem ((":", []), ts); |
|
315 |
||
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
316 |
fun vector xs = map_index (fn (i, x) => (int_atom i, x)) xs; |
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
317 |
|
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
318 |
fun tagged (tag, (xs, ts)) = Elem ((int_atom tag, vector xs), ts); |
43767 | 319 |
|
320 |
||
321 |
(* representation of standard types *) |
|
322 |
||
65333 | 323 |
fun tree (t: tree) = [t]; |
324 |
||
43767 | 325 |
fun properties props = [Elem ((":", props), [])]; |
326 |
||
327 |
fun string "" = [] |
|
328 |
| string s = [Text s]; |
|
329 |
||
330 |
val int = string o int_atom; |
|
331 |
||
332 |
val bool = string o bool_atom; |
|
333 |
||
334 |
val unit = string o unit_atom; |
|
335 |
||
336 |
fun pair f g (x, y) = [node (f x), node (g y)]; |
|
337 |
||
338 |
fun triple f g h (x, y, z) = [node (f x), node (g y), node (h z)]; |
|
339 |
||
340 |
fun list f xs = map (node o f) xs; |
|
341 |
||
342 |
fun option _ NONE = [] |
|
343 |
| option f (SOME x) = [node (f x)]; |
|
344 |
||
47199
15ede9f1da3f
more specific notion of partiality (cf. Scala version);
wenzelm
parents:
46840
diff
changeset
|
345 |
fun variant fs x = |
15ede9f1da3f
more specific notion of partiality (cf. Scala version);
wenzelm
parents:
46840
diff
changeset
|
346 |
[tagged (the (get_index (fn f => SOME (f x) handle General.Match => NONE) fs))]; |
43767 | 347 |
|
26546 | 348 |
end; |
43767 | 349 |
|
350 |
||
351 |
structure Decode = |
|
352 |
struct |
|
353 |
||
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
354 |
type 'a A = string -> 'a; |
43767 | 355 |
type 'a T = body -> 'a; |
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
356 |
type 'a V = string list * body -> 'a; |
70828 | 357 |
type 'a P = string list -> 'a; |
43767 | 358 |
|
359 |
||
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
360 |
(* atomic values *) |
43767 | 361 |
|
362 |
fun int_atom s = |
|
63806 | 363 |
Value.parse_int s |
43797
fad7758421bf
more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents:
43791
diff
changeset
|
364 |
handle Fail _ => raise XML_ATOM s; |
43767 | 365 |
|
366 |
fun bool_atom "0" = false |
|
367 |
| bool_atom "1" = true |
|
368 |
| bool_atom s = raise XML_ATOM s; |
|
369 |
||
370 |
fun unit_atom "" = () |
|
371 |
| unit_atom s = raise XML_ATOM s; |
|
372 |
||
373 |
||
374 |
(* structural nodes *) |
|
375 |
||
376 |
fun node (Elem ((":", []), ts)) = ts |
|
377 |
| node t = raise XML_BODY [t]; |
|
378 |
||
43783 | 379 |
fun vector atts = |
46839
f7232c078fa5
simplified -- plain map_index is sufficient (pointed out by Enrico Tassi);
wenzelm
parents:
46837
diff
changeset
|
380 |
map_index (fn (i, (a, x)) => if int_atom a = i then x else raise XML_ATOM a) atts; |
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
381 |
|
43844 | 382 |
fun tagged (Elem ((name, atts), ts)) = (int_atom name, (vector atts, ts)) |
43767 | 383 |
| tagged t = raise XML_BODY [t]; |
384 |
||
385 |
||
386 |
(* representation of standard types *) |
|
387 |
||
65333 | 388 |
fun tree [t] = t |
389 |
| tree ts = raise XML_BODY ts; |
|
390 |
||
43767 | 391 |
fun properties [Elem ((":", props), [])] = props |
392 |
| properties ts = raise XML_BODY ts; |
|
393 |
||
394 |
fun string [] = "" |
|
395 |
| string [Text s] = s |
|
396 |
| string ts = raise XML_BODY ts; |
|
397 |
||
398 |
val int = int_atom o string; |
|
399 |
||
400 |
val bool = bool_atom o string; |
|
401 |
||
402 |
val unit = unit_atom o string; |
|
403 |
||
404 |
fun pair f g [t1, t2] = (f (node t1), g (node t2)) |
|
405 |
| pair _ _ ts = raise XML_BODY ts; |
|
406 |
||
407 |
fun triple f g h [t1, t2, t3] = (f (node t1), g (node t2), h (node t3)) |
|
408 |
| triple _ _ _ ts = raise XML_BODY ts; |
|
409 |
||
410 |
fun list f ts = map (f o node) ts; |
|
411 |
||
412 |
fun option _ [] = NONE |
|
413 |
| option f [t] = SOME (f (node t)) |
|
414 |
| option _ ts = raise XML_BODY ts; |
|
415 |
||
43768 | 416 |
fun variant fs [t] = |
417 |
let |
|
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
418 |
val (tag, (xs, ts)) = tagged t; |
43768 | 419 |
val f = nth fs tag handle General.Subscript => raise XML_BODY [t]; |
43778
ce9189450447
more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents:
43768
diff
changeset
|
420 |
in f (xs, ts) end |
43767 | 421 |
| variant _ ts = raise XML_BODY ts; |
422 |
||
423 |
end; |
|
424 |
||
425 |
end; |