-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchannel.js
381 lines (360 loc) · 11.3 KB
/
channel.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
const socketClusterClient = require('socketcluster-client');
const AsyncStreamEmitter = require('async-stream-emitter');
class Channel extends AsyncStreamEmitter {
constructor(options = {}) {
super();
let {
moduleAlias,
moduleActions,
dependencies,
dependents,
moduleRedirects,
modulePathFunction,
exchange,
inboundModuleSockets,
connectTimeout,
subscribeTimeout,
ackTimeout,
allowPublishingWithoutAlias,
defaultTargetModuleAlias
} = options;
this.exchange = exchange;
this.moduleAlias = moduleAlias;
this.dependencies = dependencies || [];
this.dependents = dependents;
this.moduleRedirects = moduleRedirects;
this.clients = {};
this.inboundModuleSockets = inboundModuleSockets;
this.connectTimeout = connectTimeout;
this.subscribeTimeout = subscribeTimeout;
this.ackTimeout = ackTimeout;
this.moduleActions = moduleActions;
this.allowPublishingWithoutAlias = allowPublishingWithoutAlias;
this.defaultTargetModuleAlias = defaultTargetModuleAlias;
this._dependencyLookup = {};
for (let dependencyName of this.dependencies) {
if (this.moduleRedirects[dependencyName] != null) {
dependencyName = this.moduleRedirects[dependencyName];
}
this._dependencyLookup[dependencyName] = true;
let client = socketClusterClient.create({
protocolScheme: 'ws+unix',
connectTimeout,
ackTimeout,
socketPath: modulePathFunction(dependencyName),
query: {source: moduleAlias}
});
(async () => {
for await (let {error} of client.listener('error')) {
this.emit('error', {error});
}
})();
for (let action of this.moduleActions) {
(async () => {
for await (let request of client.procedure(action)) {
this.emit('rpc', {
action,
request
});
}
})();
}
this.clients[dependencyName] = client;
}
}
async subscribe(channel, handler) {
let {targetModuleAlias, locator} = this._getLocatorInfo(channel, true);
let targetChannel = this._computeTargetChannel(targetModuleAlias, locator);
if (!this._dependencyLookup[targetModuleAlias]) {
let error = new Error(
`Cannot subscribe to the ${
channel
} channel on the ${
targetModuleAlias
} module because it is not listed as a dependency of the ${
this.moduleAlias
} module`
);
error.name = 'InvalidTargetModuleError';
throw error;
}
let channelObject = this.clients[targetModuleAlias].subscribe(targetChannel);
let channelDataConsumer = channelObject.createConsumer();
if (!handler.channelOutputConsumerIds) {
handler.channelOutputConsumerIds = new Map();
}
if (!handler.channelOutputConsumerIds.has(targetChannel)) {
handler.channelOutputConsumerIds.set(targetChannel, []);
}
handler.channelOutputConsumerIds.get(targetChannel).push(channelDataConsumer.id);
(async () => {
for await (let event of channelDataConsumer) {
try {
await handler(event);
} catch (error) {
this.emit('error', {error});
}
}
})();
if (channelObject.state === channelObject.SUBSCRIBED) {
return;
}
try {
await channelObject.listener('subscribe').once(this.subscribeTimeout);
} catch (err) {
let error = new Error(
`Subscription to the ${
channel
} channel of the ${
targetModuleAlias
} module by the ${
this.moduleAlias
} module timed out after ${
this.subscribeTimeout
} milliseconds`
);
error.name = 'SubscribeTimeOutError';
throw error;
}
}
unsubscribe(channel, handler) {
let {targetModuleAlias, locator} = this._getLocatorInfo(channel, true);
let targetChannel = this._computeTargetChannel(targetModuleAlias, locator);
if (!this._dependencyLookup[targetModuleAlias]) {
let error = new Error(
`Cannot unsubscribe from the ${
channel
} channel on the ${
targetModuleAlias
} module because it is not listed as a dependency of the ${
this.moduleAlias
} module`
);
error.name = 'InvalidTargetModuleError';
throw error;
}
let targetClient = this.clients[targetModuleAlias];
let channelObject = targetClient.channel(targetChannel);
if (channelObject) {
if (handler.channelOutputConsumerIds && handler.channelOutputConsumerIds.has(targetChannel)) {
let channelConsumerIds = handler.channelOutputConsumerIds.get(targetChannel);
for (let consumerId of channelConsumerIds) {
channelObject.killOutputConsumer(consumerId);
}
handler.channelOutputConsumerIds.delete(targetChannel);
if (handler.channelOutputConsumerIds.size <= 0) {
delete handler.channelOutputConsumerIds;
}
}
let consumerCount = channelObject.getOutputConsumerStatsList().length;
if (consumerCount <= 0) {
channelObject.unsubscribe();
channelObject.close();
}
}
}
async once(channel, handler) {
let locatorInfo = this._getLocatorInfo(channel, true);
let targetChannel = this._getTargetChannel(locatorInfo);
let onceHandler = async (event) => {
await handler(event);
this.unsubscribe(targetChannel, onceHandler);
};
await this.subscribe(targetChannel, onceHandler);
}
publish(channel, data, info) {
let locatorInfo = this._getLocatorInfo(channel, false);
if (!this.allowPublishingWithoutAlias && !locatorInfo.hasAlias) {
throw new Error(
`Publishing to a channel without specifying a module alias is not allowed - The ${
channel
} channel name must be preceded by the ${
this.moduleAlias
} module alias in the format ${this.moduleAlias}:eventName`
);
}
if (locatorInfo.targetModuleAlias !== this.moduleAlias) {
throw new Error(
`The module alias prefix of the ${
channel
} channel must refer to the publisher which is the ${
this.moduleAlias
} module`
);
}
let targetChannel = this._getTargetChannel(locatorInfo);
this.exchange.transmitPublish(targetChannel, {data, info});
}
async invokeOnWorker(action, data, options) {
let {targetModuleAlias, locator} = this._getLocatorInfo(action, true);
if (!this._dependencyLookup[targetModuleAlias]) {
let error = new Error(
`Cannot invoke worker action ${
action
} on the ${
targetModuleAlias
} worker because it is not listed as a dependency of the ${
this.moduleAlias
} worker`
);
error.name = 'InvalidTargetWorkerError';
throw error;
}
if (typeof data !== 'object' && data != null) {
let error = new Error(
`Failed to invoke worker action ${
action
} on the ${
targetModuleAlias
} module because data must be an object if specified`
);
error.name = 'InvalidDataError';
throw error;
}
let invokePacket = {
isWorkerAction: true,
params: data || {}
};
let targetSocket = this.clients[targetModuleAlias];
try {
return await targetSocket.invoke(locator, invokePacket, options);
} catch (err) {
if (err.name === 'TimeoutError') {
let error = new Error(
`Failed to invoke worker action ${
action
} on the ${
targetModuleAlias
} module because of timeout`
);
error.name = err.name;
throw error;
}
throw err;
}
return result;
}
async invoke(action, data, options) {
let {targetModuleAlias, locator} = this._getLocatorInfo(action, true);
if (!this._dependencyLookup[targetModuleAlias]) {
let error = new Error(
`Cannot invoke action ${
action
} on the ${
targetModuleAlias
} module because it is not listed as a dependency of the ${
this.moduleAlias
} module`
);
error.name = 'InvalidTargetModuleError';
throw error;
}
if (typeof data !== 'object' && data != null) {
let error = new Error(
`Failed to invoke action ${
action
} on the ${
targetModuleAlias
} module because data must be an object if specified`
);
error.name = 'InvalidDataError';
throw error;
}
let invokePacket = {
isPublic: false,
params: data || {}
};
let targetSocket = this.clients[targetModuleAlias];
try {
return await targetSocket.invoke(locator, invokePacket, options);
} catch (err) {
if (err.name === 'TimeoutError') {
let error = new Error(
`Failed to invoke action ${
action
} on the ${
targetModuleAlias
} module because of timeout`
);
error.name = err.name;
throw error;
}
throw err;
}
}
async invokePublic(action, data, options) {
let {targetModuleAlias, locator} = this._getLocatorInfo(action, true);
let targetSocket = this.clients[targetModuleAlias] || this.inboundModuleSockets[targetModuleAlias];
if (!targetSocket) {
let error = new Error(
`Cannot invoke public action ${
action
} on the ${
targetModuleAlias
} module because it is not connected to the ${
this.moduleAlias
} module as either a dependent or dependency`
);
error.name = 'UnreachableTargetModuleError';
throw error;
}
if (typeof data !== 'object' && data != null) {
let error = new Error(
`Failed to invoke public action ${
action
} on the ${
targetModuleAlias
} module because data must be an object if specified`
);
error.name = 'InvalidDataError';
throw error;
}
let invokePacket = {
isPublic: true,
params: data || {},
info: options
};
try {
return await targetSocket.invoke(locator, invokePacket, options);
} catch (err) {
if (err.name === 'TimeoutError') {
let error = new Error(
`Failed to invoke public action ${
action
} on the ${
targetModuleAlias
} module because of timeout`
);
error.name = err.name;
throw error;
}
throw err;
}
}
_getTargetChannel({targetModuleAlias, locator}) {
return this._computeTargetChannel(targetModuleAlias, locator);
}
_computeTargetChannel(targetModuleAlias, locator) {
return `${targetModuleAlias}:${locator}`;
}
_getLocatorInfo(command, applyRedirect) {
let targetModuleAlias;
let locator;
let hasAlias;
if (command.indexOf(':') === -1) {
targetModuleAlias = this.defaultTargetModuleAlias;
locator = command;
hasAlias = false;
} else {
let parts = command.split(':');
targetModuleAlias = parts[0];
locator = parts.slice(1).join(':');
hasAlias = true;
}
if (applyRedirect && this.moduleRedirects[targetModuleAlias] != null) {
targetModuleAlias = this.moduleRedirects[targetModuleAlias];
}
return {targetModuleAlias, locator, hasAlias};
}
}
module.exports = Channel;