refactor: rename worker choice strategies to sensible names
[poolifier.git] / src / pools / selection-strategies / least-busy-worker-choice-strategy.ts
CommitLineData
2fc5cae3
JB
1import { DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS } from '../../utils'
2import type { IPool } from '../pool'
f06e48d8 3import type { IWorker } from '../worker'
168c526f 4import { AbstractWorkerChoiceStrategy } from './abstract-worker-choice-strategy'
bf90656c
JB
5import type {
6 IWorkerChoiceStrategy,
2fc5cae3
JB
7 RequiredStatistics,
8 WorkerChoiceStrategyOptions
bf90656c 9} from './selection-strategies-types'
168c526f
JB
10
11/**
e4543b14 12 * Selects the least busy worker.
168c526f
JB
13 *
14 * @typeParam Worker - Type of worker which manages the strategy.
15 * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
02706357 16 * @typeParam Response - Type of execution response. This can only be serializable data.
168c526f 17 */
e4543b14 18export class LeastBusyWorkerChoiceStrategy<
f06e48d8 19 Worker extends IWorker,
b2b1d84e
JB
20 Data = unknown,
21 Response = unknown
bf90656c
JB
22 >
23 extends AbstractWorkerChoiceStrategy<Worker, Data, Response>
17393ac8 24 implements IWorkerChoiceStrategy {
afc003b2 25 /** @inheritDoc */
168c526f 26 public readonly requiredStatistics: RequiredStatistics = {
c6bd2650 27 runTime: true,
78099a15
JB
28 avgRunTime: false,
29 medRunTime: false
168c526f
JB
30 }
31
2fc5cae3
JB
32 /** @inheritDoc */
33 public constructor (
34 pool: IPool<Worker, Data, Response>,
35 opts: WorkerChoiceStrategyOptions = DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
36 ) {
37 super(pool, opts)
49be33fe 38 this.setRequiredStatistics(this.opts)
2fc5cae3
JB
39 }
40
afc003b2 41 /** @inheritDoc */
168c526f
JB
42 public reset (): boolean {
43 return true
44 }
45
138d29a8
JB
46 /** @inheritDoc */
47 public update (): boolean {
48 return true
49 }
50
afc003b2 51 /** @inheritDoc */
c923ce56 52 public choose (): number {
cb70b19d 53 const freeWorkerNodeKey = this.findFreeWorkerNodeKey()
f06e48d8
JB
54 if (freeWorkerNodeKey !== -1) {
55 return freeWorkerNodeKey
c141008c 56 }
168c526f 57 let minRunTime = Infinity
e4543b14 58 let leastBusyWorkerNodeKey!: number
08f3f44c 59 for (const [workerNodeKey, workerNode] of this.pool.workerNodes.entries()) {
f06e48d8 60 const workerRunTime = workerNode.tasksUsage.runTime
cf9c7b65 61 if (workerRunTime === 0) {
08f3f44c 62 return workerNodeKey
168c526f
JB
63 } else if (workerRunTime < minRunTime) {
64 minRunTime = workerRunTime
e4543b14 65 leastBusyWorkerNodeKey = workerNodeKey
168c526f
JB
66 }
67 }
e4543b14 68 return leastBusyWorkerNodeKey
168c526f 69 }
97a2abc3 70
afc003b2 71 /** @inheritDoc */
a4958de2 72 public remove (): boolean {
97a2abc3
JB
73 return true
74 }
168c526f 75}