-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGrpcModule.java
More file actions
417 lines (319 loc) · 11.4 KB
/
Copy pathGrpcModule.java
File metadata and controls
417 lines (319 loc) · 11.4 KB
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
package com.reactnativegrpc;
import android.util.Base64;
import android.util.Log;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.annotation.UiThread;
import com.facebook.react.bridge.Arguments;
import com.facebook.react.bridge.Promise;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactContextBaseJavaModule;
import com.facebook.react.bridge.ReactMethod;
import com.facebook.react.bridge.ReadableMap;
import com.facebook.react.bridge.WritableMap;
import com.facebook.react.modules.core.DeviceEventManagerModule;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import io.grpc.CallOptions;
import io.grpc.ClientCall;
import io.grpc.ConnectivityState;
import io.grpc.ManagedChannel;
import io.grpc.ManagedChannelBuilder;
import io.grpc.Metadata;
import io.grpc.MethodDescriptor;
import io.grpc.Status;
public class GrpcModule extends ReactContextBaseJavaModule {
private final ReactApplicationContext context;
private final HashMap<Integer, ClientCall> callsMap = new HashMap<>();
private String host;
private boolean isInsecure = false;
private boolean withCompression = false;
private String compressorName = "";
private Integer responseSizeLimit = null;
private boolean keepAliveEnabled = false;
private Integer keepAliveTime;
private Integer keepAliveTimeout;
private boolean isUiLogEnabled = false;
private ManagedChannel managedChannel = null;
public GrpcModule(ReactApplicationContext context) {
this.context = context;
}
@NonNull
@Override
public String getName() {
return "Grpc";
}
@ReactMethod()
public void getHost(final Promise promise) {
promise.resolve(this.host);
}
@ReactMethod()
public void getIsInsecure(final Promise promise) {
promise.resolve(this.isInsecure);
}
@ReactMethod
public void setHost(String host) {
this.host = host;
}
@ReactMethod
public void setInsecure(boolean insecure) {
this.isInsecure = insecure;
}
@ReactMethod
public void setCompression(Boolean enable, String compressorName) {
this.withCompression = enable;
this.compressorName = compressorName;
}
@ReactMethod
public void setResponseSizeLimit(int limit) {
this.responseSizeLimit = limit;
}
@ReactMethod
public void setKeepAlive(boolean enabled, int time, int timeout) {
this.keepAliveEnabled = enabled;
this.keepAliveTime = time;
this.keepAliveTimeout = timeout;
}
@ReactMethod
public void unaryCall(int id, String path, ReadableMap obj, ReadableMap headers, final Promise promise) {
ClientCall call;
try {
call = this.startGrpcCall(id, path, MethodDescriptor.MethodType.UNARY, headers);
} catch (Exception e) {
promise.reject(e);
return;
}
byte[] data = Base64.decode(obj.getString("data"), Base64.NO_WRAP);
call.sendMessage(data);
call.request(1);
call.halfClose();
callsMap.put(id, call);
promise.resolve(null);
}
@ReactMethod
public void serverStreamingCall(int id, String path, ReadableMap obj, ReadableMap headers, final Promise promise) {
ClientCall call;
try {
call = this.startGrpcCall(id, path, MethodDescriptor.MethodType.SERVER_STREAMING, headers);
} catch (Exception e) {
promise.reject(e);
return;
}
byte[] data = Base64.decode(obj.getString("data"), Base64.NO_WRAP);
call.sendMessage(data);
call.request(1);
call.halfClose();
callsMap.put(id, call);
promise.resolve(null);
}
@ReactMethod
public void clientStreamingCall(int id, String path, ReadableMap obj, ReadableMap headers, final Promise promise) {
ClientCall call = callsMap.get(id);
if (call == null) {
try {
call = this.startGrpcCall(id, path, MethodDescriptor.MethodType.CLIENT_STREAMING, headers);
} catch (Exception e) {
promise.reject(e);
return;
}
callsMap.put(id, call);
}
byte[] data = Base64.decode(obj.getString("data"), Base64.NO_WRAP);
call.sendMessage(data);
call.request(1);
promise.resolve(null);
}
@ReactMethod
public void finishClientStreaming(int id, final Promise promise) {
if (callsMap.containsKey(id)) {
ClientCall call = callsMap.get(id);
call.halfClose();
promise.resolve(true);
} else {
promise.resolve(false);
}
}
@ReactMethod
public void cancelGrpcCall(int id, final Promise promise) {
if (callsMap.containsKey(id)) {
ClientCall call = callsMap.get(id);
call.cancel("Cancelled", new Exception("Cancelled by app"));
promise.resolve(true);
} else {
promise.resolve(false);
}
}
private ClientCall startGrpcCall(int id, String path, MethodDescriptor.MethodType methodType, ReadableMap headers) throws Exception {
if (this.managedChannel == null) {
throw new Exception("Channel not created");
}
path = normalizePath(path);
final Metadata headersMetadata = new Metadata();
for (Map.Entry<String, Object> headerEntry : headers.toHashMap().entrySet()) {
headersMetadata.put(Metadata.Key.of(headerEntry.getKey(), Metadata.ASCII_STRING_MARSHALLER), headerEntry.getValue().toString());
}
MethodDescriptor.Marshaller<byte[]> marshaller = new GrpcMarshaller();
MethodDescriptor descriptor = MethodDescriptor.<byte[], byte[]>newBuilder()
.setFullMethodName(path)
.setType(methodType)
.setRequestMarshaller(marshaller)
.setResponseMarshaller(marshaller)
.build();
CallOptions callOptions = CallOptions.DEFAULT;
if (!this.compressorName.isEmpty()) {
callOptions = callOptions.withCompression(this.compressorName);
}
ClientCall call = this.managedChannel.newCall(descriptor, callOptions);
call.start(new ClientCall.Listener() {
@Override
public void onHeaders(Metadata headers) {
super.onHeaders(headers);
WritableMap event = Arguments.createMap();
WritableMap payload = Arguments.createMap();
for (String key : headers.keys()) {
if (key.endsWith(Metadata.BINARY_HEADER_SUFFIX)) {
byte[] data = headers.get(Metadata.Key.of(key, Metadata.BINARY_BYTE_MARSHALLER));
payload.putString(key, new String(Base64.encode(data, Base64.NO_WRAP)));
} else if (!key.startsWith(":")) {
String data = headers.get(Metadata.Key.of(key, Metadata.ASCII_STRING_MARSHALLER));
payload.putString(key, data);
}
}
event.putInt("id", id);
event.putString("type", "headers");
event.putMap("payload", payload);
emitEvent("grpc-call", event);
}
@Override
public void onMessage(Object messageObj) {
super.onMessage(messageObj);
byte[] data = (byte[]) messageObj;
WritableMap event = Arguments.createMap();
event.putInt("id", id);
event.putString("type", "response");
event.putString("payload", Base64.encodeToString(data, Base64.NO_WRAP));
emitEvent("grpc-call", event);
if (methodType == MethodDescriptor.MethodType.SERVER_STREAMING) {
call.request(1);
}
}
@Override
public void onClose(Status status, Metadata trailers) {
super.onClose(status, trailers);
callsMap.remove(id);
WritableMap event = Arguments.createMap();
event.putInt("id", id);
WritableMap trailersMap = Arguments.createMap();
for (String key : trailers.keys()) {
if (key.endsWith(Metadata.BINARY_HEADER_SUFFIX)) {
byte[] data = trailers.get(Metadata.Key.of(key, Metadata.BINARY_BYTE_MARSHALLER));
trailersMap.putString(key, new String(Base64.encode(data, Base64.NO_WRAP)));
} else if (!key.startsWith(":")) {
String data = trailers.get(Metadata.Key.of(key, Metadata.ASCII_STRING_MARSHALLER));
trailersMap.putString(key, data);
}
}
if (!status.isOk()) {
event.putString("type", "error");
event.putString("error", status.asException(trailers).getLocalizedMessage());
event.putInt("code", status.getCode().value());
event.putMap("trailers", trailersMap);
} else {
event.putString("type", "trailers");
event.putMap("payload", trailersMap);
}
emitEvent("grpc-call", event);
}
}, headersMetadata);
if (this.withCompression) {
call.setMessageCompression(true);
}
return call;
}
@ReactMethod
public void addListener(String eventName) {
}
@ReactMethod
public void removeListeners(Integer count) {
}
private void emitEvent(String eventName, Object params) {
context
.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class)
.emit(eventName, params);
}
private static String normalizePath(String path) {
if (path.startsWith("/")) {
path = path.substring(1);
}
return path;
}
@ReactMethod
public void initGrpcChannel() {
if (this.managedChannel != null) {
this.managedChannel.shutdown();
}
this.managedChannel = createManagedChannel();
}
private ManagedChannel createManagedChannel() {
ManagedChannelBuilder channelBuilder = ManagedChannelBuilder.forTarget(this.host);
if (this.responseSizeLimit != null) {
channelBuilder = channelBuilder.maxInboundMessageSize(this.responseSizeLimit);
}
if (this.isInsecure) {
channelBuilder = channelBuilder.usePlaintext();
}
if (this.keepAliveEnabled) {
channelBuilder = channelBuilder
.keepAliveWithoutCalls(true)
.keepAliveTime(keepAliveTime, TimeUnit.SECONDS)
.keepAliveTimeout(keepAliveTimeout, TimeUnit.SECONDS);
}
managedChannel = channelBuilder.build();
return managedChannel;
}
@ReactMethod
public void resetConnection(final String message){
if(null == managedChannel) return;
this.managedChannel.resetConnectBackoff();
this.initGrpcChannel();
showToast("resetConnection "+message);
}
@ReactMethod
public void onConnectionStateChange(){
if(null == managedChannel) return;
final ConnectivityState connectivityState = managedChannel.getState(true);
if(ConnectivityState.CONNECTING == connectivityState){
showToast("onConnectionState CONNECTING");
} else if(ConnectivityState.IDLE == connectivityState){
showToast("onConnectionState IDLE");
} else if(ConnectivityState.READY == connectivityState){
showToast("onConnectionState READY");
} else if(ConnectivityState.TRANSIENT_FAILURE == connectivityState){
showToast("onConnectionState TRANSIENT_FAILURE");
} else if(ConnectivityState.SHUTDOWN == connectivityState){
showToast("onConnectionState SHUTDOWN");
} else {
showToast("onConnectionState UNDEFINED");
}
if(ConnectivityState.TRANSIENT_FAILURE == connectivityState && managedChannel.isTerminated() || managedChannel.isShutdown()){
resetConnection("onConnectionStateChange");
}
}
@ReactMethod
public void enterIdle(){
if(null == managedChannel) return;
managedChannel.enterIdle();
showToast("enterIdle");
}
@ReactMethod
public void setUiLogEnabled(boolean isUiLogEnabled){
this.isUiLogEnabled = isUiLogEnabled;
}
@UiThread
private void showToast(final String message){
if(!isUiLogEnabled || null == context) return;
Toast.makeText(context,message,Toast.LENGTH_SHORT).show();
Log.d("GRPC_MODULE",message);
}
}