forked from smogon/pokemon-showdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
process-manager.js
212 lines (184 loc) · 4.27 KB
/
process-manager.js
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/**
* Process Manager
* Pokemon Showdown - http://pokemonshowdown.com/
*
* This file abstract out multiprocess logic involved in several tasks.
*
* @license MIT license
*/
'use strict';
const EventEmitter = require('events');
/**
* @type {Map<any, string>}
*/
const processManagers = new Map();
/**
* @param {any} str
* @return {string}
*/
function serialize(str) {
if (typeof str === 'string') return str;
return JSON.stringify(str);
}
class ProcessWrapper extends EventEmitter {
/**
* @param {any} PM
*/
constructor(PM) {
super();
/** @type {any} */
this.PM = PM;
/** @type {boolean} */
this.active = true;
/** @type {Map<number, any>} */
this.pendingTasks = new Map();
/** @type {any} */
this.process = require('child_process').fork(PM.execFile, [], {cwd: __dirname});
// Allow events to bubble-up to the wrapper
this.process.on('message', /** @param {string} message */ message => this.emit('message', message));
this.on('message', PM.onMessageUpstream);
}
/**
* @param {string} data
*/
send(data) {
return this.process.send(data);
}
release() {
if (this.load || this.active) return;
this.PM = null;
this.removeAllListeners('message');
this.process.disconnect();
}
/**
* @return {number}
*/
get load() {
return this.pendingTasks.size;
}
}
/**
* @typedef {Object} PMOptions
* The path to the file to spawn the child process(es) from.
* @property {string} [execFile]
* The maximum number of child processes to spawn.
* @property {number} [maxProcesses]
* Whether or not the process manager handles a chat commands module.
* @property {boolean} [isChatBased]
*/
class ProcessManager {
/**
* @param {PMOptions} options
*/
constructor(options) {
if (!('execFile' in options) || !('maxProcesses' in options) || !('isChatBased' in options)) {
throw new Error(
"An options object given to the ProcessManager constructor is missing required properties! " +
`The execFile given is: ${options.execFile || ''}`
);
}
/** @type {ProcessWrapper[]} */
this.processes = [];
/** @type {number} */
this.taskId = 0;
/** @type {string} */
this.execFile = '' + options.execFile;
/** @type {number} */
this.maxProcesses = (typeof options.maxProcesses === 'number') ? options.maxProcesses : 1;
/** @type {boolean} */
this.isChatBased = !!options.isChatBased;
processManagers.set(this, options.execFile);
}
spawn() {
for (let i = this.processes.length; i < this.maxProcesses; i++) {
this.processes.push(new ProcessWrapper(this));
}
}
unspawn() {
for (let process of this.processes.splice(0)) {
process.active = false;
process.release();
}
}
respawn() {
this.unspawn();
this.spawn();
}
/**
* @return {ProcessWrapper}
*/
acquire() {
let process = this.processes[0];
for (const curProcess of this.processes) {
if (curProcess.load < process.load) {
process = curProcess;
}
}
return process;
}
/**
* @param {ProcessWrapper} process
*/
release(process) {
process.release();
}
/**
* @param {...any} args
* @return {Promise<any>}
*/
send(...args) {
if (!this.processes.length) {
return Promise.resolve(this.receive(...args));
}
return new Promise((resolve, reject) => {
let process = this.acquire();
process.pendingTasks.set(this.taskId, resolve);
try {
let serializedArgs = args.map(serialize).join('|');
process.send(`${this.taskId++}|${serializedArgs}`);
} catch (e) {}
});
}
/**
* @param {...any} args
* @return {any}
*/
sendSync(...args) {
// synchronously!
return this.receive(...args);
}
/**
* @param {string} message
*/
onMessageUpstream(message) {
// Expected to resolve the pending task completed.
}
/**
* @param {string} message
*/
onMessageDownstream(message) {
// Expected to call `receive()` at some point,
// and send the result to the parent process.
}
/**
* @param {...any} args
* @return {any}
*/
receive(...args) {
// This is where the child process actually does stuff
// To be overriden by specific implementations.
}
/**
* @return {Map<ProcessManager, string>}
*/
static get cache() {
return processManagers;
}
/**
* @return {{new(PM: ProcessManager): ProcessWrapper}}
*/
static get ProcessWrapper() {
return ProcessWrapper;
}
}
module.exports = ProcessManager;