forked from aws/aws-advanced-jdbc-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConnectionPluginManager.java
406 lines (341 loc) · 14.2 KB
/
ConnectionPluginManager.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
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* 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 software.amazon.jdbc;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import java.util.logging.Logger;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable;
import software.amazon.jdbc.cleanup.CanReleaseResources;
import software.amazon.jdbc.plugin.AuroraHostListConnectionPluginFactory;
import software.amazon.jdbc.plugin.AwsSecretsManagerConnectionPluginFactory;
import software.amazon.jdbc.plugin.DataCacheConnectionPluginFactory;
import software.amazon.jdbc.plugin.DefaultConnectionPlugin;
import software.amazon.jdbc.plugin.ExecutionTimeConnectionPluginFactory;
import software.amazon.jdbc.plugin.IamAuthConnectionPluginFactory;
import software.amazon.jdbc.plugin.LogQueryConnectionPluginFactory;
import software.amazon.jdbc.plugin.efm.HostMonitoringConnectionPluginFactory;
import software.amazon.jdbc.plugin.failover.FailoverConnectionPluginFactory;
import software.amazon.jdbc.plugin.staledns.AuroraStaleDnsPluginFactory;
import software.amazon.jdbc.profile.DriverConfigurationProfiles;
import software.amazon.jdbc.util.Messages;
import software.amazon.jdbc.util.ResourceLock;
import software.amazon.jdbc.util.SqlState;
import software.amazon.jdbc.util.StringUtils;
import software.amazon.jdbc.util.WrapperUtils;
import software.amazon.jdbc.wrapper.ConnectionWrapper;
/**
* This class creates and handles a chain of {@link ConnectionPlugin} for each connection.
*
* <p>THIS CLASS IS NOT MULTI-THREADING SAFE IT'S EXPECTED TO HAVE ONE INSTANCE OF THIS MANAGER PER
* JDBC CONNECTION
*/
public class ConnectionPluginManager implements CanReleaseResources {
protected static final Map<String, Class<? extends ConnectionPluginFactory>> pluginFactoriesByCode =
new HashMap<String, Class<? extends ConnectionPluginFactory>>() {
{
put("executionTime", ExecutionTimeConnectionPluginFactory.class);
put("auroraHostList", AuroraHostListConnectionPluginFactory.class);
put("logQuery", LogQueryConnectionPluginFactory.class);
put("dataCache", DataCacheConnectionPluginFactory.class);
put("efm", HostMonitoringConnectionPluginFactory.class);
put("failover", FailoverConnectionPluginFactory.class);
put("iam", IamAuthConnectionPluginFactory.class);
put("awsSecretsManager", AwsSecretsManagerConnectionPluginFactory.class);
put("auroraStaleDns", AuroraStaleDnsPluginFactory.class);
}
};
protected static final String DEFAULT_PLUGINS = "";
private static final Logger LOGGER = Logger.getLogger(ConnectionPluginManager.class.getName());
private static final String ALL_METHODS = "*";
private static final String CONNECT_METHOD = "connect";
private static final String INIT_HOST_PROVIDER_METHOD = "initHostProvider";
private static final String NOTIFY_CONNECTION_CHANGED_METHOD = "notifyConnectionChanged";
private static final String NOTIFY_NODE_LIST_CHANGED_METHOD = "notifyNodeListChanged";
private final ResourceLock lock = new ResourceLock();
protected Properties props = new Properties();
protected ArrayList<ConnectionPlugin> plugins;
protected final ConnectionProvider connectionProvider;
protected final ConnectionWrapper connectionWrapper;
@SuppressWarnings("rawtypes")
protected final Map<String, PluginChainJdbcCallable> pluginChainFuncMap = new HashMap<>();
public ConnectionPluginManager(ConnectionProvider connectionProvider, ConnectionWrapper connectionWrapper) {
this.connectionProvider = connectionProvider;
this.connectionWrapper = connectionWrapper;
}
/** This constructor is for testing purposes only. */
ConnectionPluginManager(
ConnectionProvider connectionProvider,
Properties props,
ArrayList<ConnectionPlugin> plugins,
ConnectionWrapper connectionWrapper) {
this.connectionProvider = connectionProvider;
this.props = props;
this.plugins = plugins;
this.connectionWrapper = connectionWrapper;
}
public ResourceLock acquireLock() {
return lock.obtain();
}
/*
For testing only
*/
public void releaseLock() {
lock.close();
}
/**
* Initialize a chain of {@link ConnectionPlugin} using their corresponding {@link
* ConnectionPluginFactory}. If {@code PropertyDefinition.PLUGINS} is provided by the user,
* initialize the chain with the given connection plugins in the order they are specified.
*
* <p>The {@link DefaultConnectionPlugin} will always be initialized and attached as the last
* connection plugin in the chain.
*
* @param pluginService A reference to a plugin service that plugin can use.
* @param props The configuration of the connection.
* @param pluginManagerService A reference to a plugin manager service.
* @throws SQLException if errors occurred during the execution.
*/
public void init(
PluginService pluginService, Properties props, PluginManagerService pluginManagerService)
throws SQLException {
this.props = props;
String profileName = PropertyDefinition.PROFILE_NAME.getString(props);
List<Class<? extends ConnectionPluginFactory>> pluginFactories;
if (profileName != null) {
if (!DriverConfigurationProfiles.contains(profileName)) {
throw new SQLException(
Messages.get(
"ConnectionPluginManager.configurationProfileNotFound",
new Object[] {profileName}));
}
pluginFactories = DriverConfigurationProfiles.getPluginFactories(profileName);
} else {
String pluginCodes = PropertyDefinition.PLUGINS.getString(props);
if (pluginCodes == null) {
pluginCodes = DEFAULT_PLUGINS;
}
List<String> pluginCodeList = StringUtils.split(pluginCodes, ",", true);
pluginFactories = new ArrayList<>(pluginCodeList.size());
for (String pluginCode : pluginCodeList) {
if (!pluginFactoriesByCode.containsKey(pluginCode)) {
throw new SQLException(
Messages.get(
"ConnectionPluginManager.unknownPluginCode",
new Object[] {pluginCode}));
}
pluginFactories.add(pluginFactoriesByCode.get(pluginCode));
}
}
if (!pluginFactories.isEmpty()) {
try {
ConnectionPluginFactory[] factories =
WrapperUtils.loadClasses(
pluginFactories,
ConnectionPluginFactory.class,
"ConnectionPluginManager.unableToLoadPlugin")
.toArray(new ConnectionPluginFactory[0]);
// make a chain of connection plugins
this.plugins = new ArrayList<>(factories.length + 1);
for (ConnectionPluginFactory factory : factories) {
this.plugins.add(factory.getInstance(pluginService, this.props));
}
} catch (InstantiationException instEx) {
throw new SQLException(instEx.getMessage(), SqlState.UNKNOWN_STATE.getState(), instEx);
}
} else {
this.plugins = new ArrayList<>(1); // one spot for default connection plugin
}
// add default connection plugin to the tail
ConnectionPlugin defaultPlugin =
new DefaultConnectionPlugin(pluginService, this.connectionProvider, pluginManagerService);
this.plugins.add(defaultPlugin);
}
protected <T, E extends Exception> T executeWithSubscribedPlugins(
final String methodName,
final PluginPipeline<T, E> pluginPipeline,
final JdbcCallable<T, E> jdbcMethodFunc)
throws E {
if (pluginPipeline == null) {
throw new IllegalArgumentException("pluginPipeline");
}
if (jdbcMethodFunc == null) {
throw new IllegalArgumentException("jdbcMethodFunc");
}
//noinspection unchecked
PluginChainJdbcCallable<T, E> pluginChainFunc = this.pluginChainFuncMap.get(methodName);
if (pluginChainFunc == null) {
pluginChainFunc = this.makePluginChainFunc(methodName);
this.pluginChainFuncMap.put(methodName, pluginChainFunc);
}
if (pluginChainFunc == null) {
throw new RuntimeException("Error processing this JDBC call.");
}
return pluginChainFunc.call(pluginPipeline, jdbcMethodFunc);
}
@Nullable
protected <T, E extends Exception> PluginChainJdbcCallable<T, E> makePluginChainFunc(
final @NonNull String methodName) {
PluginChainJdbcCallable<T, E> pluginChainFunc = null;
for (int i = this.plugins.size() - 1; i >= 0; i--) {
final ConnectionPlugin plugin = this.plugins.get(i);
Set<String> pluginSubscribedMethods = plugin.getSubscribedMethods();
boolean isSubscribed =
pluginSubscribedMethods.contains(ALL_METHODS)
|| pluginSubscribedMethods.contains(methodName);
if (isSubscribed) {
if (pluginChainFunc == null) {
pluginChainFunc = (pipelineFunc, jdbcFunc) -> pipelineFunc.call(plugin, jdbcFunc);
} else {
final PluginChainJdbcCallable<T, E> finalPluginChainFunc = pluginChainFunc;
pluginChainFunc = (pipelineFunc, jdbcFunc) ->
pipelineFunc.call(plugin, () -> finalPluginChainFunc.call(pipelineFunc, jdbcFunc));
}
}
}
return pluginChainFunc;
}
protected <E extends Exception> void notifySubscribedPlugins(
final String methodName,
final PluginPipeline<Void, E> pluginPipeline,
final ConnectionPlugin skipNotificationForThisPlugin)
throws E {
if (pluginPipeline == null) {
throw new IllegalArgumentException("pluginPipeline");
}
for (ConnectionPlugin plugin : this.plugins) {
if (plugin == skipNotificationForThisPlugin) {
continue;
}
Set<String> pluginSubscribedMethods = plugin.getSubscribedMethods();
boolean isSubscribed =
pluginSubscribedMethods.contains(ALL_METHODS)
|| pluginSubscribedMethods.contains(methodName);
if (isSubscribed) {
pluginPipeline.call(plugin, null);
}
}
}
public ConnectionWrapper getConnectionWrapper() {
return this.connectionWrapper;
}
public <T, E extends Exception> T execute(
final Class<T> resultType,
final Class<E> exceptionClass,
final Object methodInvokeOn,
final String methodName,
final JdbcCallable<T, E> jdbcMethodFunc,
final Object[] jdbcMethodArgs)
throws E {
return executeWithSubscribedPlugins(
methodName,
(plugin, func) ->
plugin.execute(
resultType, exceptionClass, methodInvokeOn, methodName, func, jdbcMethodArgs),
jdbcMethodFunc);
}
public Connection connect(
final String driverProtocol,
final HostSpec hostSpec,
final Properties props,
final boolean isInitialConnection)
throws SQLException {
try {
return executeWithSubscribedPlugins(
CONNECT_METHOD,
(plugin, func) ->
plugin.connect(driverProtocol, hostSpec, props, isInitialConnection, func),
() -> {
throw new SQLException("Shouldn't be called.");
});
} catch (SQLException | RuntimeException e) {
throw e;
} catch (Exception e) {
throw new SQLException(e);
}
}
public void initHostProvider(
final String driverProtocol,
final String initialUrl,
final Properties props,
final HostListProviderService hostListProviderService)
throws SQLException {
executeWithSubscribedPlugins(
INIT_HOST_PROVIDER_METHOD,
(PluginPipeline<Void, SQLException>)
(plugin, func) -> {
plugin.initHostProvider(
driverProtocol, initialUrl, props, hostListProviderService, func);
return null;
},
() -> {
throw new SQLException("Shouldn't be called.");
});
}
public EnumSet<OldConnectionSuggestedAction> notifyConnectionChanged(
@NonNull EnumSet<NodeChangeOptions> changes,
@Nullable ConnectionPlugin skipNotificationForThisPlugin) {
final EnumSet<OldConnectionSuggestedAction> result =
EnumSet.noneOf(OldConnectionSuggestedAction.class);
notifySubscribedPlugins(
NOTIFY_CONNECTION_CHANGED_METHOD,
(plugin, func) -> {
OldConnectionSuggestedAction pluginOpinion = plugin.notifyConnectionChanged(changes);
result.add(pluginOpinion);
return null;
},
skipNotificationForThisPlugin);
return result;
}
public void notifyNodeListChanged(@NonNull Map<String, EnumSet<NodeChangeOptions>> changes) {
notifySubscribedPlugins(
NOTIFY_NODE_LIST_CHANGED_METHOD,
(plugin, func) -> {
plugin.notifyNodeListChanged(changes);
return null;
},
null);
}
/**
* Release all dangling resources held by the connection plugins associated with a single
* connection.
*/
public void releaseResources() {
LOGGER.fine(() -> Messages.get("ConnectionPluginManager.releaseResources"));
// This step allows all connection plugins a chance to clean up any dangling resources or
// perform any
// last tasks before shutting down.
this.plugins.forEach(
(plugin) -> {
if (plugin instanceof CanReleaseResources) {
((CanReleaseResources) plugin).releaseResources();
}
});
}
private interface PluginPipeline<T, E extends Exception> {
T call(final @NonNull ConnectionPlugin plugin, final @Nullable JdbcCallable<T, E> jdbcMethodFunc) throws E;
}
private interface PluginChainJdbcCallable<T, E extends Exception> {
T call(final @NonNull PluginPipeline<T, E> pipelineFunc, final @NonNull JdbcCallable<T, E> jdbcMethodFunc) throws E;
}
}