bitburner-src/src/Netscript/killWorkerScript.ts

94 lines
2.8 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";
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";
import { roundToTwo } from "../utils/helpers/roundToTwo";
export function killWorkerScript(ws: WorkerScript): boolean {
if (ITutorial.isRunning) {
AlertEvents.emit("Processes cannot be killed during the tutorial.");
return false;
}
stopAndCleanUpWorkerScript(ws);
2021-09-05 01:09:30 +02:00
return true;
}
export 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 {
// Only clean up once.
// Important: Only this function can set stopFlag!
if (ws.env.stopFlag) return;
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 {
const atExit = ws.atExit;
ws.atExit = undefined;
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.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
const rs = workerScript.scriptRef;
const byPid = server.runningScriptMap.get(rs.scriptKey);
if (!byPid) {
console.error(`Couldn't find runningScriptMap for key ${rs.scriptKey}`);
} else {
byPid.delete(workerScript.pid);
if (byPid.size === 0) {
server.runningScriptMap.delete(rs.scriptKey);
2021-09-05 01:09:30 +02:00
}
}
2021-09-05 01:09:30 +02:00
// Update ram used. Reround to prevent accumulation of error.
server.updateRamUsed(roundToTwo(server.ramUsed - rs.ramUsage * rs.threads));
2021-10-09 05:45:54 +02:00
workerScripts.delete(workerScript.pid);
AddRecentScript(workerScript);
}