org.eolang.jeo.Assembler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeo-maven-plugin Show documentation
Show all versions of jeo-maven-plugin Show documentation
Optimisation of Java Bytecode via EOLANG
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2024 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.jeo;
import com.jcabi.log.Logger;
import java.nio.file.Path;
import java.util.stream.Stream;
/**
* Assembler.
* This class is used to assemble the project's EO source files to bytecode.
* @since 0.2
*/
final class Assembler {
/**
* Input folder with "xmir" files.
*/
private final Path input;
/**
* Output folder for the assembled classes.
*/
private final Path output;
/**
* Whether to verify the assembled classes.
*/
private final boolean verify;
/**
* Constructor.
* @param input Input folder with "xmir" files.
* @param output Output folder for the assembled classes.
* @param verify Whether to verify the assembled classes.
*/
Assembler(final Path input, final Path output, final boolean verify) {
this.input = input;
this.output = output;
this.verify = verify;
}
/**
* Assemble all "xmir" files.
* @since 0.2
*/
void assemble() {
final String assembling = "Assembling";
final String assembled = "assembled";
final Stream extends Representation> stream = new LoggedTranslator(
assembling,
assembled,
this.input,
this.output,
new BachedTranslator(
new LoggedTranslation(
assembling,
assembled,
new Assemble(this.output)
)
)
).apply(new XmirRepresentations(this.input, this.verify).all());
stream.forEach(
terminated -> Logger.info(
this, "Assembling of '%s' finished successfully.", terminated.details().name()
)
);
stream.close();
}
}