buckelieg.jdbc.AbstractQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdbc-fn Show documentation
Show all versions of jdbc-fn Show documentation
Functional style programming with plain JDBC
The newest version!
/*
* Copyright 2016- Anatoly Kutyakov
*
* 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 buckelieg.jdbc;
import buckelieg.jdbc.fn.TryConsumer;
import buckelieg.jdbc.fn.TryRunnable;
import buckelieg.jdbc.fn.TrySupplier;
import javax.annotation.Nonnull;
import javax.annotation.ParametersAreNonnullByDefault;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.Consumer;
import java.util.function.Supplier;
import static buckelieg.jdbc.Utils.newSQLRuntimeException;
import static java.lang.Math.max;
import static java.util.Objects.requireNonNull;
@SuppressWarnings("unchecked")
@ParametersAreNonnullByDefault
abstract class AbstractQuery, S extends Statement> implements Query {
protected S statement;
protected final String query;
protected final TrySupplier connectionSupplier;
private final TryConsumer connectionConsumer;
protected final Supplier executorServiceSupplier;
protected boolean skipWarnings = true;
protected final boolean isPrepared;
protected int timeout;
protected TimeUnit unit = TimeUnit.SECONDS;
protected boolean poolable;
protected boolean escapeProcessing = true;
protected Runnable finisher = () -> {};
protected final Object[] params;
private final AtomicReference connectionInUse = new AtomicReference<>();
AbstractQuery(
TrySupplier connectionSupplier,
TryConsumer connectionConsumer,
Supplier executorServiceSupplier,
String query, Object... params) {
this.query = query;
this.connectionSupplier = connectionSupplier;
this.connectionConsumer = connectionConsumer;
this.executorServiceSupplier = executorServiceSupplier;
this.params = params;
this.isPrepared = params != null && params.length != 0;
}
void close() {
try {
if (null != statement && !statement.isClosed()) {
statement.close(); // by JDBC spec: subsequently closes all result sets opened by this statement
}
} catch (SQLException e) {
throw newSQLRuntimeException(e);
} finally {
if (null != connectionConsumer) {
try {
connectionConsumer.accept(connectionInUse.getAndSet(null));
} catch (Throwable e) {
throw newSQLRuntimeException(e);
}
}
}
}
final void setQueryBasicParameters(S statement) throws SQLException {
accept(() -> statement.setQueryTimeout(max((int) requireNonNull(unit, "Time Unit must be provided").toSeconds(timeout), 0)));
accept(() -> statement.setPoolable(poolable));
accept(() -> statement.setEscapeProcessing(escapeProcessing));
}
@Nonnull
@Override
public Q poolable(boolean poolable) {
this.poolable = poolable;
return (Q) this;
}
@Nonnull
@Override
public Q timeout(int timeout, TimeUnit unit) {
this.unit = requireNonNull(unit, "Time unit must be provided");
this.timeout = timeout;
return (Q) this;
}
@Nonnull
@Override
public Q escaped(boolean escapeProcessing) {
this.escapeProcessing = escapeProcessing;
return (Q) this;
}
@Nonnull
@Override
public Q skipWarnings(boolean skipWarnings) {
this.skipWarnings = skipWarnings;
return (Q) this;
}
@Nonnull
@Override
public Q print(Consumer printer) {
if (null == printer) throw new NullPointerException("Printer must be provided");
printer.accept(asSQL());
return (Q) this;
}
final void accept(TryRunnable action) throws SQLException {
try {
action.run();
if (!skipWarnings && statement.getWarnings() != null) throw statement.getWarnings();
} catch (AbstractMethodError ame) {
// ignore this possible vendor-specific JDBC driver's error.
}
}
String asSQL(String query, Object... params) {
return Utils.asSQL(query, params);
}
@Nonnull
@Override
public final String asSQL() {
return asSQL(query, params);
}
@Override
public String toString() {
return query;
}
protected final Connection getConnection() {
return connectionInUse.updateAndGet(connection -> {
if (null == connection) {
try {
connection = connectionSupplier.get();
} catch (SQLException e) {
throw Utils.newSQLRuntimeException(e);
}
}
return connection;
});
}
}