/* * The contents of this file are subject to the terms of the Common Development and * Distribution License (the License). You may not use this file except in compliance with the * License. * * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the * specific language governing permission and limitations under the License. * * When distributing Covered Software, include this CDDL Header Notice in each file and include * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL * Header, with the fields enclosed by brackets [] replaced by your own identifying * information: "Portions Copyright [year] [name of copyright owner]". * * 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.forgerock.opendj.ldap.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;
}
}