-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
rpc.js
484 lines (442 loc) · 16.4 KB
/
rpc.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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
/*eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars*/
"use strict";
var $protobuf = require("../../minimal");
// Common aliases
var $Reader = $protobuf.Reader, $Writer = $protobuf.Writer, $util = $protobuf.util;
// Exported root namespace
var $root = $protobuf.roots.test_rpc || ($protobuf.roots.test_rpc = {});
$root.MyService = (function() {
/**
* Constructs a new MyService service.
* @exports MyService
* @classdesc Represents a MyService
* @extends $protobuf.rpc.Service
* @constructor
* @param {$protobuf.RPCImpl} rpcImpl RPC implementation
* @param {boolean} [requestDelimited=false] Whether requests are length-delimited
* @param {boolean} [responseDelimited=false] Whether responses are length-delimited
*/
function MyService(rpcImpl, requestDelimited, responseDelimited) {
$protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited);
}
(MyService.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = MyService;
/**
* Creates new MyService service using the specified rpc implementation.
* @function create
* @memberof MyService
* @static
* @param {$protobuf.RPCImpl} rpcImpl RPC implementation
* @param {boolean} [requestDelimited=false] Whether requests are length-delimited
* @param {boolean} [responseDelimited=false] Whether responses are length-delimited
* @returns {MyService} RPC service. Useful where requests and/or responses are streamed.
*/
MyService.create = function create(rpcImpl, requestDelimited, responseDelimited) {
return new this(rpcImpl, requestDelimited, responseDelimited);
};
/**
* Callback as used by {@link MyService#myMethod}.
* @memberof MyService
* @typedef MyMethodCallback
* @type {function}
* @param {Error|null} error Error, if any
* @param {MyResponse} [response] MyResponse
*/
/**
* Calls MyMethod.
* @function myMethod
* @memberof MyService
* @instance
* @param {IMyRequest} request MyRequest message or plain object
* @param {MyService.MyMethodCallback} callback Node-style callback called with the error, if any, and MyResponse
* @returns {undefined}
* @variation 1
*/
Object.defineProperty(MyService.prototype.myMethod = function myMethod(request, callback) {
return this.rpcCall(myMethod, $root.MyRequest, $root.MyResponse, request, callback);
}, "name", { value: "MyMethod" });
/**
* Calls MyMethod.
* @function myMethod
* @memberof MyService
* @instance
* @param {IMyRequest} request MyRequest message or plain object
* @returns {Promise<MyResponse>} Promise
* @variation 2
*/
return MyService;
})();
$root.MyRequest = (function() {
/**
* Properties of a MyRequest.
* @exports IMyRequest
* @interface IMyRequest
* @property {string|null} [path] MyRequest path
*/
/**
* Constructs a new MyRequest.
* @exports MyRequest
* @classdesc Represents a MyRequest.
* @implements IMyRequest
* @constructor
* @param {IMyRequest=} [properties] Properties to set
*/
function MyRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
}
/**
* MyRequest path.
* @member {string} path
* @memberof MyRequest
* @instance
*/
MyRequest.prototype.path = "";
/**
* Creates a new MyRequest instance using the specified properties.
* @function create
* @memberof MyRequest
* @static
* @param {IMyRequest=} [properties] Properties to set
* @returns {MyRequest} MyRequest instance
*/
MyRequest.create = function create(properties) {
return new MyRequest(properties);
};
/**
* Encodes the specified MyRequest message. Does not implicitly {@link MyRequest.verify|verify} messages.
* @function encode
* @memberof MyRequest
* @static
* @param {IMyRequest} message MyRequest message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
MyRequest.encode = function encode(message, writer) {
if (!writer)
writer = $Writer.create();
if (message.path != null && Object.hasOwnProperty.call(message, "path"))
writer.uint32(/* id 1, wireType 2 =*/10).string(message.path);
return writer;
};
/**
* Encodes the specified MyRequest message, length delimited. Does not implicitly {@link MyRequest.verify|verify} messages.
* @function encodeDelimited
* @memberof MyRequest
* @static
* @param {IMyRequest} message MyRequest message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
MyRequest.encodeDelimited = function encodeDelimited(message, writer) {
return this.encode(message, writer).ldelim();
};
/**
* Decodes a MyRequest message from the specified reader or buffer.
* @function decode
* @memberof MyRequest
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @param {number} [length] Message length if known beforehand
* @returns {MyRequest} MyRequest
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
MyRequest.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.MyRequest();
while (reader.pos < end) {
var tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.path = reader.string();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
};
/**
* Decodes a MyRequest message from the specified reader or buffer, length delimited.
* @function decodeDelimited
* @memberof MyRequest
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @returns {MyRequest} MyRequest
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
MyRequest.decodeDelimited = function decodeDelimited(reader) {
if (!(reader instanceof $Reader))
reader = new $Reader(reader);
return this.decode(reader, reader.uint32());
};
/**
* Verifies a MyRequest message.
* @function verify
* @memberof MyRequest
* @static
* @param {Object.<string,*>} message Plain object to verify
* @returns {string|null} `null` if valid, otherwise the reason why it is not
*/
MyRequest.verify = function verify(message) {
if (typeof message !== "object" || message === null)
return "object expected";
if (message.path != null && message.hasOwnProperty("path"))
if (!$util.isString(message.path))
return "path: string expected";
return null;
};
/**
* Creates a MyRequest message from a plain object. Also converts values to their respective internal types.
* @function fromObject
* @memberof MyRequest
* @static
* @param {Object.<string,*>} object Plain object
* @returns {MyRequest} MyRequest
*/
MyRequest.fromObject = function fromObject(object) {
if (object instanceof $root.MyRequest)
return object;
var message = new $root.MyRequest();
if (object.path != null)
message.path = String(object.path);
return message;
};
/**
* Creates a plain object from a MyRequest message. Also converts values to other types if specified.
* @function toObject
* @memberof MyRequest
* @static
* @param {MyRequest} message MyRequest
* @param {$protobuf.IConversionOptions} [options] Conversion options
* @returns {Object.<string,*>} Plain object
*/
MyRequest.toObject = function toObject(message, options) {
if (!options)
options = {};
var object = {};
if (options.defaults)
object.path = "";
if (message.path != null && message.hasOwnProperty("path"))
object.path = message.path;
return object;
};
/**
* Converts this MyRequest to JSON.
* @function toJSON
* @memberof MyRequest
* @instance
* @returns {Object.<string,*>} JSON object
*/
MyRequest.prototype.toJSON = function toJSON() {
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
};
/**
* Gets the default type url for MyRequest
* @function getTypeUrl
* @memberof MyRequest
* @static
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns {string} The default type url
*/
MyRequest.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
if (typeUrlPrefix === undefined) {
typeUrlPrefix = "type.googleapis.com";
}
return typeUrlPrefix + "/MyRequest";
};
return MyRequest;
})();
$root.MyResponse = (function() {
/**
* Properties of a MyResponse.
* @exports IMyResponse
* @interface IMyResponse
* @property {number|null} [status] MyResponse status
*/
/**
* Constructs a new MyResponse.
* @exports MyResponse
* @classdesc Represents a MyResponse.
* @implements IMyResponse
* @constructor
* @param {IMyResponse=} [properties] Properties to set
*/
function MyResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
}
/**
* MyResponse status.
* @member {number} status
* @memberof MyResponse
* @instance
*/
MyResponse.prototype.status = 0;
/**
* Creates a new MyResponse instance using the specified properties.
* @function create
* @memberof MyResponse
* @static
* @param {IMyResponse=} [properties] Properties to set
* @returns {MyResponse} MyResponse instance
*/
MyResponse.create = function create(properties) {
return new MyResponse(properties);
};
/**
* Encodes the specified MyResponse message. Does not implicitly {@link MyResponse.verify|verify} messages.
* @function encode
* @memberof MyResponse
* @static
* @param {IMyResponse} message MyResponse message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
MyResponse.encode = function encode(message, writer) {
if (!writer)
writer = $Writer.create();
if (message.status != null && Object.hasOwnProperty.call(message, "status"))
writer.uint32(/* id 2, wireType 0 =*/16).int32(message.status);
return writer;
};
/**
* Encodes the specified MyResponse message, length delimited. Does not implicitly {@link MyResponse.verify|verify} messages.
* @function encodeDelimited
* @memberof MyResponse
* @static
* @param {IMyResponse} message MyResponse message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
MyResponse.encodeDelimited = function encodeDelimited(message, writer) {
return this.encode(message, writer).ldelim();
};
/**
* Decodes a MyResponse message from the specified reader or buffer.
* @function decode
* @memberof MyResponse
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @param {number} [length] Message length if known beforehand
* @returns {MyResponse} MyResponse
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
MyResponse.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.MyResponse();
while (reader.pos < end) {
var tag = reader.uint32();
switch (tag >>> 3) {
case 2:
message.status = reader.int32();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
};
/**
* Decodes a MyResponse message from the specified reader or buffer, length delimited.
* @function decodeDelimited
* @memberof MyResponse
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @returns {MyResponse} MyResponse
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
MyResponse.decodeDelimited = function decodeDelimited(reader) {
if (!(reader instanceof $Reader))
reader = new $Reader(reader);
return this.decode(reader, reader.uint32());
};
/**
* Verifies a MyResponse message.
* @function verify
* @memberof MyResponse
* @static
* @param {Object.<string,*>} message Plain object to verify
* @returns {string|null} `null` if valid, otherwise the reason why it is not
*/
MyResponse.verify = function verify(message) {
if (typeof message !== "object" || message === null)
return "object expected";
if (message.status != null && message.hasOwnProperty("status"))
if (!$util.isInteger(message.status))
return "status: integer expected";
return null;
};
/**
* Creates a MyResponse message from a plain object. Also converts values to their respective internal types.
* @function fromObject
* @memberof MyResponse
* @static
* @param {Object.<string,*>} object Plain object
* @returns {MyResponse} MyResponse
*/
MyResponse.fromObject = function fromObject(object) {
if (object instanceof $root.MyResponse)
return object;
var message = new $root.MyResponse();
if (object.status != null)
message.status = object.status | 0;
return message;
};
/**
* Creates a plain object from a MyResponse message. Also converts values to other types if specified.
* @function toObject
* @memberof MyResponse
* @static
* @param {MyResponse} message MyResponse
* @param {$protobuf.IConversionOptions} [options] Conversion options
* @returns {Object.<string,*>} Plain object
*/
MyResponse.toObject = function toObject(message, options) {
if (!options)
options = {};
var object = {};
if (options.defaults)
object.status = 0;
if (message.status != null && message.hasOwnProperty("status"))
object.status = message.status;
return object;
};
/**
* Converts this MyResponse to JSON.
* @function toJSON
* @memberof MyResponse
* @instance
* @returns {Object.<string,*>} JSON object
*/
MyResponse.prototype.toJSON = function toJSON() {
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
};
/**
* Gets the default type url for MyResponse
* @function getTypeUrl
* @memberof MyResponse
* @static
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns {string} The default type url
*/
MyResponse.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
if (typeUrlPrefix === undefined) {
typeUrlPrefix = "type.googleapis.com";
}
return typeUrlPrefix + "/MyResponse";
};
return MyResponse;
})();
module.exports = $root;