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

org.onosproject.cluster.ClusterMetadata Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/*
 * Copyright 2015-present Open Networking Foundation
 *
 * 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 org.onosproject.cluster;

import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Objects;
import java.util.Set;

import com.google.common.base.MoreObjects;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;
import com.google.common.hash.Funnel;
import com.google.common.hash.PrimitiveSink;
import org.onosproject.net.Provided;
import org.onosproject.net.provider.ProviderId;

import static com.google.common.base.Charsets.UTF_8;
import static com.google.common.base.Preconditions.checkNotNull;

/**
 * Cluster metadata.
 * 

* Metadata specifies how a ONOS cluster is constituted and is made up of the collection * of {@link org.onosproject.cluster.ControllerNode nodes} and the collection of data * {@link org.onosproject.cluster.Partition partitions}. */ public final class ClusterMetadata implements Provided { private static final ProviderId NONE_PROVIDER_ID = new ProviderId("none", "none"); private static final String DEFAULT_CLUSTER_SECRET = "INSECURE!"; private final ProviderId providerId; private final String name; private final ControllerNode localNode; private final Set controllerNodes; private final String storageDnsService; private final Set storageNodes; private final String clusterSecret; public static final Funnel HASH_FUNNEL = new Funnel() { @Override public void funnel(ClusterMetadata cm, PrimitiveSink into) { into.putString(cm.name, UTF_8); } }; @SuppressWarnings("unused") private ClusterMetadata() { providerId = null; name = null; localNode = null; controllerNodes = null; storageDnsService = null; storageNodes = null; clusterSecret = null; } /** * @deprecated since 1.15. * @param providerId the provider Id * @param name The cluster Name * @param localNode The local node * @param controllerNodes Set of nodes in cluster * @param storageDnsService The storage DNS service name * @param storageNodes Set of storage nodes */ @Deprecated public ClusterMetadata( ProviderId providerId, String name, ControllerNode localNode, Set controllerNodes, String storageDnsService, Set storageNodes) { this(providerId, name, localNode, controllerNodes, storageDnsService, storageNodes, DEFAULT_CLUSTER_SECRET); } public ClusterMetadata( ProviderId providerId, String name, ControllerNode localNode, Set controllerNodes, Set storageNodes, String clusterSecret) { this(providerId, name, localNode, controllerNodes, null, storageNodes, clusterSecret); } public ClusterMetadata( ProviderId providerId, String name, ControllerNode localNode, Set controllerNodes, String storageDnsService, Set storageNodes, String clusterSecret) { this.providerId = checkNotNull(providerId); this.name = checkNotNull(name); this.localNode = localNode; this.controllerNodes = ImmutableSet.copyOf(checkNotNull(controllerNodes)); this.storageDnsService = storageDnsService; this.storageNodes = ImmutableSet.copyOf(checkNotNull(storageNodes)); this.clusterSecret = clusterSecret; } /** * @deprecated since 1.15. * @param name The cluster Name * @param localNode The local node * @param controllerNodes Set of nodes in cluster * @param storageNodes Set of storage nodes */ @Deprecated public ClusterMetadata( String name, ControllerNode localNode, Set controllerNodes, Set storageNodes) { this(NONE_PROVIDER_ID, name, localNode, controllerNodes, null, storageNodes, DEFAULT_CLUSTER_SECRET); } public ClusterMetadata( String name, ControllerNode localNode, Set controllerNodes, Set storageNodes, String clusterSecret) { this(NONE_PROVIDER_ID, name, localNode, controllerNodes, null, storageNodes, clusterSecret); } @Override public ProviderId providerId() { return providerId; } /** * Returns the name of the cluster. * * @return cluster name */ public String getName() { return this.name; } /** * Returns the DNS service through which to locate storage nodes. * * @return the DNS service through which to locate storage nodes */ public String getStorageDnsService() { return storageDnsService; } /** * Returns the local controller node. * @return the local controller node */ public ControllerNode getLocalNode() { return localNode; } /** * Returns the collection of {@link org.onosproject.cluster.ControllerNode nodes} that make up the cluster. * @return cluster nodes */ @Deprecated public Collection getNodes() { return getControllerNodes(); } /** * Returns the collection of {@link org.onosproject.cluster.ControllerNode nodes} that make up the cluster. * @return controller nodes */ public Collection getControllerNodes() { return controllerNodes; } /** * Returns the collection of storage nodes. * * @return the collection of storage nodes */ public Collection getStorageNodes() { return storageNodes; } /** * Returns the collection of {@link org.onosproject.cluster.Partition partitions} that make * up the cluster. * @return collection of partitions. * @deprecated since 1.14 */ @Deprecated public Collection getPartitions() { return Collections.emptySet(); } /** * Returns the cluster's shared secret. * @return key. */ public String getClusterSecret() { return clusterSecret; } @Override public String toString() { return MoreObjects.toStringHelper(ClusterMetadata.class) .add("providerId", providerId) .add("name", name) .add("controllerNodes", controllerNodes) .add("storageNodes", storageNodes) .toString(); } @Override public int hashCode() { return Arrays.deepHashCode(new Object[] {providerId, name, controllerNodes, storageNodes}); } /* * Provide a deep equality check of the cluster metadata (non-Javadoc) * * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object object) { if (object == null) { return false; } if (!ClusterMetadata.class.isInstance(object)) { return false; } ClusterMetadata that = (ClusterMetadata) object; return Objects.equals(this.name, that.name) && this.localNode.equals(that.localNode) && Objects.equals(this.controllerNodes.size(), that.controllerNodes.size()) && Sets.symmetricDifference(this.controllerNodes, that.controllerNodes).isEmpty() && Objects.equals(this.storageNodes.size(), that.storageNodes.size()) && Sets.symmetricDifference(this.storageNodes, that.storageNodes).isEmpty(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy