blob: 5b07f1f2b2a8202d1c57b584ef5b8af01fbe91ef [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Red Hat Inc., and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Mickael Istria (Red Hat Inc.) - initial API and implementation
******************************************************************************/
package org.eclipse.tycho.plugins.p2.extras;
import java.io.File;
import java.io.IOException;
import org.apache.maven.plugin.MojoExecution;
import org.codehaus.plexus.component.annotations.Component;
import org.codehaus.plexus.util.FileUtils;
import org.eclipse.tycho.artifactcomparator.ArtifactComparator;
import org.eclipse.tycho.artifactcomparator.ArtifactDelta;
import org.eclipse.tycho.zipcomparator.internal.SimpleArtifactDelta;
@Component(role = ArtifactComparator.class, hint = BytesArtifactComparator.HINT)
public class BytesArtifactComparator implements ArtifactComparator {
public static final String HINT = "bytes";
@Override
public ArtifactDelta getDelta(File baseline, File reactor, MojoExecution mojoExecution) throws IOException {
if (FileUtils.contentEquals(baseline, reactor)) {
return null;
}
return new SimpleArtifactDelta("Baseline " + baseline.getAbsolutePath() + " and reactor "
+ reactor.getAbsolutePath() + " are made of different bytes", baseline.getAbsolutePath(),
reactor.getAbsolutePath());
}
}