39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
|
import { ParentPort } from '@electron/internal/utility/parent-port';
|
||
|
const Module = require('module');
|
||
|
const v8Util = process._linkedBinding('electron_common_v8_util');
|
||
|
|
||
|
const entryScript: string = v8Util.getHiddenValue(process, '_serviceStartupScript');
|
||
|
// We modified the original process.argv to let node.js load the init.js,
|
||
|
// we need to restore it here.
|
||
|
process.argv.splice(1, 1, entryScript);
|
||
|
|
||
|
// Clear search paths.
|
||
|
require('../common/reset-search-paths');
|
||
|
|
||
|
// Import common settings.
|
||
|
require('@electron/internal/common/init');
|
||
|
|
||
|
const parentPort: ParentPort = new ParentPort();
|
||
|
Object.defineProperty(process, 'parentPort', {
|
||
|
enumerable: true,
|
||
|
writable: false,
|
||
|
value: parentPort
|
||
|
});
|
||
|
|
||
|
// Based on third_party/electron_node/lib/internal/worker/io.js
|
||
|
parentPort.on('newListener', (name: string) => {
|
||
|
if (name === 'message' && parentPort.listenerCount('message') === 0) {
|
||
|
parentPort.start();
|
||
|
}
|
||
|
});
|
||
|
|
||
|
parentPort.on('removeListener', (name: string) => {
|
||
|
if (name === 'message' && parentPort.listenerCount('message') === 0) {
|
||
|
parentPort.pause();
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// Finally load entry script.
|
||
|
process._firstFileName = Module._resolveFilename(entryScript, null, false);
|
||
|
Module._load(entryScript, Module, true);
|