-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathfrom-xml.js
220 lines (190 loc) · 5.77 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
/**
* 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 [reviver] {Function} If a function, prescribes how the value
* originally produced by parsing is transformed, before being returned.
* @returns {Object}
*/
/* exported fromXML */
var fromXML = (function(exports) {
const UNESCAPE = {
"&": "&",
"<": "<",
">": ">",
"'": "'",
""": '"'
};
const ATTRIBUTE_KEY = "@";
const CHILD_NODE_KEY = "#";
return (exports.fromXML = _fromXML);
function _fromXML(text, reviver) {
return toObject(parseXML(text), reviver);
}
function parseXML(text) {
const list = String.prototype.split.call(text, /<([^!<>?](?:'[\S\s]*?'|"[\S\s]*?"|[^'"<>])*|!(?:--[\S\s]*?--|\[[^\[\]'"<>]+\[[\S\s]*?]]|DOCTYPE[^\[<>]*?\[[\S\s]*?]|(?:ENTITY[^"<>]*?"[\S\s]*?")?[\S\s]*?)|\?[\S\s]*?\?)>/);
const length = list.length;
// root element
const root = {f: []};
let elem = root;
// dom tree stack
const stack = [];
for (let i = 0; i < length;) {
// text node
const str = list[i++];
if (str) appendText(str);
// child node
const tag = list[i++];
if (tag) parseNode(tag);
}
return root;
function parseNode(tag) {
const tagLength = tag.length;
const firstChar = tag[0];
if (firstChar === "/") {
// close tag
const closed = tag.replace(/^\/|[\s\/].*$/g, "").toLowerCase();
while (stack.length) {
const 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 {
const 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) {
const elem = {f: []};
tag = tag.replace(/\s*\/?$/, "");
const 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) {
if (!elem.t) return;
const list = elem.t.split(/([^\s='"]+(?:\s*=\s*(?:'[\S\s]*?'|"[\S\s]*?"|[^\s'"]*))?)/);
const length = list.length;
let attributes, val;
for (let i = 0; i < length; i++) {
let str = removeSpaces(list[i]);
if (!str) continue;
if (!attributes) {
attributes = {};
}
const 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'
const firstChar = val[0];
const 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);
}
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] === "#") {
const 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) {
if ("string" === typeof elem) return elem;
const raw = elem.r;
if (raw) return raw;
const attributes = parseAttribute(elem, reviver);
let object;
const childList = elem.f;
const 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);
} else {
addObject(object, child.n, toObject(child, reviver));
}
});
} else if (childLength) {
// the node has single child node but no attribute
const child = childList[0];
object = toObject(child, reviver);
if (child.n) {
const wrap = {};
wrap[child.n] = 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) {
if ("undefined" === typeof val) return;
const prev = object[key];
if (prev instanceof Array) {
prev.push(val);
} else if (key in object) {
object[key] = [prev, val];
} else {
object[key] = val;
}
}
})(typeof exports === "object" && exports || {});