-
Notifications
You must be signed in to change notification settings - Fork 3.4k
/
Copy pathpreprocessor.js
executable file
·63 lines (52 loc) · 1.76 KB
/
preprocessor.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
#!/usr/bin/env node
// Copyright 2018 The Emscripten Authors. All rights reserved.
// Emscripten is available under two separate licenses, the MIT license and the
// University of Illinois/NCSA Open Source License. Both these licenses can be
// found in the LICENSE file.
//
// Preprocessor tool. This is a wrapper for the 'preprocess' function which
// allows it to be called as a standalone tool.
//
// Parameters:
// setting file. Can specify 'settings.js' here, alternatively create a temp
// file with modified settings and supply the filename here.
// input file This is the file that will be processed by the preprocessor
'use strict';
const fs = require('fs');
const path = require('path');
global.vm = require('vm');
const arguments_ = process.argv.slice(2);
const debug = false;
global.print = (x) => {
process.stdout.write(x + '\n');
};
global.printErr = (x) => {
process.stderr.write(x + '\n');
};
global.assert = require('assert');
function find(filename) {
const prefixes = [process.cwd(), path.join(__dirname, '..', 'src')];
for (let i = 0; i < prefixes.length; ++i) {
const combined = path.join(prefixes[i], filename);
if (fs.existsSync(combined)) {
return combined;
}
}
return filename;
}
global.read = (filename) => {
const absolute = find(filename);
return fs.readFileSync(absolute).toString();
};
global.load = (f) => {
(0, eval)(read(f) + '//# sourceURL=' + find(f));
};
const settingsFile = arguments_[0];
const inputFile = arguments_[1];
const expandMacros = arguments_.includes('--expandMacros');
load(settingsFile);
load('utility.js');
load('modules.js');
load('parseTools.js');
const output = expandMacros ? processMacros(preprocess(inputFile)) : preprocess(inputFile);
process.stdout.write(output);