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

com.datastax.driver.core.AbstractSession Maven / Gradle / Ivy

Go to download

A driver for DataStax Enterprise (DSE) and Apache Cassandra 1.2+ clusters that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol, supporting DSE-specific features such as geospatial types, DSE Graph and DSE authentication.

There is a newer version: 2.4.0
Show newest version
/*
 * Copyright DataStax, Inc.
 *
 * This software can be used solely with DataStax Enterprise. Please consult the license at
 * http://www.datastax.com/terms/datastax-dse-driver-license-terms
 */
package com.datastax.driver.core;

import com.google.common.base.Function;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.common.util.concurrent.Uninterruptibles;
import io.netty.util.concurrent.EventExecutor;

import java.nio.ByteBuffer;
import java.util.Map;
import java.util.concurrent.ExecutionException;

/**
 * Abstract implementation of the Session interface.
 * 

* This is primarly intended to make mocking easier. */ public abstract class AbstractSession implements Session, ContinuousPagingSession { private static final boolean CHECK_IO_DEADLOCKS = SystemProperties.getBoolean( "com.datastax.driver.CHECK_IO_DEADLOCKS", true); /** * {@inheritDoc} */ @Override public ResultSet execute(String query) { return execute(new SimpleStatement(query)); } /** * {@inheritDoc} */ @Override public ResultSet execute(String query, Object... values) { return execute(new SimpleStatement(query, values)); } /** * {@inheritDoc} */ @Override public ResultSet execute(String query, Map values) { return execute(new SimpleStatement(query, values)); } /** * {@inheritDoc} */ @Override public ResultSet execute(Statement statement) { checkNotInEventLoop(); return executeAsync(statement).getUninterruptibly(); } /** * {@inheritDoc} */ @Override public ResultSetFuture executeAsync(String query) { return executeAsync(new SimpleStatement(query)); } /** * {@inheritDoc} */ @Override public ResultSetFuture executeAsync(String query, Map values) { return executeAsync(new SimpleStatement(query, values)); } /** * {@inheritDoc} */ @Override public ResultSetFuture executeAsync(String query, Object... values) { return executeAsync(new SimpleStatement(query, values)); } /** * {@inheritDoc} */ @Override public PreparedStatement prepare(String query) { checkNotInEventLoop(); try { return Uninterruptibles.getUninterruptibly(prepareAsync(query)); } catch (ExecutionException e) { throw DriverThrowables.propagateCause(e); } } /** * {@inheritDoc} */ @Override public PreparedStatement prepare(RegularStatement statement) { checkNotInEventLoop(); try { return Uninterruptibles.getUninterruptibly(prepareAsync(statement)); } catch (ExecutionException e) { throw DriverThrowables.propagateCause(e); } } /** * {@inheritDoc} */ @Override public ListenableFuture prepareAsync(String query) { return prepareAsync(query, null, null); } /** * {@inheritDoc} */ @Override public ListenableFuture prepareAsync(final RegularStatement statement) { if (statement.hasValues()) throw new IllegalArgumentException("A statement to prepare should not have values"); final CodecRegistry codecRegistry = getCluster().getConfiguration().getCodecRegistry(); ListenableFuture prepared = prepareAsync(statement.getQueryString(codecRegistry), statement.getKeyspace(), statement.getOutgoingPayload()); return Futures.transform(prepared, new Function() { @Override public PreparedStatement apply(PreparedStatement prepared) { ProtocolVersion protocolVersion = getCluster().getConfiguration().getProtocolOptions().getProtocolVersion(); ByteBuffer routingKey = statement.getRoutingKey(protocolVersion, codecRegistry); if (routingKey != null) prepared.setRoutingKey(routingKey); if (statement.getConsistencyLevel() != null) prepared.setConsistencyLevel(statement.getConsistencyLevel()); if (statement.getSerialConsistencyLevel() != null) prepared.setSerialConsistencyLevel(statement.getSerialConsistencyLevel()); if (statement.isTracing()) prepared.enableTracing(); prepared.setRetryPolicy(statement.getRetryPolicy()); prepared.setOutgoingPayload(statement.getOutgoingPayload()); prepared.setIdempotent(statement.isIdempotent()); return prepared; } }); } /** * Prepares the provided query string asynchronously, * sending along the provided custom payload, if any. * * @param query the CQL query string to prepare * @param keyspace the keyspace to prepare this query with * @param customPayload the custom payload to send along the query, or {@code null} if no payload is to be sent * @return a future on the prepared statement corresponding to {@code query}. */ protected abstract ListenableFuture prepareAsync(String query, String keyspace, Map customPayload); /** * {@inheritDoc} */ @Override public void close() { try { closeAsync().get(); } catch (ExecutionException e) { throw DriverThrowables.propagateCause(e); } catch (InterruptedException e) { Thread.currentThread().interrupt(); } } /** * Return the concrete {@link Cluster} instance driving the {@link Session}. * This is useful to override in cases where the Session implementation is backed by {@link DelegatingCluster}. * * @return the concrete cluster instance backing this session. */ protected Cluster getConcreteCluster() { return getCluster(); } /** * Checks that the current thread is not one of the Netty I/O threads used by the driver. *

* This method is called from all the synchronous methods of this class to prevent deadlock issues. *

* User code extending this class can also call this method at any time to check if any code * making blocking calls is being wrongly executed on a Netty I/O thread. *

* Note that the check performed by this method has a small overhead; if * that is an issue, checks can be disabled by setting the System property * {@code com.datastax.driver.CHECK_IO_DEADLOCKS} to {@code false}. * * @throws IllegalStateException if the current thread is one of the Netty I/O thread used by the driver. */ public void checkNotInEventLoop() { Connection.Factory connectionFactory = getConcreteCluster().manager.connectionFactory; if (!CHECK_IO_DEADLOCKS || connectionFactory == null) return; for (EventExecutor executor : connectionFactory.eventLoopGroup) { if (executor.inEventLoop()) { throw new IllegalStateException( "Detected a synchronous call on an I/O thread, this can cause deadlocks or unpredictable " + "behavior. This generally happens when a Future callback calls a synchronous Session " + "method (execute() or prepare()), or iterates a result set past the fetch size " + "(causing an internal synchronous fetch of the next page of results). " + "Avoid this in your callbacks, or schedule them on a different executor."); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy