Merge pull request #747 from poolifier/multiple-functions
[poolifier.git] / src / pools / pool.ts
CommitLineData
fc3e6586 1import EventEmitter 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
JB
15/**
16 * Pool types.
17 *
18 * @enum
71ebe93b 19 * @internal
c4855468
JB
20 */
21export enum PoolType {
22 /**
23 * Fixed pool type.
24 */
25 FIXED = 'fixed',
26 /**
27 * Dynamic pool type.
28 */
29 DYNAMIC = 'dynamic'
30}
31
b4904890
JB
32/**
33 * Pool events emitter.
34 */
35export class PoolEmitter extends EventEmitter {}
36
aee46736
JB
37/**
38 * Enumeration of pool events.
39 */
40export const PoolEvents = Object.freeze({
41 full: 'full',
42 busy: 'busy'
43} as const)
44
45/**
46 * Pool event.
47 */
48export type PoolEvent = keyof typeof PoolEvents
49
7171d33f
JB
50/**
51 * Worker tasks queue options.
52 */
53export interface TasksQueueOptions {
54 /**
55 * Maximum number of tasks that can be executed concurrently on a worker.
56 *
57 * @defaultValue 1
58 */
59 concurrency?: number
60}
61
bdaf31cd
JB
62/**
63 * Options for a poolifier pool.
c319c66b 64 *
d480d708 65 * @typeParam Worker - Type of worker.
bdaf31cd 66 */
50e66724 67export interface PoolOptions<Worker extends IWorker> {
bdaf31cd
JB
68 /**
69 * A function that will listen for message event on each worker.
70 */
71 messageHandler?: MessageHandler<Worker>
72 /**
73 * A function that will listen for error event on each worker.
74 */
75 errorHandler?: ErrorHandler<Worker>
76 /**
77 * A function that will listen for online event on each worker.
78 */
79 onlineHandler?: OnlineHandler<Worker>
80 /**
81 * A function that will listen for exit event on each worker.
82 */
83 exitHandler?: ExitHandler<Worker>
84 /**
46e857ca 85 * The worker choice strategy to use in this pool.
d29bce7c 86 *
95ec6006 87 * @defaultValue WorkerChoiceStrategies.ROUND_ROBIN
bdaf31cd
JB
88 */
89 workerChoiceStrategy?: WorkerChoiceStrategy
da309861
JB
90 /**
91 * The worker choice strategy options.
92 */
93 workerChoiceStrategyOptions?: WorkerChoiceStrategyOptions
bdaf31cd
JB
94 /**
95 * Pool events emission.
96 *
38e795c1 97 * @defaultValue true
bdaf31cd
JB
98 */
99 enableEvents?: boolean
ff733df7
JB
100 /**
101 * Pool worker tasks queue.
102 *
ff733df7
JB
103 * @defaultValue false
104 */
105 enableTasksQueue?: boolean
7171d33f
JB
106 /**
107 * Pool worker tasks queue options.
7171d33f
JB
108 */
109 tasksQueueOptions?: TasksQueueOptions
bdaf31cd 110}
a35560ba 111
729c563d
S
112/**
113 * Contract definition for a poolifier pool.
114 *
c4855468 115 * @typeParam Worker - Type of worker which manages this pool.
38e795c1 116 * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
02706357 117 * @typeParam Response - Type of execution response. This can only be serializable data.
729c563d 118 */
c4855468
JB
119export interface IPool<
120 Worker extends IWorker,
121 Data = unknown,
122 Response = unknown
123> {
124 /**
125 * Pool type.
126 *
127 * If it is `'dynamic'`, it provides the `max` property.
128 */
129 readonly type: PoolType
130 /**
131 * Pool worker nodes.
132 */
133 readonly workerNodes: Array<WorkerNode<Worker, Data>>
b4904890
JB
134 /**
135 * Emitter on which events can be listened to.
136 *
137 * Events that can currently be listened to:
138 *
164d950a
JB
139 * - `'full'`: Emitted when the pool is dynamic and full.
140 * - `'busy'`: Emitted when the pool is busy.
b4904890
JB
141 */
142 readonly emitter?: PoolEmitter
729c563d 143 /**
ef41a6e6 144 * Executes the function specified in the worker constructor with the task data input parameter.
729c563d 145 *
ef41a6e6 146 * @param data - The task input data for the specified worker function. This can only be serializable data.
a86b6df1 147 * @param name - The name of the worker function to execute. If not specified, the default worker function will be executed.
ef41a6e6 148 * @returns Promise that will be fulfilled when the task is completed.
729c563d 149 */
a86b6df1 150 execute: (data?: Data, name?: string) => Promise<Response>
280c2a77 151 /**
675bb809 152 * Shutdowns every current worker in this pool.
280c2a77 153 */
78cea37e 154 destroy: () => Promise<void>
a35560ba 155 /**
bdede008 156 * Sets the worker choice strategy in this pool.
a35560ba 157 *
38e795c1 158 * @param workerChoiceStrategy - The worker choice strategy.
59219cbb 159 * @param workerChoiceStrategyOptions - The worker choice strategy options.
a35560ba 160 */
59219cbb
JB
161 setWorkerChoiceStrategy: (
162 workerChoiceStrategy: WorkerChoiceStrategy,
163 workerChoiceStrategyOptions?: WorkerChoiceStrategyOptions
164 ) => void
a20f0ba5
JB
165 /**
166 * Sets the worker choice strategy options in this pool.
167 *
168 * @param workerChoiceStrategyOptions - The worker choice strategy options.
169 */
170 setWorkerChoiceStrategyOptions: (
171 workerChoiceStrategyOptions: WorkerChoiceStrategyOptions
172 ) => void
173 /**
174 * Enables/disables the worker tasks queue in this pool.
175 *
176 * @param enable - Whether to enable or disable the worker tasks queue.
177 * @param tasksQueueOptions - The worker tasks queue options.
178 */
8f52842f
JB
179 enableTasksQueue: (
180 enable: boolean,
181 tasksQueueOptions?: TasksQueueOptions
182 ) => void
a20f0ba5
JB
183 /**
184 * Sets the worker tasks queue options in this pool.
185 *
186 * @param tasksQueueOptions - The worker tasks queue options.
187 */
188 setTasksQueueOptions: (tasksQueueOptions: TasksQueueOptions) => void
c97c7edb 189}