-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.js
307 lines (247 loc) · 9.15 KB
/
client.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
const util = require('util');
const kebabCase = require('lodash.kebabcase');
const camelCase = require('lodash.camelcase');
const through2 = require('through2');
const duplexer2 = require('duplexer2');
const grpc = require('@grpc/grpc-js');
const backoff = require('backoff');
const loadObject = require('./loadObject');
module.exports = RPCBaseServiceClientFactory;
function RPCBaseServiceClientFactory(TService, transforms = [], opts = {}) {
const defaultOpts = {
retryFailAfter: 10,
retryOnCodes: [],
retryInitialDelay: 100,
retryMaxDelay: 10000
};
opts = Object.assign({}, defaultOpts, opts);
const requestTransforms = {};
const responseTransforms = {};
const Client = loadObject(TService);
function RPCBaseServiceClient(addr, creds, clientOpts) {
this._grpcClient = new Client(addr, creds, clientOpts);
}
RPCBaseServiceClient.prototype = {};
RPCBaseServiceClient.prototype.constructor = RPCBaseServiceClient;
/* eslint-disable no-loop-func */
for (let child of TService.methodsArray) {
let methodName = camelCase(child.name);
requestTransforms[methodName] = requestTransforms[methodName] || [];
responseTransforms[methodName] = responseTransforms[methodName] || [];
child.resolve();
// requestTransform1 -> requestTransform2 -> RPC client -> responseTransform2 -> responseTransform1
for (let { request, response } of transforms) {
requestTransforms[methodName].push(request(child.resolvedRequestType));
responseTransforms[methodName].unshift(response(child.resolvedResponseType));
}
const attachContextToError = (err, callingContext) => {
const stack = `${err.stack}\ncaused when calling gRPC method ${
child.fullName
}\n${callingContext.stack.replace(/^Error\n/, '')}`;
return Object.assign(err, { stack });
};
const getCallingContext = () => {
const callingContext = {};
Error.captureStackTrace(callingContext, RPCBaseServiceClient.prototype[methodName]);
return callingContext;
};
if (child.requestStream && child.responseStream) {
RPCBaseServiceClient.prototype[methodName] = function(...args) {
var call = this._grpcClient[methodName](...args);
var inStream = through2.obj(); // Pass through stream
var outStream = through2.obj();
var origInStream = inStream;
var origOutStream = outStream;
getRequestTransforms(methodName).forEach(function(transform) {
if (transform) {
var transformStream = createTransformStream(transform);
// Pass the errors through 2
inStream.on('error', function(err) {
transformStream.emit('error', err);
});
inStream = inStream.pipe(transformStream);
}
});
getResponseTransforms(methodName).forEach(function(transform) {
if (transform) {
var transformStream = createTransformStream(transform);
outStream.on('error', function(err) {
transformStream.emit('error', err);
});
outStream = outStream.pipe(transformStream);
}
});
// Map inStream errors to outStream
inStream.on('error', function(err) {
origOutStream.emit('error', err);
});
inStream.pipe(call);
call.pipe(origOutStream);
call.on('error', function(err) {
origOutStream.emit('error', err);
});
return duplexer2(origInStream, outStream);
};
} else if (child.requestStream) {
RPCBaseServiceClient.prototype[methodName] = function(...args) {
var inStream = through2.obj();
var origInStream = inStream;
getRequestTransforms(methodName).forEach(function(transform) {
if (transform) {
var transformStream = createTransformStream(transform);
// Pass the errors through 2
inStream.on('error', function(err) {
transformStream.emit('error', err);
});
inStream = inStream.pipe(transformStream);
}
});
const runAsPromise = util.promisify(callback => {
var call = this._grpcClient[methodName](...args, callback);
inStream.pipe(call);
inStream.on('error', function(err) {
call.emit('error', err);
});
});
const resultProm = runAsPromise().then(function(result) {
getResponseTransforms(methodName).forEach(function(transform) {
if (transform) {
result = transform(result);
}
});
return result;
});
// Make instream thenable
['then', 'catch', 'finally'].forEach(function(field) {
origInStream[field] = resultProm[field].bind(resultProm);
});
return origInStream;
};
} else if (child.responseStream) {
RPCBaseServiceClient.prototype[methodName] = function(data, metadata, ...args) {
metadata = metadata ? metadata.clone() : new grpc.Metadata();
getRequestTransforms(methodName).forEach(function(transform) {
if (transform) {
data = transform(data);
}
});
applyContextToMetadata(metadata, data, child.resolvedRequestType);
var call = this._grpcClient[methodName](data, ...args);
var outStream = through2.obj();
call.pipe(outStream);
call.on('error', function(err) {
outStream.emit('error', err);
});
getResponseTransforms(methodName).forEach(function(transform) {
if (transform) {
var transformStream = createTransformStream(transform);
outStream.on('error', function(err) {
transformStream.emit('error', err);
});
outStream = outStream.pipe(transformStream);
}
});
return outStream;
};
} else {
// No streams
let promisifiedClient = util.promisify(Client.prototype[methodName]);
RPCBaseServiceClient.prototype[methodName] = function(data, metadata, ...args) {
metadata = metadata ? metadata.clone() : new grpc.Metadata();
const callingContext = getCallingContext();
getRequestTransforms(methodName).forEach(function(transform) {
if (transform) {
data = transform(data);
}
});
applyContextToMetadata(metadata, data, child.resolvedRequestType);
return new Promise((resolve, reject) => {
const fibonacciBackoff = backoff.fibonacci({
randomisationFactor: 0.1,
initialDelay: opts.retryInitialDelay,
maxDelay: opts.retryMaxDelay
});
const handleErr = err => {
reject(attachContextToError(err, callingContext));
};
const run = () => {
promisifiedClient
.call(this._grpcClient, data, metadata, ...args)
.then(function(result) {
getResponseTransforms(methodName).forEach(function(transform) {
if (transform) {
result = transform(result);
}
});
resolve(result);
})
.catch(err => {
if (err.code && opts.retryOnCodes.includes(err.code)) {
fibonacciBackoff.backoff(err);
} else {
handleErr(err);
}
});
};
fibonacciBackoff.failAfter(opts.retryFailAfter);
fibonacciBackoff.on('ready', function() {
run();
});
fibonacciBackoff.on('fail', err => {
handleErr(err);
});
run();
});
};
}
}
return RPCBaseServiceClient;
function getRequestTransforms(method) {
return requestTransforms[method] || [];
}
function getResponseTransforms(method) {
return responseTransforms[method] || [];
}
}
function applyContextToMetadata(metadata, data, requestType) {
const contextType = getRequestContextType(requestType);
if (!contextType) {
return;
}
if (
contextType === '.ortoo.Context' ||
(contextType === '.ortoo.CommonContext' && data && data.context && data.context.ortoo)
) {
let or2Context;
if (contextType === '.ortoo.Context') {
or2Context = data.context || {};
} else {
const commonContext = data.context;
or2Context = { userId: commonContext.userId, requestId: commonContext.requestId };
Object.assign(or2Context, commonContext.ortoo);
}
or2Context.applicationId = or2Context.applicationId || 'governorhub';
for (let key of Object.keys(or2Context)) {
metadata.set(`x-or2-context-${kebabCase(key)}`, String(or2Context[key]));
}
}
}
function createTransformStream(transformer) {
return through2.obj(function(obj, enc, callback) {
callback(null, transformer(obj));
});
}
function getRequestContextType(requestType) {
const contextField = requestType.fields.context;
if (!contextField) {
return null;
}
if (!contextField.resolved) {
contextField.resolve();
}
const contextType = contextField.resolvedType;
if (!contextType) {
return null;
}
return contextType.fullName;
}