net.nicoulaj.maven.plugins.checksum.mojo.AbstractChecksumMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checksum-maven-plugin Show documentation
Show all versions of checksum-maven-plugin Show documentation
Compute project artifacts/dependencies/files checksum digests and output them to individual or summary files.
/*
* Copyright 2010-2012 Julien Nicoulaud
*
* 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 net.nicoulaj.maven.plugins.checksum.mojo;
import net.nicoulaj.maven.plugins.checksum.Constants;
import net.nicoulaj.maven.plugins.checksum.execution.Execution;
import net.nicoulaj.maven.plugins.checksum.execution.ExecutionException;
import net.nicoulaj.maven.plugins.checksum.execution.FailOnErrorExecution;
import net.nicoulaj.maven.plugins.checksum.execution.NeverFailExecution;
import net.nicoulaj.maven.plugins.checksum.execution.target.CsvSummaryFileTarget;
import net.nicoulaj.maven.plugins.checksum.execution.target.MavenLogTarget;
import net.nicoulaj.maven.plugins.checksum.execution.target.OneHashPerFileTarget;
import net.nicoulaj.maven.plugins.checksum.execution.target.XmlSummaryFileTarget;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.util.FileUtils;
import org.codehaus.plexus.util.StringUtils;
import java.io.File;
import java.util.Arrays;
import java.util.List;
/**
* Base class for {@code checksum-maven-plugin} mojos.
*
* @author Julien Nicoulaud
* @since 1.1
*/
abstract class AbstractChecksumMojo
extends AbstractMojo
{
/**
* The Maven project.
*
* @since 1.0
*/
@Parameter( property = "project", required = true, readonly = true )
protected MavenProject project;
/**
* The list of checksum algorithms used.
*
* Default value is MD5 and SHA-1.
Allowed values are CRC32, MD2, MD4, MD5, SHA-1, SHA-224, SHA-256, SHA-384,
* SHA-512, RIPEMD128, RIPEMD160, RIPEMD256, RIPEMD320, GOST3411 and Tiger.
*
* Use the following syntax:
*
<algorithms>
* <algorithm>MD5<algorithm>
* <algorithm>SHA-1<algorithm>
* </algorithms>
*
*
* @since 1.0
*/
@Parameter
protected List algorithms = Arrays.asList( Constants.DEFAULT_EXECUTION_ALGORITHMS );
/**
* Indicates whether the build will fail if there are errors.
*
* @since 1.0
*/
@Parameter( defaultValue = "true" )
protected boolean failOnError;
/**
* Encoding to use for generated files.
*
* @since 1.0
*/
@Parameter( property = "encoding", defaultValue = "${project.build.sourceEncoding}" )
protected String encoding = Constants.DEFAULT_ENCODING;
/**
* Indicates whether the build will print checksums in the build log.
*
* @since 1.0
*/
@Parameter( defaultValue = "false" )
protected boolean quiet;
/**
* {@inheritDoc}
*/
public void execute()
throws MojoExecutionException, MojoFailureException
{
// Prepare an execution.
Execution execution = ( failOnError ) ? new FailOnErrorExecution() : new NeverFailExecution( getLog() );
execution.setAlgorithms( algorithms );
execution.setFiles( getFilesToProcess() );
if ( !quiet )
{
execution.addTarget( new MavenLogTarget( getLog() ) );
}
if ( isIndividualFiles() )
{
File outputDirectory = null;
if ( StringUtils.isNotEmpty( getIndividualFilesOutputDirectory() ) )
{
outputDirectory = FileUtils.resolveFile( new File( project.getBuild().getDirectory() ),
getIndividualFilesOutputDirectory() );
}
execution.addTarget( new OneHashPerFileTarget( encoding, outputDirectory ) );
}
if ( isCsvSummary() )
{
execution.addTarget( new CsvSummaryFileTarget(
FileUtils.resolveFile( new File( project.getBuild().getDirectory() ), getCsvSummaryFile() ),
encoding ) );
}
if ( isXmlSummary() )
{
execution.addTarget( new XmlSummaryFileTarget(
FileUtils.resolveFile( new File( project.getBuild().getDirectory() ), getXmlSummaryFile() ),
encoding ) );
}
// Run the execution.
try
{
execution.run();
}
catch ( ExecutionException e )
{
getLog().error( e.getMessage() );
throw new MojoFailureException( e.getMessage() );
}
}
/**
* Build the list of files from which digests should be generated.
*
* @return the list of files that should be processed.
*/
protected abstract List getFilesToProcess();
protected abstract boolean isIndividualFiles();
protected abstract String getIndividualFilesOutputDirectory();
protected abstract boolean isCsvSummary();
protected abstract String getCsvSummaryFile();
protected abstract boolean isXmlSummary();
protected abstract String getXmlSummaryFile();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy