forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparseXmlJson.js
576 lines (473 loc) · 14 KB
/
parseXmlJson.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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
import { getChildrenByTagName, ancestorHasTag } from "./utilityFunctions";
import { allFilepath, tableOfContent } from "./index.js";
import {
replaceTagWithSymbol,
processEpigraphJson,
processFigureJson,
processExerciseJson,
processReferenceJson,
processSnippetJson,
recursiveProcessPureText,
recursivelyProcessTextSnippetJson
} from "./processingFunctions";
import {
generateSearchData
} from "./generateSearchData";
let paragraph_count = 0;
let heading_count = 0;
let footnote_count = 0;
let snippet_count = 0;
let exercise_count = 0;
let subsubsection_count = 0;
let display_footnote_count = 0;
let chapArrIndex = 0;
let chapterTitle = "";
let displayTitle = "";
export let chapterIndex = "";
export const tagsToRemove = new Set([
"#comment",
"ATTRIBUTION",
"AUTHOR",
"COMMENT",
"WEB_ONLY",
"PDF_ONLY",
"EDIT",
"EXCLUDE",
"HISTORY",
"ORDER",
"SCHEME",
"SOLUTION", // SOLUTION tag handled by processExerciseJson
"INDEX",
"CAPTION",
"NAME",
"LABEL",
"CODEINDEX",
"EXPLANATION",
"NOINDENT",
"EXERCISE_FOLLOWED_BY_TEXT",
"SOFT_HYP",
"WATCH",
"KEEP_TOGETHER",
"START_KEEP_TOGETHER",
"STOP_KEEP_TOGETHER",
"SHRINK_PARAGRAPH",
"STRETCH_PARAGRAPH",
"DONT_BREAK_PAGE",
"DO_BREAK_PAGE",
"FORCE_PAGE_BREAK_AND_FILL",
"FILBREAK",
"LONG_PAGE",
"SHORT_PAGE"
]);
const ignoreTags = new Set([
"CHAPTERCONTENT",
"SPLIT",
"SPLITINLINE",
"JAVASCRIPT",
"CITATION",
"SECTIONCONTENT",
"p",
"WEB_ONLY"
]);
export const addBodyToObj = (obj, node, body) => {
obj["tag"] = node.nodeName;
if (body) {
obj["body"] = body;
}
};
export const addArrayToObj = (obj, node, array) => {
obj["tag"] = node.nodeName;
let body = "";
array.forEach(x => (body += x));
obj["body"] = body;
};
const processText = (body, obj) => {
obj["body"] = body;
obj["tag"] = "#text";
};
const processTagWithChildren = (node, obj) => {
obj["tag"] = node.nodeName;
recursiveProcessTextJson(node.firstChild, obj);
};
const processLatex = (node, obj, inline) => {
const writeTo = [];
if (inline) {
recursiveProcessPureText(node.firstChild, writeTo, {
removeNewline: "all"
});
} else {
recursiveProcessPureText(node.firstChild, writeTo);
}
let math = "";
writeTo.forEach(x => (math += x));
math = math.replace(/mbox/g, "text"); // replace mbox with text
obj["body"] = math;
obj["tag"] = "LATEX";
};
const processTextFunctions = {
// Text tags: tag that is parsed as text
"#text": (node, obj) => {
// ignore the section/subsection tags at the end of chapter/section files
if (!node.nodeValue.match(/&(\w|\.|\d)+;/)) {
const body = node.nodeValue;
if (body.trim()) {
processText(body, obj);
}
}
},
AMP: (_node, obj) => {
processText("&", obj);
},
// Tags with children and no body
B: processTagWithChildren,
EM: processTagWithChildren,
LI: processTagWithChildren,
TT: processTagWithChildren,
TABLE: processTagWithChildren,
TR: processTagWithChildren,
TD: processTagWithChildren,
REFERENCE: processTagWithChildren,
OL: processTagWithChildren,
UL: processTagWithChildren,
br: (node, obj) => {
addBodyToObj(obj, node, false);
obj["tag"] = "BR";
},
BR: (node, obj) => processTextFunctions["br"](node, obj),
EM_NO_INDEX: (node, obj) => {
node.nodeName = "EM";
processTextJson(node, obj);
},
SIGNATURE: (node, obj) => processTextFunctions["EPIGRAPH"](node, obj),
EPIGRAPH: (node, obj) => {
processEpigraphJson(node, obj);
},
BLOCKQUOTE: (node, obj) => {
processEpigraphJson(node, obj);
},
EXERCISE: (node, obj) => {
exercise_count += 1;
processExerciseJson(node, obj, chapArrIndex, exercise_count);
},
FIGURE: (node, obj) => {
addBodyToObj(obj, node, false);
processFigureJson(node, obj);
},
FOOTNOTE: (node, obj) => {
footnote_count += 1;
// clone the current FOOTNOTE node and its children
let cloneNode = node.cloneNode(true);
cloneNode.nodeName = "DISPLAYFOOTNOTE";
let parent = node.parentNode;
// the last parentNode is <#document> the second last node is either <CHAPTER>/<(SUB)SECTION>
while (parent.parentNode.parentNode) {
parent = parent.parentNode;
}
// append the cloned node as the last elements inside <CHAPTER>/<SECTION> node
parent.appendChild(cloneNode);
obj["tag"] = "FOOTNOTE_REF";
obj["id"] = `#footnote-link-${footnote_count}`;
obj["body"] = `${footnote_count}`;
obj["href"] = `/sicpjs/${chapterIndex}#footnote-${footnote_count}`;
},
DISPLAYFOOTNOTE: (node, obj) => {
display_footnote_count += 1;
addBodyToObj(obj, node, false);
obj["id"] = `#footnote-${display_footnote_count}`;
obj["count"] = display_footnote_count;
obj[
"href"
] = `/sicpjs/${chapterIndex}#footnote-link-${display_footnote_count}`;
recursiveProcessTextJson(node.firstChild, obj);
},
H2: (node, obj) => {
node.nodeName = "h2";
processTextJson(node, obj);
},
META: (node, obj) => {
let s = node.firstChild.nodeValue;
s = s.replace(/-/g, "-").replace(/ /g, "\\ ");
addBodyToObj(obj, node, s);
},
METAPHRASE: (node, obj) => {
const childObj = {};
recursiveProcessTextJson(node.firstChild, childObj);
let arr = [];
arr.push("\u3008"); //langle
arr = arr.concat(childObj["child"].map(x => x["body"]));
arr.push("\u3009"); //rangle
addArrayToObj(obj, node, arr);
obj["tag"] = "#text";
},
LINK: (node, obj) => {
const writeTo = [];
recursiveProcessPureText(node.firstChild, writeTo);
addArrayToObj(obj, node, writeTo);
obj["href"] = node.getAttribute("address");
},
LATEX: (node, obj) => processLatex(node, obj, false),
LATEXINLINE: (node, obj) => processLatex(node, obj, true),
LaTeX: (_node, obj) => {
obj["tag"] = "LATEX";
obj["body"] = "$\\LaTeX$";
},
TeX: (_node, obj) => {
obj["tag"] = "LATEX";
obj["body"] = "$\\TeX$";
},
NAME: (node, obj) => {
recursiveProcessTextJson(node.firstChild, obj);
},
P: (node, obj) => {
node.nodeName = "p";
processTextJson(node, obj);
},
TEXT: (node, obj) => {
paragraph_count += 1;
addBodyToObj(obj, node, false);
obj["id"] = "#p" + paragraph_count;
recursiveProcessTextJson(node.firstChild, obj);
},
REF: (node, obj) => {
processReferenceJson(node, obj, chapterIndex);
},
SCHEMEINLINE: (node, obj) =>
processTextFunctions["JAVASCRIPTINLINE"](node, obj),
JAVASCRIPTINLINE: (node, obj) => {
if (
node.firstChild &&
node.firstChild.data &&
node.firstChild.data.search("@") >= 0
) {
node.firstChild.data = node.firstChild.data.replace(/_@/g, "_");
node.firstChild.nodeValue = node.firstChild.nodeValue.replace(/_@/g, "_");
}
const writeTo = [];
recursiveProcessPureText(node.firstChild, writeTo, {
removeNewline: "all"
});
addArrayToObj(obj, node, writeTo);
obj["tag"] = "JAVASCRIPTINLINE";
},
SNIPPET: (node, obj) => {
if (node.getAttribute("HIDE") == "yes") {
return;
} else if (node.getAttribute("LATEX") == "yes") {
addBodyToObj(obj, node, false);
obj["latex"] = true;
obj["eval"] = false;
const writeTo = [];
const textprompt = getChildrenByTagName(node, "JAVASCRIPT_PROMPT")[0];
if (textprompt) {
recursivelyProcessTextSnippetJson(textprompt.firstChild, writeTo);
}
const textit = getChildrenByTagName(node, "JAVASCRIPT")[0];
if (textit) {
recursivelyProcessTextSnippetJson(textit.firstChild, writeTo);
} else {
recursivelyProcessTextSnippetJson(node.firstChild, writeTo);
}
const textoutput = getChildrenByTagName(node, "JAVASCRIPT_OUTPUT")[0];
if (textoutput) {
recursivelyProcessTextSnippetJson(textoutput.firstChild, writeTo);
}
obj["body"] = "";
writeTo.forEach(x => (obj["body"] += x));
// Test for underscores within /texttt{}
const regexp = /\\texttt{[a-zA-Z]+_[a-zA-Z_]+}/g;
const matches = [...obj["body"].matchAll(regexp)];
if (matches.length) {
for (const match of matches) {
const matchStr = match[0].toString();
const newStr = matchStr.replace(/_/g, "\\_");
obj["body"] = obj["body"].replace(matchStr, newStr);
}
}
return;
}
snippet_count += 1;
addBodyToObj(obj, node, false);
obj["latex"] = false;
obj["id"] = snippet_count;
processSnippetJson(node, obj);
},
SUBINDEX: (node, obj) => {
// should occur only within INDEX
// also should only exist after stuff in the main index
addBodyToObj(obj, node, "!");
const order = getChildrenByTagName(node, "ORDER")[0];
if (order) {
recursiveProcessTextJson(order.firstChild, obj);
addBodyToObj(obj, node, "@");
}
recursiveProcessTextJson(node.firstChild, obj);
},
SUBHEADING: (node, obj) => {
heading_count += 1;
addBodyToObj(obj, node, false);
obj["id"] = `#h${heading_count}`;
recursiveProcessTextJson(node.firstChild, obj);
},
SUBSUBHEADING: (node, obj) => {
heading_count += 1;
addBodyToObj(obj, node, false);
obj["id"] = `#h${heading_count}`;
recursiveProcessTextJson(node.firstChild, obj);
},
QUOTE: (node, obj) => {
const createDoubleQuotationMark = () => ({
body: '"',
tag: "#text"
});
const createSingleQuotationMark = () => ({
body: "'",
tag: "#text"
});
recursiveProcessTextJson(node.firstChild, obj);
if (ancestorHasTag(node, "QUOTE")) {
obj["child"].unshift(createSingleQuotationMark());
obj["child"].push(createSingleQuotationMark());
} else {
obj["child"].unshift(createDoubleQuotationMark());
obj["child"].push(createDoubleQuotationMark());
}
},
SECTION: (node, obj) => {
heading_count += 1;
addBodyToObj(obj, node, false);
obj["tag"] = "SUBHEADING";
obj["id"] = `#h${heading_count}`;
const name = {};
obj["child"] = [name];
processTextJson(getChildrenByTagName(node, "NAME")[0], name);
}
};
export const processTextJson = (node, obj) => {
const name = node.nodeName;
if (processTextFunctions[name]) {
processTextFunctions[name](node, obj);
return true;
} else {
const newTag = [];
if (replaceTagWithSymbol(node, newTag)) {
processText(newTag[0], obj);
return true;
} else if (ignoreTags.has(name)) {
recursiveProcessTextJson(node.firstChild, obj);
return true;
} else if (tagsToRemove.has(name)) {
return true;
}
}
console.log("WARNING Unrecognised Tag:\n" + node.toString() + "\n");
return false;
};
export const recursiveProcessTextJson = (node, obj, prevSibling = false) => {
if (!node) return;
// no prevSibling if we are processing the child node
if (!prevSibling) {
const child = [];
obj["child"] = child;
obj = child;
}
// handle subsubsection seperately
if (node.nodeName === "SUBSUBSECTION") {
subsubsection_count += 1;
heading_count += 1;
const name = getChildrenByTagName(node, "NAME")[0];
const title = {
id: `#sec${chapterIndex}.${subsubsection_count}`,
tag: "TITLE",
body:
`${chapterIndex}.${subsubsection_count}\u00A0\u00A0\u00A0` +
name.firstChild.nodeValue
};
obj.push(title);
recursiveProcessTextJson(name.nextSibling, obj, title);
return recursiveProcessTextJson(node.nextSibling, obj, true);
}
let next = {};
processTextJson(node, next);
// remove child array if empty
if (next["child"] && next["child"].length === 0) {
next["child"] = undefined;
}
// Join nested child if no tag
if (!next["tag"] && next["child"]) {
const child = next["child"];
// handle first element of child
if (child[0]["tag"] === "#text" && prevSibling["tag"] === "#text") {
prevSibling["body"] += child[0]["body"];
} else {
obj.push(child[0]);
prevSibling = child[0];
}
for (let i = 1; i < next["child"].length; i++) {
obj.push(child[i]);
prevSibling = child[i];
}
} else if (next["tag"] === "#text" && prevSibling["tag"] === "#text") {
// Join 2 adjacent objects if they are both text
prevSibling["body"] += next["body"];
} else if (next["tag"] || next["child"]) {
obj.push(next);
prevSibling = next;
} else if (!prevSibling) {
// no previous sibling
prevSibling = next;
}
return recursiveProcessTextJson(node.nextSibling, obj, prevSibling);
};
export const parseXmlJson = (doc, arr, filename) => {
chapterIndex = tableOfContent[filename].index;
chapterTitle = tableOfContent[filename].title;
if (chapterIndex.match(/[a-z]+/)) {
displayTitle = chapterTitle;
} else {
displayTitle = chapterIndex + "\u00A0\u00A0" + chapterTitle;
}
paragraph_count = 0;
footnote_count = 0;
display_footnote_count = 0;
heading_count = 0;
subsubsection_count = 0;
snippet_count = 0;
exercise_count = 0;
chapArrIndex = allFilepath.indexOf(filename);
console.log(`${chapArrIndex} parsing chapter ${chapterIndex}`);
// Add section title
const title = {
id: `/sicpjs/${chapterIndex}`,
tag: "TITLE",
body: displayTitle.trim()
};
arr.push(title);
const name = getChildrenByTagName(doc.documentElement, "NAME")[0];
if (chapterIndex == "prefaces96") {
const sections = getChildrenByTagName(doc.documentElement, "SECTION");
const preface96Title = {};
processTextJson(sections[0], preface96Title);
const preface96 = [];
recursiveProcessTextJson(
getChildrenByTagName(sections[0], "NAME")[0].nextSibling,
preface96,
title
);
const preface84Title = {};
processTextJson(sections[1], preface84Title);
const preface84 = [];
recursiveProcessTextJson(sections[1].nextSibling, preface84, title);
arr.push(preface96Title);
for (let i = 0; i < preface96.length; i++) {
arr.push(preface96[i]);
}
arr.push(preface84Title);
console.log(preface84.length);
for (let i = 0; i < preface84.length; i++) {
arr.push(preface84[i]);
}
} else if (name) {
recursiveProcessTextJson(name.nextSibling, arr, title);
}
generateSearchData(doc, filename);
};