Lint
[poolifier.git] / lib / workers.js
CommitLineData
a32e02ba 1'use strict'
2const {
3 isMainThread, parentPort
4} = require('worker_threads')
50811da2 5const { AsyncResource } = require('async_hooks')
a32e02ba 6const maxInactiveTime = 1000 * 60
7
a32e02ba 8/**
9 * An example worker that will be always alive, you just need to extend this class if you want a static pool.<br>
10 * When this worker is inactive for more than 1 minute, it will send this info to the main thread,<br>
11 * if you are using DynamicThreadPool, the workers created after will be killed, the min num of thread will be guaranteed
12 * @author Alessandro Pio Ardizio
13 * @since 0.0.1
14 */
50811da2 15class ThreadWorker extends AsyncResource {
a32e02ba 16 constructor (fn) {
50811da2 17 super('worker-thread-pool:pioardi')
a32e02ba 18 this.lastTask = Date.now()
19 if (!fn) throw new Error('Fn parameter is mandatory')
20 // keep the worker active
21 if (!isMainThread) {
22 this.interval = setInterval(this._checkAlive.bind(this), maxInactiveTime)
23 this._checkAlive.bind(this)()
24 }
25 parentPort.on('message', (value) => {
26 if (value && value._id) {
27 // here you will receive messages
28 // console.log('This is the main thread ' + isMainThread)
50811da2 29 const res = this.runInAsyncScope(fn, null, value)
30 this.parent.postMessage({ data: res, _id: value._id })
a32e02ba 31 this.lastTask = Date.now()
32 } else if (value.parent) {
33 // save the port to communicate with the main thread
34 // this will be received once
35 this.parent = value.parent
36 } else if (value.kill) {
37 // here is time to kill this thread, just clearing the interval
38 clearInterval(this.interval)
39 }
40 })
41 }
42
43 _checkAlive () {
44 if ((Date.now() - this.lastTask) > maxInactiveTime) {
45 this.parent.postMessage({ kill: 1 })
46 }
47 }
48}
49
50module.exports.ThreadWorker = ThreadWorker