feat: get process list from rpc

This commit is contained in:
Zamitto
2024-07-03 11:23:50 -03:00
parent 0c1a75eedd
commit 75c8f69e81
10 changed files with 57 additions and 49 deletions

View File

@@ -1,6 +1,6 @@
import { Game } from "@main/entity";
import { Downloader } from "@shared";
import { TorrentDownloader } from "./torrent-downloader";
import { RPCManager } from "./rpc-manager";
import { WindowManager } from "../window-manager";
import { downloadQueueRepository, gameRepository } from "@main/repository";
import { publishDownloadCompleteNotification } from "../notifications";
@@ -16,7 +16,7 @@ export class DownloadManager {
if (this.currentDownloader === Downloader.RealDebrid) {
status = await RealDebridDownloader.getStatus();
} else {
status = await TorrentDownloader.getStatus();
status = await RPCManager.getStatus();
}
if (status) {
@@ -65,7 +65,7 @@ export class DownloadManager {
if (this.currentDownloader === Downloader.RealDebrid) {
RealDebridDownloader.pauseDownload();
} else {
await TorrentDownloader.pauseDownload();
await RPCManager.pauseDownload();
}
WindowManager.mainWindow?.setProgressBar(-1);
@@ -77,7 +77,7 @@ export class DownloadManager {
RealDebridDownloader.startDownload(game);
this.currentDownloader = Downloader.RealDebrid;
} else {
TorrentDownloader.startDownload(game);
RPCManager.startDownload(game);
this.currentDownloader = Downloader.Torrent;
}
}
@@ -86,7 +86,7 @@ export class DownloadManager {
if (this.currentDownloader === Downloader.RealDebrid) {
RealDebridDownloader.cancelDownload();
} else {
TorrentDownloader.cancelDownload(gameId);
RPCManager.cancelDownload(gameId);
}
WindowManager.mainWindow?.setProgressBar(-1);
@@ -98,7 +98,7 @@ export class DownloadManager {
RealDebridDownloader.startDownload(game);
this.currentDownloader = Downloader.RealDebrid;
} else {
TorrentDownloader.startDownload(game);
RPCManager.startDownload(game);
this.currentDownloader = Downloader.Torrent;
}
}

View File

@@ -1,2 +1,2 @@
export * from "./download-manager";
export * from "./torrent-downloader";
export * from "./rpc-manager";

View File

@@ -15,8 +15,8 @@ import {
LibtorrentPayload,
} from "./types";
export class TorrentDownloader {
private static torrentClient: cp.ChildProcess | null = null;
export class RPCManager {
private static rpcProcess: cp.ChildProcess | null = null;
private static downloadingGameId = -1;
private static rpc = axios.create({
@@ -26,18 +26,22 @@ export class TorrentDownloader {
},
});
private static spawn(args: StartDownloadPayload) {
this.torrentClient = startTorrentClient(args);
public static spawn(args?: StartDownloadPayload) {
this.rpcProcess = startTorrentClient(args);
}
public static kill() {
if (this.torrentClient) {
this.torrentClient.kill();
this.torrentClient = null;
if (this.rpcProcess) {
this.rpcProcess.kill();
this.rpcProcess = null;
this.downloadingGameId = -1;
}
}
public static async getProccessList() {
return (await this.rpc.get<string[] | null>("/process-list")).data;
}
public static async getStatus() {
if (this.downloadingGameId === -1) return null;
@@ -113,7 +117,7 @@ export class TorrentDownloader {
}
static async startDownload(game: Game) {
if (!this.torrentClient) {
if (!this.rpcProcess) {
this.spawn({
game_id: game.id,
magnet: game.uri!,

View File

@@ -15,12 +15,12 @@ export const BITTORRENT_PORT = "5881";
export const RPC_PORT = "8084";
export const RPC_PASSWORD = crypto.randomBytes(32).toString("hex");
export const startTorrentClient = (args: StartDownloadPayload) => {
export const startTorrentClient = (args?: StartDownloadPayload) => {
const commonArgs = [
BITTORRENT_PORT,
RPC_PORT,
RPC_PASSWORD,
encodeURIComponent(JSON.stringify(args)),
args ? encodeURIComponent(JSON.stringify(args)) : "",
];
if (app.isPackaged) {

View File

@@ -1,11 +1,9 @@
import path from "node:path";
import { IsNull, Not } from "typeorm";
import { gameRepository } from "@main/repository";
import { getProcesses } from "@main/helpers";
import { WindowManager } from "./window-manager";
import { createGame, updateGamePlaytime } from "./library-sync";
import { GameRunning } from "@types";
import { RPCManager } from "./download";
export const gamesPlaytime = new Map<
number,
@@ -22,22 +20,13 @@ export const watchProcesses = async () => {
if (games.length === 0) return;
const processes = await getProcesses();
const processes = (await RPCManager.getProccessList()) || [];
for (const game of games) {
const executablePath = game.executablePath!;
const basename = path.win32.basename(executablePath);
const basenameWithoutExtension = path.win32.basename(
executablePath,
path.extname(executablePath)
);
const gameProcess = processes.find((runningProcess) => {
if (process.platform === "win32") {
return runningProcess.name === basename;
}
return [basename, basenameWithoutExtension].includes(runningProcess.name);
return executablePath == runningProcess;
});
if (gameProcess) {