-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathAsyncTransactionManagerImpl.java
209 lines (186 loc) · 6.69 KB
/
AsyncTransactionManagerImpl.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
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
/*
* Copyright 2017 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.SessionImpl.SessionTransaction;
import com.google.cloud.spanner.TransactionContextFutureImpl.CommittableAsyncTransactionManager;
import com.google.cloud.spanner.TransactionManager.TransactionState;
import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.protobuf.ByteString;
/** Implementation of {@link AsyncTransactionManager}. */
final class AsyncTransactionManagerImpl
implements CommittableAsyncTransactionManager, SessionTransaction {
private final SessionImpl session;
private ISpan span;
private final Options options;
private TransactionRunnerImpl.TransactionContextImpl txn;
private TransactionState txnState;
private final SettableApiFuture<CommitResponse> commitResponse = SettableApiFuture.create();
AsyncTransactionManagerImpl(SessionImpl session, ISpan span, TransactionOption... options) {
this.session = session;
this.span = span;
this.options = Options.fromTransactionOptions(options);
}
@Override
public void setSpan(ISpan span) {
this.span = span;
}
@Override
public void close() {
SpannerApiFutures.get(closeAsync());
}
@Override
public ApiFuture<Void> closeAsync() {
ApiFuture<Void> res = null;
if (txnState == TransactionState.STARTED) {
res = rollbackAsync();
}
if (txn != null) {
txn.close();
}
if (session != null) {
session.onTransactionDone();
}
return MoreObjects.firstNonNull(res, ApiFutures.immediateFuture(null));
}
@Override
public TransactionContextFutureImpl beginAsync() {
Preconditions.checkState(txn == null, "begin can only be called once");
return new TransactionContextFutureImpl(this, internalBeginAsync(true));
}
private ApiFuture<TransactionContext> internalBeginAsync(boolean firstAttempt) {
txnState = TransactionState.STARTED;
// Determine the latest transactionId when using a multiplexed session.
ByteString multiplexedSessionPreviousTransactionId = ByteString.EMPTY;
if (txn != null && session.getIsMultiplexed() && !firstAttempt) {
// Use the current transactionId if available, otherwise fallback to the previous aborted
// transactionId.
multiplexedSessionPreviousTransactionId =
txn.transactionId != null ? txn.transactionId : txn.getPreviousTransactionId();
}
txn =
session.newTransaction(
options, /* previousTransactionId= */ multiplexedSessionPreviousTransactionId);
if (firstAttempt) {
session.setActive(this);
}
final SettableApiFuture<TransactionContext> res = SettableApiFuture.create();
final ApiFuture<Void> fut;
if (firstAttempt) {
fut = ApiFutures.immediateFuture(null);
} else {
fut = txn.ensureTxnAsync();
}
ApiFutures.addCallback(
fut,
new ApiFutureCallback<Void>() {
@Override
public void onFailure(Throwable t) {
onError(t);
res.setException(SpannerExceptionFactory.newSpannerException(t));
}
@Override
public void onSuccess(Void result) {
res.set(txn);
}
},
MoreExecutors.directExecutor());
return res;
}
@Override
public void onError(Throwable t) {
if (t instanceof AbortedException) {
txnState = TransactionState.ABORTED;
}
}
@Override
public ApiFuture<Timestamp> commitAsync() {
Preconditions.checkState(
txnState == TransactionState.STARTED,
"commit can only be invoked if the transaction is in progress. Current state: " + txnState);
if (txn.isAborted()) {
txnState = TransactionState.ABORTED;
return ApiFutures.immediateFailedFuture(
SpannerExceptionFactory.newSpannerException(
ErrorCode.ABORTED, "Transaction already aborted"));
}
ApiFuture<CommitResponse> commitResponseFuture = txn.commitAsync();
txnState = TransactionState.COMMITTED;
ApiFutures.addCallback(
commitResponseFuture,
new ApiFutureCallback<CommitResponse>() {
@Override
public void onFailure(Throwable t) {
if (t instanceof AbortedException) {
txnState = TransactionState.ABORTED;
} else {
txnState = TransactionState.COMMIT_FAILED;
commitResponse.setException(t);
}
}
@Override
public void onSuccess(CommitResponse result) {
commitResponse.set(result);
}
},
MoreExecutors.directExecutor());
return ApiFutures.transform(
commitResponseFuture, CommitResponse::getCommitTimestamp, MoreExecutors.directExecutor());
}
@Override
public ApiFuture<Void> rollbackAsync() {
Preconditions.checkState(
txnState == TransactionState.STARTED,
"rollback can only be called if the transaction is in progress");
try {
return ApiFutures.transformAsync(
txn.rollbackAsync(),
ignored -> ApiFutures.immediateFuture(null),
MoreExecutors.directExecutor());
} finally {
txnState = TransactionState.ROLLED_BACK;
}
}
@Override
public TransactionContextFuture resetForRetryAsync() {
if (txn == null || !txn.isAborted() && txnState != TransactionState.ABORTED) {
throw new IllegalStateException(
"resetForRetry can only be called if the previous attempt aborted");
}
return new TransactionContextFutureImpl(this, internalBeginAsync(false));
}
@Override
public TransactionState getState() {
return txnState;
}
@Override
public ApiFuture<CommitResponse> getCommitResponse() {
return commitResponse;
}
@Override
public void invalidate() {
if (txnState == TransactionState.STARTED || txnState == null) {
txnState = TransactionState.ROLLED_BACK;
}
}
}