-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
132 lines (101 loc) · 3.61 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import cluster, { type Worker } from 'node:cluster'
import os from 'node:os'
import { nodeSchedule } from '@cityssm/scheduled-task'
import { millisecondsInOneSecond } from '@cityssm/to-millis'
import Debug from 'debug'
import { asyncExitHook } from 'exit-hook'
import { DEBUG_ENABLE_NAMESPACES, DEBUG_NAMESPACE } from './debug.config.js'
import {
registerChildProcesses,
relayMessageToChildProcess
} from './helpers/childProcesses.helpers.js'
import { getConfigProperty } from './helpers/config.helpers.js'
import type { TaskWorkerMessage } from './types/tasks.types.js'
if (process.env.NODE_ENV === 'development') {
Debug.enable(DEBUG_ENABLE_NAMESPACES)
}
const debug = Debug(`${DEBUG_NAMESPACE}:www:${process.pid}`)
process.title = 'FASTER Web Helper (Primary)'
debug(`Primary pid: ${process.pid}`)
debug(`Primary title: ${process.title}`)
/**
* Initialize module tasks
*/
async function initializeModuleTasks(): Promise<void> {
const promises: Array<Promise<void>> = []
if (getConfigProperty('modules.autocomplete.isEnabled')) {
const initializeAutocompleteModule = await import(
'./modules/autocomplete/initializeAutocompleteModule.js'
)
promises.push(initializeAutocompleteModule.initializeAutocompleteTasks())
}
if (getConfigProperty('modules.inventoryScanner.isEnabled')) {
const initializeInventoryScannerModule = await import(
'./modules/inventoryScanner/tasks.initialize.js'
)
const childProcesses = initializeInventoryScannerModule.default()
registerChildProcesses(childProcesses)
}
if (getConfigProperty('modules.tempFolderCleanup.isEnabled')) {
const initializeTempFolderCleanupModule = await import(
'./modules/tempFolderCleanup/initializeTempFolderCleanupModule.js'
)
initializeTempFolderCleanupModule.initializeTempFolderCleanupTask()
}
if (getConfigProperty('modules.integrityChecker.isEnabled')) {
const initializeIntegrityCheckerModule = await import(
'./modules/integrityChecker/tasks.initialize.js'
)
const childProcesses = initializeIntegrityCheckerModule.default()
registerChildProcesses(childProcesses)
}
await Promise.all(promises)
asyncExitHook(
async () => {
await nodeSchedule.gracefulShutdown()
},
{
wait: millisecondsInOneSecond
}
)
}
const maxAppProcesses = 4
/**
* Initialize app workers
*/
function initializeAppWorkers(): void {
const processCount = Math.min(os.cpus().length, maxAppProcesses)
debug(`Launching ${processCount} web app processes`)
const clusterSettings = {
exec: './app/appProcess.js'
}
cluster.setupPrimary(clusterSettings)
const activeWorkers = new Map<number, Worker>()
for (let index = 0; index < processCount; index += 1) {
const worker = cluster.fork()
activeWorkers.set(worker.process.pid ?? 0, worker)
}
cluster.on('message', (worker, message: TaskWorkerMessage) => {
debug(`Received message from worker: ${worker.process.pid}`)
if (message.destinationTaskName === 'app') {
for (const [pid, activeWorker] of activeWorkers.entries()) {
if (pid === worker.process.pid) {
continue
}
debug(`Relaying message to worker: ${pid}`)
activeWorker.send(message)
}
} else {
relayMessageToChildProcess(message)
}
})
cluster.on('exit', (worker) => {
debug(`Worker ${(worker.process.pid ?? 0).toString()} has been killed`)
activeWorkers.delete(worker.process.pid ?? 0)
debug('Starting another worker')
const newWorker = cluster.fork()
activeWorkers.set(newWorker.process.pid ?? 0, newWorker)
})
}
await initializeModuleTasks()
initializeAppWorkers()