com.googlecode.kevinarpe.papaya.compare.ComparatorUtils Maven / Gradle / Ivy
package com.googlecode.kevinarpe.papaya.compare;
/*
* #%L
* This file is part of Papaya.
* %%
* Copyright (C) 2013 - 2014 Kevin Connor ARPE ([email protected])
* %%
* Papaya is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GPL Classpath Exception:
* This project is subject to the "Classpath" exception as provided in
* the LICENSE file that accompanied this code.
*
* Papaya is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Papaya. If not, see .
* #L%
*/
import com.googlecode.kevinarpe.papaya.annotation.FullyTested;
import com.googlecode.kevinarpe.papaya.argument.CollectionArgs;
import com.googlecode.kevinarpe.papaya.filesystem.DirectoryListing;
import java.util.Collection;
import java.util.Comparator;
/**
* Utilities for interface {@link Comparator}.
*
* @author Kevin Connor ARPE ([email protected])
*/
@FullyTested
public class ComparatorUtils {
// Disable default constructor
private ComparatorUtils() {
}
/**
* Converts a result from {@link Comparator#compare(Object, Object)} to -1, 0, or +1.
*
* @param result
* raw result, e.g., -17, 0, +17, etc.
*
* @return normalized compare result: -1, 0, or +1
*/
public static int normalizeCompareResult(int result) {
if (0 != result) {
result /= Math.abs(result);
}
return result;
}
/**
* Creates a new comparator from a collection of comparators which returns the first non-zero
* compare result. A short-circuit algorithm is used, thus not all comparators are guaranteed
* to run. For example, if the first result is non-zero, none of the remaining comparators are
* run. This is important if the comparators are stateful.
*
* As a special case, if the input list has exactly one element, it is returned unchanged.
*
* @param comparatorCollection
* collection of comparators to chain. Must not be {@code null}, empty, or contain
* {@code null} elements.
* @param
* type of object compared by each comparator
*
* @return new comparator chaining the input list of comparators
*
* @throws NullPointerException
* if {@code comparatorCollection} (or any element) is {@code null}
* @throws IllegalArgumentException
* if number of elements in {@code comparatorCollection} is zero
*
* @see DirectoryListing#sort(Comparator)
*/
public static Comparator chain(
final Collection> comparatorCollection) {
CollectionArgs.checkNotEmptyAndElementsNotNull(
comparatorCollection, "comparatorCollection");
if (1 == comparatorCollection.size()) {
for (Comparator comparator : comparatorCollection) {
return comparator;
}
}
return new Comparator() {
@Override
public int compare(TValue left, TValue right) {
for (Comparator comparator : comparatorCollection) {
int result = comparator.compare(left, right);
if (0 != result) {
return result;
}
}
return 0;
}
};
}
}