com.github.adejanovski.cassandra.jdbc.PooledCassandraDataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-jdbc-wrapper Show documentation
Show all versions of cassandra-jdbc-wrapper Show documentation
JDBC wrapper for the DataStax CQL Java Driver.
/*
*
* 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 com.github.adejanovski.cassandra.jdbc;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.util.HashSet;
import java.util.Set;
import javax.sql.ConnectionEvent;
import javax.sql.ConnectionEventListener;
import javax.sql.DataSource;
import javax.sql.PooledConnection;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class PooledCassandraDataSource implements DataSource, ConnectionEventListener
{
private static final int CONNECTION_IS_VALID_TIMEOUT = 5;
private static final int MIN_POOL_SIZE = 4;
protected static final String NOT_SUPPORTED = "the Cassandra implementation does not support this method";
private static final Logger logger = LoggerFactory.getLogger(PooledCassandraDataSource.class);
private CassandraDataSource connectionPoolDataSource;
private volatile Set freeConnections = new HashSet();
private volatile Set usedConnections = new HashSet();
public PooledCassandraDataSource(CassandraDataSource connectionPoolDataSource) throws SQLException
{
this.connectionPoolDataSource = connectionPoolDataSource;
}
@Override
public synchronized Connection getConnection() throws SQLException
{
PooledCassandraConnection pooledConnection;
if (freeConnections.isEmpty())
{
pooledConnection = connectionPoolDataSource.getPooledConnection();
pooledConnection.addConnectionEventListener(this);
}
else
{
pooledConnection = freeConnections.iterator().next();
freeConnections.remove(pooledConnection);
}
usedConnections.add(pooledConnection);
return new ManagedConnection(pooledConnection);
}
@Override
public Connection getConnection(String username, String password) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
@Override
public synchronized void connectionClosed(ConnectionEvent event)
{
PooledCassandraConnection connection = (PooledCassandraConnection) event.getSource();
usedConnections.remove(connection);
int freeConnectionsCount = freeConnections.size();
if (freeConnectionsCount < MIN_POOL_SIZE)
{
freeConnections.add(connection);
}
else
{
try
{
connection.close();
}
catch (SQLException e)
{
logger.error(e.getMessage());
}
}
}
@Override
public synchronized void connectionErrorOccurred(ConnectionEvent event)
{
PooledCassandraConnection connection = (PooledCassandraConnection) event.getSource();
try
{
if (!connection.getConnection().isValid(CONNECTION_IS_VALID_TIMEOUT)) {
connection.getConnection().close();
}
}
catch (SQLException e)
{
logger.error(e.getMessage());
}
usedConnections.remove(connection);
}
public synchronized void close()
{
closePooledConnections(usedConnections);
closePooledConnections(freeConnections);
}
private void closePooledConnections(Set usedConnections2)
{
for (PooledConnection connection : usedConnections2)
{
try
{
connection.close();
}
catch (SQLException e)
{
logger.error(e.getMessage());
}
}
}
@Override
public int getLoginTimeout()
{
return connectionPoolDataSource.getLoginTimeout();
}
@Override
public void setLoginTimeout(int secounds)
{
connectionPoolDataSource.setLoginTimeout(secounds);
}
@Override
public PrintWriter getLogWriter()
{
return connectionPoolDataSource.getLogWriter();
}
@Override
public void setLogWriter(PrintWriter writer)
{
connectionPoolDataSource.setLogWriter(writer);
}
@Override
public boolean isWrapperFor(Class> arg0)
{
return connectionPoolDataSource.isWrapperFor(arg0);
}
@Override
public T unwrap(Class arg0) throws SQLException
{
return connectionPoolDataSource.unwrap(arg0);
}
// Method not annotated with @Override since getParentLogger() is a new method
// in the CommonDataSource interface starting with JDK7 and this annotation
// would cause compilation errors with JDK6.
public java.util.logging.Logger getParentLogger() throws SQLFeatureNotSupportedException
{
return connectionPoolDataSource.getParentLogger();
}
}