This commit is contained in:
I-Have-An-Issue 2023-02-16 21:27:40 -05:00
parent 1a59316e51
commit d8a13f511a
No known key found for this signature in database
GPG Key ID: E55435DEA0825091
1 changed files with 25 additions and 25 deletions

View File

@ -1,54 +1,54 @@
const EventEmitter = require("events");
const child_process = require("child_process");
const waitPort = require("wait-port");
const EventEmitter = require("events")
const child_process = require("child_process")
const waitPort = require("wait-port")
const logger = require("../../lib/logger.js");
const randport = require("../../lib/randport.js");
const logger = require("../../lib/logger.js")
const randport = require("../../lib/randport.js")
const chalk = require("chalk");
const chalk = require("chalk")
class RCCService extends EventEmitter {
constructor() {
super();
super()
}
Start() {
return new Promise(async (resolve, reject) => {
try {
this.port = await randport.tcp();
this.port = await randport.tcp()
if (process.platform == "win32") {
this.proc = child_process.spawn("RCCService.exe", ["-Console", "-PlaceId:-1", `-Port`, this.port], { cwd: process.env.RCCSERVICE });
this.proc = child_process.spawn("RCCService.exe", ["-Console", "-PlaceId:-1", `-Port`, this.port], { cwd: process.env.RCCSERVICE, stdio: "inherit" })
} else {
this.proc = child_process.spawn("wine", ["RCCService.exe", "-Console", "-PlaceId:-1", `-Port`, this.port], { cwd: process.env.RCCSERVICE });
this.proc = child_process.spawn("wine", ["RCCService.exe", "-Console", "-PlaceId:-1", `-Port`, this.port], { cwd: process.env.RCCSERVICE, stdio: "inherit" })
}
this.proc.once("spawn", async () => {
logger.info(`${chalk.gray(`[${this.port}]`)} RCCService instance spawned`);
const { open } = await waitPort({ host: "127.0.0.1", port: this.port, timeout: 5000, output: "silent" }).catch((e) => console.log(e));
logger.info(`${chalk.gray(`[${this.port}]`)} RCCService instance spawned`)
const { open } = await waitPort({ host: "127.0.0.1", port: this.port, timeout: 5000, output: "silent" }).catch((e) => console.log(e))
if (!open || this.proc.exitCode !== null) {
this.proc.kill();
logger.error(`${chalk.gray(`[${this.port}]`)} RCCService could not listen`);
return resolve(false);
this.proc.kill()
logger.error(`${chalk.gray(`[${this.port}]`)} RCCService could not listen`)
return resolve(false)
}
return resolve(true);
});
return resolve(true)
})
this.proc.once("exit", () => {
this.proc.kill();
logger.info(`${chalk.gray(`[${this.port}]`)} RCCService instance exited`);
});
this.proc.kill()
logger.info(`${chalk.gray(`[${this.port}]`)} RCCService instance exited`)
})
} catch (_) {
resolve(false);
resolve(false)
}
});
})
}
Stop(signal = "SIGTERM") {
if (!this.proc) return;
return this.proc.kill(signal);
if (!this.proc) return
return this.proc.kill(signal)
}
}
module.exports = RCCService;
module.exports = RCCService