com.mongodb.ReplicaSetStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-java-driver Show documentation
Show all versions of mongo-java-driver Show documentation
The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson
/*
* Copyright (c) 2008-2014 MongoDB, 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.mongodb;
import java.util.List;
/**
* Keeps replica set status.
*/
public class ReplicaSetStatus {
private final ClusterDescription clusterDescription;
ReplicaSetStatus(final ClusterDescription clusterDescription) {
this.clusterDescription = clusterDescription;
}
/**
* Get the name of the replica set.
*
* @return the name of the replica set.
*/
public String getName() {
List any = clusterDescription.getAnyPrimaryOrSecondary();
return any.isEmpty() ? null : any.get(0).getSetName();
}
/**
* Gets the ServerAddress of the master server in this replica set.
*
* @return master or null if don't have one
* @throws MongoException
*/
public ServerAddress getMaster() {
List primaries = clusterDescription.getPrimaries();
return primaries.isEmpty() ? null : primaries.get(0).getAddress();
}
/**
* Checks to see if a given server is the primary server in this replica set.
*
* @param serverAddress the server to compare
* @return indication if the ServerAddress is the current Master/Primary
* @throws MongoException
*/
public boolean isMaster(final ServerAddress serverAddress) {
return getMaster().equals(serverAddress);
}
/**
* Gets the maximum size for a BSON object supported by the current master server. Note that this value may change over time depending
* on which server is master.
*
* @return the maximum size, or 0 if not obtained from servers yet.
* @throws MongoException
*/
public int getMaxBsonObjectSize() {
final List primaries = clusterDescription.getPrimaries();
return primaries.isEmpty() ? ServerDescription.getDefaultMaxDocumentSize() : primaries.get(0).getMaxDocumentSize();
}
@Override
public String toString() {
return "ReplicaSetStatus{" +
"name=" + getName() +
", cluster=" + clusterDescription +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy