-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy pathlexer.js
482 lines (455 loc) · 11.9 KB
/
lexer.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
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
const {
getUnclosedTagException,
getUnopenedTagException,
getDuplicateOpenTagException,
getDuplicateCloseTagException,
throwMalformedXml,
throwXmlInvalid,
XTTemplateError,
} = require("./errors.js");
const { isTextStart, isTextEnd, wordToUtf8 } = require("./doc-utils.js");
const DELIMITER_NONE = 0,
DELIMITER_EQUAL = 1,
DELIMITER_START = 2,
DELIMITER_END = 3;
function inRange(range, match) {
return range[0] <= match.offset && match.offset < range[1];
}
function updateInTextTag(part, inTextTag) {
if (isTextStart(part)) {
if (inTextTag) {
throwMalformedXml();
}
return true;
}
if (isTextEnd(part)) {
if (!inTextTag) {
throwMalformedXml();
}
return false;
}
return inTextTag;
}
function getTag(tag) {
let position = "";
let start = 1;
let end = tag.indexOf(" ");
if (tag[tag.length - 2] === "/") {
position = "selfclosing";
if (end === -1) {
end = tag.length - 2;
}
} else if (tag[1] === "/") {
start = 2;
position = "end";
if (end === -1) {
end = tag.length - 1;
}
} else {
position = "start";
if (end === -1) {
end = tag.length - 1;
}
}
return {
tag: tag.slice(start, end),
position,
};
}
function tagMatcher(content, textMatchArray, othersMatchArray) {
let cursor = 0;
const contentLength = content.length;
const allMatches = {};
for (const m of textMatchArray) {
allMatches[m] = true;
}
for (const m of othersMatchArray) {
allMatches[m] = false;
}
const totalMatches = [];
while (cursor < contentLength) {
cursor = content.indexOf("<", cursor);
if (cursor === -1) {
break;
}
const offset = cursor;
const nextOpening = content.indexOf("<", cursor + 1);
cursor = content.indexOf(">", cursor);
if (cursor === -1 || (nextOpening !== -1 && cursor > nextOpening)) {
throwXmlInvalid(content, offset);
}
const tagText = content.slice(offset, cursor + 1);
const { tag, position } = getTag(tagText);
const text = allMatches[tag];
if (text == null) {
continue;
}
totalMatches.push({
type: "tag",
position,
text,
offset,
value: tagText,
tag,
});
}
return totalMatches;
}
function getDelimiterErrors(delimiterMatches, fullText, syntaxOptions) {
const errors = [];
let inDelimiter = false;
let lastDelimiterMatch = { offset: 0 };
let xtag;
const delimiterWithErrors = delimiterMatches.reduce(
(delimiterAcc, currDelimiterMatch) => {
const position = currDelimiterMatch.position;
const delimiterOffset = currDelimiterMatch.offset;
const lastDelimiterOffset = lastDelimiterMatch.offset;
const lastDelimiterLength = lastDelimiterMatch.length;
xtag = fullText.substr(
lastDelimiterOffset,
delimiterOffset - lastDelimiterOffset
);
if (inDelimiter && position === "start") {
if (lastDelimiterOffset + lastDelimiterLength === delimiterOffset) {
xtag = fullText.substr(
lastDelimiterOffset,
delimiterOffset - lastDelimiterOffset + lastDelimiterLength + 4
);
if (!syntaxOptions.allowUnclosedTag) {
errors.push(
getDuplicateOpenTagException({
xtag,
offset: lastDelimiterOffset,
})
);
lastDelimiterMatch = currDelimiterMatch;
delimiterAcc.push({ ...currDelimiterMatch, error: true });
return delimiterAcc;
}
}
if (!syntaxOptions.allowUnclosedTag) {
errors.push(
getUnclosedTagException({
xtag: wordToUtf8(xtag),
offset: lastDelimiterOffset,
})
);
lastDelimiterMatch = currDelimiterMatch;
delimiterAcc.push({ ...currDelimiterMatch, error: true });
return delimiterAcc;
}
delimiterAcc.pop();
}
if (!inDelimiter && position === "end") {
if (syntaxOptions.allowUnopenedTag) {
return delimiterAcc;
}
if (lastDelimiterOffset + lastDelimiterLength === delimiterOffset) {
xtag = fullText.substr(
lastDelimiterOffset - 4,
delimiterOffset - lastDelimiterOffset + lastDelimiterLength + 4
);
errors.push(
getDuplicateCloseTagException({
xtag,
offset: lastDelimiterOffset,
})
);
lastDelimiterMatch = currDelimiterMatch;
delimiterAcc.push({ ...currDelimiterMatch, error: true });
return delimiterAcc;
}
errors.push(
getUnopenedTagException({
xtag,
offset: delimiterOffset,
})
);
lastDelimiterMatch = currDelimiterMatch;
delimiterAcc.push({ ...currDelimiterMatch, error: true });
return delimiterAcc;
}
inDelimiter = position === "start";
lastDelimiterMatch = currDelimiterMatch;
delimiterAcc.push(currDelimiterMatch);
return delimiterAcc;
},
[]
);
if (inDelimiter) {
const lastDelimiterOffset = lastDelimiterMatch.offset;
xtag = fullText.substr(
lastDelimiterOffset,
fullText.length - lastDelimiterOffset
);
if (!syntaxOptions.allowUnclosedTag) {
errors.push(
getUnclosedTagException({
xtag: wordToUtf8(xtag),
offset: lastDelimiterOffset,
})
);
} else {
delimiterWithErrors.pop();
}
}
return {
delimiterWithErrors,
errors,
};
}
function compareOffsets(startOffset, endOffset) {
if (startOffset === -1 && endOffset === -1) {
return DELIMITER_NONE;
}
if (startOffset === endOffset) {
return DELIMITER_EQUAL;
}
if (startOffset === -1 || endOffset === -1) {
return endOffset < startOffset ? DELIMITER_START : DELIMITER_END;
}
return startOffset < endOffset ? DELIMITER_START : DELIMITER_END;
}
function splitDelimiters(inside) {
const newDelimiters = inside.split(" ");
if (newDelimiters.length !== 2) {
const err = new XTTemplateError("New Delimiters cannot be parsed");
err.properties = {
id: "change_delimiters_invalid",
explanation: "Cannot parser delimiters",
};
throw err;
}
const [start, end] = newDelimiters;
if (start.length === 0 || end.length === 0) {
const err = new XTTemplateError("New Delimiters cannot be parsed");
err.properties = {
id: "change_delimiters_invalid",
explanation: "Cannot parser delimiters",
};
throw err;
}
return [start, end];
}
function getAllDelimiterIndexes(fullText, delimiters, syntaxOptions) {
const indexes = [];
let { start, end } = delimiters;
let offset = -1;
let insideTag = false;
while (true) {
const startOffset = fullText.indexOf(start, offset + 1);
const endOffset = fullText.indexOf(end, offset + 1);
let position = null;
let len;
let compareResult = compareOffsets(startOffset, endOffset);
if (compareResult === DELIMITER_EQUAL) {
compareResult = insideTag ? DELIMITER_END : DELIMITER_START;
}
switch (compareResult) {
case DELIMITER_NONE:
return indexes;
case DELIMITER_END:
insideTag = false;
offset = endOffset;
position = "end";
len = end.length;
break;
case DELIMITER_START:
insideTag = true;
offset = startOffset;
position = "start";
len = start.length;
break;
}
/*
* If tag starts with =, such as {=[ ]=}
* then the delimiters will change right after that tag.
*
* For example, with the following template :
*
* Hello {foo}, {=[ ]=}what's up with [name] ?
*
* The "foo" tag is a normal tag, the "=[ ]=" is a tag to change the
* delimiters to "[" and "]", and the last "name" is a tag with the new
* delimiters
*/
if (
syntaxOptions.changeDelimiterPrefix &&
compareResult === DELIMITER_START &&
fullText[offset + start.length] === syntaxOptions.changeDelimiterPrefix
) {
indexes.push({
offset: startOffset,
position: "start",
length: start.length,
changedelimiter: true,
});
const nextEqual = fullText.indexOf(
syntaxOptions.changeDelimiterPrefix,
offset + start.length + 1
);
const nextEndOffset = fullText.indexOf(end, nextEqual + 1);
indexes.push({
offset: nextEndOffset,
position: "end",
length: end.length,
changedelimiter: true,
});
const insideTag = fullText.substr(
offset + start.length + 1,
nextEqual - offset - start.length - 1
);
[start, end] = splitDelimiters(insideTag);
offset = nextEndOffset;
continue;
}
indexes.push({ offset, position, length: len });
}
}
function parseDelimiters(innerContentParts, delimiters, syntaxOptions) {
const full = innerContentParts.map((p) => p.value).join("");
const delimiterMatches = getAllDelimiterIndexes(
full,
delimiters,
syntaxOptions
);
let offset = 0;
const ranges = innerContentParts.map((part) => {
offset += part.value.length;
return { offset: offset - part.value.length, lIndex: part.lIndex };
});
const { delimiterWithErrors, errors } = getDelimiterErrors(
delimiterMatches,
full,
syntaxOptions
);
let cutNext = 0;
let delimiterIndex = 0;
const parsed = ranges.map((p, i) => {
const { offset } = p;
const range = [offset, offset + innerContentParts[i].value.length];
const partContent = innerContentParts[i].value;
const delimitersInOffset = [];
while (
delimiterIndex < delimiterWithErrors.length &&
inRange(range, delimiterWithErrors[delimiterIndex])
) {
delimitersInOffset.push(delimiterWithErrors[delimiterIndex]);
delimiterIndex++;
}
const parts = [];
let cursor = 0;
if (cutNext > 0) {
cursor = cutNext;
cutNext = 0;
}
for (const delimiterInOffset of delimitersInOffset) {
const value = partContent.substr(
cursor,
delimiterInOffset.offset - offset - cursor
);
if (delimiterInOffset.changedelimiter) {
if (delimiterInOffset.position === "start") {
if (value.length > 0) {
parts.push({ type: "content", value });
}
} else {
cursor = delimiterInOffset.offset - offset + delimiterInOffset.length;
}
continue;
}
if (value.length > 0) {
parts.push({ type: "content", value });
cursor += value.length;
}
const delimiterPart = {
type: "delimiter",
position: delimiterInOffset.position,
offset: cursor + offset,
};
parts.push(delimiterPart);
cursor = delimiterInOffset.offset - offset + delimiterInOffset.length;
}
cutNext = cursor - partContent.length;
const value = partContent.substr(cursor);
if (value.length > 0) {
parts.push({ type: "content", value });
}
return parts;
}, this);
return { parsed, errors };
}
function isInsideContent(part) {
// Stryker disable all : because the part.position === "insidetag" would be enough but we want to make the API future proof
return part.type === "content" && part.position === "insidetag";
// Stryker restore all
}
function getContentParts(xmlparsed) {
return xmlparsed.filter(isInsideContent);
}
function decodeContentParts(xmlparsed, fileType) {
let inTextTag = false;
for (const part of xmlparsed) {
inTextTag = updateInTextTag(part, inTextTag);
if (part.type === "content") {
part.position = inTextTag ? "insidetag" : "outsidetag";
}
if (fileType !== "text" && isInsideContent(part)) {
part.value = part.value.replace(/>/g, ">");
}
}
}
module.exports = {
parseDelimiters,
parse(xmllexed, delimiters, syntax, fileType) {
decodeContentParts(xmllexed, fileType);
const { parsed: delimiterParsed, errors } = parseDelimiters(
getContentParts(xmllexed),
delimiters,
syntax
);
const lexed = [];
let index = 0;
let lIndex = 0;
for (const part of xmllexed) {
if (isInsideContent(part)) {
for (const p of delimiterParsed[index]) {
if (p.type === "content") {
p.position = "insidetag";
}
p.lIndex = lIndex++;
}
Array.prototype.push.apply(lexed, delimiterParsed[index]);
index++;
} else {
part.lIndex = lIndex++;
lexed.push(part);
}
}
return { errors, lexed };
},
xmlparse(content, xmltags) {
const matches = tagMatcher(content, xmltags.text, xmltags.other);
let cursor = 0;
const parsed = matches.reduce((parsed, match) => {
if (content.length > cursor && match.offset - cursor > 0) {
parsed.push({
type: "content",
value: content.substr(cursor, match.offset - cursor),
});
}
cursor = match.offset + match.value.length;
delete match.offset;
parsed.push(match);
return parsed;
}, []);
if (content.length > cursor) {
parsed.push({
type: "content",
value: content.substr(cursor),
});
}
return parsed;
},
};