2011-04-10 16:44:10 +02:00
|
|
|
package de.diddiz.util;
|
|
|
|
|
|
|
|
|
|
import java.sql.Array;
|
|
|
|
|
import java.sql.Blob;
|
|
|
|
|
import java.sql.CallableStatement;
|
|
|
|
|
import java.sql.Clob;
|
|
|
|
|
import java.sql.Connection;
|
|
|
|
|
import java.sql.DatabaseMetaData;
|
|
|
|
|
import java.sql.DriverManager;
|
|
|
|
|
import java.sql.NClob;
|
|
|
|
|
import java.sql.PreparedStatement;
|
|
|
|
|
import java.sql.SQLClientInfoException;
|
|
|
|
|
import java.sql.SQLException;
|
|
|
|
|
import java.sql.SQLWarning;
|
|
|
|
|
import java.sql.SQLXML;
|
|
|
|
|
import java.sql.Savepoint;
|
|
|
|
|
import java.sql.Statement;
|
|
|
|
|
import java.sql.Struct;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.Properties;
|
|
|
|
|
import java.util.Vector;
|
|
|
|
|
|
2011-05-02 14:55:38 +02:00
|
|
|
public class ConnectionPool {
|
|
|
|
|
private final Vector<JDCConnection> connections;
|
|
|
|
|
private final String url, user, password;
|
|
|
|
|
private final long timeout = 60000;
|
|
|
|
|
private final ConnectionReaper reaper;
|
|
|
|
|
private final int poolsize = 10;
|
2011-04-10 16:44:10 +02:00
|
|
|
|
2011-05-02 14:55:38 +02:00
|
|
|
public ConnectionPool(String url, String user, String password) throws ClassNotFoundException {
|
|
|
|
|
Class.forName("com.mysql.jdbc.Driver");
|
|
|
|
|
this.url = url;
|
|
|
|
|
this.user = user;
|
|
|
|
|
this.password = password;
|
|
|
|
|
connections = new Vector<JDCConnection>(poolsize);
|
|
|
|
|
reaper = new ConnectionReaper();
|
|
|
|
|
reaper.start();
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
2011-05-02 14:55:38 +02:00
|
|
|
public synchronized Connection getConnection() throws SQLException {
|
2011-05-03 22:11:46 +02:00
|
|
|
JDCConnection conn;
|
2011-05-02 14:55:38 +02:00
|
|
|
for (int i = 0; i < connections.size(); i++) {
|
2011-05-03 22:11:46 +02:00
|
|
|
conn = connections.get(i);
|
|
|
|
|
if (conn.lease()) {
|
|
|
|
|
if (conn.isValid())
|
|
|
|
|
return conn;
|
2011-05-02 14:55:38 +02:00
|
|
|
else {
|
2011-05-03 22:11:46 +02:00
|
|
|
connections.remove(conn);
|
2011-05-06 00:16:13 +02:00
|
|
|
conn.terminate();
|
2011-05-02 14:55:38 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-05-03 22:11:46 +02:00
|
|
|
conn = new JDCConnection(DriverManager.getConnection(url, user, password));
|
|
|
|
|
conn.lease();
|
|
|
|
|
if (!conn.isValid()) {
|
|
|
|
|
conn.terminate();
|
2011-05-02 14:55:38 +02:00
|
|
|
throw new SQLException("Failed to validate a brand new connection");
|
|
|
|
|
}
|
2011-05-03 22:11:46 +02:00
|
|
|
connections.add(conn);
|
|
|
|
|
return conn;
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
2011-05-02 14:55:38 +02:00
|
|
|
private synchronized void reapConnections() {
|
|
|
|
|
final long stale = System.currentTimeMillis() - timeout;
|
2011-05-03 22:11:46 +02:00
|
|
|
for (final JDCConnection conn : connections)
|
2011-05-03 10:47:44 +02:00
|
|
|
if (conn.inUse() && stale > conn.getLastUse() && !conn.isValid())
|
2011-05-03 22:11:46 +02:00
|
|
|
connections.remove(conn);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
2011-05-02 14:55:38 +02:00
|
|
|
public synchronized void closeConnections() {
|
2011-05-03 22:11:46 +02:00
|
|
|
for (final JDCConnection conn : connections) {
|
|
|
|
|
connections.remove(conn);
|
2011-05-06 00:16:13 +02:00
|
|
|
conn.terminate();
|
2011-05-02 14:55:38 +02:00
|
|
|
}
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
2011-05-02 14:55:38 +02:00
|
|
|
private class ConnectionReaper extends Thread
|
|
|
|
|
{
|
|
|
|
|
@Override
|
|
|
|
|
public void run() {
|
|
|
|
|
while (true) {
|
|
|
|
|
try {
|
|
|
|
|
Thread.sleep(300000);
|
|
|
|
|
} catch (final InterruptedException e) {}
|
|
|
|
|
reapConnections();
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
2011-04-11 01:03:53 +02:00
|
|
|
private class JDCConnection implements Connection
|
|
|
|
|
{
|
2011-04-26 22:15:29 +02:00
|
|
|
private final Connection conn;
|
2011-04-10 16:44:10 +02:00
|
|
|
private boolean inuse;
|
|
|
|
|
private long timestamp;
|
|
|
|
|
|
2011-04-20 00:42:21 +02:00
|
|
|
public JDCConnection(Connection conn) {
|
2011-04-10 16:44:10 +02:00
|
|
|
this.conn = conn;
|
2011-04-26 22:15:29 +02:00
|
|
|
inuse = false;
|
|
|
|
|
timestamp = 0;
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
2011-05-02 14:55:38 +02:00
|
|
|
public void terminate() {
|
|
|
|
|
try {
|
|
|
|
|
conn.close();
|
2011-05-03 10:47:44 +02:00
|
|
|
} catch (final SQLException ex) {}
|
2011-05-02 14:55:38 +02:00
|
|
|
}
|
|
|
|
|
|
2011-04-10 16:44:10 +02:00
|
|
|
public synchronized boolean lease() {
|
2011-05-03 22:11:46 +02:00
|
|
|
if (inuse)
|
2011-04-10 16:44:10 +02:00
|
|
|
return false;
|
2011-05-03 22:11:46 +02:00
|
|
|
else {
|
2011-04-10 16:44:10 +02:00
|
|
|
inuse = true;
|
|
|
|
|
timestamp = System.currentTimeMillis();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean inUse() {
|
|
|
|
|
return inuse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public long getLastUse() {
|
|
|
|
|
return timestamp;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-20 00:42:21 +02:00
|
|
|
public void close() {
|
2011-04-10 16:44:10 +02:00
|
|
|
inuse = false;
|
2011-05-06 00:10:06 +02:00
|
|
|
try {
|
|
|
|
|
if (!conn.getAutoCommit())
|
|
|
|
|
conn.setAutoCommit(true);
|
|
|
|
|
} catch (SQLException ex) {
|
2011-05-06 00:16:13 +02:00
|
|
|
connections.remove(conn);
|
2011-05-06 00:10:06 +02:00
|
|
|
terminate();
|
|
|
|
|
}
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public PreparedStatement prepareStatement(String sql) throws SQLException {
|
|
|
|
|
return conn.prepareStatement(sql);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public CallableStatement prepareCall(String sql) throws SQLException {
|
|
|
|
|
return conn.prepareCall(sql);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public Statement createStatement() throws SQLException {
|
|
|
|
|
return conn.createStatement();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public String nativeSQL(String sql) throws SQLException {
|
|
|
|
|
return conn.nativeSQL(sql);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public void setAutoCommit(boolean autoCommit) throws SQLException {
|
|
|
|
|
conn.setAutoCommit(autoCommit);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public boolean getAutoCommit() throws SQLException {
|
|
|
|
|
return conn.getAutoCommit();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public void commit() throws SQLException {
|
|
|
|
|
conn.commit();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public void rollback() throws SQLException {
|
|
|
|
|
conn.rollback();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public boolean isClosed() throws SQLException {
|
|
|
|
|
return conn.isClosed();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public DatabaseMetaData getMetaData() throws SQLException {
|
|
|
|
|
return conn.getMetaData();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public void setReadOnly(boolean readOnly) throws SQLException {
|
|
|
|
|
conn.setReadOnly(readOnly);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public boolean isReadOnly() throws SQLException {
|
|
|
|
|
return conn.isReadOnly();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public void setCatalog(String catalog) throws SQLException {
|
|
|
|
|
conn.setCatalog(catalog);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public String getCatalog() throws SQLException {
|
|
|
|
|
return conn.getCatalog();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public void setTransactionIsolation(int level) throws SQLException {
|
|
|
|
|
conn.setTransactionIsolation(level);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public int getTransactionIsolation() throws SQLException {
|
|
|
|
|
return conn.getTransactionIsolation();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public SQLWarning getWarnings() throws SQLException {
|
|
|
|
|
return conn.getWarnings();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-26 22:15:29 +02:00
|
|
|
@Override
|
2011-04-10 16:44:10 +02:00
|
|
|
public void clearWarnings() throws SQLException {
|
|
|
|
|
conn.clearWarnings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Array createArrayOf(String typeName, Object[] elements) throws SQLException {
|
|
|
|
|
return conn.createArrayOf(typeName, elements);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Blob createBlob() throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.createBlob();
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Clob createClob() throws SQLException {
|
|
|
|
|
return conn.createClob();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public NClob createNClob() throws SQLException {
|
|
|
|
|
return conn.createNClob();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public SQLXML createSQLXML() throws SQLException {
|
|
|
|
|
return conn.createSQLXML();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2011-04-26 22:15:29 +02:00
|
|
|
public Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException {
|
2011-04-10 16:44:10 +02:00
|
|
|
return conn.createStatement(resultSetType, resultSetConcurrency);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2011-04-26 22:15:29 +02:00
|
|
|
public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
|
|
|
|
|
return conn.createStatement(resultSetType, resultSetConcurrency, resultSetHoldability);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Struct createStruct(String typeName, Object[] attributes) throws SQLException {
|
|
|
|
|
return conn.createStruct(typeName, attributes);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Properties getClientInfo() throws SQLException {
|
|
|
|
|
return conn.getClientInfo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getClientInfo(String name) throws SQLException {
|
|
|
|
|
return conn.getClientInfo(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getHoldability() throws SQLException {
|
|
|
|
|
return conn.getHoldability();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, Class<?>> getTypeMap() throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.getTypeMap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isValid() {
|
|
|
|
|
try {
|
|
|
|
|
return conn.isValid(1);
|
|
|
|
|
} catch (final SQLException ex) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean isValid(int timeout) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.isValid(timeout);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.prepareCall(sql, resultSetType, resultSetConcurrency);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.prepareCall(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.prepareStatement(sql, autoGeneratedKeys);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public PreparedStatement prepareStatement(String sql, int[] columnIndexes) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.prepareStatement(sql, columnIndexes);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public PreparedStatement prepareStatement(String sql, String[] columnNames) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.prepareStatement(sql, columnNames);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.prepareStatement(sql, resultSetType, resultSetConcurrency);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.prepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void releaseSavepoint(Savepoint savepoint) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
conn.releaseSavepoint(savepoint);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void rollback(Savepoint savepoint) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
conn.rollback(savepoint);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void setClientInfo(Properties properties) throws SQLClientInfoException {
|
2011-05-03 10:47:44 +02:00
|
|
|
conn.setClientInfo(properties);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void setClientInfo(String name, String value) throws SQLClientInfoException {
|
2011-05-03 10:47:44 +02:00
|
|
|
conn.setClientInfo(name, value);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void setHoldability(int holdability) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
conn.setHoldability(holdability);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Savepoint setSavepoint() throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.setSavepoint();
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Savepoint setSavepoint(String name) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.setSavepoint(name);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void setTypeMap(Map<String, Class<?>> map) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
conn.setTypeMap(map);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean isWrapperFor(Class<?> iface) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.isWrapperFor(iface);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public <T> T unwrap(Class<T> iface) throws SQLException {
|
2011-05-03 10:47:44 +02:00
|
|
|
return conn.unwrap(iface);
|
2011-04-10 16:44:10 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|