feat: expose worker type in pool information
[poolifier.git] / src / pools / pool.ts
CommitLineData
9e45c2c4 1import EventEmitterAsyncResource from 'node:events'
bdaf31cd
JB
2import type {
3 ErrorHandler,
4 ExitHandler,
50e66724 5 IWorker,
bdaf31cd 6 MessageHandler,
c4855468
JB
7 OnlineHandler,
8 WorkerNode
f06e48d8 9} from './worker'
da309861
JB
10import type {
11 WorkerChoiceStrategy,
12 WorkerChoiceStrategyOptions
13} from './selection-strategies/selection-strategies-types'
bdaf31cd 14
c4855468 15/**
6b27d407 16 * Enumeration of pool types.
c4855468 17 */
6b27d407 18export const PoolTypes = Object.freeze({
c4855468
JB
19 /**
20 * Fixed pool type.
21 */
6b27d407 22 fixed: 'fixed',
c4855468
JB
23 /**
24 * Dynamic pool type.
25 */
6b27d407
JB
26 dynamic: 'dynamic'
27} as const)
28
29/**
30 * Pool type.
31 */
32export type PoolType = keyof typeof PoolTypes
c4855468 33
184855e6
JB
34/**
35 * Enumeration of worker types.
36 */
37export const WorkerTypes = Object.freeze({
38 cluster: 'cluster',
39 thread: 'thread'
40} as const)
41
42/**
43 * Worker type.
44 */
45export type WorkerType = keyof typeof WorkerTypes
46
b4904890
JB
47/**
48 * Pool events emitter.
49 */
9e45c2c4 50export class PoolEmitter extends EventEmitterAsyncResource {}
b4904890 51
aee46736
JB
52/**
53 * Enumeration of pool events.
54 */
55export const PoolEvents = Object.freeze({
56 full: 'full',
1f68cede 57 busy: 'busy',
91ee39ed
JB
58 error: 'error',
59 taskError: 'taskError'
aee46736
JB
60} as const)
61
62/**
63 * Pool event.
64 */
65export type PoolEvent = keyof typeof PoolEvents
66
6b27d407
JB
67/**
68 * Pool information.
69 */
70export interface PoolInfo {
71 type: PoolType
184855e6 72 worker: WorkerType
6b27d407
JB
73 minSize: number
74 maxSize: number
75 workerNodes: number
76 idleWorkerNodes: number
77 busyWorkerNodes: number
78 runningTasks: number
79 queuedTasks: number
80 maxQueuedTasks: number
81}
82
7171d33f
JB
83/**
84 * Worker tasks queue options.
85 */
86export interface TasksQueueOptions {
87 /**
88 * Maximum number of tasks that can be executed concurrently on a worker.
89 *
90 * @defaultValue 1
91 */
92 concurrency?: number
93}
94
bdaf31cd
JB
95/**
96 * Options for a poolifier pool.
c319c66b 97 *
d480d708 98 * @typeParam Worker - Type of worker.
bdaf31cd 99 */
50e66724 100export interface PoolOptions<Worker extends IWorker> {
bdaf31cd
JB
101 /**
102 * A function that will listen for message event on each worker.
103 */
104 messageHandler?: MessageHandler<Worker>
105 /**
106 * A function that will listen for error event on each worker.
107 */
108 errorHandler?: ErrorHandler<Worker>
109 /**
110 * A function that will listen for online event on each worker.
111 */
112 onlineHandler?: OnlineHandler<Worker>
113 /**
114 * A function that will listen for exit event on each worker.
115 */
116 exitHandler?: ExitHandler<Worker>
117 /**
46e857ca 118 * The worker choice strategy to use in this pool.
d29bce7c 119 *
95ec6006 120 * @defaultValue WorkerChoiceStrategies.ROUND_ROBIN
bdaf31cd
JB
121 */
122 workerChoiceStrategy?: WorkerChoiceStrategy
da309861
JB
123 /**
124 * The worker choice strategy options.
125 */
126 workerChoiceStrategyOptions?: WorkerChoiceStrategyOptions
1f68cede
JB
127 /**
128 * Restart worker on error.
129 */
130 restartWorkerOnError?: boolean
bdaf31cd
JB
131 /**
132 * Pool events emission.
133 *
38e795c1 134 * @defaultValue true
bdaf31cd
JB
135 */
136 enableEvents?: boolean
ff733df7
JB
137 /**
138 * Pool worker tasks queue.
139 *
ff733df7
JB
140 * @defaultValue false
141 */
142 enableTasksQueue?: boolean
7171d33f
JB
143 /**
144 * Pool worker tasks queue options.
7171d33f
JB
145 */
146 tasksQueueOptions?: TasksQueueOptions
bdaf31cd 147}
a35560ba 148
729c563d
S
149/**
150 * Contract definition for a poolifier pool.
151 *
c4855468 152 * @typeParam Worker - Type of worker which manages this pool.
38e795c1 153 * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
02706357 154 * @typeParam Response - Type of execution response. This can only be serializable data.
729c563d 155 */
c4855468
JB
156export interface IPool<
157 Worker extends IWorker,
158 Data = unknown,
159 Response = unknown
160> {
161 /**
162 * Pool type.
163 *
164 * If it is `'dynamic'`, it provides the `max` property.
165 */
166 readonly type: PoolType
08f3f44c 167 /**
6b27d407 168 * Pool information.
08f3f44c 169 */
6b27d407 170 readonly info: PoolInfo
c4855468
JB
171 /**
172 * Pool worker nodes.
173 */
174 readonly workerNodes: Array<WorkerNode<Worker, Data>>
b4904890
JB
175 /**
176 * Emitter on which events can be listened to.
177 *
178 * Events that can currently be listened to:
179 *
164d950a
JB
180 * - `'full'`: Emitted when the pool is dynamic and full.
181 * - `'busy'`: Emitted when the pool is busy.
91ee39ed
JB
182 * - `'error'`: Emitted when an uncaught error occurs.
183 * - `'taskError'`: Emitted when an error occurs while executing a task.
b4904890
JB
184 */
185 readonly emitter?: PoolEmitter
729c563d 186 /**
61aa11a6 187 * Executes the specified function in the worker constructor with the task data input parameter.
729c563d 188 *
ef41a6e6 189 * @param data - The task input data for the specified worker function. This can only be serializable data.
a86b6df1 190 * @param name - The name of the worker function to execute. If not specified, the default worker function will be executed.
ef41a6e6 191 * @returns Promise that will be fulfilled when the task is completed.
729c563d 192 */
a86b6df1 193 execute: (data?: Data, name?: string) => Promise<Response>
280c2a77 194 /**
675bb809 195 * Shutdowns every current worker in this pool.
280c2a77 196 */
78cea37e 197 destroy: () => Promise<void>
a35560ba 198 /**
bdede008 199 * Sets the worker choice strategy in this pool.
a35560ba 200 *
38e795c1 201 * @param workerChoiceStrategy - The worker choice strategy.
59219cbb 202 * @param workerChoiceStrategyOptions - The worker choice strategy options.
a35560ba 203 */
59219cbb
JB
204 setWorkerChoiceStrategy: (
205 workerChoiceStrategy: WorkerChoiceStrategy,
206 workerChoiceStrategyOptions?: WorkerChoiceStrategyOptions
207 ) => void
a20f0ba5
JB
208 /**
209 * Sets the worker choice strategy options in this pool.
210 *
211 * @param workerChoiceStrategyOptions - The worker choice strategy options.
212 */
213 setWorkerChoiceStrategyOptions: (
214 workerChoiceStrategyOptions: WorkerChoiceStrategyOptions
215 ) => void
216 /**
217 * Enables/disables the worker tasks queue in this pool.
218 *
219 * @param enable - Whether to enable or disable the worker tasks queue.
220 * @param tasksQueueOptions - The worker tasks queue options.
221 */
8f52842f
JB
222 enableTasksQueue: (
223 enable: boolean,
224 tasksQueueOptions?: TasksQueueOptions
225 ) => void
a20f0ba5
JB
226 /**
227 * Sets the worker tasks queue options in this pool.
228 *
229 * @param tasksQueueOptions - The worker tasks queue options.
230 */
231 setTasksQueueOptions: (tasksQueueOptions: TasksQueueOptions) => void
c97c7edb 232}