com.rapiddweller.jdbacl.DBUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rd-lib-jdbacl Show documentation
Show all versions of rd-lib-jdbacl Show documentation
'jdbacl' stands for 'Java DataBase ACcess Layer' and provides utilities for accessing JDBC databases from
Java programs, retrieving meta information in an object model and querying database data.
'rapiddweller jdbacl' is forked from Databene jdbacl by Volker Bergmann.
/*
* (c) Copyright 2007-2012 by Volker Bergmann. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, is permitted under the terms of the
* GNU General Public License.
*
* For redistributing this software or a derivative work under a license other
* than the GPL-compatible Free Software License as defined by the Free
* Software Foundation or approved by OSI, you must first obtain a commercial
* license to this software product from Volker Bergmann.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* WITHOUT A WARRANTY OF ANY KIND. ALL EXPRESS OR IMPLIED CONDITIONS,
* REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE
* HEREBY EXCLUDED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package com.rapiddweller.jdbacl;
import com.rapiddweller.common.ArrayBuilder;
import com.rapiddweller.common.ArrayFormat;
import com.rapiddweller.common.ArrayUtil;
import com.rapiddweller.common.BeanUtil;
import com.rapiddweller.common.ConfigurationError;
import com.rapiddweller.common.ConnectFailedException;
import com.rapiddweller.common.ErrorHandler;
import com.rapiddweller.common.FileUtil;
import com.rapiddweller.common.HeavyweightIterator;
import com.rapiddweller.common.IOUtil;
import com.rapiddweller.common.LogCategoriesConstants;
import com.rapiddweller.common.ObjectNotFoundException;
import com.rapiddweller.common.ReaderLineIterator;
import com.rapiddweller.common.StringUtil;
import com.rapiddweller.common.SystemInfo;
import com.rapiddweller.common.converter.AnyConverter;
import com.rapiddweller.common.converter.ToStringConverter;
import com.rapiddweller.common.debug.Debug;
import com.rapiddweller.common.depend.DependencyModel;
import com.rapiddweller.common.iterator.ConvertingIterator;
import com.rapiddweller.jdbacl.model.DBConstraint;
import com.rapiddweller.jdbacl.model.DBPrimaryKeyConstraint;
import com.rapiddweller.jdbacl.model.DBTable;
import com.rapiddweller.jdbacl.model.DBUniqueConstraint;
import com.rapiddweller.jdbacl.model.TableHolder;
import com.rapiddweller.jdbacl.proxy.LoggingPreparedStatementHandler;
import com.rapiddweller.jdbacl.proxy.LoggingResultSetHandler;
import com.rapiddweller.jdbacl.proxy.LoggingStatementHandler;
import com.rapiddweller.jdbacl.proxy.PooledConnectionHandler;
import org.slf4j.LoggerFactory;
import org.slf4j.Logger;
import javax.sql.PooledConnection;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.lang.reflect.Array;
import java.lang.reflect.Proxy;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.Driver;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import static com.rapiddweller.jdbacl.SQLUtil.createCatSchTabString;
/**
* Provides database related utility methods.
*
* Created: 06.01.2007 19:27:02
*
* @author Volker Bergmann
*/
public class DBUtil {
private static final Logger LOGGER = LoggerFactory.getLogger(DBUtil.class);
private static final Logger JDBC_LOGGER = LoggerFactory.getLogger(LogCategoriesConstants.JDBC);
private static final Logger SQL_LOGGER = LoggerFactory.getLogger(LogCategoriesConstants.SQL);
/**
* private constructor for preventing instantiation.
*/
private DBUtil() {
}
// connection handling ---------------------------------------------------------------------------------------------
/**
* Get environment names string [ ].
*
* @return the string [ ]
*/
public static String[] getEnvironmentNames() {
File databeneFolder = new File(SystemInfo.getUserHome(), "rapiddweller");
String[] fileNames = databeneFolder.list((dir, name) -> (name.toLowerCase().endsWith(".env.properties")));
String[] result = new String[Objects.requireNonNull(fileNames).length];
for (int i = 0; i < fileNames.length; i++) {
String fileName = fileNames[i];
result[i] = fileName.substring(0, fileName.length() - ".env.properties".length());
}
return result;
}
/**
* Exists environment boolean.
*
* @param environment the environment
* @return the boolean
*/
public static boolean existsEnvironment(String environment) {
try {
getConnectData(environment);
return true;
} catch (Exception e) {
return false;
}
}
/**
* Gets environment data.
*
* @param environment the environment
* @return the environment data
* @throws IOException the io exception
*/
public static Map getEnvironmentData(String environment) throws IOException {
return IOUtil.readProperties(environmentFileName(environment));
}
/**
* Gets connect data.
*
* @param environment the environment
* @return the connect data
*/
public static JDBCConnectData getConnectData(String environment) {
try {
String path = environmentFileName(environment);
return JDBCConnectData.parseSingleDbProperties(path);
} catch (IOException e) {
throw new ConfigurationError("Error reading environment data for '" + environment + "'");
}
}
/**
* Environment file name string.
*
* @param environment the environment
* @return the string
* @throws IOException the io exception
*/
public static String environmentFileName(String environment) throws IOException {
String filename = environment + ".env.properties";
File file = FileUtil.getFileIgnoreCase(new File(filename), false);
if (!file.exists()) {
File defaultUserHomeFile = new File(SystemInfo.getUserHome() + SystemInfo.getFileSeparator() + "rapiddweller", filename);
file = FileUtil.getFileIgnoreCase(defaultUserHomeFile, false);
}
String path;
if (file.exists()) {
path = file.getCanonicalPath();
} else if (IOUtil.isURIAvailable(filename)) {
path = filename;
} else {
throw new ConfigurationError("No environment definition '" + filename + "' found");
}
return path;
}
/**
* Connect connection.
*
* @param environment the environment
* @param readOnly the read only
* @return the connection
* @throws ConnectFailedException the connect failed exception
*/
public static Connection connect(String environment, boolean readOnly) throws ConnectFailedException {
JDBCConnectData connectData = DBUtil.getConnectData(environment);
return connect(connectData, readOnly);
}
/**
* Connect connection.
*
* @param data the data
* @param readOnly the read only
* @return the connection
* @throws ConnectFailedException the connect failed exception
*/
public static Connection connect(JDBCConnectData data, boolean readOnly) throws ConnectFailedException {
if (StringUtil.isEmpty(data.url)) {
throw new ConfigurationError("No JDBC URL specified");
}
if (StringUtil.isEmpty(data.driver)) {
throw new ConfigurationError("No JDBC driver class name specified");
}
if (!readOnly && data.readOnly) {
throw new ConfigurationError("Environment is configured to be read only but was connected for read/write access");
}
return connect(data.url, data.driver, data.user, data.password, readOnly);
}
/**
* Connect connection.
*
* @param url the url
* @param driverClassName the driver class name
* @param user the user
* @param password the password
* @param readOnly the read only
* @return the connection
* @throws ConnectFailedException the connect failed exception
*/
public static Connection connect(String url, String driverClassName, String user, String password, boolean readOnly) throws ConnectFailedException {
try {
if (driverClassName == null) {
throw new ConfigurationError("No JDBC driver class name provided");
}
// Wrap connection properties
java.util.Properties info = new java.util.Properties();
if (user != null) {
info.put("user", user);
}
if (password != null) {
info.put("password", password);
}
// Instantiate driver
Class driverClass = BeanUtil.forName(driverClassName);
Driver driver = driverClass.getDeclaredConstructor().newInstance();
// connect
JDBC_LOGGER.debug("opening connection to " + url);
Connection connection = driver.connect(url, info);
if (connection == null) {
throw new ConnectFailedException("Connecting the database failed silently - " +
"probably due to wrong driver (" + driverClassName + ") or wrong URL format (" + url + ")");
}
connection = wrapWithPooledConnection(connection, readOnly);
return connection;
} catch (Exception e) {
throw new ConnectFailedException("Connecting " + url + " failed: ", e);
}
}
/**
* Available boolean.
*
* @param url the url
* @param driverClass the driver class
* @param user the user
* @param password the password
* @return the boolean
*/
public static boolean available(String url, String driverClass, String user, String password) {
try {
Connection connection = connect(url, driverClass, user, password, false);
close(connection);
return true;
} catch (Exception e) {
return false;
}
}
/**
* Closes a database connection silently
*
* @param connection the connection
*/
public static void close(Connection connection) {
if (connection == null) {
return;
}
try {
connection.close();
} catch (SQLException e) {
LOGGER.error("Error closing connection", e);
}
}
/**
* Wrap with pooled connection connection.
*
* @param connection the connection
* @param readOnly the read only
* @return the connection
*/
public static Connection wrapWithPooledConnection(Connection connection, boolean readOnly) {
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
return (Connection) Proxy.newProxyInstance(classLoader,
new Class[] {Connection.class, PooledConnection.class},
new PooledConnectionHandler(connection, readOnly));
}
/**
* Gets open connection count.
*
* @return the open connection count
*/
public static int getOpenConnectionCount() {
return PooledConnectionHandler.getOpenConnectionCount();
}
/**
* Reset monitors.
*/
public static void resetMonitors() {
LoggingPreparedStatementHandler.resetMonitors();
LoggingResultSetHandler.resetMonitors();
LoggingStatementHandler.resetMonitors();
PooledConnectionHandler.resetMonitors();
}
// statement handling ----------------------------------------------------------------------------------------------
/**
* Create logging statement handler statement.
*
* @param statement the statement
* @param readOnly the read only
* @return the statement
*/
public static Statement createLoggingStatementHandler(Statement statement, boolean readOnly) {
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
statement = (Statement) Proxy.newProxyInstance(classLoader,
new Class[] {Statement.class},
new LoggingStatementHandler(statement, readOnly));
return statement;
}
/**
* Prepare statement prepared statement.
*
* @param connection the connection
* @param sql the sql
* @param readOnly the read only
* @return the prepared statement
* @throws SQLException the sql exception
*/
public static PreparedStatement prepareStatement(Connection connection, String sql, boolean readOnly) throws SQLException {
return prepareStatement(connection, sql, readOnly,
ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY, ResultSet.HOLD_CURSORS_OVER_COMMIT);
}
/**
* Prepare statement prepared statement.
*
* @param connection the connection
* @param sql the sql
* @param readOnly the read only
* @param resultSetType the result set type
* @param resultSetConcurrency the result set concurrency
* @param resultSetHoldability the result set holdability
* @return the prepared statement
* @throws SQLException the sql exception
*/
public static PreparedStatement prepareStatement(
Connection connection,
String sql,
boolean readOnly,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) throws SQLException {
JDBC_LOGGER.debug("preparing statement: " + sql);
checkReadOnly(sql, readOnly);
if (connection instanceof PooledConnection) {
connection = ((PooledConnection) connection).getConnection();
}
PreparedStatement statement = connection.prepareStatement(
sql, resultSetType, resultSetConcurrency, resultSetHoldability);
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
if (SQL_LOGGER.isDebugEnabled() || JDBC_LOGGER.isDebugEnabled()) {
statement = (PreparedStatement) Proxy.newProxyInstance(classLoader,
new Class[] {PreparedStatement.class},
new LoggingPreparedStatementHandler(statement, sql));
}
return statement;
}
/**
* Close.
*
* @param statement the statement
*/
public static void close(Statement statement) {
if (statement != null) {
try {
statement.close();
} catch (SQLException e) {
throw new ConfigurationError("Closing statement failed", e);
}
}
}
/**
* Gets open statement count.
*
* @return the open statement count
*/
public static int getOpenStatementCount() {
return LoggingStatementHandler.getOpenStatementCount();
}
/**
* Gets open prepared statement count.
*
* @return the open prepared statement count
*/
public static int getOpenPreparedStatementCount() {
return LoggingPreparedStatementHandler.getOpenStatementCount();
}
// ResultSet handling ----------------------------------------------------------------------------------------------
/**
* Create logging result set result set.
*
* @param realResultSet the real result set
* @param statement the statement
* @return the result set
*/
public static ResultSet createLoggingResultSet(ResultSet realResultSet, Statement statement) {
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
return (ResultSet) Proxy.newProxyInstance(classLoader,
new Class[] {ResultSet.class},
new LoggingResultSetHandler(realResultSet, statement));
}
/**
* Gets statement.
*
* @param resultSet the result set
* @return the statement
*/
public static Statement getStatement(ResultSet resultSet) {
try {
return resultSet.getStatement();
} catch (SQLException e) {
throw new RuntimeException("Error getting statement from result set", e);
}
}
/**
* Close.
*
* @param resultSet the result set
*/
public static void close(ResultSet resultSet) {
if (resultSet != null) {
try {
resultSet.close();
} catch (SQLException e) {
throw new ConfigurationError("Closing statement failed", e);
}
}
}
/**
* Close result set and statement.
*
* @param resultSet the result set
*/
public static void closeResultSetAndStatement(ResultSet resultSet) {
if (resultSet != null) {
closeResultSetAndStatement(resultSet, getStatement(resultSet));
}
}
/**
* Close result set and statement.
*
* @param resultSet the result set
* @param statement the statement
*/
public static void closeResultSetAndStatement(ResultSet resultSet, Statement statement) {
if (resultSet != null) {
try {
close(resultSet);
} finally {
close(statement);
}
} else {
close(statement);
}
}
/**
* Gets open result set count.
*
* @return the open result set count
*/
public static int getOpenResultSetCount() {
return LoggingResultSetHandler.getOpenResultSetCount();
}
/**
* Parse and simplify result set object.
*
* @param resultSet the result set
* @return the object
* @throws SQLException the sql exception
*/
public static Object parseAndSimplifyResultSet(ResultSet resultSet) throws SQLException {
List