Commit | Line | Data |
---|---|---|
fc3e6586 | 1 | import { |
85aeb3f3 JB |
2 | type MessageChannel, |
3 | type MessagePort, | |
fc3e6586 | 4 | SHARE_ENV, |
7d91a8cd | 5 | type TransferListItem, |
65d7a1c9 | 6 | Worker, |
90082c8c | 7 | type WorkerOptions, |
65d7a1c9 | 8 | isMainThread |
fc3e6586 | 9 | } from 'node:worker_threads' |
e102732c | 10 | import type { MessageValue } from '../../utility-types' |
c97c7edb | 11 | import { AbstractPool } from '../abstract-pool' |
4b628b48 JB |
12 | import { type PoolOptions, type PoolType, PoolTypes } from '../pool' |
13 | import { type WorkerType, WorkerTypes } from '../worker' | |
4ade5f1f | 14 | |
90082c8c JB |
15 | /** |
16 | * Options for a poolifier thread pool. | |
17 | */ | |
18 | export interface ThreadPoolOptions extends PoolOptions<Worker> { | |
19 | /** | |
20 | * Worker options. | |
21 | * | |
22 | * @see https://nodejs.org/api/worker_threads.html#new-workerfilename-options | |
23 | */ | |
24 | workerOptions?: WorkerOptions | |
25 | } | |
26 | ||
4ade5f1f | 27 | /** |
729c563d S |
28 | * A thread pool with a fixed number of threads. |
29 | * | |
e102732c JB |
30 | * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data. |
31 | * @typeParam Response - Type of execution response. This can only be structured-cloneable data. | |
4ade5f1f S |
32 | * @author [Alessandro Pio Ardizio](https://github.com/pioardi) |
33 | * @since 0.0.1 | |
34 | */ | |
d3c8a1a8 | 35 | export class FixedThreadPool< |
deb85c12 JB |
36 | Data = unknown, |
37 | Response = unknown | |
e102732c | 38 | > extends AbstractPool<Worker, Data, Response> { |
4ade5f1f | 39 | /** |
729c563d S |
40 | * Constructs a new poolifier fixed thread pool. |
41 | * | |
38e795c1 JB |
42 | * @param numberOfThreads - Number of threads for this pool. |
43 | * @param filePath - Path to an implementation of a `ThreadWorker` file, which can be relative or absolute. | |
44 | * @param opts - Options for this fixed thread pool. | |
4ade5f1f S |
45 | */ |
46 | public constructor ( | |
5c5a1fb7 | 47 | numberOfThreads: number, |
c97c7edb | 48 | filePath: string, |
90082c8c | 49 | protected readonly opts: ThreadPoolOptions = {} |
4ade5f1f | 50 | ) { |
5c5a1fb7 | 51 | super(numberOfThreads, filePath, opts) |
c97c7edb | 52 | } |
4ade5f1f | 53 | |
afc003b2 | 54 | /** @inheritDoc */ |
c97c7edb S |
55 | protected isMain (): boolean { |
56 | return isMainThread | |
4ade5f1f S |
57 | } |
58 | ||
afc003b2 | 59 | /** @inheritDoc */ |
aa9eede8 | 60 | protected async destroyWorkerNode (workerNodeKey: number): Promise<void> { |
ae3ab61d | 61 | this.flagWorkerNodeAsNotReady(workerNodeKey) |
81c02522 JB |
62 | this.flushTasksQueue(workerNodeKey) |
63 | // FIXME: wait for tasks to be finished | |
aa9eede8 JB |
64 | const workerNode = this.workerNodes[workerNodeKey] |
65 | const worker = workerNode.worker | |
041dc05b | 66 | const waitWorkerExit = new Promise<void>(resolve => { |
ae036c3e | 67 | worker.once('exit', () => { |
81c02522 JB |
68 | resolve() |
69 | }) | |
70 | }) | |
72ae84a2 | 71 | await this.sendKillMessageToWorker(workerNodeKey) |
aa9eede8 | 72 | workerNode.closeChannel() |
c97c7edb | 73 | await worker.terminate() |
c2301b8e | 74 | await waitWorkerExit |
4ade5f1f S |
75 | } |
76 | ||
afc003b2 | 77 | /** @inheritDoc */ |
aa9eede8 JB |
78 | protected sendToWorker ( |
79 | workerNodeKey: number, | |
7d91a8cd JB |
80 | message: MessageValue<Data>, |
81 | transferList?: TransferListItem[] | |
aa9eede8 | 82 | ): void { |
041dc05b | 83 | ( |
ae3ab61d | 84 | this.workerNodes[workerNodeKey]?.messageChannel as MessageChannel |
9761e404 | 85 | )?.port1?.postMessage( |
dbfa7948 | 86 | { ...message, workerId: this.getWorkerInfo(workerNodeKey).id }, |
72ae84a2 JB |
87 | transferList |
88 | ) | |
85aeb3f3 JB |
89 | } |
90 | ||
91 | /** @inheritDoc */ | |
aa9eede8 | 92 | protected sendStartupMessageToWorker (workerNodeKey: number): void { |
75de9f41 | 93 | const workerNode = this.workerNodes[workerNodeKey] |
75de9f41 JB |
94 | const port2: MessagePort = (workerNode.messageChannel as MessageChannel) |
95 | .port2 | |
e9dd5b66 | 96 | workerNode.worker.postMessage( |
85aeb3f3 JB |
97 | { |
98 | ready: false, | |
dbfa7948 | 99 | workerId: this.getWorkerInfo(workerNodeKey).id, |
85aeb3f3 JB |
100 | port: port2 |
101 | }, | |
102 | [port2] | |
103 | ) | |
104 | } | |
105 | ||
106 | /** @inheritDoc */ | |
107 | protected registerWorkerMessageListener<Message extends Data | Response>( | |
aa9eede8 | 108 | workerNodeKey: number, |
85aeb3f3 JB |
109 | listener: (message: MessageValue<Message>) => void |
110 | ): void { | |
041dc05b | 111 | ( |
ae3ab61d | 112 | this.workerNodes[workerNodeKey]?.messageChannel as MessageChannel |
85aeb3f3 | 113 | ).port1.on('message', listener) |
4ade5f1f S |
114 | } |
115 | ||
ae036c3e JB |
116 | /** @inheritDoc */ |
117 | protected registerOnceWorkerMessageListener<Message extends Data | Response>( | |
118 | workerNodeKey: number, | |
119 | listener: (message: MessageValue<Message>) => void | |
120 | ): void { | |
121 | ( | |
ae3ab61d | 122 | this.workerNodes[workerNodeKey]?.messageChannel as MessageChannel |
ae036c3e JB |
123 | ).port1.once('message', listener) |
124 | } | |
125 | ||
126 | /** @inheritDoc */ | |
127 | protected deregisterWorkerMessageListener<Message extends Data | Response>( | |
128 | workerNodeKey: number, | |
129 | listener: (message: MessageValue<Message>) => void | |
130 | ): void { | |
131 | ( | |
ae3ab61d | 132 | this.workerNodes[workerNodeKey]?.messageChannel as MessageChannel |
ae036c3e JB |
133 | ).port1.off('message', listener) |
134 | } | |
135 | ||
afc003b2 | 136 | /** @inheritDoc */ |
e102732c | 137 | protected createWorker (): Worker { |
c97c7edb | 138 | return new Worker(this.filePath, { |
90082c8c JB |
139 | env: SHARE_ENV, |
140 | ...this.opts.workerOptions | |
4ade5f1f | 141 | }) |
c97c7edb S |
142 | } |
143 | ||
afc003b2 | 144 | /** @inheritDoc */ |
8881ae32 | 145 | protected get type (): PoolType { |
6b27d407 | 146 | return PoolTypes.fixed |
7c0ba920 JB |
147 | } |
148 | ||
184855e6 JB |
149 | /** @inheritDoc */ |
150 | protected get worker (): WorkerType { | |
151 | return WorkerTypes.thread | |
152 | } | |
153 | ||
afc003b2 | 154 | /** @inheritDoc */ |
c319c66b | 155 | protected get busy (): boolean { |
c2ade475 | 156 | return this.internalBusy() |
7c0ba920 | 157 | } |
4ade5f1f | 158 | } |