Merge branch 'master' into issue-70
[poolifier.git] / src / worker / abstract-worker.ts
CommitLineData
c97c7edb 1import { AsyncResource } from 'async_hooks'
838898f1
S
2import type { Worker } from 'cluster'
3import type { MessagePort } from 'worker_threads'
c97c7edb
S
4import type { MessageValue } from '../utility-types'
5import type { WorkerOptions } from './worker-options'
6
729c563d
S
7/**
8 * Base class containing some shared logic for all poolifier workers.
9 *
10 * @template MainWorker Type of main worker.
11 * @template Data Type of data this worker receives from pool's execution.
12 * @template Response Type of response the worker sends back to the main worker.
13 */
c97c7edb 14export abstract class AbstractWorker<
838898f1 15 MainWorker extends Worker | MessagePort,
d3c8a1a8
S
16 Data = unknown,
17 Response = unknown
c97c7edb 18> extends AsyncResource {
729c563d
S
19 /**
20 * The maximum time to keep this worker alive while idle. The pool automatically checks and terminates this worker when the time expires.
21 */
c97c7edb 22 protected readonly maxInactiveTime: number
729c563d
S
23 /**
24 * Whether the worker is working asynchronously or not.
25 */
c97c7edb 26 protected readonly async: boolean
729c563d
S
27 /**
28 * Timestamp of the last task processed by this worker.
29 */
c97c7edb 30 protected lastTask: number
729c563d
S
31 /**
32 * Handler ID of the `interval` alive check.
33 */
c97c7edb
S
34 protected readonly interval?: NodeJS.Timeout
35
36 /**
729c563d 37 * Constructs a new poolifier worker.
c97c7edb
S
38 *
39 * @param type The type of async event.
729c563d
S
40 * @param isMain Whether this is the main worker or not.
41 * @param fn Function processed by the worker when the pool's `execution` function is invoked.
838898f1 42 * @param mainWorker Reference to main worker.
729c563d 43 * @param opts Options for the worker.
c97c7edb
S
44 */
45 public constructor (
46 type: string,
47 isMain: boolean,
48 fn: (data: Data) => Response,
838898f1 49 protected mainWorker?: MainWorker | null,
c97c7edb
S
50 public readonly opts: WorkerOptions = {}
51 ) {
52 super(type)
53
54 this.maxInactiveTime = this.opts.maxInactiveTime ?? 1000 * 60
55 this.async = !!this.opts.async
56 this.lastTask = Date.now()
f2fdaa86 57 if (!fn) throw new Error('fn parameter is mandatory')
838898f1 58 // Keep the worker active
c97c7edb
S
59 if (!isMain) {
60 this.interval = setInterval(
61 this.checkAlive.bind(this),
62 this.maxInactiveTime / 2
63 )
64 this.checkAlive.bind(this)()
65 }
838898f1
S
66
67 this.mainWorker?.on('message', (value: MessageValue<Data, MainWorker>) => {
68 if (value?.data && value.id) {
69 // Here you will receive messages
70 if (this.async) {
71 this.runInAsyncScope(this.runAsync.bind(this), this, fn, value)
72 } else {
73 this.runInAsyncScope(this.run.bind(this), this, fn, value)
74 }
75 } else if (value.parent) {
76 // Save a reference of the main worker to communicate with it
77 // This will be received once
78 this.mainWorker = value.parent
79 } else if (value.kill) {
80 // Here is time to kill this worker, just clearing the interval
81 if (this.interval) clearInterval(this.interval)
82 this.emitDestroy()
83 }
84 })
c97c7edb
S
85 }
86
729c563d
S
87 /**
88 * Returns the main worker.
838898f1
S
89 *
90 * @returns Reference to the main worker.
729c563d 91 */
838898f1
S
92 protected getMainWorker (): MainWorker {
93 if (!this.mainWorker) {
94 throw new Error('Main worker was not set')
95 }
96 return this.mainWorker
97 }
c97c7edb 98
729c563d
S
99 /**
100 * Send a message to the main worker.
101 *
102 * @param message The response message.
103 */
c97c7edb
S
104 protected abstract sendToMainWorker (message: MessageValue<Response>): void
105
729c563d
S
106 /**
107 * Check to see if the worker should be terminated, because its living too long.
108 */
c97c7edb
S
109 protected checkAlive (): void {
110 if (Date.now() - this.lastTask > this.maxInactiveTime) {
111 this.sendToMainWorker({ kill: 1 })
112 }
113 }
114
729c563d
S
115 /**
116 * Handle an error and convert it to a string so it can be sent back to the main worker.
117 *
118 * @param e The error raised by the worker.
50eceb07 119 * @returns Message of the error.
729c563d 120 */
c97c7edb
S
121 protected handleError (e: Error | string): string {
122 return (e as unknown) as string
123 }
124
729c563d
S
125 /**
126 * Run the given function synchronously.
127 *
128 * @param fn Function that will be executed.
129 * @param value Input data for the given function.
130 */
c97c7edb
S
131 protected run (
132 fn: (data?: Data) => Response,
133 value: MessageValue<Data>
134 ): void {
135 try {
136 const res = fn(value.data)
137 this.sendToMainWorker({ data: res, id: value.id })
138 this.lastTask = Date.now()
139 } catch (e) {
140 const err = this.handleError(e)
141 this.sendToMainWorker({ error: err, id: value.id })
142 this.lastTask = Date.now()
143 }
144 }
145
729c563d
S
146 /**
147 * Run the given function asynchronously.
148 *
149 * @param fn Function that will be executed.
150 * @param value Input data for the given function.
151 */
c97c7edb
S
152 protected runAsync (
153 fn: (data?: Data) => Promise<Response>,
154 value: MessageValue<Data>
155 ): void {
156 fn(value.data)
157 .then(res => {
158 this.sendToMainWorker({ data: res, id: value.id })
159 this.lastTask = Date.now()
160 return null
161 })
162 .catch(e => {
163 const err = this.handleError(e)
164 this.sendToMainWorker({ error: err, id: value.id })
165 this.lastTask = Date.now()
166 })
167 }
168}