org.gradle.api.internal.tasks.compile.NormalizingJavaCompiler Maven / Gradle / Ivy
/*
* Copyright 2009 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 com.google.common.base.Joiner;
import com.google.common.collect.Lists;
import org.gradle.api.file.FileCollection;
import org.gradle.api.internal.file.collections.SimpleFileCollection;
import org.gradle.api.internal.tasks.SimpleWorkResult;
import org.gradle.api.logging.Logger;
import org.gradle.api.logging.Logging;
import org.gradle.api.specs.Spec;
import org.gradle.api.tasks.WorkResult;
import org.gradle.language.base.internal.compile.Compiler;
import org.gradle.util.CollectionUtils;
import java.io.File;
import java.util.List;
import static org.gradle.internal.FileUtils.hasExtension;
/**
* A Java {@link Compiler} which does some normalization of the compile configuration and behaviour before delegating to some other compiler.
*/
public class NormalizingJavaCompiler implements Compiler {
private static final Logger LOGGER = Logging.getLogger(NormalizingJavaCompiler.class);
private final Compiler delegate;
public NormalizingJavaCompiler(Compiler delegate) {
this.delegate = delegate;
}
@Override
public WorkResult execute(JavaCompileSpec spec) {
resolveAndFilterSourceFiles(spec);
resolveClasspath(spec);
resolveNonStringsInCompilerArgs(spec);
logSourceFiles(spec);
logCompilerArguments(spec);
return delegateAndHandleErrors(spec);
}
private void resolveAndFilterSourceFiles(JavaCompileSpec spec) {
// this mimics the behavior of the Ant javac task (and therefore AntJavaCompiler),
// which silently excludes files not ending in .java
FileCollection javaOnly = spec.getSource().filter(new Spec() {
public boolean isSatisfiedBy(File element) {
return hasExtension(element, ".java");
}
});
spec.setSource(new SimpleFileCollection(javaOnly.getFiles()));
}
private void resolveClasspath(JavaCompileSpec spec) {
spec.setClasspath(new SimpleFileCollection(Lists.newArrayList(spec.getClasspath())));
}
private void resolveNonStringsInCompilerArgs(JavaCompileSpec spec) {
// in particular, this is about GStrings
spec.getCompileOptions().setCompilerArgs(CollectionUtils.toStringList(spec.getCompileOptions().getCompilerArgs()));
}
private void logSourceFiles(JavaCompileSpec spec) {
if (!spec.getCompileOptions().isListFiles()) {
return;
}
StringBuilder builder = new StringBuilder();
builder.append("Source files to be compiled:");
for (File file : spec.getSource()) {
builder.append('\n');
builder.append(file);
}
LOGGER.quiet(builder.toString());
}
private void logCompilerArguments(JavaCompileSpec spec) {
if (!LOGGER.isDebugEnabled()) {
return;
}
List compilerArgs = new JavaCompilerArgumentsBuilder(spec).includeLauncherOptions(true).includeSourceFiles(true).build();
String joinedArgs = Joiner.on(' ').join(compilerArgs);
LOGGER.debug("Compiler arguments: {}", joinedArgs);
}
private WorkResult delegateAndHandleErrors(JavaCompileSpec spec) {
try {
return delegate.execute(spec);
} catch (CompilationFailedException e) {
if (spec.getCompileOptions().isFailOnError()) {
throw e;
}
LOGGER.debug("Ignoring compilation failure.");
return new SimpleWorkResult(false);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy