This repository was archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathGrpcDirectStreamController.java
158 lines (139 loc) · 5.16 KB
/
GrpcDirectStreamController.java
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
/*
* Copyright 2017 Google LLC
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google LLC nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.google.api.gax.grpc;
import com.google.api.gax.rpc.ResponseObserver;
import com.google.api.gax.rpc.StreamController;
import com.google.common.base.Preconditions;
import io.grpc.ClientCall;
import io.grpc.Metadata;
import io.grpc.Status;
import java.util.concurrent.CancellationException;
/**
* Wraps a GRPC ClientCall in a {@link StreamController}. It feeds events to a {@link
* ResponseObserver} and allows for back pressure.
*
* <p>Package-private for internal use.
*/
class GrpcDirectStreamController<RequestT, ResponseT> implements StreamController {
private static final Runnable NOOP_RUNNABLE =
new Runnable() {
@Override
public void run() {}
};
private final ClientCall<RequestT, ResponseT> clientCall;
private final ResponseObserver<ResponseT> responseObserver;
private final Runnable onReady;
private boolean hasStarted;
private boolean autoflowControl = true;
private int numRequested;
private volatile CancellationException cancellationException;
GrpcDirectStreamController(
ClientCall<RequestT, ResponseT> clientCall, ResponseObserver<ResponseT> responseObserver) {
this(clientCall, responseObserver, NOOP_RUNNABLE);
}
GrpcDirectStreamController(
ClientCall<RequestT, ResponseT> clientCall,
ResponseObserver<ResponseT> responseObserver,
Runnable onReady) {
this.clientCall = clientCall;
this.responseObserver = responseObserver;
this.onReady = onReady;
}
@Override
public void cancel() {
cancellationException = new CancellationException("User cancelled stream");
clientCall.cancel(null, cancellationException);
}
@Override
public void disableAutoInboundFlowControl() {
Preconditions.checkState(
!hasStarted, "Can't disable automatic flow control after the stream has started.");
autoflowControl = false;
}
@Override
public void request(int count) {
Preconditions.checkState(!autoflowControl, "Autoflow control is enabled.");
// Buffer the requested count in case the consumer requested responses in the onStart()
if (!hasStarted) {
numRequested += count;
} else {
clientCall.request(count);
}
}
void start(RequestT request) {
startCommon();
clientCall.sendMessage(request);
clientCall.halfClose();
}
void startBidi() {
startCommon();
}
private void startCommon() {
responseObserver.onStart(this);
this.hasStarted = true;
clientCall.start(new ResponseObserverAdapter(), new Metadata());
if (autoflowControl) {
clientCall.request(1);
} else if (numRequested > 0) {
clientCall.request(numRequested);
}
}
private class ResponseObserverAdapter extends ClientCall.Listener<ResponseT> {
/**
* Notifies the outerObserver of the new message and if automatic flow control is enabled,
* requests the next message. Any errors raised by the outerObserver will be bubbled up to GRPC,
* which cancel the ClientCall and close this listener.
*
* @param message The new message.
*/
@Override
public void onMessage(ResponseT message) {
responseObserver.onResponse(message);
if (autoflowControl) {
clientCall.request(1);
}
}
@Override
public void onClose(Status status, Metadata trailers) {
if (status.isOk()) {
responseObserver.onComplete();
} else if (cancellationException != null) {
// Intercept cancellations and replace with the top level cause
responseObserver.onError(cancellationException);
} else {
responseObserver.onError(status.asRuntimeException(trailers));
}
}
@Override
public void onReady() {
onReady.run();
}
}
}