forked from SE-JE/venida
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compiler.ts
192 lines (139 loc) · 4.79 KB
/
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
import * as ts from "typescript";
import * as fs from "fs";
import * as path from "path";
import * as tsconfig from "tsconfig";
/**
* Scan all ts files
*
* @params directory
* @params files
*/
function scan (directory: string, files: string[]) {
let readDirectory = fs.readdirSync(directory);
readDirectory.forEach((file: any) => {
const absolute = path.join(directory, file);
let excludeRegex = new RegExp("^(node_modules|compiler|build|\.git|\.vscode)");
if (excludeRegex.test(absolute)) {
return;
}
if (fs.statSync(absolute).isDirectory()) {
if (!fs.existsSync(`${option.outDir}/`+absolute.replace(/\./g, "/"))) {
fs.mkdirSync(`${option.outDir}/`+absolute.replace(/\./g, "/"), { recursive: true });
}
return scan(absolute, files);
} else {
let fileName = path.basename(absolute);
if (fileName.match(new RegExp("\.ts$"))) {
files.push(absolute);
} else if (!excludeRegex.test(absolute)) {
}
}
});
}
/**
* Get source file to text
*
* @param fileName path file
* @param target target compile typescript
* @returns string | undefined
*/
function getSourceFileToText (fileName: string, target: ts.ScriptTarget) {
const sourceText = ts.sys.readFile(fileName);
return (sourceText !== undefined)
? ts.createSourceFile(fileName, sourceText, target).text
: undefined;
}
/**
* Custom ts compiler host
*/
function createCompilerHost (options: ts.CompilerOptions): ts.CompilerHost {
return {
getSourceFile: (name: any, languageVersion: any) => {
let check = new RegExp('.*/node_modules/.*');
// for non node_modules file
if (!check.test(name)) {
let string = getSourceFileToText(name, option.target);
let arrString = (string !== undefined) ? string.split('\n') : [];
let newReplacementString = `///<reference types="node" />\n` +
`///<reference path="${__dirname}/declaration/global-types.d.ts" />\n`;
let skipPrint = false;
arrString.forEach((str: string) => {
if (!skipPrint) {
newReplacementString += str+'\n';
}
skipPrint = false
});
let sourceFile = ts.createSourceFile(
name, newReplacementString, option.target
);
return sourceFile;
} else {
//for node_modules use default compiler
const defaultCompilerHost = ts.createCompilerHost({});
return defaultCompilerHost.getSourceFile(
name, languageVersion
);
}
},
writeFile: (filename: any, data: any) => {
console.log(filename);
ts.sys.writeFile(filename, data);
},
getDefaultLibFileName: () => ts.getDefaultLibFilePath(option),
getCurrentDirectory: () => ts.sys.getCurrentDirectory(),
getDirectories: path => ts.sys.getDirectories(path),
getCanonicalFileName: fileName =>
// ts.sys.useCaseSensitiveFileNames ? fileName : fileName.toLowerCase(),
fileName,
getNewLine: () => ts.sys.newLine,
useCaseSensitiveFileNames: () => ts.sys.useCaseSensitiveFileNames,
fileExists: (pathFile: string) => ts.sys.fileExists(pathFile),
readFile: (pathFile: string) => ts.sys.readFile(pathFile)
};
}
/**
* Load compiler config
*/
let data = tsconfig.loadSync('./tsconfig.json');
let option = data.config.compilerOptions;
console.log(ts.getDefaultLibFilePath(option));
let directory = './';
let files: string[] = [];
if (process.argv[2]) {
files.push(process.argv[2])
} else {
scan(directory, files);
}
/**
* Compile all ts files
*/
const program = ts.createProgram(
files, option, createCompilerHost(option)
);
const diagnostics = ts.getPreEmitDiagnostics(program);
let isValid = true;
for (const diagnostic of diagnostics) {
let message = diagnostic.messageText;
const file: any = diagnostic.file;
const filename: any = file.fileName;
const lineAndChar: any = file.getLineAndCharacterOfPosition(
diagnostic.start
);
const line = lineAndChar.line + 1;
const character = lineAndChar.character + 1;
if (typeof message === 'string') {
message = message.replace('$VenidaPlatform', 'Venida');
}
console.log(message);
console.log(`(${filename}:${line}:${character})`);
if (message) {
isValid = false;
}
}
/**
* Stop compiler process if error detected
*/
if (!isValid) {
process.exit(1);
}
program.emit();