org.gradle.api.internal.tasks.compile.CommandLineJavaCompiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2012 the original author or authors.
*
* 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 org.gradle.api.internal.tasks.compile;
import org.gradle.api.internal.tasks.SimpleWorkResult;
import org.gradle.api.tasks.WorkResult;
import org.gradle.api.tasks.compile.ForkOptions;
import org.gradle.internal.Factory;
import org.gradle.internal.jvm.Jvm;
import org.gradle.language.base.internal.compile.Compiler;
import org.gradle.process.ExecResult;
import org.gradle.process.internal.DefaultExecHandleBuilder;
import org.gradle.process.internal.ExecHandle;
import org.gradle.process.internal.ExecHandleBuilder;
import org.gradle.util.DeprecationLogger;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.Serializable;
/**
* Executes the Java command line compiler specified in {@code JavaCompileSpec.forkOptions.getExecutable()}.
*/
public class CommandLineJavaCompiler implements Compiler, Serializable {
private static final Logger LOGGER = LoggerFactory.getLogger(CommandLineJavaCompiler.class);
private final CompileSpecToArguments argumentsGenerator = new CommandLineJavaCompilerArgumentsGenerator();
@Override
public WorkResult execute(JavaCompileSpec spec) {
final ForkOptions forkOptions = spec.getCompileOptions().getForkOptions();
String executable = forkOptions.getJavaHome() != null ? Jvm.forHome(forkOptions.getJavaHome()).getJavacExecutable().getAbsolutePath() : getExecutable(forkOptions);
LOGGER.info("Compiling with Java command line compiler '{}'.", executable);
ExecHandle handle = createCompilerHandle(executable, spec);
executeCompiler(handle);
return new SimpleWorkResult(true);
}
private String getExecutable(final ForkOptions forkOptions) {
return DeprecationLogger.whileDisabled(new Factory() {
@Override
@SuppressWarnings("deprecation")
public String create() {
return forkOptions.getExecutable();
}
});
}
private ExecHandle createCompilerHandle(String executable, JavaCompileSpec spec) {
ExecHandleBuilder builder = new DefaultExecHandleBuilder();
builder.setWorkingDir(spec.getWorkingDir());
builder.setExecutable(executable);
argumentsGenerator.collectArguments(spec, new ExecSpecBackedArgCollector(builder));
builder.setIgnoreExitValue(true);
return builder.build();
}
private void executeCompiler(ExecHandle handle) {
handle.start();
ExecResult result = handle.waitForFinish();
if (result.getExitValue() != 0) {
throw new CompilationFailedException(result.getExitValue());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy