-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtypestrong-compiler.ts
202 lines (175 loc) · 6.62 KB
/
typestrong-compiler.ts
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
import {Promise} from 'es6-promise';
import * as _ from 'lodash';
import findTSC from './locateTSC';
import i from './interfaces';
import * as utils from './utils';
import * as fs from 'fs';
import {execFile} from 'child_process';
module compiler {
"use strict";
export function compile(options: i.compilerOptions) : Promise<i.compilerResult> {
return new Promise<i.compilerResult>((resolve, reject) => {
var result = emptyCompilerResult();
normalizeOptions(options);
extractAndSetArgs(options, result.tscArgs);
findTSC.locate(options, result);
createCommandTempFile(options,result)
.then((tempFileName) => {
executeCompile(options, result).then(
(compileSuccessResult: i.compilerResult) => {
attemptToDeleteTempFile(result);
resolve(result);
},(compileError: any) => {
attemptToDeleteTempFile(result);
reject(result);
});
},(tempFileError) => {
reject(result);
});
});
}
function attemptToDeleteTempFile(result: i.compilerResult) {
if (!result.runtimeOptions.commandTempFile) {
return;
}
try {
fs.unlinkSync(result.runtimeOptions.commandTempFile);
} catch(tempFileEx) {
throw new Error('cannot delete temp file for tscommand: ' + tempFileEx.message);
}
}
export function emptyCompilerResult() : i.compilerResult {
return {
tscArgs: [],
consoleOutput: null,
actualVersion: null,
runtimeOptions: {
compiler: null,
compileResult: null,
commandTempFile: null
}
};
}
function createCommandTempFile(options: i.compilerOptions, results: i.compilerResult): Promise<string> {
return new Promise<string>((resolve, reject) => {
let commandTempfile = utils.getTempFile('tscommand');
if (!commandTempfile) {
reject(new Error('cannot create temp file for tscommand'));
return;
}
try {
let argsToPass = [results.tscArgs,...options.files].join(' ');
if (options.typeStrongOptions.verbose) {
console.log("TypeScript Arguments:" + argsToPass);
}
fs.writeFileSync(commandTempfile, argsToPass);
results.runtimeOptions.commandTempFile = commandTempfile;
resolve(commandTempfile);
} catch(tempFileEx) {
reject(new Error('cannot create temp file for tscommand: ' + tempFileEx.message));
}
});
}
function executeCompile(options: i.compilerOptions, results: i.compilerResult): Promise<i.compilerResult> {
return new Promise<i.compilerResult>((resolve, reject) => {
if (options.testOptions.doNotRunCompiler) {
results.runtimeOptions.compileResult = 'Affirmatively skipped';
resolve(results);
return;
}
try {
if (options.typeStrongOptions.verbose) {
console.log("Running " + process.execPath + " " + results.runtimeOptions.compiler);
}
let tsc = execFile(process.execPath,
[results.runtimeOptions.compiler,`@${results.runtimeOptions.commandTempFile}`],
(error, stdout, stderr) => {
results.consoleOutput = {
stdout: stdout,
stderr: stderr,
error: error
};
if (!options.typeStrongOptions.silent) {
console.log(stdout.toString());
console.log(stderr.toString());
if (error) {
console.log(`Error: ${error}`);
}
}
if (error === null) {
results.runtimeOptions.compileResult = "Run";
resolve(results);
}
results.runtimeOptions.compileResult = "Run with error";
reject(results);
});
} catch (execFileEx) {
results.runtimeOptions.compileResult = "Run with error";
reject(results);
}
});
}
function bufferAsStringArray(theBuffer : Buffer) : string[] {
if (!theBuffer) {
return [];
}
return theBuffer.toString().replace(/\r/g,'').split('\n');
}
export function defaultCompilerOptions() : i.compilerOptions {
return {
typeStrongOptions: {
silent: true
},
testOptions: {
doNotRunCompiler: false,
doNotSearchForCompiler: false
},
};
}
export function testCompilerOptions() : i.compilerOptions {
var opt = defaultCompilerOptions();
opt.testOptions.doNotRunCompiler = true;
opt.testOptions.doNotSearchForCompiler = true;
return opt;
}
function normalizeOptions(options: i.compilerOptions) {
var defaultOptions = defaultCompilerOptions();
options = options || {};
options.typeStrongOptions = options.typeStrongOptions || {};
options.testOptions = options.testOptions || defaultOptions.testOptions;
}
function extractAndSetArgs(options: i.compilerOptions, args: string[]) {
var maybePushToArgs : (thingToTest: any, ...whatToPush: string[]) => void = <any>_.partial(ifTruthyPush, args);
maybePushToArgs(options.target,"--target", toLowerOrNull(options.target));
maybePushToArgs(options.removeComments, "--removeComments");
maybePushToArgs(options.outDir,"--outDir", options.outDir);
maybePushToArgs(options.out,"--out", options.out);
maybePushToArgs(options.sourceMap,"--sourceMap");
maybePushToArgs(options.sourceRoot,"--sourceRoot", options.sourceRoot);
maybePushToArgs(options.mapRoot,"--mapRoot", options.mapRoot);
maybePushToArgs(options.emitDecoratorMetadata,"--emitDecoratorMetadata");
maybePushToArgs(options.declaration,"--declaration");
maybePushToArgs(options.noImplicitAny,"--noImplicitAny");
maybePushToArgs(options.noResolve,"--noResolve");
maybePushToArgs(options.noEmitOnError,"--noEmitOnError");
maybePushToArgs(options.noEmit,"--noEmit");
maybePushToArgs(options.preserveConstEnums,"--preserveConstEnums");
maybePushToArgs(options.suppressImplicitAnyIndexErrors,"--suppressImplicitAnyIndexErrors");
maybePushToArgs(options.inlineSources,"--inlineSources");
maybePushToArgs(options.inlineSourceMap,"--inlineSourceMap");
maybePushToArgs(options.newLine,"--newLine", options.newLine);
maybePushToArgs(options.module,"--module", toLowerOrNull(options.module));
}
function toLowerOrNull(input: string) {
if (input) {
return input.toLocaleLowerCase();
}
return null;
}
function ifTruthyPush<T>( pushToThis: T[], thingToTest: any, ...whatToPush: T[]) {
if (thingToTest) {
pushToThis.push(...whatToPush);
}
}
}
export {compiler as default};