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

org.frameworkset.tran.mongodb.cdc.ReplicaSet Maven / Gradle / Ivy

Go to download

bboss etl,datastream,elasticsearch client with restful and java api without elasticsearch jar dependended.

There is a newer version: 7.3.0
Show newest version
/*
 *
 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
 */
package org.frameworkset.tran.mongodb.cdc;

import com.mongodb.ConnectionString;

import java.util.Objects;

public final class ReplicaSet implements Comparable {

    public static final String CLUSTER_RS_NAME = "cluster";

    private final String replicaSetName;
    private final ConnectionString connectionString;
    private final int hc;

    public ReplicaSet(String connectionString) {
        this(new ConnectionString(connectionString));
    }

    public ReplicaSet(ConnectionString connectionString) {
        this(connectionString.getRequiredReplicaSetName(), connectionString);
    }

    private ReplicaSet(String replicaSetName, ConnectionString connectionString) {
        this.connectionString = Objects.requireNonNull(connectionString, "Connection string cannot be null");
        this.replicaSetName = replicaSetName;
//        this.replicaSetName = Objects.requireNonNull(replicaSetName, "Replica set name cannot be null");
        this.hc = Objects.hash(connectionString);
    }

    /**
     * Creates a fake replica set representing entire sharded cluster
     *
     * @param connectionString connection string for sharded cluster
     * @return sharded cluster as fake replica set
     */
    public static ReplicaSet forCluster(ConnectionString connectionString) {
        return new ReplicaSet(CLUSTER_RS_NAME, connectionString);
    }

    /**
     * Same as {@link #forCluster(ConnectionString)}
     */
    public static ReplicaSet forCluster(String connectionString) {
        return new ReplicaSet(CLUSTER_RS_NAME, new ConnectionString(connectionString));
    }

    /**
     * Get the name of this replica set.
     *
     * @return the replica set name, or {@code null} if the addresses are for standalone servers.
     */
    public String replicaSetName() {
        return replicaSetName;
    }

    /**
     * Get connection string
     *
     * @return connection string for this replica set
     */
    public ConnectionString connectionString() {
        return connectionString;
    }

    /**
     * Return whether the address(es) represents a replica set, where the {@link #replicaSetName() replica set name} is
     * not {@code null}.
     *
     * @return {@code true} if this represents the address of a replica set, or {@code false} if it represents the
     *         address of a standalone server
     */
    public boolean hasReplicaSetName() {
        return replicaSetName != null;
    }

    @Override
    public int hashCode() {
        return hc;
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (obj instanceof ReplicaSet) {
            ReplicaSet that = (ReplicaSet) obj;
            return Objects.equals(this.replicaSetName, that.replicaSetName);
        }
        return false;
    }

    @Override
    public int compareTo(ReplicaSet that) {
        if (that == this) {
            return 0;
        }

        return replicaSetName.compareTo(that.replicaSetName);
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy