Merge branch 'master' of github.com:jerome-benoit/poolifier
[poolifier.git] / src / utility-types.ts
CommitLineData
62c15a68 1import type { EventLoopUtilization } from 'node:perf_hooks'
7d91a8cd 2import type { MessagePort, TransferListItem } from 'node:worker_threads'
1a81f8af 3import type { KillBehavior } from './worker/worker-options'
838898f1 4
213e817d
JB
5/**
6 * Task error.
7 *
e102732c 8 * @typeParam Data - Type of data sent to the worker triggering an error. This can only be structured-cloneable data.
213e817d 9 */
82f36766 10export interface TaskError<Data = unknown> {
ff128cc9
JB
11 /**
12 * Task name triggering the error.
13 */
14 readonly name: string
82f36766
JB
15 /**
16 * Error message.
17 */
eb7bf744 18 readonly message: string
82f36766 19 /**
ff128cc9 20 * Data triggering the error.
82f36766 21 */
eb7bf744 22 readonly data?: Data
82f36766
JB
23}
24
d715b7bc
JB
25/**
26 * Task performance.
f03062df
JB
27 *
28 * @internal
d715b7bc
JB
29 */
30export interface TaskPerformance {
197b4aa5
JB
31 /**
32 * Task name.
33 */
34 readonly name: string
d715b7bc
JB
35 /**
36 * Task performance timestamp.
37 */
eb7bf744 38 readonly timestamp: number
d715b7bc
JB
39 /**
40 * Task runtime.
41 */
eb7bf744 42 readonly runTime?: number
d715b7bc
JB
43 /**
44 * Task event loop utilization.
45 */
eb7bf744 46 readonly elu?: EventLoopUtilization
d715b7bc
JB
47}
48
b6b32453 49/**
5b49e864 50 * Worker task performance statistics computation settings.
f03062df
JB
51 *
52 * @internal
b6b32453
JB
53 */
54export interface WorkerStatistics {
5b49e864
JB
55 /**
56 * Whether the worker computes the task runtime or not.
57 */
58 readonly runTime: boolean
59 /**
60 * Whether the worker computes the task event loop utilization (ELU) or not.
61 */
62 readonly elu: boolean
b6b32453
JB
63}
64
5c4d16da
JB
65/**
66 * Message object that is passed as a task between main worker and worker.
67 *
68 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
69 * @internal
70 */
71export interface Task<Data = unknown> {
72 /**
73 * Worker id.
74 */
75 readonly workerId: number
76 /**
77 * Task name.
78 */
79 readonly name?: string
80 /**
81 * Task input data that will be passed to the worker.
82 */
83 readonly data?: Data
7d91a8cd
JB
84 /**
85 * Array of transferable objects.
86 */
87 readonly transferList?: TransferListItem[]
5c4d16da
JB
88 /**
89 * Timestamp.
90 */
91 readonly timestamp?: number
92 /**
7629bdf1 93 * Task UUID.
5c4d16da 94 */
7629bdf1 95 readonly taskId?: string
5c4d16da
JB
96}
97
729c563d 98/**
02706357 99 * Message object that is passed between main worker and worker.
c319c66b 100 *
e102732c
JB
101 * @typeParam Data - Type of data sent to the worker or execution response. This can only be structured-cloneable data.
102 * @typeParam ErrorData - Type of data sent to the worker triggering an error. This can only be structured-cloneable data.
71ebe93b 103 * @internal
729c563d 104 */
6677a3d3
JB
105export interface MessageValue<Data = unknown, ErrorData = unknown>
106 extends Task<Data> {
729c563d
S
107 /**
108 * Kill code.
109 */
1e3214b6 110 readonly kill?: KillBehavior | true | 'success' | 'failure'
729c563d 111 /**
91ee39ed 112 * Task error.
729c563d 113 */
e102732c 114 readonly taskError?: TaskError<ErrorData>
bf9549ae 115 /**
d715b7bc 116 * Task performance.
62c15a68 117 */
d715b7bc 118 readonly taskPerformance?: TaskPerformance
90d7d101
JB
119 /**
120 * Task function names.
121 */
122 readonly taskFunctions?: string[]
b6b32453 123 /**
f59e1027 124 * Whether the worker computes the given statistics or not.
b6b32453
JB
125 */
126 readonly statistics?: WorkerStatistics
f59e1027 127 /**
7c8381eb 128 * Whether the worker is ready or not.
f59e1027 129 */
7c8381eb 130 readonly ready?: boolean
75d3401a 131 /**
b0a4db63 132 * Whether the worker starts or stops its activity check.
75d3401a 133 */
b0a4db63 134 readonly checkActive?: boolean
85aeb3f3
JB
135 /**
136 * Message port.
137 */
138 readonly port?: MessagePort
325f50bc 139}
be0676b3
APA
140
141/**
e5d3809a 142 * An object holding the task execution response promise resolve/reject callbacks.
be0676b3 143 *
e102732c 144 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
c319c66b 145 * @internal
be0676b3 146 */
501aea93 147export interface PromiseResponseWrapper<Response = unknown> {
be0676b3
APA
148 /**
149 * Resolve callback to fulfill the promise.
150 */
d2c73f82 151 readonly resolve: (value: Response | PromiseLike<Response>) => void
be0676b3
APA
152 /**
153 * Reject callback to reject the promise.
154 */
d2c73f82 155 readonly reject: (reason?: unknown) => void
be0676b3 156 /**
e5d3809a 157 * The worker node key executing the task.
be0676b3 158 */
501aea93 159 readonly workerNodeKey: number
be0676b3 160}
ff3f866a
JB
161
162export type Writable<T> = { -readonly [P in keyof T]: T[P] }