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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
|
module XML(XmlExp(..),Encoding(..),XmlDocParams(..),
tagOf,elemsOf,textOf,textOfXml,xtxt,xml,
showXmlDoc,showXmlDocWithParams,
writeXmlFile,writeXmlFileWithParams,parseXmlString,readXmlFile,
readUnsafeXmlFile,readFileWithXmlDocs,updateXmlFile) where
import Char
import Read
import List(intersperse)
data XmlExp = XText String
| XElem String [(String,String)] [XmlExp]
deriving (Eq,Ord,Show)
data Encoding = StandardEnc
| Iso88591Enc
encoding2Attribute :: Encoding -> String
encoding2Attribute StandardEnc = ""
encoding2Attribute Iso88591Enc = "encoding=\"iso-8859-1\" "
encoding2EncFunc :: Encoding -> String -> String
encoding2EncFunc StandardEnc = standardEncoding
encoding2EncFunc Iso88591Enc = iso88591Encoding
standardEncoding :: String -> String
standardEncoding [] = []
standardEncoding (c:cs)
| c=='<' = "<" ++ standardEncoding cs
| c=='>' = ">" ++ standardEncoding cs
| c=='&' = "&" ++ standardEncoding cs
| c=='"' = """ ++ standardEncoding cs
| c=='\'' = "'" ++ standardEncoding cs
| ord c < 32 = "&#" ++ show (ord c) ++ ";" ++ standardEncoding cs
| ord c > 127 = "&#" ++ show (ord c) ++ ";" ++ standardEncoding cs
| otherwise = c : standardEncoding cs
iso88591Encoding :: String -> String
iso88591Encoding [] = []
iso88591Encoding (c:cs) =
if ord c `elem` iso88591list
then c : iso88591Encoding cs
else standardEncoding [c] ++ iso88591Encoding cs
iso88591list :: [Int]
iso88591list = [192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,
208,209,210,211,212,214,216,217,218,219,220,221,224,225,228,
229,226,227,230,231,233,232,235,234,236,237,239,240,241,248,
246,242,243,244,245,250,249,252,251,253,255]
data XmlDocParams = Enc Encoding
| DtdUrl String
lookupEncoding :: [XmlDocParams] -> Encoding
lookupEncoding (Enc f:_) = f
lookupEncoding (DtdUrl _:l) = lookupEncoding l
lookupEncoding [] = StandardEnc
lookupDtdUrl :: [XmlDocParams] -> String
lookupDtdUrl [] = ""
lookupDtdUrl (Enc _ : l) = lookupDtdUrl l
lookupDtdUrl (DtdUrl url : _) = url
hasDtdUrl :: [XmlDocParams] -> Bool
hasDtdUrl [] = False
hasDtdUrl (DtdUrl _:_) = True
hasDtdUrl (Enc _:l) = hasDtdUrl l
tagOf :: XmlExp -> String
tagOf (XElem tag _ _) = tag
tagOf (XText _) = ""
elemsOf :: XmlExp -> [XmlExp]
elemsOf (XElem _ _ xexps) = xexps
elemsOf (XText _) = []
textOf :: [XmlExp] -> String
textOf = unwords . filter (not . null) . map textOfXmlExp
where
textOfXmlExp (XText s) = s
textOfXmlExp (XElem _ _ xs) = textOf xs
textOfXml :: [XmlExp] -> String
textOfXml = textOf
xtxt :: String -> XmlExp
xtxt s = XText s
xml :: String -> [XmlExp] -> XmlExp
xml t c = XElem t [] c
writeXmlFile :: String -> XmlExp -> IO ()
writeXmlFile file xexp =
writeXmlFileWithParams file [Enc StandardEnc] xexp
writeXmlFileWithParams :: String -> [XmlDocParams] -> XmlExp -> IO ()
writeXmlFileWithParams file ps xexp =
writeFile file (showXmlDocWithParams ps xexp)
showXmlDoc :: XmlExp -> String
showXmlDoc xexp = showXmlDocWithParams [] xexp
showXmlDocWithParams :: [XmlDocParams] -> XmlExp -> String
showXmlDocWithParams ps (XElem root attrL xmlEL) =
"<?xml version=\"1.0\" " ++
(encoding2Attribute (lookupEncoding ps)) ++ "standalone=\"" ++
(if hasDtdUrl ps then "no" else "yes") ++ "\"?>\n\n" ++
(if hasDtdUrl ps
then "<!DOCTYPE " ++ root ++ " SYSTEM \"" ++ lookupDtdUrl ps ++ "\">\n\n"
else "") ++
showXmlExp 0 (encoding2EncFunc (lookupEncoding ps))
(XElem root attrL xmlEL)
showXmlDocWithParams _ (XText _) =
error "XML.showXmlDocWithParams: document without tags"
showXmlExp :: Int -> (String -> String) -> XmlExp -> String
showXmlExp i encFun (XText s) = xtab i ++ (encFun s) ++ "\n"
showXmlExp i encFun (XElem tag attrs xexps) =
xtab i ++ showXmlOpenTag tag attrs encFun ++
if null xexps
then " />\n"
else if length xexps == 1 && isXText (head xexps)
then let [XText s] = xexps
in ">" ++ (encFun s) ++ "</" ++ tag ++ ">\n"
else ">\n" ++ showXmlExps (i+2) xexps encFun ++
xtab i ++ "</" ++ tag ++ ">\n"
xtab :: Int -> String
xtab n = take n (repeat ' ')
showXmlOpenTag :: String -> [(String, a)] -> (a -> String) -> String
showXmlOpenTag tag attrs encFun =
"<" ++ tag ++ concat (map ((" "++) . attr2string) attrs)
where attr2string (attr,value) = attr ++ "=\""
++ (encFun value) ++ "\""
showXmlExps :: Int -> [XmlExp] -> (String -> String) -> String
showXmlExps encFun xexps i = concatMap (showXmlExp encFun i) xexps
isXText :: XmlExp -> Bool
isXText (XText _) = True
isXText (XElem _ _ _) = False
xmlUnquoteSpecials :: String -> String
xmlUnquoteSpecials [] = []
xmlUnquoteSpecials (c:cs)
| c=='&' = let (special,rest) = splitAtChar ';' cs
in xmlUnquoteSpecial special rest
| otherwise = c : xmlUnquoteSpecials cs
xmlUnquoteSpecial :: String -> String -> String
xmlUnquoteSpecial special cs
| special=="lt" = '<' : xmlUnquoteSpecials cs
| special=="gt" = '>' : xmlUnquoteSpecials cs
| special=="amp" = '&' : xmlUnquoteSpecials cs
| special=="quot" = '"' : xmlUnquoteSpecials cs
| special=="apos" = '\'' : xmlUnquoteSpecials cs
| special=="auml" = '\228' : xmlUnquoteSpecials cs
| special=="ouml" = '\246' : xmlUnquoteSpecials cs
| special=="uuml" = '\252' : xmlUnquoteSpecials cs
| special=="Auml" = '\196' : xmlUnquoteSpecials cs
| special=="Ouml" = '\214' : xmlUnquoteSpecials cs
| special=="Uuml" = '\220' : xmlUnquoteSpecials cs
| special=="szlig"= '\223' : xmlUnquoteSpecials cs
| otherwise = unquoteUnicode special ++ xmlUnquoteSpecials cs
unquoteUnicode :: String -> String
unquoteUnicode [] = []
unquoteUnicode (c:cs)
| c=='#' = case cs of
'x':cs' -> [chr (readHex cs')]
_ -> [chr (readInt cs)]
| otherwise = '&':(c:cs) ++ ";"
readXmlFile :: String -> IO XmlExp
readXmlFile file =
do xmlstring <- readFile file
let xexps = parseXmlString xmlstring
if null xexps
then error ("File "++file++" contains no XML document!")
else if null (tail xexps)
then return (head xexps)
else error ("File "++file++" contains more than one XML document!")
readUnsafeXmlFile :: String -> IO (Maybe XmlExp)
readUnsafeXmlFile file =
catch (readXmlFile file >>= return . Just) (\_ -> return Nothing)
showXmlFile :: String -> IO ()
showXmlFile file = readXmlFile file >>= putStr . showXmlDoc
readFileWithXmlDocs :: String -> IO [XmlExp]
readFileWithXmlDocs file = readFile file >>= return . parseXmlString
parseXmlString :: String -> [XmlExp]
parseXmlString s = fst (parseXmlTokens (scanXmlString s) Nothing)
parseXmlTokens :: [XmlExp] -> Maybe String -> ([XmlExp],[XmlExp])
parseXmlTokens [] Nothing = ([],[])
parseXmlTokens (XText s : xtokens) stop =
let (xexps, rem_xtokens) = parseXmlTokens xtokens stop
in (XText (xmlUnquoteSpecials s) : xexps, rem_xtokens)
parseXmlTokens (XElem (t:ts) args cont : xtokens) stop
| t == '<' && head ts /= '/'
= let (xexps1, xtokens1) = parseXmlTokens xtokens (Just ts)
(xexps, rem_xtokens) = parseXmlTokens xtokens1 stop
in (XElem ts args xexps1 : xexps, rem_xtokens)
| t == '<' && head ts == '/'
= if maybe False (==(tail ts)) stop
then ([], xtokens)
else let (xexps, rem_xtokens) = parseXmlTokens xtokens stop
in (XElem ts args cont : xexps, rem_xtokens)
| otherwise = let (xexps, rem_xtokens) = parseXmlTokens xtokens stop
in (XElem (t:ts) args cont : xexps, rem_xtokens)
scanXmlString :: String -> [XmlExp]
scanXmlString s = scanXml (dropBlanks s)
where
scanXml [] = []
scanXml (c:cs) = if c=='<'
then scanXmlElem cs
else let (initxt,remtag) = scanXmlText (c:cs)
in XText initxt : scanXml remtag
scanXmlText :: String -> (String,String)
scanXmlText [] = ([],[])
scanXmlText (c:cs) | c=='<' = ([],c:cs)
| isSpace c = let (txt,rem) = scanXmlText (dropBlanks cs)
in (if null txt then txt else ' ':txt, rem)
| otherwise = let (txt,rem) = scanXmlText cs
in (c:txt,rem)
scanXmlElem :: String -> [XmlExp]
scanXmlElem [] = []
scanXmlElem (c:cs)
| c=='!' = if take 2 cs == "--"
then scanXmlComment (drop 2 cs)
else scanXmlCData cs
| c=='?' = scanXmlProcInstr cs
| otherwise = scanXmlElemName [c] cs
scanXmlElemName :: String -> String -> [XmlExp]
scanXmlElemName ct [] = [XElem ('<':ct) [] []]
scanXmlElemName ct (c:cs)
| c=='>' = XElem ('<':ct) [] [] : scanXmlString cs
| isSpace c = let (attrs,rest) = parseAttrs (dropBlanks cs) in
if (head rest)=='/'
then XElem ct attrs [] : scanXmlString (drop 2 rest)
else XElem ('<':ct) attrs [] : scanXmlString (tail rest)
| c=='/' && head cs == '>' = XElem ct [] [] : scanXmlString (tail cs)
| otherwise = scanXmlElemName (ct++[c]) cs
scanXmlComment :: String -> [XmlExp]
[] = []
scanXmlComment (c:cs) =
if c=='-' && take 2 cs == "->"
then scanXmlString (drop 2 cs)
else scanXmlComment cs
scanXmlCData :: String -> [XmlExp]
scanXmlCData cs =
let rest = dropCData cs
in if head rest == '>' then scanXmlString (tail rest)
else scanXmlCData rest
dropCData :: String -> String
dropCData [] = []
dropCData (c:cs)
| c=='[' = tail (dropWhile (/=']') cs)
| c=='>' = c:cs
| otherwise = dropCData cs
scanXmlProcInstr :: String -> [XmlExp]
scanXmlProcInstr [] = []
scanXmlProcInstr (c:cs) =
if c=='?' && head cs == '>'
then scanXmlString (tail cs)
else scanXmlProcInstr cs
parseAttrs :: String -> ([(String,String)],String)
parseAttrs [] = ([],[])
parseAttrs (c:cs)
| isAlpha c = let (name,rest1) = splitAtChar '=' (c:cs)
(value,rest2) = splitAtChar '"' (tail rest1)
(rem_attrs,rem_inp) = parseAttrs (dropBlanks rest2)
in ((name,xmlUnquoteSpecials value):rem_attrs, rem_inp)
| otherwise = ([],c:cs)
dropBlanks :: String -> String
dropBlanks = dropWhile isSpace
splitAtChar :: Char -> String -> (String, String)
splitAtChar _ [] = ([],[])
splitAtChar char (c:cs) =
if c==char then ([],cs)
else let (first,rest) = splitAtChar char cs in (c:first,rest)
updateXmlFile :: (XmlExp -> XmlExp) -> String -> IO ()
updateXmlFile xmltrans filename = do
xdoc <- readXmlFile filename
writeXmlFile filename $!! (xmltrans xdoc)
|