-
Notifications
You must be signed in to change notification settings - Fork 54
/
FastXML.hx
211 lines (172 loc) · 5.66 KB
/
FastXML.hx
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
private class NodeAccess implements Dynamic<FastXML> {
var __x : Xml;
public function new( x : Xml ) {
__x = x;
}
public function resolve( name : String ) : FastXML {
var x = __x.elementsNamed(name).next();
if( x == null ) {
var xname = if( __x.nodeType == Xml.Document ) "Document" else __x.nodeName;
throw xname+" is missing element "+name;
}
return new FastXML(x);
}
}
private class AttribAccess implements Dynamic<String> {
var __x : Xml;
public function new( x : Xml ) {
__x = x;
}
public function resolve( name : String ) : String {
if( __x.nodeType == Xml.Document )
throw "Cannot access document attribute "+name;
var v = __x.get(name);
if( v == null )
throw __x.nodeName+" is missing attribute "+name;
return v;
}
}
private class HasAttribAccess implements Dynamic<Bool> {
var __x : Xml;
public function new( x : Xml ) {
__x = x;
}
public function resolve( name : String ) : Bool {
if( __x.nodeType == Xml.Document )
throw "Cannot access document attribute "+name;
return __x.exists(name);
}
}
private class HasNodeAccess implements Dynamic<Bool> {
var __x : Xml;
public function new( x : Xml ) {
__x = x;
}
public function resolve( name : String ) : Bool {
return __x.elementsNamed(name).hasNext();
}
}
private class NodeListAccess implements Dynamic<FastXMLList> {
var __x : Xml;
public function new( x : Xml ) {
__x = x;
}
public function resolve( name : String ) : FastXMLList {
var l = new Array();
for( x in __x.elementsNamed(name) )
l.push(new FastXML(x));
return new FastXMLList(l);
}
}
class FastXML {
public var x(default,null) : Xml;
public var name(get,null) : String;
public var innerData(get,null) : String;
public var innerHTML(get,null) : String;
public var node(default,null) : NodeAccess;
public var nodes(default,null) : NodeListAccess;
public var att(default,null) : AttribAccess;
public var has(default,null) : HasAttribAccess;
public var hasNode(default,null) : HasNodeAccess;
public var elements(get,null) : Iterator<FastXML>;
public function new( x : Xml ) {
if( x.nodeType != Xml.Document && x.nodeType != Xml.Element )
throw "Invalid nodeType "+x.nodeType;
this.x = x;
node = new NodeAccess(x);
nodes = new NodeListAccess(x);
att = new AttribAccess(x);
has = new HasAttribAccess(x);
hasNode = new HasNodeAccess(x);
}
public function appendChild( a : Dynamic ) {
if( Std.is(a, Xml) )
x.addChild(a);
else
x.addChild(Xml.parse(a));
}
public function descendants(name:String = "*") : FastXMLList {
var a = new Array<FastXML>();
for(e in x.elements()) {
if(e.nodeName == name || name == "*") {
a.push(new FastXML(e));
} else {
var fx = new FastXML(e);
a = a.concat(fx.descendants(name).getArray());
}
}
return new FastXMLList(a);
}
/**
* Return the specified attribute, or null if it does not exist
* @throws String if the nodeType is an XML Document
**/
public function getAttribute(name:String) : String {
if( x.nodeType == Xml.Document )
throw "Cannot access document attribute "+name;
var v = x.get(name);
return v;
}
function get_name():String {
return if( x.nodeType == Xml.Document ) "Document" else x.nodeName;
}
function get_innerData():String {
var it = x.iterator();
if( !it.hasNext() )
throw name+" does not have data";
var v = it.next();
var n = it.next();
if( n != null ) {
// handle <spaces>CDATA<spaces>
if( v.nodeType == Xml.PCData && n.nodeType == Xml.CData && StringTools.trim(v.nodeValue) == "" ) {
var n2 = it.next();
if( n2 == null || (n2.nodeType == Xml.PCData && StringTools.trim(n2.nodeValue) == "" && it.next() == null) )
return n.nodeValue;
}
throw name+" does not only have data";
}
if( v.nodeType != Xml.PCData && v.nodeType != Xml.CData )
throw name+" does not have data";
return v.nodeValue;
}
function get_innerHTML():String {
var s = new StringBuf();
for( x in x )
s.add(x.toString());
return s.toString();
}
function get_elements():Iterator<FastXML> {
var it = x.elements();
return {
hasNext : it.hasNext,
next : function() {
var x = it.next();
if( x == null )
return null;
return new FastXML(x);
}
};
}
public function length() : Int {
return 1;
}
public function setAttribute(name:String, value:String) : Void {
if( x.nodeType == Xml.Document )
throw "Cannot access document attribute "+name;
x.set(name,value);
}
public function toString() : String {
return x.toString();
}
public static function parse(s:String) : FastXML {
var x = Xml.parse(s);
return new FastXML(x.firstChild());
}
public static function filterNodes(a : FastXMLList, f : FastXML -> Bool) : FastXMLList {
var rv = new Array();
for(i in a)
if(f(i))
rv.push(i);
return new FastXMLList(rv);
}
}