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

com.datastax.driver.core.ProtocolOptions 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.annotations.VisibleForTesting;

/**
 * Options of the Cassandra native binary protocol.
 */
public class ProtocolOptions {

    /**
     * Compression supported by the Cassandra binary protocol.
     */
    public enum Compression {
        /**
         * No compression
         */
        NONE("") {
            @Override
            FrameCompressor compressor() {
                return null;
            }
        },
        /**
         * Snappy compression
         */
        SNAPPY("snappy") {
            @Override
            FrameCompressor compressor() {
                return SnappyCompressor.instance;
            }
        },
        /**
         * LZ4 compression
         */
        LZ4("lz4") {
            @Override
            FrameCompressor compressor() {
                return LZ4Compressor.instance;
            }
        };

        final String protocolName;

        private Compression(String protocolName) {
            this.protocolName = protocolName;
        }

        abstract FrameCompressor compressor();

        static Compression fromString(String str) {
            for (Compression c : values()) {
                if (c.protocolName.equalsIgnoreCase(str))
                    return c;
            }
            return null;
        }

        @Override
        public String toString() {
            return protocolName;
        }
    }

    ;

    /**
     * The default port for Cassandra native binary protocol: 9042.
     */
    public static final int DEFAULT_PORT = 9042;

    /**
     * The default value for {@link #getMaxSchemaAgreementWaitSeconds()}: 10.
     */
    public static final int DEFAULT_MAX_SCHEMA_AGREEMENT_WAIT_SECONDS = 10;

    private volatile Cluster.Manager manager;

    private final int port;
    final ProtocolVersion initialProtocolVersion; // What the user asked us. Will be null by default.

    @VisibleForTesting
    volatile int maxSchemaAgreementWaitSeconds;

    private final SSLOptions sslOptions; // null if no SSL
    private final AuthProvider authProvider;

    private final boolean noCompact;

    private volatile Compression compression = Compression.NONE;

    /**
     * Creates a new {@code ProtocolOptions} instance using the {@code DEFAULT_PORT}
     * (and without SSL).
     */
    public ProtocolOptions() {
        this(DEFAULT_PORT);
    }

    /**
     * Creates a new {@code ProtocolOptions} instance using the provided port
     * (without SSL nor authentication).
     * 

* This is a shortcut for {@code new ProtocolOptions(port, null, AuthProvider.NONE)}. * * @param port the port to use for the binary protocol. */ public ProtocolOptions(int port) { this(port, null, DEFAULT_MAX_SCHEMA_AGREEMENT_WAIT_SECONDS, null, AuthProvider.NONE, false); } /** * Creates a new {@code ProtocolOptions} instance using the provided port * and SSL context. * * @param port the port to use for the binary protocol. * @param protocolVersion the protocol version to use. This can be {@code null}, in which case the * version used will be the biggest version supported by the first node the driver connects to. * See {@link Cluster.Builder#withProtocolVersion} for more details. * @param sslOptions the SSL options to use. Use {@code null} if SSL is not * to be used. * @param authProvider the {@code AuthProvider} to use for authentication against * the Cassandra nodes. */ public ProtocolOptions(int port, ProtocolVersion protocolVersion, int maxSchemaAgreementWaitSeconds, SSLOptions sslOptions, AuthProvider authProvider) { this(port, protocolVersion, maxSchemaAgreementWaitSeconds, sslOptions, authProvider, false); } /** * Creates a new {@code ProtocolOptions} instance using the provided port * and SSL context. * * @param port the port to use for the binary protocol. * @param protocolVersion the protocol version to use. This can be {@code null}, in which case the * version used will be the biggest version supported by the first node the driver connects to. * See {@link Cluster.Builder#withProtocolVersion} for more details. * @param sslOptions the SSL options to use. Use {@code null} if SSL is not * to be used. * @param authProvider the {@code AuthProvider} to use for authentication against * the Cassandra nodes. * @param noCompact whether or not to include the NO_COMPACT startup option. */ public ProtocolOptions(int port, ProtocolVersion protocolVersion, int maxSchemaAgreementWaitSeconds, SSLOptions sslOptions, AuthProvider authProvider, boolean noCompact) { this.port = port; this.initialProtocolVersion = protocolVersion; this.maxSchemaAgreementWaitSeconds = maxSchemaAgreementWaitSeconds; this.sslOptions = sslOptions; this.authProvider = authProvider; this.noCompact = noCompact; } void register(Cluster.Manager manager) { this.manager = manager; } /** * Returns the port used to connect to the Cassandra hosts. * * @return the port used to connect to the Cassandra hosts. */ public int getPort() { return port; } /** * The protocol version used by the Cluster instance. * * @return the protocol version in use. This might return {@code null} if a particular * version hasn't been forced by the user (using say {Cluster.Builder#withProtocolVersion}) * and this Cluster instance has not yet connected to any node (but as soon as the * Cluster instance is connected, this is guaranteed to return a non-null value). Note that * nodes that do not support this protocol version will be ignored. */ public ProtocolVersion getProtocolVersion() { return manager == null || manager.connectionFactory == null ? null : manager.connectionFactory.protocolVersion; } /** * Returns the compression used by the protocol. *

* By default, compression is not used. * * @return the compression used. */ public Compression getCompression() { return compression; } /** * Sets the compression to use. *

* Note that while this setting can be changed at any time, it will * only apply to newly created connections. * * @param compression the compression algorithm to use (or {@code * Compression.NONE} to disable compression). * @return this {@code ProtocolOptions} object. * @throws IllegalStateException if the compression requested is not * available. Most compression algorithms require that the relevant be * present in the classpath. If not, the compression will be * unavailable. */ public ProtocolOptions setCompression(Compression compression) { if (compression != Compression.NONE && compression.compressor() == null) throw new IllegalStateException("The requested compression is not available (some compression require a JAR to be found in the classpath)"); this.compression = compression; return this; } /** * Returns the maximum time to wait for schema agreement before returning from a DDL query. * * @return the time. */ public int getMaxSchemaAgreementWaitSeconds() { return maxSchemaAgreementWaitSeconds; } /** * The {@code SSLOptions} used by this cluster. * * @return the {@code SSLOptions} used by this cluster (set at the cluster creation time) * or {@code null} if SSL is not in use. */ public SSLOptions getSSLOptions() { return sslOptions; } /** * The {@code AuthProvider} used by this cluster. * * @return the {@code AuthProvided} used by this cluster (set at the cluster creation * time). If no authentication mechanism is in use (the default), {@code AuthProvided.NONE} * will be returned. */ public AuthProvider getAuthProvider() { return authProvider; } /** * @return Whether or not to include the NO_COMPACT startup option. */ public boolean isNoCompact() { return noCompact; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy