All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.cassandra.jdbc.provider.datastax.DataStaxSessionWrapper Maven / Gradle / Ivy

Go to download

Type 4 JDBC driver for Apache Cassandra built on top of existing great libs like java driver from DataStax. It supports Cassandra 2.x and above with improved SQL compatibility.

The newest version!
/**
 * Copyright (C) 2015-2017, Zhichun Wu
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.cassandra.jdbc.provider.datastax;


import com.datastax.driver.core.*;
import com.github.cassandra.jdbc.CassandraErrors;
import org.pmw.tinylog.Logger;

import java.sql.SQLException;
import java.util.concurrent.atomic.AtomicInteger;

final class DataStaxSessionWrapper implements AutoCloseable {
    private final AtomicInteger references = new AtomicInteger(0);

    private Session session;

    DataStaxSessionWrapper(Session session) {
        this.session = session;
    }

    private void validateState() throws SQLException {
        if (session == null || session.isClosed()) {
            session = null;
            throw CassandraErrors.connectionClosedException();
        }
    }

    ResultSet execute(Statement statement) throws SQLException {
        validateState();

        return session.execute(statement);
    }

    ResultSetFuture executeAsync(Statement statement) throws SQLException {
        validateState();

        // DataStax Java driver is asynchronous by default: http://www.datastax.com/dev/blog/java-driver-async-queries
        // this should be only used in two scenarios:
        // 1) insertion when nobody cares if there's any data lost (e.g. vast amount of logs)
        // 2) batch processing based on execution plan (e.g. "select ... in" mentioned in above article)
        return session.executeAsync(statement);
    }

    Metadata getClusterMetaData() throws SQLException {
        validateState();

        return session.getCluster().getMetadata();
    }

    PreparedStatement prepare(String cql) throws SQLException {
        validateState();

        return session.prepare(cql);
    }

    String getLoggedKeyspace() throws SQLException {
        validateState();

        return session.getLoggedKeyspace();
    }

    void open() {
        references.incrementAndGet();
    }

    boolean isClosed() {
        return session == null || session.isClosed();
    }

    public void close() throws Exception {
        if (session == null || references.decrementAndGet() <= 0) {
            if (session != null) {
                Cluster cluster = session.getCluster();
                if (DataStaxClusterHelper.hasLiveSessions(cluster)) {
                    cluster.closeAsync().force();
                    Logger.info("Closing cluster@{} and all sessions underneath", cluster.hashCode());
                } else {
                    session.close();
                    Logger.info("Session@{} is closed", session.hashCode());
                }
                session = null;
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy