org.eolang.opeo.CompileMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opeo-maven-plugin Show documentation
Show all versions of opeo-maven-plugin Show documentation
Bytecode decompiler to eolang and back
The newest version!
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2023 Objectionary.com
*
* 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.opeo;
import com.jcabi.log.Logger;
import java.io.File;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.eolang.opeo.compilation.Compiler;
import org.eolang.opeo.compilation.DummyCompiler;
import org.eolang.opeo.compilation.SelectiveCompiler;
/**
* Compiles high-level EO representation into low-level representation.
* The output of this mojo is consumed by the "jeo-maven-plugin":
* link
*
* @since 0.1
*/
@Mojo(name = "compile", defaultPhase = LifecyclePhase.PROCESS_CLASSES)
public final class CompileMojo extends AbstractMojo {
/**
* Source directory.
* Where to take opeo xmir from.
*
* @since 0.2.0
* @checkstyle MemberNameCheck (6 lines)
*/
@Parameter(
property = "opeo.compile.sourcesDir",
defaultValue = "${project.build.directory}/generated-sources/opeo-xmir"
)
private File sourcesDir;
/**
* Target directory.
* Where to save jeo representations to.
*
* @since 0.2.0
* @checkstyle MemberNameCheck (6 lines)
*/
@Parameter(
property = "opeo.compile.outputDir",
defaultValue = "${project.build.directory}/generated-sources/jeo-xmir"
)
private File outputDir;
/**
* Whether the plugin is disabled.
* If it's disabled, then it won't do anything.
*
* @since 0.2.0
* @checkstyle MemberNameCheck (6 lines)
*/
@Parameter(
property = "opeo.compile.disabled",
defaultValue = "false"
)
private boolean disabled;
@Override
public void execute() {
final Compiler compiler;
if (this.disabled) {
Logger.info(this, "Compiler is disabled");
compiler = new DummyCompiler(this.sourcesDir.toPath(), this.outputDir.toPath());
} else {
compiler = new SelectiveCompiler(this.sourcesDir.toPath(), this.outputDir.toPath());
}
compiler.compile();
}
}