-
Notifications
You must be signed in to change notification settings - Fork 0
/
jqXMLUtils.js
250 lines (242 loc) · 7.07 KB
/
jqXMLUtils.js
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
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
(function($) {
//Converts XML DOM to JSON
$.extend ({
xmlToJSON: function(xdoc) {
try {
if(!xdoc){ return null; }
var tmpObj = {};
tmpObj.typeOf = "JSXBObject";
var xroot = (xdoc.nodeType == 9)?xdoc.documentElement:xdoc;
tmpObj.RootName = xroot.nodeName || "";
if(xdoc.nodeType == 3 || xdoc.nodeType == 4) {
return xdoc.nodeValue;
}
var isNumeric = function(s) {
var testStr = "";
if(s && typeof s == "string") { testStr = s; }
var pattern = /^((-)?([0-9]*)((\.{0,1})([0-9]+))?$)/;
return pattern.test(testStr);
};
//Alters attribute and collection names to comply with JS
function formatName(name) {
var regEx = /-/g;
var tName = String(name).replace(regEx,"_");
return tName;
}
//Set Attributes of an object
function setAttributes(obj, node) {
if(node.attributes.length > 0) {
var a = node.attributes.length-1;
var attName;
obj._attributes = [];
do { //Order is irrelevant (speed-up)
attName = String(formatName(node.attributes[a].name));
obj._attributes.push(attName);
obj[attName] = $.trim(node.attributes[a].value);
} while(a--);
}
}
//Set collections
function setHelpers(grpObj) {
//Selects a node withing array where attribute = value
grpObj.getNodeByAttribute = function(attr, obj) {
if(this.length > 0) {
var cNode;
var maxLen = this.length -1;
try {
do {
cNode = this[maxLen];
if(cNode[attr] == obj) {
return cNode;
}
} while(maxLen--);
} catch(e) {return false;}
return false;
}
};
grpObj.contains = function(attr, obj) {
if(this.length > 0) {
var maxLen = this.length -1;
try {
do {
if(this[maxLen][attr] == obj) {
return true;
}
} while(maxLen--);
} catch(e) {return false;}
return false;
}
};
grpObj.indexOf = function(attr, obj) {
var pos = -1;
if(this.length > 0) {
var maxLen = this.length -1;
try {
do {
if(this[maxLen][attr] == obj) {
pos = maxLen;
}
} while(maxLen--);
} catch(e) {return -1;}
return pos;
}
};
grpObj.SortByAttribute = function(col, dir) {
if(this.length) {
function getValue(pair, idx) {
var out = pair[idx];
out = (isNumeric(out))?parseFloat(out):out;
return out;
}
function sortFn(a, b) {
var res = 0;
var tA, tB;
tA = getValue(a, col);
tB = getValue(b, col);
if(tA < tB) { res = -1; } else if(tB < tA) { res = 1; }
if(dir) {
res = (dir.toUpperCase() == "DESC")?(0 - res):res;
}
return res;
}
this.sort(sortFn);
}
};
grpObj.SortByValue = function(dir) {
if(this.length) {
function getValue(pair) {
var out = pair.Text;
out = (isNumeric(out))?parseFloat(out):out;
return out;
}
function sortFn(a, b) {
var res = 0;
var tA, tB;
tA = getValue(a);
tB = getValue(b);
if(tA < tB) { res = -1; } else if(tB < tA) { res = 1; }
if(dir) {
res = (dir.toUpperCase() == "DESC")?(0 - res):res;
}
return res;
}
this.sort(sortFn);
}
};
grpObj.SortByNode = function(node, dir) {
if(this.length) {
function getValue(pair, node) {
var out = pair[node][0].Text;
out = (isNumeric(out))?parseFloat(out):out;
return out;
}
function sortFn(a, b) {
var res = 0;
var tA, tB;
tA = getValue(a, node);
tB = getValue(b, node);
if(tA < tB) { res = -1; } else if(tB < tA) { res = 1; }
if(dir) {
res = (dir.toUpperCase() == "DESC")?(0 - res):res;
}
return res;
}
this.sort(sortFn);
}
};
}
//Recursive JSON Assembler
//Set Object Nodes
function setObjects(obj, node) {
var elemName; //Element name
var cnode; //Current Node
var tObj; //New subnode
var cName = "";
if(!node) { return null; }
//Set node attributes if any
if(node.attributes.length > 0){setAttributes(obj, node);}
obj.Text = "";
if(node.hasChildNodes()) {
var nodeCount = node.childNodes.length - 1;
var n = 0;
do { //Order is irrelevant (speed-up)
cnode = node.childNodes[n];
switch(cnode.nodeType) {
case 1: //Node
//Process child nodes
obj._children = [];
//SOAP XML FIX to remove namespaces (i.e. soapenv:)
elemName = (cnode.localName)?cnode.localName:cnode.baseName;
elemName = formatName(elemName);
if(cName != elemName) { obj._children.push(elemName); }
//Create sub elemns array
if(!obj[elemName]) {
obj[elemName] = []; //Create Collection
}
tObj = {};
obj[elemName].push(tObj);
if(cnode.attributes.length > 0) {
setAttributes(tObj, cnode);
}
//Set Helper functions (contains, indexOf, sort, etc);
if(!obj[elemName].contains) {
setHelpers(obj[elemName]);
}
cName = elemName;
if(cnode.hasChildNodes()) {
setObjects(tObj, cnode); //Recursive Call
}
break;
case 3: //Text Value
obj.Text += $.trim(cnode.nodeValue);
break;
case 4: //CDATA
obj.Text += (cnode.text)?$.trim(cnode.text):$.trim(cnode.nodeValue);
break;
}
} while(n++ < nodeCount);
}
}
//RUN
setObjects(tmpObj, xroot);
//Clean-up memmory
xdoc = null;
xroot = null;
return tmpObj;
} catch(e) {
return null;
}
}
});
//Converts Text to XML DOM
$.extend({
textToXML: function(strXML) {
var xmlDoc = null;
try {
xmlDoc = ($.browser.msie)?new ActiveXObject("Microsoft.XMLDOM"):new DOMParser();
xmlDoc.async = false;
} catch(e) {throw new Error("XML Parser could not be instantiated");}
var out;
try {
if($.browser.msie) {
out = (xmlDoc.loadXML(strXML))?xmlDoc:false;
} else {
out = xmlDoc.parseFromString(strXML, "text/xml");
}
} catch(e) { throw new Error("Error parsing XML string"); }
return out;
}
});
})(jQuery);