forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
367 lines (325 loc) · 10.7 KB
/
index.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
import fs from "fs";
import fse from "fs-extra";
import util from "util";
import path from "path";
import { DOMParser as dom } from "xmldom";
const readdir = util.promisify(fs.readdir);
const open = util.promisify(fs.open);
const readFile = util.promisify(fs.readFile);
// latex (pdf version)
import {
switchParseFunctionsLatex,
recursiveProcessTextLatex
} from "./parseXmlLatex";
import { setupSnippetsPdf } from "./processingFunctions/processSnippetPdf";
import { preamble, frontmatter, ending } from "./latexContent";
const latexmkrcContent = `$pdflatex = "xelatex %O %S";
$pdf_mode = 1;
$dvi_mode = 0;
$postscript_mode = 0;`;
// html (comparison version)
import { switchTitle } from "./htmlContent";
import { switchParseFunctionsHtml, parseXmlHtml } from "./parseXmlHtml";
import { setupSnippetsHtml } from "./processingFunctions/processSnippetHtml";
import { setupReferences } from "./processingFunctions/processReferenceHtml";
import { generateTOC, sortTOC, indexHtml } from "./generateTocHtml";
export let allFilepath = [];
export let tableOfContent = {};
// js (javascript programs)
import { parseXmlJs } from "./parseXmlJs";
import { setupSnippetsJs } from "./processingFunctions/processSnippetJs";
import { getAnswers } from "./processingFunctions/processExercisePdf";
// json (for cadet frontend)
import { parseXmlJson } from "./parseXmlJson";
import { setupSnippetsJson } from "./processingFunctions/processSnippetJson";
import { createTocJson } from "./generateTocJson";
import { setupReferencesJson } from "./processingFunctions/processReferenceJson";
export let parseType;
let version;
let outputDir; // depends on parseType
const inputDir = path.join(__dirname, "../xml");
const ensureDirectoryExists = (path, cb) => {
fs.mkdir(path, err => {
if (err) {
if (err.code == "EEXIST") cb(null);
// ignore the error if the folder already exists
else cb(err); // something else went wrong
} else cb(null); // successfully created folder
});
};
async function translateXml(filepath, filename, option) {
const fullFilepath = path.join(inputDir, filepath, filename);
const fileToRead = await open(fullFilepath, "r");
// if (err) {
// console.log(err);
// return;
// }
const data = await readFile(fileToRead, { encoding: "utf-8" });
// if (err) {
// console.log(err);
// return;
// }
const doc = new dom().parseFromString(data);
const writeTo = [];
if (parseType == "pdf") {
if (option == "setupSnippet") {
setupSnippetsPdf(doc.documentElement);
return;
}
console.log(path.join(filepath, filename));
// parsing over here
recursiveProcessTextLatex(doc.documentElement, writeTo);
ensureDirectoryExists(path.join(outputDir, filepath), err => {
if (err) {
console.log(err);
return;
}
const outputFile = path.join(
outputDir,
filepath,
filename.replace(/\.xml$/, "") + ".tex"
);
const stream = fs.createWriteStream(outputFile);
stream.once("open", fd => {
stream.write(writeTo.join(""));
stream.end();
});
});
return;
}
if (parseType == "web") {
const relativeFilePath = path.join(
filepath,
filename.replace(/\.xml$/, "") + ".html"
);
if (option == "generateTOC") {
generateTOC(doc, tableOfContent, relativeFilePath);
return;
} else if (option == "setupSnippet") {
//console.log("setting up " + filepath + " " + filename);
setupSnippetsHtml(doc.documentElement);
setupReferences(doc.documentElement, relativeFilePath);
return;
} else if (option == "parseXml") {
// parsing over here
parseXmlHtml(doc, writeTo, relativeFilePath);
const outputFile = path.join(
outputDir,
"/chapters",
tableOfContent[relativeFilePath].index + ".html"
);
const stream = fs.createWriteStream(outputFile);
stream.once("open", fd => {
stream.write(writeTo.join(""));
stream.end();
});
}
return;
}
if (parseType == "js") {
if (option == "setupSnippet") {
setupSnippetsJs(doc.documentElement);
return;
}
console.log(path.join(filepath, filename));
const relativeFileDir = path.join(
outputDir,
filepath,
filename.replace(/\.xml$/, "") + ""
);
ensureDirectoryExists(path.join(outputDir, filepath), err => {});
ensureDirectoryExists(relativeFileDir, err => {
if (err) {
//console.log(err);
return;
}
parseXmlJs(doc, writeTo, relativeFileDir);
});
return;
}
if (parseType == "json") {
const relativeFilePath = path.join(
filepath,
filename.replace(/\.xml$/, "") + ".html"
);
if (option == "generateTOC") {
generateTOC(doc, tableOfContent, relativeFilePath);
return;
} else if (option == "setupSnippet") {
setupSnippetsJson(doc.documentElement);
setupReferencesJson(doc.documentElement, relativeFilePath);
return;
} else if (option == "parseXml") {
const jsonObj = [];
parseXmlJson(doc, jsonObj, relativeFilePath);
const outputFile = path.join(
outputDir,
tableOfContent[relativeFilePath].index + ".json"
);
const stream = fs.createWriteStream(outputFile);
stream.once("open", fd => {
stream.write(JSON.stringify(jsonObj));
stream.end();
});
}
return;
}
}
// for comparison version only
// process files according to allFilepath order after sorting
async function recursiveXmlToHtmlInOrder(option) {
for (let i = 0; i < allFilepath.length; i++) {
const xmlfilepath = allFilepath[i].replace(/\.html$/, "") + ".xml";
// split the filepath and filename
const filepath = xmlfilepath.match(/(.*)[\/\\](.*)/)[1];
const file = xmlfilepath.match(/(.*)[\/\\](.*)/)[2];
//console.log(i + " " + xmlfilepath + "add to promises\n");
await translateXml(filepath, file, option);
}
}
async function recursiveTranslateXml(filepath, option) {
let files;
const fullPath = path.join(inputDir, filepath);
files = await readdir(fullPath);
const promises = [];
files.forEach(file => {
if (file.match(/\.xml$/)) {
// console.log(file + " being processed");
if (
(parseType == "web" || parseType == "json") &&
file.match(/indexpreface/)
) {
// remove index section for web textbook
} else {
if (option == "generateTOC") {
allFilepath.push(
path.join(filepath, file.replace(/\.xml$/, "") + ".html")
);
}
promises.push(translateXml(filepath, file, option));
}
} else if (fs.lstatSync(path.join(fullPath, file)).isDirectory()) {
promises.push(recursiveTranslateXml(path.join(filepath, file), option));
}
});
await Promise.all(promises);
}
// create index.html content
// (to recreate non-split Mobile-friendly Web Edition: remove conditional)
const createIndexHtml = version => {
const indexFilepath = path.join(outputDir, "index.html");
const writeToIndex = [];
indexHtml(writeToIndex);
const stream = fs.createWriteStream(indexFilepath);
stream.once("open", fd => {
stream.write(writeToIndex.join(""));
stream.end();
});
};
const createMain = () => {
if (!fs.existsSync(outputDir)) {
fs.mkdirSync(outputDir);
}
if (parseType == "js" || parseType == "json") {
return;
}
if (parseType == "web") {
if (!fs.existsSync(path.join(outputDir, "/chapters"))) {
fs.mkdirSync(path.join(outputDir, "/chapters"));
}
fse.copy(path.join(__dirname, "/../static"), outputDir, err => {
if (err) return console.error(err);
});
return;
}
// for latex version only
// create sicpjs.tex file
const chaptersFound = [];
const files = fs.readdirSync(inputDir);
files.forEach(file => {
if (file.match(/chapter/)) {
chaptersFound.push(file);
}
});
const stream = fs.createWriteStream(path.join(outputDir, "sicpjs.tex"));
stream.once("open", fd => {
stream.write(preamble);
stream.write(frontmatter);
chaptersFound.forEach(chapter => {
const pathStr = "./" + chapter + "/" + chapter + ".tex";
stream.write("\\input{" + pathStr + "}\n");
});
stream.write(ending);
stream.end();
});
// makes the .latexmkrc file
const latexmkrcStream = fs.createWriteStream(
path.join(outputDir, ".latexmkrc")
);
latexmkrcStream.once("open", fd => {
latexmkrcStream.write(latexmkrcContent);
latexmkrcStream.end();
});
};
async function main() {
parseType = process.argv[2];
if (parseType == "pdf") {
outputDir = path.join(__dirname, "../latex_pdf");
switchParseFunctionsLatex(parseType);
createMain();
console.log("setup snippets\n");
await recursiveTranslateXml("", "setupSnippet");
console.log("setup snippets done\n");
await recursiveTranslateXml("", "parseXml");
// Dump all the answers somewhere
// This must be called efter the recursiveTranslateXml has collected all the answers
const answerStream = fs.createWriteStream(
path.join(outputDir, "answers.tex")
);
answerStream.once("open", fd => {
answerStream.write(getAnswers().join("\n\n%-----\n\n"));
answerStream.end();
});
} else if (parseType == "web") {
version = process.argv[3];
if (version == "split") {
outputDir = path.join(__dirname, "../html_split");
} else if (version == "scheme") {
outputDir = path.join(__dirname, "../html_scheme");
}
switchParseFunctionsHtml(version);
switchTitle(version);
createMain();
console.log("\ngenerate table of content\n");
await recursiveTranslateXml("", "generateTOC");
allFilepath = sortTOC(allFilepath);
//console.log(tableOfContent);
//console.log(allFilepath);
//console.log(allFilepath.slice(50));
createIndexHtml(version);
console.log("setup snippets and references\n");
await recursiveXmlToHtmlInOrder("setupSnippet");
//console.log(referenceStore);
console.log("setup snippets and references done\n");
recursiveXmlToHtmlInOrder("parseXml");
} else if (parseType == "js") {
outputDir = path.join(__dirname, "../js_programs");
createMain();
console.log("setup snippets\n");
await recursiveTranslateXml("", "setupSnippet");
console.log("setup snippets done\n");
recursiveTranslateXml("", "parseXml");
} else if (parseType == "json") {
outputDir = path.join(__dirname, "../json");
createMain();
console.log("\ngenerate table of content\n");
await recursiveTranslateXml("", "generateTOC");
allFilepath = sortTOC(allFilepath);
createTocJson(outputDir);
console.log("setup snippets and references\n");
await recursiveXmlToHtmlInOrder("setupSnippet");
console.log("setup snippets and references done\n");
recursiveXmlToHtmlInOrder("parseXml");
}
}
main();