org.eolang.maven.SafeMojo Maven / Gradle / Ivy
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2022 Yegor Bugayenko
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.eolang.maven;
import com.yegor256.tojos.Tojo;
import com.yegor256.tojos.Tojos;
import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.function.Function;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.BuildPluginManager;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.slf4j.impl.StaticLoggerBinder;
/**
* Abstract Mojo for all others.
*
* @since 0.1
*/
abstract class SafeMojo extends AbstractMojo {
/**
* Maven project.
* @checkstyle VisibilityModifierCheck (5 lines)
*/
@Parameter(defaultValue = "${project}", readonly = true)
protected MavenProject project;
/**
* Maven session.
* @checkstyle VisibilityModifierCheck (5 lines)
*/
@Parameter(defaultValue = "${session}", readonly = true)
protected MavenSession session;
/**
* Maven plugin manager.
* @checkstyle VisibilityModifierCheck (5 lines)
*/
@Component
protected BuildPluginManager manager;
/**
* File with foreign "tojos".
* @checkstyle VisibilityModifierCheck (10 lines)
*/
@Parameter(
property = "eo.foreign",
required = true,
defaultValue = "${project.build.directory}/eo-foreign.csv"
)
protected File foreign;
/**
* Format of "foreign" file ("json" or "csv").
* @checkstyle MemberNameCheck (7 lines)
* @checkstyle VisibilityModifierCheck (5 lines)
*/
@SuppressWarnings("PMD.AvoidDuplicateLiterals")
@Parameter(property = "eo.foreignFormat", required = true, defaultValue = "csv")
protected String foreignFormat = "csv";
/**
* Target directory.
* @checkstyle MemberNameCheck (10 lines)
* @checkstyle VisibilityModifierCheck (10 lines)
*/
@Parameter(
property = "eo.targetDir",
required = true,
defaultValue = "${project.build.directory}/eo"
)
protected File targetDir;
/**
* Current scope (either "compile" or "test").
* @checkstyle VisibilityModifierCheck (5 lines)
*/
@Parameter(property = "eo.scope")
protected String scope = "compile";
@Override
public final void execute() throws MojoFailureException {
StaticLoggerBinder.getSingleton().setMavenLog(this.getLog());
try {
this.exec();
} catch (final IOException ex) {
throw new MojoFailureException(
String.format(
"Failed to execute %s",
this.getClass().getCanonicalName()
),
ex
);
}
}
/**
* Tojos to use.
* @return Tojos to use
*/
protected final Tojos tojos() {
return new Catalog(this.foreign.toPath(), this.foreignFormat).make();
}
/**
* Tojos to use, in my scope only.
* @return Tojos to use
*/
protected final Tojos scopedTojos() {
final Tojos tojos = this.tojos();
return new Tojos() {
@Override
public Tojo add(final String name) {
final Tojo tojo = tojos.add(name);
if (!tojo.exists(AssembleMojo.ATTR_SCOPE)) {
tojo.set(AssembleMojo.ATTR_SCOPE, SafeMojo.this.scope);
}
return tojo;
}
@Override
public List select(final Function filter) {
return tojos.select(
t -> filter.apply(t)
&& (t.get(AssembleMojo.ATTR_SCOPE).equals(SafeMojo.this.scope)
|| "test".equals(SafeMojo.this.scope))
);
}
};
}
/**
* Exec it.
* @throws IOException If fails
*/
abstract void exec() throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy