This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
/
caching-compiler.js
478 lines (380 loc) · 11.8 KB
/
caching-compiler.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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
import {
getMaxListeners,
once,
setMaxListeners
} from "./safe/process.js"
import { sep, resolve } from "./safe/path.js"
import COMPILER from "./constant/compiler.js"
import ENTRY from "./constant/entry.js"
import ESM from "./constant/esm.js"
import Compiler from "./compiler.js"
import GenericBuffer from "./generic/buffer.js"
import exists from "./fs/exists.js"
import getCachePathHash from "./util/get-cache-path-hash.js"
import isExtMJS from "./path/is-ext-mjs.js"
import getEnv from "./util/get-env.js"
import mkdirp from "./fs/mkdirp.js"
import parseJSON from "./util/parse-json.js"
import relative from "./path/relative.js"
import removeFile from "./fs/remove-file.js"
import shared from "./shared.js"
import toExternalFunction from "./util/to-external-function.js"
import writeFile from "./fs/write-file.js"
function init() {
const {
SOURCE_TYPE_MODULE,
SOURCE_TYPE_SCRIPT
} = COMPILER
const {
TYPE_ESM
} = ENTRY
const {
PACKAGE_VERSION
} = ESM
const CachingCompiler = {
compile(code, options = {}) {
if (! options.eval &&
options.filename &&
options.cachePath) {
return compileAndWrite(code, options)
}
return compile(code, options)
},
from(entry) {
const pkg = entry.package
const { cache } = pkg
const { cacheName } = entry
const meta = cache.meta.get(cacheName)
if (meta === void 0) {
return null
}
const { length } = meta
const result = {
circular: 0,
code: null,
codeWithTDZ: null,
filename: null,
firstAwaitOutsideFunction: null,
firstReturnOutsideFunction: null,
mtime: -1,
scriptData: null,
sourceType: SOURCE_TYPE_SCRIPT,
transforms: 0,
yieldIndex: -1
}
if (length > 2) {
const filename = meta[7]
if (typeof filename === "string") {
result.filename = resolve(pkg.cachePath, filename)
}
const deflatedFirstAwaitOutsideFunction = meta[5]
if (deflatedFirstAwaitOutsideFunction !== null) {
result.firstAwaitOutsideFunction = inflateLineInfo(deflatedFirstAwaitOutsideFunction)
}
const deflatedFirstReturnOutsideFunction = meta[6]
if (deflatedFirstReturnOutsideFunction !== null) {
result.firstReturnOutsideFunction = inflateLineInfo(deflatedFirstReturnOutsideFunction)
}
result.mtime = +meta[3]
result.sourceType = +meta[4]
result.transforms = +meta[2]
}
if (length > 7 &&
result.sourceType === SOURCE_TYPE_MODULE) {
entry.type = TYPE_ESM
result.circular = +meta[8]
result.yieldIndex = +meta[9]
}
const [offsetStart, offsetEnd] = meta
if (offsetStart !== -1 &&
offsetEnd !== -1) {
result.scriptData = GenericBuffer.slice(cache.buffer, offsetStart, offsetEnd)
}
entry.compileData = result
cache.compile.set(cacheName, result)
return result
}
}
function compile(code, options) {
const result = Compiler.compile(code, toCompileOptions(options))
if (options.eval) {
return result
}
result.filename = options.filename
result.mtime = options.mtime
return result
}
function compileAndWrite(code, options) {
const { cacheName, cachePath } = options
const result = compile(code, options)
if (! cacheName ||
! cachePath ||
result.transforms === 0) {
return result
}
const { pendingWrites } = shared
let compileDatas = pendingWrites.get(cachePath)
if (compileDatas === void 0) {
compileDatas = new Map
pendingWrites.set(cachePath, compileDatas)
}
compileDatas.set(cacheName, result)
return result
}
function deflateLineInfo({ column, line }) {
return [column, line]
}
function inflateLineInfo([column, line]) {
return { column, line }
}
function onExit() {
setMaxListeners(Math.max(getMaxListeners() - 1, 0))
const { pendingScripts, pendingWrites } = shared
const { dir } = shared.package
dir.forEach((cache, cachePath) => {
if (cachePath === "") {
return
}
const noCacheDir = ! mkdirp(cachePath)
let { dirty } = cache
if (! dirty &&
! noCacheDir) {
dirty = !! parseJSON(getEnv("ESM_DISABLE_CACHE"))
cache.dirty = dirty
}
if (dirty ||
noCacheDir) {
dir.delete(cachePath)
pendingScripts.delete(cachePath)
pendingWrites.delete(cachePath)
}
if (noCacheDir) {
return
}
if (dirty) {
writeMarker(cachePath + sep + ".dirty")
removeFile(cachePath + sep + ".data.blob")
removeFile(cachePath + sep + ".data.json")
cache.compile.forEach((compileData, cacheName) => {
removeFile(cachePath + sep + cacheName)
})
}
})
const pendingScriptDatas = new Map
const useCreateCachedData = shared.support.createCachedData
pendingScripts.forEach((scripts, cachePath) => {
const cache = dir.get(cachePath)
const compileDatas = cache.compile
const metas = cache.meta
scripts.forEach((script, cacheName) => {
let compileData = compileDatas.get(cacheName)
if (compileData === void 0) {
compileData = null
}
let cachedData
if (compileData !== null) {
cachedData = compileData.scriptData
if (cachedData === null) {
cachedData = void 0
}
}
let changed = false
let scriptData = null
if (cachedData === void 0) {
if (useCreateCachedData &&
typeof script.createCachedData === "function") {
scriptData = script.createCachedData()
} else if (script.cachedDataProduced) {
scriptData = script.cachedData
}
}
if (scriptData !== null &&
scriptData.length) {
changed = true
}
if (compileData !== null) {
if (scriptData !== null) {
compileData.scriptData = scriptData
} else if (cachedData !== void 0 &&
script.cachedDataRejected) {
changed = true
const meta = metas.get(cacheName)
if (meta !== void 0) {
meta[0] = -1
meta[1] = -1
}
scriptData = null
compileData.scriptData = null
}
}
if (changed &&
cacheName !== "") {
let scriptDatas = pendingScriptDatas.get(cachePath)
if (scriptDatas === void 0) {
scriptDatas = new Map
pendingScriptDatas.set(cachePath, scriptDatas)
}
scriptDatas.set(cacheName, scriptData)
}
})
})
pendingScriptDatas.forEach((scriptDatas, cachePath) => {
const cache = dir.get(cachePath)
const compileDatas = cache.compile
const metas = cache.meta
scriptDatas.forEach((scriptData, cacheName) => {
let meta = metas.get(cacheName)
if (meta !== void 0) {
return
}
meta = [-1, -1]
let compileData = compileDatas.get(cacheName)
if (compileData === void 0) {
compileData = null
}
if (compileData !== null) {
const {
filename,
firstAwaitOutsideFunction,
firstReturnOutsideFunction,
mtime,
sourceType,
transforms
} = compileData
const deflatedFirstAwaitOutsideFunction = firstAwaitOutsideFunction === null
? null
: deflateLineInfo(firstAwaitOutsideFunction)
const deflatedFirstReturnOutsideFunction = firstReturnOutsideFunction === null
? null
: deflateLineInfo(firstReturnOutsideFunction)
if (sourceType === SOURCE_TYPE_SCRIPT) {
if (transforms !== 0) {
meta.push(
transforms,
mtime,
sourceType,
deflatedFirstAwaitOutsideFunction,
deflatedFirstReturnOutsideFunction,
relative(cachePath, filename)
)
}
} else {
meta.push(
transforms,
mtime,
sourceType,
deflatedFirstAwaitOutsideFunction,
deflatedFirstReturnOutsideFunction,
relative(cachePath, filename),
compileData.circular,
compileData.yieldIndex
)
}
}
metas.set(cacheName, meta)
})
const { buffer } = cache
const buffers = []
const jsonMeta = {}
let offset = 0
metas.forEach((meta, cacheName) => {
let scriptData = scriptDatas.get(cacheName)
if (scriptData === void 0) {
let compileData = compileDatas.get(cacheName)
if (compileData === void 0) {
compileData = null
}
const [offsetStart, offsetEnd] = meta
scriptData = null
if (compileData !== null) {
scriptData = compileData.scriptData
} else if (offsetStart !== -1 &&
offsetEnd !== -1) {
scriptData = GenericBuffer.slice(buffer, offsetStart, offsetEnd)
}
}
if (scriptData !== null) {
meta[0] = offset
offset += scriptData.length
meta[1] = offset
buffers.push(scriptData)
}
jsonMeta[cacheName] = meta
})
writeFile(cachePath + sep + ".data.blob", GenericBuffer.concat(buffers))
writeFile(cachePath + sep + ".data.json", JSON.stringify({
meta: jsonMeta,
version: PACKAGE_VERSION
}))
})
pendingWrites.forEach((compileDatas, cachePath) => {
compileDatas.forEach((compileData, cacheName) => {
if (writeFile(cachePath + sep + cacheName, compileData.code)) {
removeExpired(cachePath, cacheName)
}
})
})
}
function removeExpired(cachePath, cacheName) {
const cache = shared.package.dir.get(cachePath)
const compileDatas = cache.compile
const metas = cache.meta
const pathHash = getCachePathHash(cacheName)
compileDatas.forEach((compileData, otherCacheName) => {
if (otherCacheName !== cacheName &&
otherCacheName.startsWith(pathHash)) {
compileDatas.delete(otherCacheName)
metas.delete(otherCacheName)
removeFile(cachePath + sep + otherCacheName)
}
})
}
function toCompileOptions(options = {}) {
let {
cjsPaths,
cjsVars,
topLevelReturn
} = options
if (isExtMJS(options.filename)) {
cjsPaths = void 0
cjsVars = void 0
topLevelReturn = void 0
}
const { runtimeName } = options
if (options.eval) {
// Set `topLevelReturn` to `true` so that the "Illegal return statement"
// syntax error will occur within `eval()`.
return {
cjsPaths,
cjsVars,
runtimeName,
topLevelReturn: true
}
}
return {
cjsPaths,
cjsVars,
generateVarDeclarations: options.generateVarDeclarations,
hint: options.hint,
pragmas: options.pragmas,
runtimeName,
sourceType: options.sourceType,
strict: options.strict,
topLevelReturn
}
}
function writeMarker(filename) {
if (! exists(filename)) {
writeFile(filename, "")
}
}
// Create cache in an "exit" event handler. "SIGINT" and "SIGTERM" events are
// not safe to observe because handlers conflict with applications managing
// "SIGINT" and "SIGTERM" themselves.
setMaxListeners(getMaxListeners() + 1)
once("exit", toExternalFunction(onExit))
return CachingCompiler
}
export default shared.inited
? shared.module.CachingCompiler
: shared.module.CachingCompiler = init()