Benchmark: Ensure choice algos does not init with off-by-one (#151)
[poolifier.git] / src / worker / thread-worker.ts
CommitLineData
fa699c42 1import { isMainThread, parentPort } from 'worker_threads'
d3c8a1a8 2import type { JSONValue, MessageValue } from '../utility-types'
c97c7edb 3import { AbstractWorker } from './abstract-worker'
325f50bc 4import type { WorkerOptions } from './worker-options'
a32e02ba 5
a32e02ba 6/**
729c563d 7 * A thread worker used by a poolifier `ThreadPool`.
4ade5f1f 8 *
729c563d
S
9 * When this worker is inactive for more than the given `maxInactiveTime`,
10 * it will send a termination request to its main thread.
11 *
12 * If you use a `DynamicThreadPool` the extra workers that were created will be terminated,
13 * but the minimum number of workers will be guaranteed.
14 *
15 * @template Data Type of data this worker receives from pool's execution.
16 * @template Response Type of response the worker sends back to the main thread.
4ade5f1f
S
17 *
18 * @author [Alessandro Pio Ardizio](https://github.com/pioardi)
a32e02ba 19 * @since 0.0.1
20 */
d3c8a1a8
S
21export class ThreadWorker<
22 Data extends JSONValue = JSONValue,
23 Response extends JSONValue = JSONValue
24> extends AbstractWorker<MessagePort, Data, Response> {
729c563d
S
25 /**
26 * Reference to main thread.
27 */
ee99693b 28 protected parent?: MessagePort
4ade5f1f 29
729c563d
S
30 /**
31 * Constructs a new poolifier thread worker.
32 *
33 * @param fn Function processed by the worker when the pool's `execution` function is invoked.
34 * @param opts Options for the worker.
35 */
c97c7edb
S
36 public constructor (fn: (data: Data) => Response, opts: WorkerOptions = {}) {
37 super('worker-thread-pool:pioardi', isMainThread, fn, opts)
4ade5f1f 38
325f50bc
S
39 parentPort?.on('message', (value: MessageValue<Data>) => {
40 if (value?.data && value.id) {
41 // here you will receive messages
f2fdaa86 42 // console.log('This is the main worker ' + isMainThread)
325f50bc
S
43 if (this.async) {
44 this.runInAsyncScope(this.runAsync.bind(this), this, fn, value)
45 } else {
46 this.runInAsyncScope(this.run.bind(this), this, fn, value)
7784f548 47 }
325f50bc
S
48 } else if (value.parent) {
49 // save the port to communicate with the main thread
50 // this will be received once
51 this.parent = value.parent
52 } else if (value.kill) {
c97c7edb 53 // here is time to kill this worker, just clearing the interval
325f50bc
S
54 if (this.interval) clearInterval(this.interval)
55 this.emitDestroy()
a32e02ba 56 }
325f50bc 57 })
a32e02ba 58 }
59
c97c7edb
S
60 protected getMainWorker (): MessagePort {
61 if (!this.parent) {
62 throw new Error('Parent was not set')
106744f7 63 }
c97c7edb 64 return this.parent
106744f7 65 }
7784f548 66
c97c7edb
S
67 protected sendToMainWorker (message: MessageValue<Response>): void {
68 this.getMainWorker().postMessage(message)
7784f548 69 }
a32e02ba 70}