bitburner-src/src/Netscript/killWorkerScript.ts

115 lines
3.6 KiB
TypeScript
Raw Normal View History

/**
* Stops an actively-running script (represented by a WorkerScript object)
* and removes it from the global pool of active scripts.
*/
import { ScriptDeath } from "./ScriptDeath";
import { WorkerScript } from "./WorkerScript";
import { workerScripts } from "./WorkerScripts";
import { WorkerScriptStartStopEventEmitter } from "./WorkerScriptStartStopEventEmitter";
import { RunningScript } from "../Script/RunningScript";
2021-10-07 22:56:01 +02:00
import { GetServer } from "../Server/AllServers";
import { AddRecentScript } from "./RecentScripts";
import { ITutorial } from "../InteractiveTutorial";
import { AlertEvents } from "../ui/React/AlertManager";
2022-09-05 15:55:57 +02:00
import { handleUnknownError } from "./NetscriptHelpers";
2022-07-20 07:48:54 +02:00
export type killScriptParams = WorkerScript | number | { runningScript: RunningScript; hostname: string };
2021-09-05 01:09:30 +02:00
2022-07-20 07:48:54 +02:00
export function killWorkerScript(params: killScriptParams): boolean {
if (ITutorial.isRunning) {
AlertEvents.emit("Processes cannot be killed during the tutorial.");
return false;
}
2022-07-20 07:48:54 +02:00
if (params instanceof WorkerScript) {
stopAndCleanUpWorkerScript(params);
2021-09-05 01:09:30 +02:00
return true;
2022-07-20 07:48:54 +02:00
} else if (typeof params === "number") {
return killWorkerScriptByPid(params);
} else {
2021-09-05 01:09:30 +02:00
// Try to kill by PID
2022-07-20 07:48:54 +02:00
const res = killWorkerScriptByPid(params.runningScript.pid);
2021-09-05 01:09:30 +02:00
if (res) {
return res;
}
2021-09-05 01:09:30 +02:00
// If for some reason that doesn't work, we'll try the old way
for (const ws of workerScripts.values()) {
2022-08-07 17:40:42 +02:00
if (ws.scriptRef === params.runningScript) {
2022-07-20 07:48:54 +02:00
stopAndCleanUpWorkerScript(ws);
return true;
2021-09-05 01:09:30 +02:00
}
}
2021-09-05 01:09:30 +02:00
return false;
}
}
2022-07-20 07:48:54 +02:00
function killWorkerScriptByPid(pid: number): boolean {
2021-09-05 01:09:30 +02:00
const ws = workerScripts.get(pid);
if (ws instanceof WorkerScript) {
2022-07-20 07:48:54 +02:00
stopAndCleanUpWorkerScript(ws);
2021-09-05 01:09:30 +02:00
return true;
}
2021-09-05 01:09:30 +02:00
return false;
}
function stopAndCleanUpWorkerScript(ws: WorkerScript): void {
2022-09-05 15:55:57 +02:00
//Clean up any ongoing netscriptDelay
if (ws.delay) clearTimeout(ws.delay);
ws.delayReject?.(new ScriptDeath(ws));
2022-08-29 08:41:17 +02:00
ws.env.runningFn = "";
if (typeof ws.atExit === "function") {
2021-10-15 02:13:26 +02:00
try {
ws.env.stopFlag = false;
ws.atExit();
2022-07-15 07:51:30 +02:00
} catch (e: unknown) {
2022-09-05 15:55:57 +02:00
handleUnknownError(e, ws, "Error running atExit function.\n\n");
2021-10-15 02:13:26 +02:00
}
ws.atExit = undefined;
2021-10-15 02:13:26 +02:00
}
ws.env.stopFlag = true;
removeWorkerScript(ws);
}
/**
* Helper function that removes the script being killed from the global pool.
* Also handles other cleanup-time operations
*
* @param {WorkerScript} - Identifier for WorkerScript. Either the object itself, or
* its index in the global workerScripts array
*/
2022-07-20 07:48:54 +02:00
function removeWorkerScript(workerScript: WorkerScript): void {
const ip = workerScript.hostname;
2021-09-05 01:09:30 +02:00
// Get the server on which the script runs
const server = GetServer(ip);
if (server == null) {
console.error(`Could not find server on which this script is running: ${ip}`);
return;
}
// Delete the RunningScript object from that server
for (let i = 0; i < server.runningScripts.length; ++i) {
const runningScript = server.runningScripts[i];
2022-08-07 17:40:42 +02:00
if (runningScript === workerScript.scriptRef) {
server.runningScripts.splice(i, 1);
break;
2021-09-05 01:09:30 +02:00
}
}
2021-09-05 01:09:30 +02:00
// Recalculate ram used on that server
2021-11-16 05:49:33 +01:00
2022-08-29 08:41:17 +02:00
server.updateRamUsed(0);
for (const rs of server.runningScripts) server.updateRamUsed(server.ramUsed + rs.ramUsage * rs.threads);
2021-10-09 05:45:54 +02:00
// Delete script from global pool (workerScripts) after verifying it's the right script (PIDs reset on aug install)
if (workerScripts.get(workerScript.pid) === workerScript) workerScripts.delete(workerScript.pid);
AddRecentScript(workerScript);
2022-07-20 07:48:54 +02:00
WorkerScriptStartStopEventEmitter.emit();
}