com.github.adejanovski.cassandra.jdbc.ManagedConnection 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 static com.github.adejanovski.cassandra.jdbc.Utils.NO_INTERFACE;
import static com.github.adejanovski.cassandra.jdbc.Utils.WAS_CLOSED_CON;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.PreparedStatement;
import java.sql.SQLClientInfoException;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.sql.SQLNonTransientConnectionException;
import java.sql.SQLTimeoutException;
import java.sql.SQLWarning;
import java.sql.Statement;
import java.util.HashSet;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
class ManagedConnection extends AbstractConnection implements Connection
{
private PooledCassandraConnection pooledCassandraConnection;
private CassandraConnection physicalConnection;
private Set statements = new HashSet();
ManagedConnection(PooledCassandraConnection pooledCassandraConnection)
{
this.pooledCassandraConnection = pooledCassandraConnection;
this.physicalConnection = pooledCassandraConnection.getConnection();
}
private void checkNotClosed() throws SQLNonTransientConnectionException
{
if (isClosed())
{
throw new SQLNonTransientConnectionException(WAS_CLOSED_CON);
}
}
@Override
public boolean isClosed()
{
return physicalConnection == null;
}
@Override
public synchronized void close() throws SQLException
{
for (Statement statement : statements)
{
if (!statement.isClosed())
{
statement.close();
}
}
pooledCassandraConnection.connectionClosed();
pooledCassandraConnection = null;
physicalConnection = null;
}
@Override
public T unwrap(Class iface) throws SQLException
{
throw new SQLFeatureNotSupportedException(String.format(NO_INTERFACE, iface.getSimpleName()));
}
@Override
public boolean isWrapperFor(Class> iface) throws SQLException
{
return false;
}
@Override
public Statement createStatement() throws SQLException
{
checkNotClosed();
Statement statement = physicalConnection.createStatement();
statements.add(statement);
return statement;
}
@Override
public Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException
{
checkNotClosed();
Statement statement = physicalConnection.createStatement(resultSetType, resultSetConcurrency);
statements.add(statement);
return statement;
}
@Override
public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException
{
checkNotClosed();
Statement statement = physicalConnection.createStatement(resultSetType, resultSetConcurrency, resultSetHoldability);
statements.add(statement);
return statement;
}
@Override
public PreparedStatement prepareStatement(String cql) throws SQLException
{
checkNotClosed();
ManagedPreparedStatement statement = pooledCassandraConnection.prepareStatement(this, cql);
statements.add(statement);
return statement;
}
@Override
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
@Override
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
throws SQLException
{
throw new SQLFeatureNotSupportedException(NOT_SUPPORTED);
}
@Override
public boolean isValid(int timeout) throws SQLTimeoutException
{
return physicalConnection.isValid(timeout);
}
@Override
public void setClientInfo(String name, String value) throws SQLClientInfoException
{
if (!isClosed())
{
physicalConnection.setClientInfo(name, value);
}
}
@Override
public void setClientInfo(Properties properties) throws SQLClientInfoException
{
if (!isClosed())
{
physicalConnection.setClientInfo(properties);
}
}
// all following methods have the form
// checkNotClosed-try-return/void-catch-notify-throw
@Override
public String nativeSQL(String sql) throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.nativeSQL(sql);
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public void setAutoCommit(boolean autoCommit) throws SQLException
{
checkNotClosed();
try
{
physicalConnection.setAutoCommit(autoCommit);
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public boolean getAutoCommit() throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.getAutoCommit();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public void commit() throws SQLException
{
checkNotClosed();
try
{
physicalConnection.commit();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public void rollback() throws SQLException
{
checkNotClosed();
try
{
physicalConnection.rollback();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public DatabaseMetaData getMetaData() throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.getMetaData();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public void setReadOnly(boolean readOnly) throws SQLException
{
checkNotClosed();
try
{
physicalConnection.setReadOnly(readOnly);
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public boolean isReadOnly() throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.isReadOnly();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public void setCatalog(String catalog) throws SQLException
{
checkNotClosed();
try
{
physicalConnection.setCatalog(catalog);
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public String getCatalog() throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.getCatalog();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public void setTransactionIsolation(int level) throws SQLException
{
checkNotClosed();
try
{
physicalConnection.setTransactionIsolation(level);
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public int getTransactionIsolation() throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.getTransactionIsolation();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public SQLWarning getWarnings() throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.getWarnings();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public void clearWarnings() throws SQLException
{
checkNotClosed();
try
{
physicalConnection.clearWarnings();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public void setHoldability(int holdability) throws SQLException
{
checkNotClosed();
try
{
physicalConnection.setHoldability(holdability);
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public int getHoldability() throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.getHoldability();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public String getClientInfo(String name) throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.getClientInfo(name);
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public Properties getClientInfo() throws SQLException
{
checkNotClosed();
try
{
return physicalConnection.getClientInfo();
}
catch (SQLException sqlException)
{
pooledCassandraConnection.connectionErrorOccurred(sqlException);
throw sqlException;
}
}
@Override
public String getSchema() throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public void setSchema(String arg0) throws SQLException {
// TODO Auto-generated method stub
}
@Override
public Map> getTypeMap() throws SQLException {
// TODO Auto-generated method stub
return null;
}
}