author | wenzelm |
Fri, 23 May 2008 21:18:47 +0200 | |
changeset 26977 | e736139b553d |
parent 26554 | 5ee45391576e |
child 26984 | d0e098e206f3 |
permissions | -rw-r--r-- |
24584 | 1 |
(* Title: Pure/General/xml.ML |
24264 | 2 |
ID: $Id$ |
3 |
Author: David Aspinall, Stefan Berghofer and Markus Wenzel |
|
4 |
||
5 |
Basic support for XML. |
|
6 |
*) |
|
7 |
||
8 |
signature XML = |
|
9 |
sig |
|
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
10 |
type attributes = Markup.property list |
24264 | 11 |
datatype tree = |
12 |
Elem of string * attributes * tree list |
|
13 |
| Text of string |
|
14 |
| Output of output |
|
26546 | 15 |
val add_content: tree -> Buffer.T -> Buffer.T |
16 |
val detect: string -> bool |
|
17 |
val header: string |
|
18 |
val text: string -> string |
|
19 |
val element: string -> attributes -> string list -> string |
|
20 |
val output_markup: Markup.T -> output * output |
|
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
21 |
val string_of: tree -> string |
26546 | 22 |
val output: tree -> TextIO.outstream -> unit |
24264 | 23 |
val parse_string : string -> string option |
26551 | 24 |
val parse_comments: string list -> unit * string list |
26546 | 25 |
val parse_element: string list -> tree * string list |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
26 |
val parse: string -> tree |
24264 | 27 |
end; |
28 |
||
29 |
structure XML: XML = |
|
30 |
struct |
|
31 |
||
26546 | 32 |
(** XML trees **) |
33 |
||
34 |
type attributes = Markup.property list; |
|
35 |
||
36 |
datatype tree = |
|
37 |
Elem of string * attributes * tree list |
|
38 |
| Text of string |
|
39 |
| Output of output; (* FIXME !? *) |
|
40 |
||
41 |
fun add_content (Elem (_, _, ts)) = fold add_content ts |
|
42 |
| add_content (Text s) = Buffer.add s |
|
43 |
| add_content (Output _) = I; (* FIXME !? *) |
|
44 |
||
45 |
||
24264 | 46 |
|
26525 | 47 |
(** string representation **) |
48 |
||
49 |
val detect = String.isPrefix "<?xml"; |
|
24264 | 50 |
val header = "<?xml version=\"1.0\"?>\n"; |
51 |
||
52 |
||
26546 | 53 |
(* escaped text *) |
24264 | 54 |
|
55 |
fun decode "<" = "<" |
|
56 |
| decode ">" = ">" |
|
57 |
| decode "&" = "&" |
|
58 |
| decode "'" = "'" |
|
59 |
| decode """ = "\"" |
|
60 |
| decode c = c; |
|
61 |
||
62 |
fun encode "<" = "<" |
|
63 |
| encode ">" = ">" |
|
64 |
| encode "&" = "&" |
|
65 |
| encode "'" = "'" |
|
66 |
| encode "\"" = """ |
|
67 |
| encode c = c; |
|
68 |
||
25838 | 69 |
val text = translate_string encode; |
24264 | 70 |
|
71 |
||
72 |
(* elements *) |
|
73 |
||
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
74 |
fun elem name atts = |
26551 | 75 |
space_implode " " (name :: map (fn (a, x) => a ^ "=\"" ^ text x ^ "\"") atts); |
24264 | 76 |
|
26525 | 77 |
fun element name atts body = |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
78 |
let val b = implode body in |
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
79 |
if b = "" then enclose "<" "/>" (elem name atts) |
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
80 |
else enclose "<" ">" (elem name atts) ^ b ^ enclose "</" ">" name |
24264 | 81 |
end; |
82 |
||
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
83 |
fun output_markup (name, atts) = |
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
84 |
(enclose "<" ">" (elem name atts), |
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
85 |
enclose "</" ">" name); |
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
86 |
|
24264 | 87 |
|
26546 | 88 |
(* output *) |
24264 | 89 |
|
26546 | 90 |
fun buffer_of tree = |
24264 | 91 |
let |
26546 | 92 |
fun traverse (Elem (name, atts, [])) = |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
93 |
Buffer.add "<" #> Buffer.add (elem name atts) #> Buffer.add "/>" |
26546 | 94 |
| traverse (Elem (name, atts, ts)) = |
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
95 |
Buffer.add "<" #> Buffer.add (elem name atts) #> Buffer.add ">" #> |
26546 | 96 |
fold traverse ts #> |
26525 | 97 |
Buffer.add "</" #> Buffer.add name #> Buffer.add ">" |
26546 | 98 |
| traverse (Text s) = Buffer.add (text s) |
99 |
| traverse (Output s) = Buffer.add s; |
|
100 |
in Buffer.empty |> traverse tree end; |
|
24264 | 101 |
|
26546 | 102 |
val string_of = Buffer.content o buffer_of; |
103 |
val output = Buffer.output o buffer_of; |
|
25838 | 104 |
|
24264 | 105 |
|
106 |
||
26546 | 107 |
(** XML parsing (slow) **) |
108 |
||
109 |
local |
|
24264 | 110 |
|
111 |
fun err s (xs, _) = |
|
112 |
"XML parsing error: " ^ s ^ "\nfound: " ^ quote (Symbol.beginning 100 xs); |
|
113 |
||
26551 | 114 |
val blanks = Scan.many Symbol.is_blank; |
115 |
val special = $$ "&" ^^ Symbol.scan_id ^^ $$ ";" >> decode; |
|
116 |
val regular = Scan.one Symbol.is_regular; |
|
117 |
fun regular_except x = Scan.one (fn c => Symbol.is_regular c andalso c <> x); |
|
24264 | 118 |
|
26551 | 119 |
val parse_chars = Scan.repeat1 (special || regular_except "<") >> implode; |
24264 | 120 |
|
26551 | 121 |
val parse_cdata = |
122 |
Scan.this_string "<![CDATA[" |-- |
|
123 |
(Scan.repeat (Scan.unless (Scan.this_string "]]>") regular) >> implode) --| |
|
124 |
Scan.this_string "]]>"; |
|
24264 | 125 |
|
126 |
val parse_att = |
|
26551 | 127 |
(Symbol.scan_id --| (blanks -- $$ "=" -- blanks)) -- |
128 |
(($$ "\"" || $$ "'") :|-- (fn s => |
|
129 |
(Scan.repeat (special || regular_except s) >> implode) --| $$ s)); |
|
24264 | 130 |
|
26551 | 131 |
val parse_comment = |
132 |
Scan.this_string "<!--" -- |
|
133 |
Scan.repeat (Scan.unless (Scan.this_string "-->") regular) -- |
|
134 |
Scan.this_string "-->" >> K []; |
|
24264 | 135 |
|
26551 | 136 |
val parse_processing_instruction = |
137 |
Scan.this_string "<?" -- |
|
138 |
Scan.repeat (Scan.unless (Scan.this_string "?>") regular) -- |
|
139 |
Scan.this_string "?>" >> K []; |
|
140 |
||
141 |
val parse_optional_text = |
|
142 |
Scan.optional (parse_chars >> (single o Text)) []; |
|
24264 | 143 |
|
26546 | 144 |
in |
145 |
||
146 |
val parse_string = Scan.read Symbol.stopper parse_chars o explode; |
|
147 |
||
24264 | 148 |
fun parse_content xs = |
26551 | 149 |
(parse_optional_text @@@ |
150 |
(Scan.repeat |
|
151 |
((parse_element >> single || |
|
152 |
parse_cdata >> (single o Text) || |
|
153 |
parse_processing_instruction >> K [] || |
|
154 |
parse_comment >> K []) |
|
155 |
@@@ parse_optional_text) >> flat)) xs |
|
24264 | 156 |
|
26546 | 157 |
and parse_element xs = |
24264 | 158 |
($$ "<" |-- Symbol.scan_id -- |
26551 | 159 |
Scan.repeat (blanks |-- parse_att) --| blanks :-- (fn (s, _) => |
24264 | 160 |
!! (err "Expected > or />") |
161 |
(Scan.this_string "/>" >> K [] |
|
162 |
|| $$ ">" |-- parse_content --| |
|
163 |
!! (err ("Expected </" ^ s ^ ">")) |
|
26551 | 164 |
(Scan.this_string ("</" ^ s) --| blanks --| $$ ">"))) >> |
24264 | 165 |
(fn ((s, atts), ts) => Elem (s, atts, ts))) xs; |
166 |
||
26551 | 167 |
val parse_comments = |
168 |
blanks -- Scan.repeat (parse_comment -- blanks >> K ()) >> K (); |
|
24264 | 169 |
|
26539
a0754be538ab
added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents:
26525
diff
changeset
|
170 |
fun parse s = |
24264 | 171 |
(case Scan.finite Symbol.stopper (Scan.error (!! (err "Malformed element") |
26554 | 172 |
(blanks |-- parse_element --| blanks))) (explode s) of |
24264 | 173 |
(x, []) => x |
174 |
| (_, ys) => error ("XML parsing error: Unprocessed input\n" ^ Symbol.beginning 100 ys)); |
|
175 |
||
176 |
end; |
|
26546 | 177 |
|
178 |
end; |