2024-06-01 08:56:16 +05:30
|
|
|
import { RemoteBrowser } from "./RemoteBrowser";
|
|
|
|
|
import logger from "../../logger";
|
|
|
|
|
|
2024-06-01 08:56:52 +05:30
|
|
|
/**
|
|
|
|
|
* @category Types
|
|
|
|
|
*/
|
2024-06-01 08:56:16 +05:30
|
|
|
interface BrowserPoolInfo {
|
2024-06-01 08:56:52 +05:30
|
|
|
/**
|
|
|
|
|
* The instance of remote browser.
|
|
|
|
|
*/
|
2024-06-01 08:56:16 +05:30
|
|
|
browser: RemoteBrowser,
|
2024-06-01 08:56:52 +05:30
|
|
|
/**
|
|
|
|
|
* States if the browser's instance is being actively used.
|
|
|
|
|
* Helps to persist the progress on the frontend when the application has been reloaded.
|
|
|
|
|
* @default false
|
|
|
|
|
*/
|
2024-06-01 08:56:16 +05:30
|
|
|
active: boolean,
|
2024-06-01 10:24:20 +05:30
|
|
|
/**
|
2025-03-07 22:40:07 +05:30
|
|
|
* The user ID that owns this browser instance.
|
2024-06-01 10:24:20 +05:30
|
|
|
*/
|
2025-03-07 22:40:07 +05:30
|
|
|
userId: string,
|
2024-06-01 10:24:20 +05:30
|
|
|
}
|
2025-03-07 22:40:07 +05:30
|
|
|
|
2025-03-07 22:40:34 +05:30
|
|
|
/**
|
|
|
|
|
* Dictionary of all the active remote browser's instances indexed by their id.
|
|
|
|
|
* The value in this dictionary is of type BrowserPoolInfo,
|
|
|
|
|
* which provides additional information about the browser's usage.
|
|
|
|
|
* @category Types
|
|
|
|
|
*/
|
|
|
|
|
interface PoolDictionary {
|
|
|
|
|
[key: string]: BrowserPoolInfo,
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-07 22:41:03 +05:30
|
|
|
/**
|
|
|
|
|
* A browser pool is a collection of remote browsers that are initialized and ready to be used.
|
|
|
|
|
* Enforces a "1 User - 1 Browser" policy, while allowing multiple users to have their own browser instances.
|
|
|
|
|
* Adds the possibility to add, remove and retrieve remote browsers from the pool.
|
|
|
|
|
* @category BrowserManagement
|
|
|
|
|
*/
|
|
|
|
|
export class BrowserPool {
|
|
|
|
|
/**
|
|
|
|
|
* Holds all the instances of remote browsers.
|
|
|
|
|
*/
|
|
|
|
|
private pool: PoolDictionary = {};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Maps user IDs to their browser IDs.
|
|
|
|
|
*/
|
|
|
|
|
private userToBrowserMap: Map<string, string> = new Map();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Adds a remote browser instance to the pool for a specific user.
|
|
|
|
|
* If the user already has a browser, the existing browser will be closed and replaced.
|
|
|
|
|
*
|
|
|
|
|
* @param id remote browser instance's id
|
|
|
|
|
* @param browser remote browser instance
|
|
|
|
|
* @param userId the user ID that owns this browser instance
|
|
|
|
|
* @param active states if the browser's instance is being actively used
|
|
|
|
|
* @returns true if a new browser was added, false if an existing browser was replaced
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
}
|