/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only * (the "License"). You may not use this file except in compliance * with the License. * * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt * or http://forgerock.org/license/CDDLv1.0.html. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at legal-notices/CDDLv1_0.txt. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: * Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END * * * Copyright 2013-2016 ForgeRock AS */ package org.opends.server.replication.server; import java.util.HashSet; import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentSkipListMap; import net.jcip.annotations.ThreadSafe; import org.opends.server.replication.common.CSN; import org.opends.server.replication.common.MultiDomainServerState; import org.opends.server.types.DN; /** * This is the changelog state stored in the changelogStateDB. For each * replication domain, it contains: *
* This class is used during replication initialization to decouple the code
* that reads the changelogStateDB from the code that makes use of its data.
*/
@ThreadSafe
public class ChangelogState
{
private final ConcurrentSkipListMap
* Note: Only use for tests!!
* This method should only be used by tests because it creates a lot of
* intermediate objects which is not suitable for production.
*
* @param other
* the ChangelogState to compare with
* @return true if the current ChangelogState is equal to the provided
* ChangelogState, false otherwise.
*/
public boolean isEqualTo(ChangelogState other)
{
if (other == null)
{
return false;
}
if (this == other)
{
return true;
}
return domainToGenerationId.equals(other.domainToGenerationId)
&& domainToServerIds.equals(other.domainToServerIds)
// Note: next line is not suitable for production
// because it creates lots of Lists and Maps
&& offlineReplicas.getSnapshot().equals(other.offlineReplicas.getSnapshot());
}
/** {@inheritDoc} */
@Override
public String toString()
{
return "domainToGenerationId=" + domainToGenerationId
+ ", domainToServerIds=" + domainToServerIds
+ ", offlineReplicas=" + offlineReplicas;
}
}