forked from grpc/grpc-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.ts
170 lines (149 loc) · 5.04 KB
/
client.ts
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
/**
*
* Copyright 2018 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
import * as grpcWeb from 'grpc-web';
import * as $ from 'jquery';
// Uncomment either one of the following:
// Option 1: import_style=commonjs+dts
import {EchoServiceClient} from './echo_grpc_web_pb';
// Option 2: import_style=typescript
// import {EchoServiceClient} from './EchoServiceClientPb';
import {EchoRequest, EchoResponse, ServerStreamingEchoRequest, ServerStreamingEchoResponse} from './echo_pb';
class EchoApp {
static readonly INTERVAL = 500; // ms
static readonly MAX_STREAM_MESSAGES = 50;
stream?: grpcWeb.ClientReadableStream<ServerStreamingEchoResponse>;
constructor(public echoService: EchoServiceClient) {}
static addMessage(message: string, cssClass: string) {
$('#first').after($('<div/>').addClass('row').append($('<h2/>').append(
$('<span/>').addClass('label ' + cssClass).text(message))));
}
static addLeftMessage(message: string) {
this.addMessage(message, 'label-primary pull-left');
}
static addRightMessage(message: string) {
this.addMessage(message, 'label-default pull-right');
}
echo(msg: string) {
EchoApp.addLeftMessage(msg);
const request = new EchoRequest();
request.setMessage(msg);
const call = this.echoService.echo(
request, {'custom-header-1': 'value1'},
(err: grpcWeb.RpcError, response: EchoResponse) => {
if (err) {
if (err.code !== grpcWeb.StatusCode.OK) {
EchoApp.addRightMessage(
'Error code: ' + err.code + ' "' + err.message + '"');
}
} else {
setTimeout(() => {
EchoApp.addRightMessage(response.getMessage());
}, EchoApp.INTERVAL);
}
});
call.on('status', (status: grpcWeb.Status) => {
if (status.metadata) {
console.log('Received metadata');
console.log(status.metadata);
}
});
}
echoError(msg: string) {
EchoApp.addLeftMessage(`Error: ${msg}`);
const request = new EchoRequest();
request.setMessage(msg);
this.echoService.echoAbort(
request, {}, (err: grpcWeb.RpcError, response: EchoResponse) => {
if (err && err.code !== grpcWeb.StatusCode.OK) {
EchoApp.addRightMessage(
'Error code: ' + err.code + ' "' + decodeURI(err.message) +
'"');
}
});
}
cancel() {
EchoApp.addLeftMessage('Cancel');
if (this.stream) {
this.stream.cancel();
}
}
repeatEcho(msg: string, count: number) {
EchoApp.addLeftMessage(msg);
if (count > EchoApp.MAX_STREAM_MESSAGES) {
count = EchoApp.MAX_STREAM_MESSAGES;
}
const request = new ServerStreamingEchoRequest();
request.setMessage(msg);
request.setMessageCount(count);
request.setMessageInterval(EchoApp.INTERVAL);
this.stream = this.echoService.serverStreamingEcho(
request, {'custom-header-1': 'value1'});
const self = this;
this.stream.on('data', (response: ServerStreamingEchoResponse) => {
EchoApp.addRightMessage(response.getMessage());
});
this.stream.on('status', (status: grpcWeb.Status) => {
if (status.metadata) {
console.log('Received metadata');
console.log(status.metadata);
}
});
this.stream.on('error', (err: grpcWeb.RpcError) => {
EchoApp.addRightMessage(
'Error code: ' + err.code + ' "' + err.message + '"');
});
this.stream.on('end', () => {
console.log('stream end signal received');
});
}
send(e: {}) {
const _msg: string = $('#msg').val() as string;
const msg = _msg.trim();
$('#msg').val(''); // clear the text box
if (!msg) return false;
if (msg.indexOf(' ') > 0) {
const count = msg.substr(0, msg.indexOf(' '));
if (/^\d+$/.test(count)) {
this.repeatEcho(msg.substr(msg.indexOf(' ') + 1), Number(count));
} else if (count === 'err') {
this.echoError(msg.substr(msg.indexOf(' ') + 1));
} else {
this.echo(msg);
}
} else if (msg === 'cancel') {
this.cancel();
} else {
this.echo(msg);
}
}
load() {
const self = this;
$(document).ready(() => {
// event handlers
$('#send').click(self.send.bind(self));
$('#msg').keyup((e) => {
if (e.keyCode === 13) self.send(e); // enter key
return false;
});
$('#msg').focus();
});
}
}
const echoService = new EchoServiceClient('http://localhost:8080', null, null);
const echoApp = new EchoApp(echoService);
echoApp.load();