Source file xml.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
open Printf
type xml = Types.xml =
| Element of (string * (string * string) list * xml list)
| PCData of string
type error_pos = Types.error_pos = {
eline : int;
eline_start : int;
emin : int;
emax : int;
}
type error_msg = Types.error_msg =
| UnterminatedString
| UnterminatedEntity
| IdentExpected
| CloseExpected
| NodeExpected
| AttributeNameExpected
| AttributeValueExpected
| EndOfTagExpected of string
| EOFExpected
type error = error_msg * error_pos
exception Error of error
exception File_not_found of string
exception Not_element of xml
exception Not_pcdata of xml
exception No_attribute of string
let default_parser = XmlParser.make()
let pos source =
let line, lstart, min, max = Xml_lexer.pos source in
{
eline = line;
eline_start = lstart;
emin = min;
emax = max;
}
let parse (p:XmlParser.t) (source:XmlParser.source) =
XmlParser.parse p source
let parse_string_with p str = parse p (XmlParser.SString str)
let parse_in ch = parse default_parser (XmlParser.SChannel ch)
let parse_string str = parse_string_with default_parser str
let parse_file f =
let p = XmlParser.make() in
let path = Filename.dirname f in
XmlParser.resolve p (fun file ->
let name = (match path with "." -> file | _ -> path ^ "/" ^ file) in
Dtd.check (Dtd.parse_file name)
);
parse p (XmlParser.SFile f)
let error_msg = function
| UnterminatedComment -> "Unterminated comment"
| UnterminatedString -> "Unterminated string"
| UnterminatedEntity -> "Unterminated entity"
| IdentExpected -> "Ident expected"
| CloseExpected -> "Element close expected"
| NodeExpected -> "Xml node expected"
| AttributeNameExpected -> "Attribute name expected"
| AttributeValueExpected -> "Attribute value expected"
| EndOfTagExpected tag -> sprintf "End of tag expected : '%s'" tag
| EOFExpected -> "End of file expected"
let error (msg,pos) =
if pos.emin = pos.emax then
sprintf "%s line %d character %d" (error_msg msg) pos.eline (pos.emin - pos.eline_start)
else
sprintf "%s line %d characters %d-%d" (error_msg msg) pos.eline (pos.emin - pos.eline_start) (pos.emax - pos.eline_start)
let line e = e.eline
let range e =
e.emin - e.eline_start , e.emax - e.eline_start
let abs_range e =
e.emin , e.emax
let tag = function
| Element (tag,_,_) -> tag
| x -> raise (Not_element x)
let pcdata = function
| PCData text -> text
| x -> raise (Not_pcdata x)
let attribs = function
| Element (_,attr,_) -> attr
| x -> raise (Not_element x)
let attrib x att =
match x with
| Element (_,attr,_) ->
(try
let att = String.lowercase_ascii att in
snd (List.find (fun (n,_) -> String.lowercase_ascii n = att) attr)
with
Not_found ->
raise (No_attribute att))
| x ->
raise (Not_element x)
let children = function
| Element (_,_,clist) -> clist
| x -> raise (Not_element x)
let iter f = function
| Element (_,_,clist) -> List.iter f clist
| x -> raise (Not_element x)
let map f = function
| Element (_,_,clist) -> List.map f clist
| x -> raise (Not_element x)
let fold f v = function
| Element (_,_,clist) -> List.fold_left f v clist
| x -> raise (Not_element x)
module type X = sig
type t
val add_char : t -> char -> unit
val add_string : t -> string -> unit
end
module Make(Buffer:X) = struct
let is_leading_character_of_decimal_or_hexidecimal char =
('0' <= char && char <= '9') || char = 'x'
;;
let buffer_pcdata ~tmp text =
let l = String.length text in
for p = 0 to l-1 do
match text.[p] with
| '>' -> Buffer.add_string tmp ">"
| '<' -> Buffer.add_string tmp "<"
| '&' ->
if p < l-3 && text.[p+1] = '#' && is_leading_character_of_decimal_or_hexidecimal text.[p+2] then
Buffer.add_char tmp '&'
else
Buffer.add_string tmp "&"
| '\''-> Buffer.add_string tmp "'"
| '"' -> Buffer.add_string tmp """
| c -> Buffer.add_char tmp c
done
let buffer_attr ~tmp (n,v) =
Buffer.add_char tmp ' ';
Buffer.add_string tmp n;
Buffer.add_string tmp "=\"";
let l = String.length v in
for p = 0 to l-1 do
match v.[p] with
| '"' -> Buffer.add_string tmp """
| c -> Buffer.add_char tmp c
done;
Buffer.add_char tmp '"'
let tag_for_silly_humans tag =
let new_string = Bytes.of_string tag in
let new_string = Bytes.capitalize_ascii new_string in
for i = (Bytes.length new_string) - 1 downto 0 do
match Bytes.get new_string i with
| '_' -> Bytes.set new_string i ' '
| _ -> ()
done;
let new_string = Bytes.to_string new_string in
new_string ^ ": "
let reformat_tag ~format tag =
match format with
| `Xml -> tag
| `No_tag -> tag_for_silly_humans tag
let write tmp x =
let pcdata = ref false in
let rec loop = function
| Element (tag,alist,[]) ->
Buffer.add_char tmp '<';
Buffer.add_string tmp tag;
List.iter (buffer_attr ~tmp) alist;
Buffer.add_string tmp "/>";
pcdata := false;
| Element (tag,alist,l) ->
Buffer.add_char tmp '<';
Buffer.add_string tmp tag;
List.iter (buffer_attr ~tmp) alist;
Buffer.add_char tmp '>';
pcdata := false;
List.iter loop l;
Buffer.add_string tmp "</";
Buffer.add_string tmp tag;
Buffer.add_char tmp '>';
pcdata := false;
| PCData text ->
if !pcdata then Buffer.add_char tmp ' ';
buffer_pcdata ~tmp text;
pcdata := true;
in
loop x;
;;
let add_char_if_xml ~format tmp char =
match format with
| `Xml -> Buffer.add_char tmp char
| `No_tag -> ()
let add_string_if_xml ~format tmp string =
match format with
| `Xml -> Buffer.add_string tmp string
| `No_tag -> ()
let write_fmt tmp ~format x =
let rec loop tab = function
| Element (tag,alist,[]) ->
if format = `Xml then begin
Buffer.add_string tmp tab;
add_char_if_xml ~format tmp '<';
Buffer.add_string tmp (reformat_tag ~format tag);
List.iter (buffer_attr ~tmp) alist;
add_string_if_xml ~format tmp "/>";
Buffer.add_char tmp '\n';
end
| Element (tag,alist,[PCData text]) ->
Buffer.add_string tmp tab;
add_char_if_xml ~format tmp '<';
Buffer.add_string tmp (reformat_tag ~format tag);
List.iter (buffer_attr ~tmp) alist;
add_string_if_xml ~format tmp ">";
buffer_pcdata ~tmp text;
if format = `Xml then begin
Buffer.add_string tmp "</";
Buffer.add_string tmp tag;
Buffer.add_char tmp '>';
end;
Buffer.add_char tmp '\n';
| Element (tag,alist,l) ->
Buffer.add_string tmp tab;
add_char_if_xml ~format tmp '<';
Buffer.add_string tmp (reformat_tag ~format tag);
List.iter (buffer_attr ~tmp) alist;
add_string_if_xml ~format tmp ">";
Buffer.add_char tmp '\n';
List.iter (loop (tab^" ")) l;
if format = `Xml then begin
Buffer.add_string tmp tab;
Buffer.add_string tmp "</";
Buffer.add_string tmp tag;
Buffer.add_char tmp '>';
end;
Buffer.add_char tmp '\n';
| PCData text ->
buffer_pcdata ~tmp text;
Buffer.add_char tmp '\n';
in
loop "" x;
;;
end
include Make(Buffer)
let to_string xml =
let buffer = Buffer.create 200 in
write buffer xml;
Buffer.contents buffer
let to_string_fmt ~format xml =
let buffer = Buffer.create 200 in
write_fmt buffer ~format xml;
Buffer.contents buffer
let to_human_string x =
let format = `No_tag in
to_string_fmt ~format x
;;
let to_string_fmt x =
let format = `Xml in
to_string_fmt ~format x
;;
XmlParser._raises (fun x p ->
Error (x,pos p))
(fun f -> File_not_found f)
(fun x p -> Dtd.Parse_error (x,pos p));
Dtd._raises (fun f -> File_not_found f);