Skip to content

Commit 217039a

Browse files
committed
Relocate custom handlers
1 parent 2fc8852 commit 217039a

File tree

5 files changed

+186
-43
lines changed

5 files changed

+186
-43
lines changed

wrapper/src/main/java/software/amazon/jdbc/ConnectionProviderManager.java

+36-23
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,15 @@
2020
import java.sql.SQLException;
2121
import java.util.List;
2222
import java.util.Properties;
23-
import java.util.concurrent.atomic.AtomicReference;
2423
import org.checkerframework.checker.nullness.qual.NonNull;
2524
import org.checkerframework.checker.nullness.qual.Nullable;
2625
import software.amazon.jdbc.cleanup.CanReleaseResources;
2726

2827
public class ConnectionProviderManager {
2928

30-
private static AtomicReference<ConnectionProvider> customConnectionProvider = new AtomicReference<>(null);
31-
3229
private final ConnectionProvider defaultProvider;
3330
private final @Nullable ConnectionProvider effectiveConnProvider;
3431

35-
private static ConnectionInitFunc connectionInitFunc = null;
36-
3732
/**
3833
* {@link ConnectionProviderManager} constructor.
3934
*
@@ -57,9 +52,11 @@ public ConnectionProviderManager(
5752
* {@link ConnectionProvider#acceptsUrl} for more info.
5853
*
5954
* @param connProvider the {@link ConnectionProvider} to use to establish new connections
55+
* @deprecated Use software.amazon.jdbc.Driver instead
6056
*/
57+
@Deprecated
6158
public static void setConnectionProvider(ConnectionProvider connProvider) {
62-
customConnectionProvider.set(connProvider);
59+
Driver.setCustomConnectionProvider(connProvider);
6360
}
6461

6562
/**
@@ -78,9 +75,9 @@ public static void setConnectionProvider(ConnectionProvider connProvider) {
7875
public ConnectionProvider getConnectionProvider(
7976
String driverProtocol, HostSpec host, Properties props) {
8077

81-
final ConnectionProvider tmpCustomConnectionProvider = customConnectionProvider.get();
82-
if (tmpCustomConnectionProvider != null && tmpCustomConnectionProvider.acceptsUrl(driverProtocol, host, props)) {
83-
return tmpCustomConnectionProvider;
78+
final ConnectionProvider customConnectionProvider = Driver.getCustomConnectionProvider();
79+
if (customConnectionProvider != null && customConnectionProvider.acceptsUrl(driverProtocol, host, props)) {
80+
return customConnectionProvider;
8481
}
8582

8683
if (this.effectiveConnProvider != null && this.effectiveConnProvider.acceptsUrl(driverProtocol, host, props)) {
@@ -110,8 +107,8 @@ public ConnectionProvider getDefaultProvider() {
110107
* return false
111108
*/
112109
public boolean acceptsStrategy(HostRole role, String strategy) {
113-
final ConnectionProvider tmpCustomConnectionProvider = customConnectionProvider.get();
114-
if (tmpCustomConnectionProvider != null && tmpCustomConnectionProvider.acceptsStrategy(role, strategy)) {
110+
final ConnectionProvider customConnectionProvider = Driver.getCustomConnectionProvider();
111+
if (customConnectionProvider != null && customConnectionProvider.acceptsStrategy(role, strategy)) {
115112
return true;
116113
}
117114

@@ -143,10 +140,10 @@ public boolean acceptsStrategy(HostRole role, String strategy) {
143140
public HostSpec getHostSpecByStrategy(List<HostSpec> hosts, HostRole role, String strategy, Properties props)
144141
throws SQLException, UnsupportedOperationException {
145142
HostSpec host = null;
146-
final ConnectionProvider tmpCustomConnectionProvider = customConnectionProvider.get();
143+
final ConnectionProvider customConnectionProvider = Driver.getCustomConnectionProvider();
147144
try {
148-
if (tmpCustomConnectionProvider != null && tmpCustomConnectionProvider.acceptsStrategy(role, strategy)) {
149-
host = tmpCustomConnectionProvider.getHostSpecByStrategy(hosts, role, strategy, props);
145+
if (customConnectionProvider != null && customConnectionProvider.acceptsStrategy(role, strategy)) {
146+
host = customConnectionProvider.getHostSpecByStrategy(hosts, role, strategy, props);
150147
}
151148
} catch (UnsupportedOperationException e) {
152149
// The custom provider does not support the provided strategy, ignore it and try with the other providers.
@@ -170,27 +167,43 @@ public HostSpec getHostSpecByStrategy(List<HostSpec> hosts, HostRole role, Strin
170167
* Clears the non-default {@link ConnectionProvider} if it has been set. The default
171168
* ConnectionProvider will be used if the non-default ConnectionProvider has not been set or has
172169
* been cleared.
170+
*
171+
* @deprecated Use software.amazon.jdbc.Driver instead
173172
*/
173+
@Deprecated
174174
public static void resetProvider() {
175-
customConnectionProvider.set(null);
175+
Driver.resetCustomConnectionProvider();
176176
}
177177

178178
/**
179179
* Releases any resources held by the available {@link ConnectionProvider} instances.
180180
*/
181181
public static void releaseResources() {
182-
final ConnectionProvider tmpCustomConnectionProvider = customConnectionProvider.get();
183-
if (tmpCustomConnectionProvider instanceof CanReleaseResources) {
184-
((CanReleaseResources) tmpCustomConnectionProvider).releaseResources();
182+
final ConnectionProvider customConnectionProvider = Driver.getCustomConnectionProvider();
183+
if (customConnectionProvider instanceof CanReleaseResources) {
184+
((CanReleaseResources) customConnectionProvider).releaseResources();
185185
}
186186
}
187187

188+
/**
189+
* Sets a custom connection initialization function. It'll be used
190+
* for every brand-new database connection.
191+
*
192+
* @deprecated Use software.amazon.jdbc.Driver instead
193+
*/
194+
@Deprecated
188195
public static void setConnectionInitFunc(final @NonNull ConnectionInitFunc func) {
189-
connectionInitFunc = func;
196+
Driver.setConnectionInitFunc(func);
190197
}
191198

199+
/**
200+
* Resets a custom connection initialization function.
201+
*
202+
* @deprecated Use software.amazon.jdbc.Driver instead
203+
*/
204+
@Deprecated
192205
public static void resetConnectionInitFunc() {
193-
connectionInitFunc = null;
206+
Driver.resetConnectionInitFunc();
194207
}
195208

196209
public void initConnection(
@@ -199,12 +212,12 @@ public void initConnection(
199212
final @NonNull HostSpec hostSpec,
200213
final @NonNull Properties props) throws SQLException {
201214

202-
final ConnectionInitFunc copy = connectionInitFunc;
203-
if (copy == null) {
215+
final ConnectionInitFunc connectionInitFunc = Driver.getConnectionInitFunc();
216+
if (connectionInitFunc == null) {
204217
return;
205218
}
206219

207-
copy.initConnection(connection, protocol, hostSpec, props);
220+
connectionInitFunc.initConnection(connection, protocol, hostSpec, props);
208221
}
209222

210223
public interface ConnectionInitFunc {

wrapper/src/main/java/software/amazon/jdbc/Driver.java

+103-8
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,18 @@
2525
import java.util.Collections;
2626
import java.util.List;
2727
import java.util.Properties;
28+
import java.util.concurrent.atomic.AtomicReference;
2829
import java.util.function.Function;
2930
import java.util.logging.ConsoleHandler;
3031
import java.util.logging.Handler;
3132
import java.util.logging.Level;
3233
import java.util.logging.Logger;
3334
import org.checkerframework.checker.nullness.qual.NonNull;
3435
import org.checkerframework.checker.nullness.qual.Nullable;
36+
import software.amazon.jdbc.ConnectionProviderManager.ConnectionInitFunc;
3537
import software.amazon.jdbc.authentication.AwsCredentialsManager;
38+
import software.amazon.jdbc.dialect.Dialect;
39+
import software.amazon.jdbc.exceptions.ExceptionHandler;
3640
import software.amazon.jdbc.profile.ConfigurationProfile;
3741
import software.amazon.jdbc.profile.DriverConfigurationProfiles;
3842
import software.amazon.jdbc.states.ResetSessionStateOnCloseCallable;
@@ -58,8 +62,25 @@ public class Driver implements java.sql.Driver {
5862
private static final Logger LOGGER = Logger.getLogger("software.amazon.jdbc.Driver");
5963
private static @Nullable Driver registeredDriver;
6064

61-
private static ResetSessionStateOnCloseCallable resetSessionStateOnCloseCallable = null;
62-
private static TransferSessionStateOnSwitchCallable transferSessionStateOnSwitchCallable = null;
65+
private static final AtomicReference<ResetSessionStateOnCloseCallable> resetSessionStateOnCloseCallable =
66+
new AtomicReference<>(null);
67+
private static final AtomicReference<TransferSessionStateOnSwitchCallable> transferSessionStateOnSwitchCallable =
68+
new AtomicReference<>(null);
69+
70+
private static final AtomicReference<ExceptionHandler> customExceptionHandler =
71+
new AtomicReference<>(null);
72+
73+
private static final AtomicReference<Dialect> customDialect =
74+
new AtomicReference<>(null);
75+
76+
private static final AtomicReference<TargetDriverDialect> customTargetDriverDialect =
77+
new AtomicReference<>(null);
78+
79+
private static final AtomicReference<ConnectionProvider> customConnectionProvider =
80+
new AtomicReference<>(null);
81+
82+
private static final AtomicReference<ConnectionInitFunc> connectionInitFunc =
83+
new AtomicReference<>(null);
6384

6485
static {
6586
try {
@@ -247,27 +268,27 @@ public Logger getParentLogger() throws SQLFeatureNotSupportedException {
247268
}
248269

249270
public static void setResetSessionStateOnCloseFunc(final @NonNull ResetSessionStateOnCloseCallable func) {
250-
resetSessionStateOnCloseCallable = func;
271+
resetSessionStateOnCloseCallable.set(func);
251272
}
252273

253274
public static void resetResetSessionStateOnCloseFunc() {
254-
resetSessionStateOnCloseCallable = null;
275+
resetSessionStateOnCloseCallable.set(null);
255276
}
256277

257278
public static ResetSessionStateOnCloseCallable getResetSessionStateOnCloseFunc() {
258-
return resetSessionStateOnCloseCallable;
279+
return resetSessionStateOnCloseCallable.get();
259280
}
260281

261282
public static void setTransferSessionStateOnSwitchFunc(final @NonNull TransferSessionStateOnSwitchCallable func) {
262-
transferSessionStateOnSwitchCallable = func;
283+
transferSessionStateOnSwitchCallable.set(func);
263284
}
264285

265286
public static void resetTransferSessionStateOnSwitchFunc() {
266-
transferSessionStateOnSwitchCallable = null;
287+
transferSessionStateOnSwitchCallable.set(null);
267288
}
268289

269290
public static TransferSessionStateOnSwitchCallable getTransferSessionStateOnSwitchFunc() {
270-
return transferSessionStateOnSwitchCallable;
291+
return transferSessionStateOnSwitchCallable.get();
271292
}
272293

273294
public static void setPrepareHostFunc(final Function<String, String> func) {
@@ -277,4 +298,78 @@ public static void setPrepareHostFunc(final Function<String, String> func) {
277298
public static void resetPrepareHostFunc() {
278299
RdsUtils.resetPrepareHostFunc();
279300
}
301+
302+
public static void setCustomExceptionHandler(final ExceptionHandler exceptionHandler) {
303+
customExceptionHandler.set(exceptionHandler);
304+
}
305+
306+
public static ExceptionHandler getCustomExceptionHandler() {
307+
return customExceptionHandler.get();
308+
}
309+
310+
public static void resetCustomExceptionHandler() {
311+
customExceptionHandler.set(null);
312+
}
313+
314+
public static void setCustomDialect(final @NonNull Dialect dialect) {
315+
customDialect.set(dialect);
316+
}
317+
318+
public static Dialect getCustomDialect() {
319+
return customDialect.get();
320+
}
321+
322+
public static void resetCustomDialect() {
323+
customDialect.set(null);
324+
}
325+
326+
public static void setCustomTargetDriverDialect(final @NonNull TargetDriverDialect targetDriverDialect) {
327+
customTargetDriverDialect.set(targetDriverDialect);
328+
}
329+
330+
public static TargetDriverDialect getCustomTargetDriverDialect() {
331+
return customTargetDriverDialect.get();
332+
}
333+
334+
public static void resetCustomTargetDriverDialect() {
335+
customTargetDriverDialect.set(null);
336+
}
337+
338+
/**
339+
* Setter that can optionally be called to request a non-default {@link ConnectionProvider}. The
340+
* requested ConnectionProvider will be used to establish future connections unless it does not
341+
* support a requested URL, in which case the default ConnectionProvider will be used. See
342+
* {@link ConnectionProvider#acceptsUrl} for more info.
343+
*
344+
* @param connProvider the {@link ConnectionProvider} to use to establish new connections
345+
*/
346+
public static void setCustomConnectionProvider(ConnectionProvider connProvider) {
347+
customConnectionProvider.set(connProvider);
348+
}
349+
350+
public static ConnectionProvider getCustomConnectionProvider() {
351+
return customConnectionProvider.get();
352+
}
353+
354+
/**
355+
* Clears the non-default {@link ConnectionProvider} if it has been set. The default
356+
* ConnectionProvider will be used if the non-default ConnectionProvider has not been set or has
357+
* been cleared.
358+
*/
359+
public static void resetCustomConnectionProvider() {
360+
customConnectionProvider.set(null);
361+
}
362+
363+
public static void setConnectionInitFunc(final @NonNull ConnectionInitFunc func) {
364+
connectionInitFunc.set(func);
365+
}
366+
367+
public static ConnectionInitFunc getConnectionInitFunc() {
368+
return connectionInitFunc.get();
369+
}
370+
371+
public static void resetConnectionInitFunc() {
372+
connectionInitFunc.set(null);
373+
}
374+
280375
}

wrapper/src/main/java/software/amazon/jdbc/dialect/DialectManager.java

+16-4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import java.util.logging.Logger;
2727
import org.checkerframework.checker.nullness.qual.NonNull;
2828
import software.amazon.jdbc.AwsWrapperProperty;
29+
import software.amazon.jdbc.Driver;
2930
import software.amazon.jdbc.HostSpec;
3031
import software.amazon.jdbc.PluginService;
3132
import software.amazon.jdbc.util.CacheMap;
@@ -40,8 +41,6 @@ public class DialectManager implements DialectProvider {
4041

4142
private static final Logger LOGGER = Logger.getLogger(DialectManager.class.getName());
4243

43-
protected static Dialect customDialect;
44-
4544
public static final AwsWrapperProperty DIALECT = new AwsWrapperProperty(
4645
"wrapperDialect", "",
4746
"A unique identifier for the supported database dialect.");
@@ -88,12 +87,24 @@ public DialectManager(PluginService pluginService) {
8887
this.pluginService = pluginService;
8988
}
9089

90+
/**
91+
* Sets a custom dialect handler.
92+
*
93+
* @deprecated Use software.amazon.jdbc.Driver instead
94+
*/
95+
@Deprecated
9196
public static void setCustomDialect(final @NonNull Dialect dialect) {
92-
customDialect = dialect;
97+
Driver.setCustomDialect(dialect);
9398
}
9499

100+
/**
101+
* Resets a custom dialect handler.
102+
*
103+
* @deprecated Use software.amazon.jdbc.Driver instead
104+
*/
105+
@Deprecated
95106
public static void resetCustomDialect() {
96-
customDialect = null;
107+
Driver.resetCustomDialect();
97108
}
98109

99110
public static void resetEndpointCache() {
@@ -110,6 +121,7 @@ public Dialect getDialect(
110121
this.canUpdate = false;
111122
this.dialect = null;
112123

124+
final Dialect customDialect = Driver.getCustomDialect();
113125
if (customDialect != null) {
114126
this.dialectCode = DialectCodes.CUSTOM;
115127
this.dialect = customDialect;

wrapper/src/main/java/software/amazon/jdbc/exceptions/ExceptionManager.java

+16-4
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,29 @@
1616

1717
package software.amazon.jdbc.exceptions;
1818

19+
import software.amazon.jdbc.Driver;
1920
import software.amazon.jdbc.dialect.Dialect;
2021

2122
public class ExceptionManager {
2223

23-
protected static ExceptionHandler customHandler;
24-
24+
/**
25+
* Sets a custom exception handler.
26+
*
27+
* @deprecated Use software.amazon.jdbc.Driver instead
28+
*/
29+
@Deprecated
2530
public static void setCustomHandler(final ExceptionHandler exceptionHandler) {
26-
customHandler = exceptionHandler;
31+
Driver.setCustomExceptionHandler(exceptionHandler);
2732
}
2833

34+
/**
35+
* Resets a custom exception handler.
36+
*
37+
* @deprecated Use software.amazon.jdbc.Driver instead
38+
*/
39+
@Deprecated
2940
public static void resetCustomHandler() {
30-
customHandler = null;
41+
Driver.resetCustomExceptionHandler();
3142
}
3243

3344
public boolean isLoginException(final Dialect dialect, final Throwable throwable) {
@@ -51,6 +62,7 @@ public boolean isNetworkException(final Dialect dialect, final String sqlState)
5162
}
5263

5364
private ExceptionHandler getHandler(final Dialect dialect) {
65+
final ExceptionHandler customHandler = Driver.getCustomExceptionHandler();
5466
return customHandler != null ? customHandler : dialect.getExceptionHandler();
5567
}
5668
}

0 commit comments

Comments
 (0)