-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathpreload.wrapper.ts
More file actions
86 lines (75 loc) · 2.28 KB
/
preload.wrapper.ts
File metadata and controls
86 lines (75 loc) · 2.28 KB
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
// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { readFileSync, writeFileSync } from 'node:fs';
import { join } from 'node:path';
import { Script, constants } from 'node:vm';
import { ipcRenderer } from 'electron';
// This file is in root dir, but the bundled file that we run is in
// bundles/preload
const srcPath = join(__dirname, 'main.js');
const cachePath = join(__dirname, '..', '..', 'preload.bundle.cache');
let cachedData: Buffer<ArrayBuffer> | undefined;
try {
if (!process.env.GENERATE_PRELOAD_CACHE) {
cachedData = readFileSync(cachePath);
}
} catch (error) {
// No cache - no big deal
if (error.code !== 'ENOENT') {
throw error;
}
}
const source = readFileSync(srcPath);
window.preloadCompileStartTime = Date.now();
// `filename` is used for:
//
// - Annotating stack traces
// - Resolving dynamic `import()` calls
//
// When it is not an absolute path `import()` is resolved relative to the `cwd`.
//
// Since filename gets written into the `preload.bundle.cache` we need to use a
// path-independent value for reproducibility, and otherwise use full absolute
// path in the packaged app.
const filename = process.env.GENERATE_PRELOAD_CACHE
? 'preload.bundle.js'
: srcPath;
const script = new Script(
`(function(require, __dirname, exports){${source.toString()}})`,
{
filename,
lineOffset: 0,
cachedData,
importModuleDynamically: constants.USE_MAIN_CONTEXT_DEFAULT_LOADER,
}
);
const { cachedDataRejected } = script;
const fn = script.runInThisContext({
filename,
lineOffset: 0,
columnOffset: 0,
displayErrors: true,
importModuleDynamically: constants.USE_MAIN_CONTEXT_DEFAULT_LOADER,
});
// See `scripts/generate-preload-cache.mjs`
if (process.env.GENERATE_PRELOAD_CACHE) {
// Use hottest cache possible in CI
if (process.env.CI) {
fn(require, __dirname, {});
window.startApp();
}
writeFileSync(cachePath, script.createCachedData());
ipcRenderer.send('shutdown');
} else {
fn(require, __dirname, {});
window.SignalCI?.setPreloadCacheHit(
cachedData != null && !cachedDataRejected
);
}
if (cachedDataRejected) {
// oxlint-disable-next-line no-console
console.log('preload cache rejected');
} else {
// oxlint-disable-next-line no-console
console.log('preload cache hit');
}