
org.hydracache.server.data.resolver.SyntacticReconciliationResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of conflict-resolver Show documentation
Show all versions of conflict-resolver Show documentation
Hydra Cache version conflict resolver module
The newest version!
/*
* Copyright 2008 the original author or authors.
*
* 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.hydracache.server.data.resolver;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import org.apache.commons.lang.Validate;
import org.hydracache.server.data.versioning.Versioned;
/**
* Resolves conflict by removing all versions that are equal and keeping only
* descendants.
*
* @author David Dossot ([email protected])
*/
public final class SyntacticReconciliationResolver implements ConflictResolver {
public ResolutionResult resolve(final Collection extends Versioned> conflict) {
Validate.notEmpty(conflict,
"conflict must be a non-null not-empty collection");
if (conflict.size() == 1) {
return new DefaultResolutionResult(conflict,
DefaultResolutionResult.EMPTY_VERSIONED_COLLECTION);
}
final List alive = new ArrayList();
final List expired = new ArrayList();
sortAliveFromExpired(conflict, alive, expired);
return new DefaultResolutionResult(alive, expired);
}
private static void sortAliveFromExpired(
final Collection extends Versioned> conflict, final List alive,
final List expired) {
final List sortedConflict = new ArrayList(
conflict);
Collections.sort(sortedConflict, VersionComparator.VERSION_COMPARATOR);
final int sizeOfConflict = sortedConflict.size();
for (int i = 0; i < sizeOfConflict; i++) {
final Versioned currentVersioned = sortedConflict.get(i);
if (i < sizeOfConflict - 1) {
final Versioned nextVersioned = sortedConflict.get(i + 1);
if (isVersionInConflict(currentVersioned, nextVersioned)) {
alive.add(currentVersioned);
alive.add(nextVersioned);
i++;
} else {
expired.add(currentVersioned);
}
} else {
alive.add(currentVersioned);
}
}
}
private static boolean isVersionInConflict(final Versioned o1,
final Versioned o2) {
return !o1.getVersion().isDescendantOf(o2.getVersion())
&& !o2.getVersion().isDescendantOf(o1.getVersion());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy