forked from yanjinbing/client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPumpGrpc.java
More file actions
386 lines (343 loc) · 14.2 KB
/
Copy pathPumpGrpc.java
File metadata and controls
386 lines (343 loc) · 14.2 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
package binlog;
import static io.grpc.MethodDescriptor.generateFullMethodName;
import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall;
import static io.grpc.stub.ClientCalls.asyncClientStreamingCall;
import static io.grpc.stub.ClientCalls.asyncServerStreamingCall;
import static io.grpc.stub.ClientCalls.asyncUnaryCall;
import static io.grpc.stub.ClientCalls.blockingServerStreamingCall;
import static io.grpc.stub.ClientCalls.blockingUnaryCall;
import static io.grpc.stub.ClientCalls.futureUnaryCall;
import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall;
import static io.grpc.stub.ServerCalls.asyncClientStreamingCall;
import static io.grpc.stub.ServerCalls.asyncServerStreamingCall;
import static io.grpc.stub.ServerCalls.asyncUnaryCall;
import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall;
import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;
/**
* <pre>
* Interfaces exported by Pump.
* </pre>
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler (version 1.24.0)",
comments = "Source: binlog/pump.proto")
public final class PumpGrpc {
private PumpGrpc() {}
public static final String SERVICE_NAME = "binlog.Pump";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor<binlog.PumpOuterClass.WriteBinlogReq,
binlog.PumpOuterClass.WriteBinlogResp> getWriteBinlogMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "WriteBinlog",
requestType = binlog.PumpOuterClass.WriteBinlogReq.class,
responseType = binlog.PumpOuterClass.WriteBinlogResp.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor<binlog.PumpOuterClass.WriteBinlogReq,
binlog.PumpOuterClass.WriteBinlogResp> getWriteBinlogMethod() {
io.grpc.MethodDescriptor<binlog.PumpOuterClass.WriteBinlogReq, binlog.PumpOuterClass.WriteBinlogResp> getWriteBinlogMethod;
if ((getWriteBinlogMethod = PumpGrpc.getWriteBinlogMethod) == null) {
synchronized (PumpGrpc.class) {
if ((getWriteBinlogMethod = PumpGrpc.getWriteBinlogMethod) == null) {
PumpGrpc.getWriteBinlogMethod = getWriteBinlogMethod =
io.grpc.MethodDescriptor.<binlog.PumpOuterClass.WriteBinlogReq, binlog.PumpOuterClass.WriteBinlogResp>newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.UNARY)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "WriteBinlog"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
binlog.PumpOuterClass.WriteBinlogReq.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
binlog.PumpOuterClass.WriteBinlogResp.getDefaultInstance()))
.setSchemaDescriptor(new PumpMethodDescriptorSupplier("WriteBinlog"))
.build();
}
}
}
return getWriteBinlogMethod;
}
private static volatile io.grpc.MethodDescriptor<binlog.PumpOuterClass.PullBinlogReq,
binlog.PumpOuterClass.PullBinlogResp> getPullBinlogsMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "PullBinlogs",
requestType = binlog.PumpOuterClass.PullBinlogReq.class,
responseType = binlog.PumpOuterClass.PullBinlogResp.class,
methodType = io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING)
public static io.grpc.MethodDescriptor<binlog.PumpOuterClass.PullBinlogReq,
binlog.PumpOuterClass.PullBinlogResp> getPullBinlogsMethod() {
io.grpc.MethodDescriptor<binlog.PumpOuterClass.PullBinlogReq, binlog.PumpOuterClass.PullBinlogResp> getPullBinlogsMethod;
if ((getPullBinlogsMethod = PumpGrpc.getPullBinlogsMethod) == null) {
synchronized (PumpGrpc.class) {
if ((getPullBinlogsMethod = PumpGrpc.getPullBinlogsMethod) == null) {
PumpGrpc.getPullBinlogsMethod = getPullBinlogsMethod =
io.grpc.MethodDescriptor.<binlog.PumpOuterClass.PullBinlogReq, binlog.PumpOuterClass.PullBinlogResp>newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "PullBinlogs"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
binlog.PumpOuterClass.PullBinlogReq.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
binlog.PumpOuterClass.PullBinlogResp.getDefaultInstance()))
.setSchemaDescriptor(new PumpMethodDescriptorSupplier("PullBinlogs"))
.build();
}
}
}
return getPullBinlogsMethod;
}
/**
* Creates a new async stub that supports all call types for the service
*/
public static PumpStub newStub(io.grpc.Channel channel) {
return new PumpStub(channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static PumpBlockingStub newBlockingStub(
io.grpc.Channel channel) {
return new PumpBlockingStub(channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static PumpFutureStub newFutureStub(
io.grpc.Channel channel) {
return new PumpFutureStub(channel);
}
/**
* <pre>
* Interfaces exported by Pump.
* </pre>
*/
public static abstract class PumpImplBase implements io.grpc.BindableService {
/**
* <pre>
* Writes a binlog to the local file on the pump machine.
* A response with an empty errmsg is returned if the binlog is written successfully.
* </pre>
*/
public void writeBinlog(binlog.PumpOuterClass.WriteBinlogReq request,
io.grpc.stub.StreamObserver<binlog.PumpOuterClass.WriteBinlogResp> responseObserver) {
asyncUnimplementedUnaryCall(getWriteBinlogMethod(), responseObserver);
}
/**
* <pre>
* Sends binlog stream from a given location.
* </pre>
*/
public void pullBinlogs(binlog.PumpOuterClass.PullBinlogReq request,
io.grpc.stub.StreamObserver<binlog.PumpOuterClass.PullBinlogResp> responseObserver) {
asyncUnimplementedUnaryCall(getPullBinlogsMethod(), responseObserver);
}
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getWriteBinlogMethod(),
asyncUnaryCall(
new MethodHandlers<
binlog.PumpOuterClass.WriteBinlogReq,
binlog.PumpOuterClass.WriteBinlogResp>(
this, METHODID_WRITE_BINLOG)))
.addMethod(
getPullBinlogsMethod(),
asyncServerStreamingCall(
new MethodHandlers<
binlog.PumpOuterClass.PullBinlogReq,
binlog.PumpOuterClass.PullBinlogResp>(
this, METHODID_PULL_BINLOGS)))
.build();
}
}
/**
* <pre>
* Interfaces exported by Pump.
* </pre>
*/
public static final class PumpStub extends io.grpc.stub.AbstractStub<PumpStub> {
private PumpStub(io.grpc.Channel channel) {
super(channel);
}
private PumpStub(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected PumpStub build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
return new PumpStub(channel, callOptions);
}
/**
* <pre>
* Writes a binlog to the local file on the pump machine.
* A response with an empty errmsg is returned if the binlog is written successfully.
* </pre>
*/
public void writeBinlog(binlog.PumpOuterClass.WriteBinlogReq request,
io.grpc.stub.StreamObserver<binlog.PumpOuterClass.WriteBinlogResp> responseObserver) {
asyncUnaryCall(
getChannel().newCall(getWriteBinlogMethod(), getCallOptions()), request, responseObserver);
}
/**
* <pre>
* Sends binlog stream from a given location.
* </pre>
*/
public void pullBinlogs(binlog.PumpOuterClass.PullBinlogReq request,
io.grpc.stub.StreamObserver<binlog.PumpOuterClass.PullBinlogResp> responseObserver) {
asyncServerStreamingCall(
getChannel().newCall(getPullBinlogsMethod(), getCallOptions()), request, responseObserver);
}
}
/**
* <pre>
* Interfaces exported by Pump.
* </pre>
*/
public static final class PumpBlockingStub extends io.grpc.stub.AbstractStub<PumpBlockingStub> {
private PumpBlockingStub(io.grpc.Channel channel) {
super(channel);
}
private PumpBlockingStub(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected PumpBlockingStub build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
return new PumpBlockingStub(channel, callOptions);
}
/**
* <pre>
* Writes a binlog to the local file on the pump machine.
* A response with an empty errmsg is returned if the binlog is written successfully.
* </pre>
*/
public binlog.PumpOuterClass.WriteBinlogResp writeBinlog(binlog.PumpOuterClass.WriteBinlogReq request) {
return blockingUnaryCall(
getChannel(), getWriteBinlogMethod(), getCallOptions(), request);
}
/**
* <pre>
* Sends binlog stream from a given location.
* </pre>
*/
public java.util.Iterator<binlog.PumpOuterClass.PullBinlogResp> pullBinlogs(
binlog.PumpOuterClass.PullBinlogReq request) {
return blockingServerStreamingCall(
getChannel(), getPullBinlogsMethod(), getCallOptions(), request);
}
}
/**
* <pre>
* Interfaces exported by Pump.
* </pre>
*/
public static final class PumpFutureStub extends io.grpc.stub.AbstractStub<PumpFutureStub> {
private PumpFutureStub(io.grpc.Channel channel) {
super(channel);
}
private PumpFutureStub(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected PumpFutureStub build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
return new PumpFutureStub(channel, callOptions);
}
/**
* <pre>
* Writes a binlog to the local file on the pump machine.
* A response with an empty errmsg is returned if the binlog is written successfully.
* </pre>
*/
public com.google.common.util.concurrent.ListenableFuture<binlog.PumpOuterClass.WriteBinlogResp> writeBinlog(
binlog.PumpOuterClass.WriteBinlogReq request) {
return futureUnaryCall(
getChannel().newCall(getWriteBinlogMethod(), getCallOptions()), request);
}
}
private static final int METHODID_WRITE_BINLOG = 0;
private static final int METHODID_PULL_BINLOGS = 1;
private static final class MethodHandlers<Req, Resp> implements
io.grpc.stub.ServerCalls.UnaryMethod<Req, Resp>,
io.grpc.stub.ServerCalls.ServerStreamingMethod<Req, Resp>,
io.grpc.stub.ServerCalls.ClientStreamingMethod<Req, Resp>,
io.grpc.stub.ServerCalls.BidiStreamingMethod<Req, Resp> {
private final PumpImplBase serviceImpl;
private final int methodId;
MethodHandlers(PumpImplBase serviceImpl, int methodId) {
this.serviceImpl = serviceImpl;
this.methodId = methodId;
}
@java.lang.Override
@java.lang.SuppressWarnings("unchecked")
public void invoke(Req request, io.grpc.stub.StreamObserver<Resp> responseObserver) {
switch (methodId) {
case METHODID_WRITE_BINLOG:
serviceImpl.writeBinlog((binlog.PumpOuterClass.WriteBinlogReq) request,
(io.grpc.stub.StreamObserver<binlog.PumpOuterClass.WriteBinlogResp>) responseObserver);
break;
case METHODID_PULL_BINLOGS:
serviceImpl.pullBinlogs((binlog.PumpOuterClass.PullBinlogReq) request,
(io.grpc.stub.StreamObserver<binlog.PumpOuterClass.PullBinlogResp>) responseObserver);
break;
default:
throw new AssertionError();
}
}
@java.lang.Override
@java.lang.SuppressWarnings("unchecked")
public io.grpc.stub.StreamObserver<Req> invoke(
io.grpc.stub.StreamObserver<Resp> responseObserver) {
switch (methodId) {
default:
throw new AssertionError();
}
}
}
private static abstract class PumpBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier {
PumpBaseDescriptorSupplier() {}
@java.lang.Override
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() {
return binlog.PumpOuterClass.getDescriptor();
}
@java.lang.Override
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() {
return getFileDescriptor().findServiceByName("Pump");
}
}
private static final class PumpFileDescriptorSupplier
extends PumpBaseDescriptorSupplier {
PumpFileDescriptorSupplier() {}
}
private static final class PumpMethodDescriptorSupplier
extends PumpBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier {
private final String methodName;
PumpMethodDescriptorSupplier(String methodName) {
this.methodName = methodName;
}
@java.lang.Override
public com.google.protobuf.Descriptors.MethodDescriptor getMethodDescriptor() {
return getServiceDescriptor().findMethodByName(methodName);
}
}
private static volatile io.grpc.ServiceDescriptor serviceDescriptor;
public static io.grpc.ServiceDescriptor getServiceDescriptor() {
io.grpc.ServiceDescriptor result = serviceDescriptor;
if (result == null) {
synchronized (PumpGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.setSchemaDescriptor(new PumpFileDescriptorSupplier())
.addMethod(getWriteBinlogMethod())
.addMethod(getPullBinlogsMethod())
.build();
}
}
}
return result;
}
}