perf: generalize optimized min/max
[poolifier.git] / src / pools / worker.ts
CommitLineData
85aeb3f3 1import type { MessageChannel } from 'node:worker_threads'
f06e48d8 2import type { CircularArray } from '../circular-array'
5c4d16da 3import type { Task } from '../utility-types'
f06e48d8 4
671d5154
JB
5/**
6 * Callback invoked when the worker has started successfully.
7 */
8export type OnlineHandler<Worker extends IWorker> = (this: Worker) => void
9
bdaf31cd
JB
10/**
11 * Callback invoked if the worker has received a message.
12 */
50e66724
JB
13export type MessageHandler<Worker extends IWorker> = (
14 this: Worker,
e102732c 15 message: unknown
50e66724 16) => void
bdaf31cd
JB
17
18/**
19 * Callback invoked if the worker raised an error.
20 */
50e66724
JB
21export type ErrorHandler<Worker extends IWorker> = (
22 this: Worker,
e102732c 23 error: Error
50e66724 24) => void
bdaf31cd 25
bdaf31cd
JB
26/**
27 * Callback invoked when the worker exits successfully.
28 */
50e66724
JB
29export type ExitHandler<Worker extends IWorker> = (
30 this: Worker,
e102732c 31 exitCode: number
50e66724 32) => void
bdaf31cd 33
f06e48d8 34/**
cd4d348a 35 * Measurement statistics.
f9b4bbf8
JB
36 *
37 * @internal
f06e48d8 38 */
cd4d348a 39export interface MeasurementStatistics {
02706357 40 /**
932fc8be 41 * Measurement aggregate.
02706357 42 */
71514351 43 aggregate?: number
f7510105
JB
44 /**
45 * Measurement minimum.
46 */
71514351 47 minimum?: number
f7510105
JB
48 /**
49 * Measurement maximum.
50 */
71514351 51 maximum?: number
02706357 52 /**
cd4d348a 53 * Measurement average.
02706357 54 */
71514351 55 average?: number
02706357 56 /**
cd4d348a 57 * Measurement median.
02706357 58 */
71514351 59 median?: number
02706357 60 /**
cd4d348a 61 * Measurement history.
02706357 62 */
eb7bf744 63 readonly history: CircularArray<number>
a4e07f72
JB
64}
65
5df69fab
JB
66/**
67 * Event loop utilization measurement statistics.
68 *
69 * @internal
70 */
71export interface EventLoopUtilizationMeasurementStatistics {
eb7bf744
JB
72 readonly idle: MeasurementStatistics
73 readonly active: MeasurementStatistics
f7510105 74 utilization?: number
5df69fab
JB
75}
76
a4e07f72
JB
77/**
78 * Task statistics.
79 *
80 * @internal
81 */
a4e07f72 82export interface TaskStatistics {
02706357 83 /**
9a0613e9 84 * Number of executed tasks.
02706357 85 */
a4e07f72 86 executed: number
02706357 87 /**
9a0613e9 88 * Number of executing tasks.
02706357 89 */
a4e07f72 90 executing: number
0567595a 91 /**
9a0613e9 92 * Number of queued tasks.
0567595a 93 */
8604aaab 94 readonly queued: number
df593701
JB
95 /**
96 * Maximum number of queued tasks.
97 */
b25a42cd 98 readonly maxQueued?: number
68cbdc84
JB
99 /**
100 * Number of stolen tasks.
101 */
102 stolen: number
0567595a 103 /**
9a0613e9 104 * Number of failed tasks.
0567595a 105 */
a4e07f72
JB
106 failed: number
107}
108
4b628b48
JB
109/**
110 * Enumeration of worker types.
111 */
112export const WorkerTypes = Object.freeze({
149fdbb9
JB
113 thread: 'thread',
114 cluster: 'cluster'
4b628b48
JB
115} as const)
116
117/**
118 * Worker type.
119 */
120export type WorkerType = keyof typeof WorkerTypes
121
f59e1027
JB
122/**
123 * Worker information.
124 *
125 * @internal
126 */
127export interface WorkerInfo {
128 /**
83fa0a36 129 * Worker id.
f59e1027 130 */
eb7bf744 131 readonly id: number | undefined
4b628b48
JB
132 /**
133 * Worker type.
134 */
5b49e864 135 readonly type: WorkerType
8a1260a3
JB
136 /**
137 * Dynamic flag.
138 */
139 dynamic: boolean
f59e1027 140 /**
7c8381eb 141 * Ready flag.
f59e1027 142 */
7c8381eb 143 ready: boolean
b558f6b5
JB
144 /**
145 * Task function names.
146 */
147 taskFunctions?: string[]
f59e1027
JB
148}
149
a4e07f72
JB
150/**
151 * Worker usage statistics.
152 *
153 * @internal
154 */
155export interface WorkerUsage {
0567595a 156 /**
a4e07f72 157 * Tasks statistics.
0567595a 158 */
eb7bf744 159 readonly tasks: TaskStatistics
0567595a 160 /**
a4e07f72 161 * Tasks runtime statistics.
0567595a 162 */
eb7bf744 163 readonly runTime: MeasurementStatistics
02706357 164 /**
a4e07f72 165 * Tasks wait time statistics.
02706357 166 */
eb7bf744 167 readonly waitTime: MeasurementStatistics
62c15a68 168 /**
5df69fab 169 * Tasks event loop utilization statistics.
62c15a68 170 */
eb7bf744 171 readonly elu: EventLoopUtilizationMeasurementStatistics
f06e48d8
JB
172}
173
f3a91bac 174/**
9df180cb 175 * Worker choice strategy data.
f3a91bac
JB
176 */
177export interface StrategyData {
178 virtualTaskEndTimestamp?: number
179}
180
f06e48d8
JB
181/**
182 * Worker interface.
183 */
184export interface IWorker {
f59e1027 185 /**
83fa0a36 186 * Worker id.
f59e1027 187 */
aecc6e48
JB
188 readonly id?: number
189 readonly threadId?: number
bdaf31cd 190 /**
64383951 191 * Registers an event listener.
bdaf31cd 192 *
38e795c1 193 * @param event - The event.
48ef9107 194 * @param handler - The event handler.
bdaf31cd 195 */
fd04474e
JB
196 readonly on: ((event: 'online', handler: OnlineHandler<this>) => void) &
197 ((event: 'message', handler: MessageHandler<this>) => void) &
78cea37e 198 ((event: 'error', handler: ErrorHandler<this>) => void) &
78cea37e 199 ((event: 'exit', handler: ExitHandler<this>) => void)
bdaf31cd 200 /**
64383951 201 * Registers a listener to the exit event that will only be performed once.
bdaf31cd 202 *
9ece5893 203 * @param event - The `'exit'` event.
38e795c1 204 * @param handler - The exit handler.
bdaf31cd 205 */
4b628b48 206 readonly once: (event: 'exit', handler: ExitHandler<this>) => void
bdaf31cd 207}
f06e48d8 208
5b49e864
JB
209/**
210 * Worker node event callback.
211 *
212 * @param workerId - The worker id.
213 * @internal
214 */
a9780ad2 215export type WorkerNodeEventCallback = (workerId: number) => void
ec287edf 216
f06e48d8
JB
217/**
218 * Worker node interface.
c319c66b
JB
219 *
220 * @typeParam Worker - Type of worker.
e102732c 221 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
c319c66b 222 * @internal
f06e48d8 223 */
4b628b48 224export interface IWorkerNode<Worker extends IWorker, Data = unknown> {
c319c66b 225 /**
ccd73e07 226 * Worker.
c319c66b 227 */
02706357 228 readonly worker: Worker
f59e1027 229 /**
ccd73e07 230 * Worker info.
f59e1027 231 */
eb7bf744 232 readonly info: WorkerInfo
c319c66b 233 /**
ccd73e07 234 * Worker usage statistics.
c319c66b 235 */
5b49e864 236 readonly usage: WorkerUsage
f3a91bac 237 /**
9df180cb 238 * Worker choice strategy data.
f3a91bac
JB
239 * This is used to store data that is specific to the worker choice strategy.
240 */
241 strategyData?: StrategyData
26fb3c18
JB
242 /**
243 * Message channel (worker_threads only).
244 */
245 readonly messageChannel?: MessageChannel
20c6f652
JB
246 /**
247 * Tasks queue back pressure size.
248 * This is the number of tasks that can be enqueued before the worker node has back pressure.
249 */
250 tasksQueueBackPressureSize: number
72695f86
JB
251 /**
252 * Callback invoked when worker node tasks queue is back pressured.
72695f86 253 */
a9780ad2 254 onBackPressure?: WorkerNodeEventCallback
dd951876
JB
255 /**
256 * Callback invoked when worker node tasks queue is empty.
dd951876 257 */
a9780ad2 258 onEmptyQueue?: WorkerNodeEventCallback
c319c66b 259 /**
ccd73e07 260 * Tasks queue size.
4b628b48
JB
261 *
262 * @returns The tasks queue size.
263 */
264 readonly tasksQueueSize: () => number
265 /**
ccd73e07 266 * Enqueue task.
4b628b48
JB
267 *
268 * @param task - The task to queue.
a1763c54 269 * @returns The tasks queue size.
4b628b48
JB
270 */
271 readonly enqueueTask: (task: Task<Data>) => number
72695f86
JB
272 /**
273 * Prepends a task to the tasks queue.
274 *
275 * @param task - The task to prepend.
276 * @returns The tasks queue size.
277 */
278 readonly unshiftTask: (task: Task<Data>) => number
4b628b48 279 /**
ccd73e07 280 * Dequeue task.
4b628b48
JB
281 *
282 * @returns The dequeued task.
283 */
284 readonly dequeueTask: () => Task<Data> | undefined
72695f86
JB
285 /**
286 * Pops a task from the tasks queue.
287 *
288 * @returns The popped task.
289 */
290 readonly popTask: () => Task<Data> | undefined
4b628b48 291 /**
ccd73e07 292 * Clears tasks queue.
4b628b48
JB
293 */
294 readonly clearTasksQueue: () => void
671d5154 295 /**
e2b31e32 296 * Whether the worker node has back pressure (i.e. its tasks queue is full).
671d5154
JB
297 *
298 * @returns `true` if the worker node has back pressure, `false` otherwise.
299 */
300 readonly hasBackPressure: () => boolean
4b628b48 301 /**
ff469b0e 302 * Resets usage statistics.
c319c66b 303 */
4b628b48 304 readonly resetUsage: () => void
3f09ed9f 305 /**
a5d15204 306 * Closes communication channel.
3f09ed9f
JB
307 */
308 readonly closeChannel: () => void
ff128cc9 309 /**
2809112e
JB
310 * Gets task function worker usage statistics.
311 *
312 * @param name - The task function name.
313 * @returns The task function worker usage statistics if the task function worker usage statistics are initialized, `undefined` otherwise.
ff128cc9 314 */
db0e38ee 315 readonly getTaskFunctionWorkerUsage: (name: string) => WorkerUsage | undefined
f06e48d8 316}