-
Notifications
You must be signed in to change notification settings - Fork 0
/
grpc-server.js
76 lines (66 loc) · 1.59 KB
/
grpc-server.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
const grpc = require('grpc');
const protoLoader = require('@grpc/proto-loader');
const log = require('./log');
const PROTO_PATH = 'echo.proto';
const packageDefinition = protoLoader.loadSync(
PROTO_PATH,
{keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true
});
const echo = grpc.loadPackageDefinition(packageDefinition).echo;
function simple(call, callback) {
const msg = call.request.msg;
log(`Echo ${msg}`);
callback(null, { msg : msg });
}
function serverStream(call) {
const msg = call.request.msg;
const repeats = call.request.repeats;
for (let i = 0; i < repeats; i++) {
log(`Sending: ${msg}`);
call.write({msg:msg})
}
call.end();
}
function clientStream(call, callback) {
let repeats = 0;
let text = '';
call.on('data', function(msg) {
repeats += 1;
text = msg.msg;
log(`Received on stream: ${text}`);
});
call.on('end', function() {
callback(null, {
msg: text,
repeats,
});
});
}
function biStream(call) {
call.on('data', function(msg) {
log(`Received on stream: ${msg.msg}`);
log(`Sending on stream: ${msg.msg}`);
call.write(msg);
});
call.on('end', function() {
call.end();
});
}
function getServer() {
var server = new grpc.Server();
server.addProtoService(echo.Echo.service, {
simple,
serverStream,
clientStream,
biStream,
});
return server;
}
// If this is run as a script, start a server on an unused port
const routeServer = getServer();
routeServer.bind('0.0.0.0:50051', grpc.ServerCredentials.createInsecure());
routeServer.start();