
org.semver.Comparer Maven / Gradle / Ivy
/**
* Copyright 2012-2014 Julien Eluard and contributors
* This project includes software developed by Julien Eluard: https://github.com/jeluard/
*
* 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.semver;
import javax.annotation.concurrent.NotThreadSafe;
import java.io.File;
import java.io.IOException;
import java.util.Set;
import org.osjava.jardiff.DiffCriteria;
import org.osjava.jardiff.DiffException;
import org.osjava.jardiff.JarDiff;
import org.semver.jardiff.DifferenceAccumulatingHandler;
/**
*
* Allows to compare content of JARs.
*
*/
@NotThreadSafe
public class Comparer {
private final DiffCriteria diffCriteria;
private final File previousJAR;
private final File currentJAR;
private final Set includes;
private final boolean includesAreRegExp;
private final Set excludes;
private final boolean excludesAreRegExp;
public Comparer(final DiffCriteria diffCriteria, final File previousJAR, final File currentJAR,
final Set includes, final Set excludes) {
this(diffCriteria, previousJAR, currentJAR, includes, false, excludes, false);
}
public Comparer(final DiffCriteria diffCriteria, final File previousJAR, final File currentJAR,
final Set includes, final boolean includesAreRegExp, final Set excludes, final boolean excludesAreRegExp) {
if (!previousJAR.isFile()) {
throw new IllegalArgumentException("<"+previousJAR+"> is not a valid file");
}
if (!currentJAR.isFile()) {
throw new IllegalArgumentException("<"+currentJAR+"> is not a valid file");
}
this.diffCriteria = diffCriteria;
this.previousJAR = previousJAR;
this.currentJAR = currentJAR;
this.includes = includes;
this.includesAreRegExp = includesAreRegExp;
this.excludes = excludes;
this.excludesAreRegExp = excludesAreRegExp;
}
/**
* @return all {@link Difference} between both JARs
* @throws IOException
*/
public final Delta diff() throws IOException {
try {
final JarDiff jarDiff = new JarDiff();
jarDiff.loadOldClasses(this.previousJAR);
jarDiff.loadNewClasses(this.currentJAR);
final DifferenceAccumulatingHandler handler = new DifferenceAccumulatingHandler(this.includes, this.includesAreRegExp, this.excludes, this.excludesAreRegExp);
jarDiff.diff(handler, diffCriteria);
return handler.getDelta();
} catch (DiffException e) {
throw new RuntimeException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy