
com.liferay.gradle.plugins.jasper.jspc.CompileJSPTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.gradle.plugins.jasper.jspc Show documentation
Show all versions of com.liferay.gradle.plugins.jasper.jspc Show documentation
The Jasper JSPC Gradle plugin lets you run the Liferay Jasper JSPC tool to compile the JavaServer Pages (JSP) files in your project.
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.gradle.plugins.jasper.jspc;
import com.liferay.gradle.util.FileUtil;
import com.liferay.gradle.util.GradleUtil;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.gradle.api.GradleException;
import org.gradle.api.Project;
import org.gradle.api.file.FileCollection;
import org.gradle.api.logging.Logger;
import org.gradle.api.logging.Logging;
import org.gradle.api.tasks.InputFiles;
import org.gradle.api.tasks.JavaExec;
import org.gradle.api.tasks.OutputDirectory;
import org.gradle.api.tasks.SkipWhenEmpty;
/**
* @author Andrea Di Giorgi
*/
public class CompileJSPTask extends JavaExec {
public CompileJSPTask() {
setMain("com.liferay.jasper.jspc.JspC");
}
@Override
public void exec() {
setArgs(getCompleteArgs());
FileCollection jspCClasspath = getJspCClasspath();
if (jspCClasspath != null) {
String jspClasspath = jspCClasspath.getAsPath();
setStandardInput(new ByteArrayInputStream(jspClasspath.getBytes()));
}
OutputStream taskErrorOutput = getErrorOutput();
ByteArrayOutputStream byteArrayOutputStream =
new ByteArrayOutputStream();
try {
setErrorOutput(byteArrayOutputStream);
super.exec();
String output = byteArrayOutputStream.toString();
if (output.contains("JasperException")) {
_logger.error(output);
throw new GradleException("Unable to compile JSPs");
}
else if (_logger.isInfoEnabled()) {
_logger.info(output);
}
}
finally {
try {
byteArrayOutputStream.writeTo(taskErrorOutput);
}
catch (IOException ioe) {
throw new GradleException(ioe.getMessage(), ioe);
}
setErrorOutput(taskErrorOutput);
}
}
@OutputDirectory
public File getDestinationDir() {
return GradleUtil.toFile(getProject(), _destinationDir);
}
@InputFiles
public FileCollection getJspCClasspath() {
return _jspCClasspath;
}
@InputFiles
@SkipWhenEmpty
public FileCollection getJSPFiles() {
Project project = getProject();
Map args = new HashMap<>();
args.put("dir", getWebAppDir());
List excludes = new ArrayList<>(2);
excludes.add("**/custom_jsps/**/*");
excludes.add("**/dependencies/**/*");
args.put("excludes", excludes);
args.put("include", "**/*.jsp");
return project.fileTree(args);
}
public File getWebAppDir() {
return GradleUtil.toFile(getProject(), _webAppDir);
}
public void setDestinationDir(Object destinationDir) {
_destinationDir = destinationDir;
}
public void setJspCClasspath(FileCollection jspCClasspath) {
_jspCClasspath = jspCClasspath;
}
@Override
public JavaExec setStandardOutput(OutputStream outputStream) {
throw new UnsupportedOperationException();
}
public void setWebAppDir(Object webAppDir) {
_webAppDir = webAppDir;
}
protected List getCompleteArgs() {
List completeArgs = new ArrayList<>(getArgs());
completeArgs.add("-d");
completeArgs.add(
FileUtil.relativize(getDestinationDir(), getWorkingDir()));
completeArgs.add("-webapp");
completeArgs.add(FileUtil.getAbsolutePath(getWebAppDir()));
return completeArgs;
}
private static final Logger _logger = Logging.getLogger(
CompileJSPTask.class);
private Object _destinationDir;
private FileCollection _jspCClasspath;
private Object _webAppDir;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy