blob: f88d4b7c363c513c308993f2e481e4cf5e4226b2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.codehaus.groovy.ant;
import groovy.lang.GroovyClassLoader;
import org.apache.groovy.io.StringBuilderWriter;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.taskdefs.MatchingTask;
import org.apache.tools.ant.types.Path;
import org.apache.tools.ant.types.Reference;
import org.codehaus.groovy.control.CompilerConfiguration;
import org.codehaus.groovy.tools.ErrorReporter;
import java.io.File;
import java.io.PrintWriter;
import java.io.Writer;
import java.security.PrivilegedAction;
/**
* Support for compilation related tasks.
*/
public abstract class CompileTaskSupport
extends MatchingTask
{
protected final LoggingHelper log = new LoggingHelper(this);
protected Path src;
protected File destdir;
protected Path classpath;
protected CompilerConfiguration config = new CompilerConfiguration();
protected boolean failOnError = true;
public void setFailonerror(final boolean fail) {
failOnError = fail;
}
public boolean getFailonerror() {
return failOnError;
}
public Path createSrc() {
if (src == null) {
src = new Path(getProject());
}
return src.createPath();
}
public void setSrcdir(final Path dir) {
assert dir != null;
if (src == null) {
src = dir;
}
else {
src.append(dir);
}
}
public Path getSrcdir() {
return src;
}
public void setDestdir(final File dir) {
assert dir != null;
this.destdir = dir;
}
public void setClasspath(final Path path) {
assert path != null;
if (classpath == null) {
classpath = path;
}
else {
classpath.append(path);
}
}
public Path getClasspath() {
return classpath;
}
public Path createClasspath() {
if (classpath == null) {
classpath = new Path(getProject());
}
return classpath.createPath();
}
public void setClasspathRef(final Reference r) {
assert r != null;
createClasspath().setRefid(r);
}
public CompilerConfiguration createConfiguration() {
return config;
}
protected void validate() throws BuildException {
if (src == null) {
throw new BuildException("Missing attribute: srcdir (or one or more nested <src> elements).", getLocation());
}
if (destdir == null) {
throw new BuildException("Missing attribute: destdir", getLocation());
}
if (!destdir.exists()) {
throw new BuildException("Destination directory does not exist: " + destdir, getLocation());
}
}
protected GroovyClassLoader createClassLoader() {
@SuppressWarnings("removal") // TODO a future Groovy version should perform the operation not as a privileged action
GroovyClassLoader gcl = java.security.AccessController.doPrivileged((PrivilegedAction<GroovyClassLoader>) () ->
new GroovyClassLoader(ClassLoader.getSystemClassLoader(), config));
Path path = getClasspath();
if (path != null) {
final String[] filePaths = path.list();
for (String filePath : filePaths) {
gcl.addClasspath(filePath);
}
}
return gcl;
}
protected void handleException(final Exception e) throws BuildException {
assert e != null;
Writer writer = new StringBuilderWriter();
new ErrorReporter(e, false).write(new PrintWriter(writer));
String message = writer.toString();
if (failOnError) {
throw new BuildException(message, e, getLocation());
}
else {
log.error(message);
}
}
@Override
public void execute() throws BuildException {
validate();
try {
compile();
}
catch (Exception e) {
handleException(e);
}
}
protected abstract void compile() throws Exception;
}