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

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

Go to download

A driver for Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol.

There is a newer version: 4.0.0
Show newest version
/*
 *      Copyright (C) 2012-2015 DataStax Inc.
 *
 *   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.datastax.driver.core;

import com.datastax.driver.core.policies.LoadBalancingPolicy;
import com.datastax.driver.core.policies.RetryPolicy;
import com.datastax.driver.core.policies.SpeculativeExecutionPolicy;

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

/**
 * Base class for custom {@link Statement} implementations that wrap another statement.
 * 

* This is intended for use with a custom {@link RetryPolicy}, {@link LoadBalancingPolicy} or * {@link SpeculativeExecutionPolicy}. The client code can wrap a statement to "mark" it, or * add information that will lead to special handling in the policy. *

* Example: *

 * {@code
 * // Define your own subclass
 * public class MyCustomStatement extends StatementWrapper {
 *     public MyCustomStatement(Statement wrapped) {
 *         super(wrapped);
 *     }
 * }
 *
 * // In your load balancing policy, add a special case for that new type
 * public class MyLoadBalancingPolicy implements LoadBalancingPolicy {
 *     public Iterator newQueryPlan(String loggedKeyspace, Statement statement) {
 *         if (statement instanceof MyCustomStatement) {
 *             // return specially crafted plan
 *         } else {
 *             // return default plan
 *         }
 *     }
 * }
 *
 * // The client wraps whenever it wants to trigger the special plan
 * Statement s = new SimpleStatement("...");
 * session.execute(s);                         // will use default plan
 * session.execute(new MyCustomStatement(s));  // will use special plan
 * }
 * 
*/ public abstract class StatementWrapper extends Statement { private final Statement wrapped; /** * Builds a new instance. * * @param wrapped the wrapped statement. */ protected StatementWrapper(Statement wrapped) { this.wrapped = wrapped; } Statement getWrappedStatement() { // Protect against multiple levels of wrapping (even though there is no practical reason for that) return (wrapped instanceof StatementWrapper) ? ((StatementWrapper) wrapped).getWrappedStatement() : wrapped; } @Override public Statement setConsistencyLevel(ConsistencyLevel consistency) { return wrapped.setConsistencyLevel(consistency); } @Override public ConsistencyLevel getConsistencyLevel() { return wrapped.getConsistencyLevel(); } @Override public Statement setSerialConsistencyLevel(ConsistencyLevel serialConsistency) { return wrapped.setSerialConsistencyLevel(serialConsistency); } @Override public ConsistencyLevel getSerialConsistencyLevel() { return wrapped.getSerialConsistencyLevel(); } @Override public Statement enableTracing() { return wrapped.enableTracing(); } @Override public Statement disableTracing() { return wrapped.disableTracing(); } @Override public boolean isTracing() { return wrapped.isTracing(); } @Override public ByteBuffer getRoutingKey(ProtocolVersion protocolVersion, CodecRegistry codecRegistry) { return wrapped.getRoutingKey(protocolVersion, codecRegistry); } @Override public String getKeyspace() { return wrapped.getKeyspace(); } @Override public Statement setRetryPolicy(RetryPolicy policy) { return wrapped.setRetryPolicy(policy); } @Override public RetryPolicy getRetryPolicy() { return wrapped.getRetryPolicy(); } @Override public Statement setFetchSize(int fetchSize) { return wrapped.setFetchSize(fetchSize); } @Override public int getFetchSize() { return wrapped.getFetchSize(); } @Override public Statement setDefaultTimestamp(long defaultTimestamp) { return wrapped.setDefaultTimestamp(defaultTimestamp); } @Override public long getDefaultTimestamp() { return wrapped.getDefaultTimestamp(); } @Override public Statement setReadTimeoutMillis(int readTimeoutMillis) { return wrapped.setReadTimeoutMillis(readTimeoutMillis); } @Override public int getReadTimeoutMillis() { return wrapped.getReadTimeoutMillis(); } @Override public Statement setPagingState(PagingState pagingState, CodecRegistry codecRegistry) { return wrapped.setPagingState(pagingState, codecRegistry); } @Override public Statement setPagingState(PagingState pagingState) { return wrapped.setPagingState(pagingState); } @Override public Statement setPagingStateUnsafe(byte[] pagingState) { return wrapped.setPagingStateUnsafe(pagingState); } @Override public ByteBuffer getPagingState() { return wrapped.getPagingState(); } @Override public Statement setIdempotent(boolean idempotent) { return wrapped.setIdempotent(idempotent); } @Override public Boolean isIdempotent() { return wrapped.isIdempotent(); } @Override public boolean isIdempotentWithDefault(QueryOptions queryOptions) { return wrapped.isIdempotentWithDefault(queryOptions); } @Override public Map getOutgoingPayload() { return wrapped.getOutgoingPayload(); } @Override public Statement setOutgoingPayload(Map payload) { return wrapped.setOutgoingPayload(payload); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy