mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 20:43:30 +01:00
more shard stuff
This commit is contained in:
@@ -7,21 +7,41 @@ class Shard {
|
|||||||
this.manager = manager;
|
this.manager = manager;
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.process = childProcess.fork(path.resolve(this.manager.file), [id, this.manager.shards.size], { silent: true });
|
this.process = childProcess.fork(path.resolve(this.manager.file), [id, this.manager.shards.size], { silent: true });
|
||||||
|
this.waitingForResponse = new Map();
|
||||||
this.process.on('message', m => {
|
this.process.on('message', m => {
|
||||||
if (m && m.type && m.id) {
|
if (m && m.type && m.id) {
|
||||||
|
if (this.waitingForResponse.get(m.id)) {
|
||||||
|
const resp = this.waitingForResponse.get(m.id);
|
||||||
|
resp.resolve(m.data);
|
||||||
|
this.waitingForResponse.delete(m.id);
|
||||||
|
} else {
|
||||||
|
const reply = data => {
|
||||||
|
this.send(m.id);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
send(type, timeout = 60000, data = {}) {
|
send(type, timeout = 60000, data = {}) {
|
||||||
|
const id = crypto.randomBytes(16).toString('hex');
|
||||||
|
this._send(id, type, timeout, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
_send(id, type, timeout, data) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const id = crypto.randomBytes(16).toString('hex');
|
|
||||||
this.process.send({
|
this.process.send({
|
||||||
type,
|
type,
|
||||||
id,
|
id,
|
||||||
data,
|
data,
|
||||||
});
|
});
|
||||||
|
this.waitingForResponse.set(id, {
|
||||||
|
resolve,
|
||||||
|
});
|
||||||
|
setTimeout(() => {
|
||||||
|
reject(new Error('did not receive response'));
|
||||||
|
this.waitingForResponse.delete(id);
|
||||||
|
}, timeout);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
28
src/sharding/ShardListener.js
Normal file
28
src/sharding/ShardListener.js
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
const crypto = require('crypto');
|
||||||
|
|
||||||
|
class ShardListener {
|
||||||
|
constructor() {
|
||||||
|
this.waitingForResponse = new Map();
|
||||||
|
this.process = process;
|
||||||
|
}
|
||||||
|
|
||||||
|
send(type, timeout = 60000, data = {}) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const id = crypto.randomBytes(16).toString('hex');
|
||||||
|
this.process.send({
|
||||||
|
type,
|
||||||
|
id,
|
||||||
|
data,
|
||||||
|
});
|
||||||
|
this.waitingForResponse.set(id, {
|
||||||
|
resolve,
|
||||||
|
});
|
||||||
|
setTimeout(() => {
|
||||||
|
reject(new Error('did not receive response'));
|
||||||
|
this.waitingForResponse.delete(id);
|
||||||
|
}, timeout);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = ShardListener;
|
||||||
Reference in New Issue
Block a user