forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparseXmlJs.js
99 lines (83 loc) · 1.98 KB
/
parseXmlJs.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
import path from "path";
import fs from "fs";
import { processSnippetJs } from "./processingFunctions";
let snippet_count = 0;
let relativeFileDirectory = "";
const tagsToRemove = new Set([
"#comment",
"COMMENT",
"CHANGE",
"EDIT",
"EXCLUDE",
"HISTORY",
"ORDER",
"SCHEME",
"INDEX",
"LABEL",
"NAME"
]);
const ignoreTags = new Set([
"CHAPTERCONTENT",
"span",
"SPLITINLINE",
"JAVASCRIPT"
]);
const preserveTags = new Set([
"B",
"EM",
"QUOTE",
"SPLIT",
"UL",
"LI",
"OL",
"SECTIONCONTENT",
"CITATION"
]);
const processTextFunctions = {
SNIPPET: (node, writeTo) => {
if (node.getAttribute("LATEX") == "yes") {
return;
} else if (node.getAttribute("EVAL") === "no") {
return;
}
const writeTojs = [];
snippet_count += 1;
const snippet_count_string =
snippet_count < 10 ? "0" + snippet_count : snippet_count;
processSnippetJs(node, writeTojs, "js");
const nameNode = node.getElementsByTagName("NAME")[0];
const fileName = nameNode
? snippet_count_string + "_" + nameNode.firstChild.nodeValue
: snippet_count_string;
const outputFile = path.join(relativeFileDirectory, fileName + `.js`);
const stream = fs.createWriteStream(outputFile);
stream.once("open", fd => {
stream.write(writeTojs.join(""));
stream.end();
});
}
};
const processText = (node, writeTo) => {
const name = node.nodeName;
if (name == "SNIPPET") {
processTextFunctions[name](node, writeTo);
return true;
} else {
if (tagsToRemove.has(name)) {
return true;
} else {
recursiveProcessText(node.firstChild, writeTo);
return true;
}
}
};
const recursiveProcessText = (node, writeTo) => {
if (!node) return;
processText(node, writeTo);
return recursiveProcessText(node.nextSibling, writeTo);
};
export const parseXmlJs = (doc, writeTo, filename) => {
snippet_count = 0;
relativeFileDirectory = filename;
recursiveProcessText(doc.documentElement, writeTo);
};