forked from kawanet/from-xml
-
Notifications
You must be signed in to change notification settings - Fork 2
/
from-xml.js
229 lines (196 loc) · 6.23 KB
/
from-xml.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
/**
* The fromXML() method parses an XML string, constructing the JavaScript
* value or object described by the string.
*
* @function fromXML
* @param text {String} The string to parse as XML
* @param [options.reviver] {Function} If a function, prescribes how the value
* originally produced by parsing is transformed, before being returned.
* @param [options.forceArray] {Boolean} = false If true, all childs will be always array event if contains one node.
* @param [options] {Function|Object} If function -> @see param [options.reviver]
* @returns {Object}
*/
var fromXML;
(function(exports) {
var UNESCAPE = {
"&": "&",
"<": "<",
">": ">",
"'": "'",
""": '"'
};
var ATTRIBUTE_KEY = "@";
var CHILD_NODE_KEY = "#";
exports.fromXML = fromXML = _fromXML;
function _fromXML(text, options) {
if(typeof options === 'function' ) {
options = { reviver: options };
}
options = Object.assign({}, { forceArray: false }, options);
return toObject(parseXML(text), options.reviver, options.forceArray);
}
function parseXML(text) {
var list = String.prototype.split.call(text, /<([^!<>?](?:'[\S\s]*?'|"[\S\s]*?"|[^'"<>])*|!(?:--[\S\s]*?--|\[[^\[\]'"<>]+\[[\S\s]*?]]|DOCTYPE[^\[<>]*?\[[\S\s]*?]|(?:ENTITY[^"<>]*?"[\S\s]*?")?[\S\s]*?)|\?[\S\s]*?\?)>/);
var length = list.length;
// root element
var root = {f: []};
var elem = root;
// dom tree stack
var stack = [];
for (var i = 0; i < length;) {
// text node
var str = list[i++];
if (str) appendText(str);
// child node
var tag = list[i++];
if (tag) parseNode(tag);
}
return root;
function parseNode(tag) {
var tagLength = tag.length;
var firstChar = tag[0];
if (firstChar === "/") {
// close tag
var closed = tag.replace(/^\/|[\s\/].*$/g, "").toLowerCase();
while (stack.length) {
var tagName = elem.n && elem.n.toLowerCase();
elem = stack.pop();
if (tagName === closed) break;
}
} else if (firstChar === "?") {
// XML declaration
appendChild({n: "?", r: tag.substr(1, tagLength - 2)});
} else if (firstChar === "!") {
if (tag.substr(1, 7) === "[CDATA[" && tag.substr(-2) === "]]") {
// CDATA section
appendText(tag.substr(8, tagLength - 10));
} else {
// comment
appendChild({n: "!", r: tag.substr(1)});
}
} else {
var child = openTag(tag);
appendChild(child);
if (tag[tagLength - 1] === "/") {
child.c = 1; // emptyTag
} else {
stack.push(elem); // openTag
elem = child;
}
}
}
function appendChild(child) {
elem.f.push(child);
}
function appendText(str) {
str = removeSpaces(str);
if (str) appendChild(unescapeXML(str));
}
}
function openTag(tag) {
var elem = {f: []};
tag = tag.replace(/\s*\/?$/, "");
var pos = tag.search(/[\s='"\/]/);
if (pos < 0) {
elem.n = tag;
} else {
elem.n = tag.substr(0, pos);
elem.t = tag.substr(pos);
}
return elem;
}
function parseAttribute(elem, reviver, forceArray) {
if (!elem.t) return;
var list = elem.t.split(/([^\s='"]+(?:\s*=\s*(?:'[\S\s]*?'|"[\S\s]*?"|[^\s'"]*))?)/);
var length = list.length;
var attributes, val;
for (var i = 0; i < length; i++) {
var str = removeSpaces(list[i]);
if (!str) continue;
if (!attributes) {
attributes = {};
}
var pos = str.indexOf("=");
if (pos < 0) {
// bare attribute
str = ATTRIBUTE_KEY + str;
val = null;
} else {
// attribute key/value pair
val = str.substr(pos + 1).replace(/^\s+/, "");
str = ATTRIBUTE_KEY + str.substr(0, pos).replace(/\s+$/, "");
// quote: foo="FOO" bar='BAR'
var firstChar = val[0];
var lastChar = val[val.length - 1];
if (firstChar === lastChar && (firstChar === "'" || firstChar === '"')) {
val = val.substr(1, val.length - 2);
}
val = unescapeXML(val);
}
if (reviver) {
val = reviver(str, val);
}
addObject(attributes, str, val, forceArray);
}
return attributes;
}
function removeSpaces(str) {
return str && str.replace(/^\s+|\s+$/g, "");
}
function unescapeXML(str) {
return str.replace(/(&(?:lt|gt|amp|apos|quot|#(?:\d{1,6}|x[0-9a-fA-F]{1,5}));)/g, function(str) {
if (str[1] === "#") {
var code = (str[2] === "x") ? parseInt(str.substr(3), 16) : parseInt(str.substr(2), 10);
if (code > -1) return String.fromCharCode(code);
}
return UNESCAPE[str] || str;
});
}
function toObject(elem, reviver, forceArray) {
if ("string" === typeof elem) return elem;
var raw = elem.r;
if (raw) return raw;
var attributes = parseAttribute(elem, reviver, false);
var object;
var childList = elem.f;
var childLength = childList.length;
if (attributes || childLength > 1) {
// merge attributes and child nodes
object = attributes || {};
childList.forEach(function(child) {
if ("string" === typeof child) {
addObject(object, CHILD_NODE_KEY, child, forceArray);
} else {
addObject(object, child.n, toObject(child, reviver, forceArray), forceArray);
}
});
} else if (childLength) {
// the node has single child node but no attribute
var child = childList[0];
object = toObject(child, reviver, forceArray);
if (child.n) {
var wrap = {};
wrap[child.n] = forceArray ? [object] : object;
object = wrap;
}
} else {
// the node has no attribute nor child node
object = elem.c ? null : "";
}
if (reviver) {
object = reviver(elem.n || "", object);
}
return object;
}
function addObject(object, key, val, forceArray) {
if ("undefined" === typeof val) return;
var prev = object[key];
if (prev instanceof Array) {
prev.push(val);
} else if (key in object) {
object[key] = [prev, val];
} else {
object[key] = forceArray && key !== "#" ? [val] : val;
}
}
})(typeof exports === "object" && exports || {});