forked from googleapis/java-spanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSessionPoolAsyncTransactionManager.java
More file actions
287 lines (263 loc) · 9.78 KB
/
Copy pathSessionPoolAsyncTransactionManager.java
File metadata and controls
287 lines (263 loc) · 9.78 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
/*
* Copyright 2020 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
*
* http://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.
*/
package com.google.cloud.spanner;
import com.google.api.core.ApiFuture;
import com.google.api.core.ApiFutureCallback;
import com.google.api.core.ApiFutures;
import com.google.api.core.SettableApiFuture;
import com.google.cloud.Timestamp;
import com.google.cloud.spanner.Options.TransactionOption;
import com.google.cloud.spanner.SessionPool.SessionFuture;
import com.google.cloud.spanner.SessionPool.SessionNotFoundHandler;
import com.google.cloud.spanner.SessionPool.SessionReplacementHandler;
import com.google.cloud.spanner.TransactionContextFutureImpl.CommittableAsyncTransactionManager;
import com.google.cloud.spanner.TransactionManager.TransactionState;
import com.google.common.base.Preconditions;
import com.google.common.util.concurrent.MoreExecutors;
import javax.annotation.concurrent.GuardedBy;
class SessionPoolAsyncTransactionManager<I extends SessionFuture>
implements CommittableAsyncTransactionManager, SessionNotFoundHandler {
private final Object lock = new Object();
@GuardedBy("lock")
private TransactionState txnState;
@GuardedBy("lock")
private AbortedException abortedException;
private final SessionReplacementHandler<I> sessionReplacementHandler;
private final TransactionOption[] options;
private volatile I session;
private volatile SettableApiFuture<AsyncTransactionManagerImpl> delegate;
private boolean restartedAfterSessionNotFound;
SessionPoolAsyncTransactionManager(
SessionReplacementHandler<I> sessionReplacementHandler,
I session,
TransactionOption... options) {
this.options = options;
this.sessionReplacementHandler = sessionReplacementHandler;
createTransaction(session);
}
private void createTransaction(I session) {
this.session = session;
this.delegate = SettableApiFuture.create();
this.session.addListener(
() -> {
try {
delegate.set(
SessionPoolAsyncTransactionManager.this
.session
.get()
.transactionManagerAsync(options));
} catch (Throwable t) {
delegate.setException(t);
}
},
MoreExecutors.directExecutor());
}
@Override
public SpannerException handleSessionNotFound(SessionNotFoundException notFound) {
// Restart the entire transaction with a new session and throw an AbortedException to force the
// client application to retry.
createTransaction(sessionReplacementHandler.replaceSession(notFound, session));
restartedAfterSessionNotFound = true;
return SpannerExceptionFactory.newSpannerException(
ErrorCode.ABORTED, notFound.getMessage(), notFound);
}
@Override
public void close() {
SpannerApiFutures.get(closeAsync());
}
@Override
public ApiFuture<Void> closeAsync() {
final SettableApiFuture<Void> res = SettableApiFuture.create();
ApiFutures.addCallback(
delegate,
new ApiFutureCallback<AsyncTransactionManagerImpl>() {
@Override
public void onFailure(Throwable t) {
session.close();
}
@Override
public void onSuccess(AsyncTransactionManagerImpl result) {
ApiFutures.addCallback(
result.closeAsync(),
new ApiFutureCallback<Void>() {
@Override
public void onFailure(Throwable t) {
session.close();
res.setException(t);
}
@Override
public void onSuccess(Void result) {
session.close();
res.set(result);
}
},
MoreExecutors.directExecutor());
}
},
MoreExecutors.directExecutor());
return res;
}
@Override
public TransactionContextFuture beginAsync() {
synchronized (lock) {
Preconditions.checkState(txnState == null, "begin can only be called once");
txnState = TransactionState.STARTED;
}
final SettableApiFuture<TransactionContext> delegateTxnFuture = SettableApiFuture.create();
ApiFutures.addCallback(
delegate,
new ApiFutureCallback<AsyncTransactionManagerImpl>() {
@Override
public void onFailure(Throwable t) {
delegateTxnFuture.setException(t);
}
@Override
public void onSuccess(AsyncTransactionManagerImpl result) {
ApiFutures.addCallback(
result.beginAsync(),
new ApiFutureCallback<TransactionContext>() {
@Override
public void onFailure(Throwable t) {
delegateTxnFuture.setException(t);
}
@Override
public void onSuccess(TransactionContext result) {
delegateTxnFuture.set(
new SessionPool.SessionPoolTransactionContext(
SessionPoolAsyncTransactionManager.this, result));
}
},
MoreExecutors.directExecutor());
}
},
MoreExecutors.directExecutor());
return new TransactionContextFutureImpl(this, delegateTxnFuture);
}
@Override
public TransactionContextFuture beginAsync(AbortedException exception) {
// For regular sessions, the input exception is ignored and the behavior is equivalent to
// calling {@link #beginAsync()}.
return beginAsync();
}
@Override
public void onError(Throwable t) {
if (t instanceof AbortedException) {
synchronized (lock) {
txnState = TransactionState.ABORTED;
abortedException = (AbortedException) t;
}
}
}
@Override
public ApiFuture<Timestamp> commitAsync() {
synchronized (lock) {
Preconditions.checkState(
txnState == TransactionState.STARTED || txnState == TransactionState.ABORTED,
"commit can only be invoked if the transaction is in progress. Current state: "
+ txnState);
if (txnState == TransactionState.ABORTED) {
return ApiFutures.immediateFailedFuture(abortedException);
}
txnState = TransactionState.COMMITTED;
}
return ApiFutures.transformAsync(
delegate,
input -> {
final SettableApiFuture<Timestamp> res = SettableApiFuture.create();
ApiFutures.addCallback(
input.commitAsync(),
new ApiFutureCallback<Timestamp>() {
@Override
public void onFailure(Throwable t) {
synchronized (lock) {
if (t instanceof AbortedException) {
txnState = TransactionState.ABORTED;
abortedException = (AbortedException) t;
} else {
txnState = TransactionState.COMMIT_FAILED;
}
}
res.setException(t);
}
@Override
public void onSuccess(Timestamp result) {
res.set(result);
}
},
MoreExecutors.directExecutor());
return res;
},
MoreExecutors.directExecutor());
}
@Override
public ApiFuture<Void> rollbackAsync() {
synchronized (lock) {
Preconditions.checkState(
txnState == TransactionState.STARTED,
"rollback can only be called if the transaction is in progress");
txnState = TransactionState.ROLLED_BACK;
}
return ApiFutures.transformAsync(
delegate,
input -> {
ApiFuture<Void> res = input.rollbackAsync();
res.addListener(() -> session.close(), MoreExecutors.directExecutor());
return res;
},
MoreExecutors.directExecutor());
}
@Override
public TransactionContextFuture resetForRetryAsync() {
synchronized (lock) {
Preconditions.checkState(
txnState == TransactionState.ABORTED || restartedAfterSessionNotFound,
"resetForRetry can only be called after the transaction aborted.");
txnState = TransactionState.STARTED;
}
return new TransactionContextFutureImpl(
this,
ApiFutures.transform(
ApiFutures.transformAsync(
delegate,
input -> {
if (restartedAfterSessionNotFound) {
restartedAfterSessionNotFound = false;
return input.beginAsync();
}
return input.resetForRetryAsync();
},
MoreExecutors.directExecutor()),
input ->
new SessionPool.SessionPoolTransactionContext(
SessionPoolAsyncTransactionManager.this, input),
MoreExecutors.directExecutor()));
}
@Override
public TransactionState getState() {
synchronized (lock) {
return txnState;
}
}
public ApiFuture<CommitResponse> getCommitResponse() {
synchronized (lock) {
Preconditions.checkState(
txnState == TransactionState.COMMITTED,
"commit can only be invoked if the transaction was successfully committed");
}
return ApiFutures.transformAsync(
delegate, AsyncTransactionManagerImpl::getCommitResponse, MoreExecutors.directExecutor());
}
}