JasperCpublic class JasperC extends DefaultJspCompilerAdapter The implementation of the jasper compiler.
This is a cut-and-paste of the original Jspc task. |
Fields Summary |
---|
org.apache.tools.ant.taskdefs.optional.jsp.JspMangler | manglerwhat produces java classes from .jsp files |
Methods Summary |
---|
public org.apache.tools.ant.taskdefs.optional.jsp.JspMangler | createMangler()
return mangler;
| public boolean | execute()Our execute method.
getJspc().log("Using jasper compiler", Project.MSG_VERBOSE);
CommandlineJava cmd = setupJasperCommand();
try {
// Create an instance of the compiler, redirecting output to
// the project log
Java java = new Java(owner);
Path p = getClasspath();
if (getJspc().getClasspath() != null) {
getProject().log("using user supplied classpath: " + p,
Project.MSG_DEBUG);
} else {
getProject().log("using system classpath: " + p,
Project.MSG_DEBUG);
}
java.setClasspath(p);
java.setDir(getProject().getBaseDir());
java.setClassname("org.apache.jasper.JspC");
//this is really irritating; we need a way to set stuff
String []args = cmd.getJavaCommand().getArguments();
for (int i = 0; i < args.length; i++) {
java.createArg().setValue(args[i]);
}
java.setFailonerror(getJspc().getFailonerror());
//we are forking here to be sure that if JspC calls
//System.exit() it doesn't halt the build
java.setFork(true);
java.setTaskName("jasperc");
java.execute();
return true;
} catch (Exception ex) {
if (ex instanceof BuildException) {
throw (BuildException) ex;
} else {
throw new BuildException("Error running jsp compiler: ",
ex, getJspc().getLocation());
}
} finally {
getJspc().deleteEmptyJavaFiles();
}
| private org.apache.tools.ant.types.Path | getClasspath()
Path p = getJspc().getClasspath();
if (p == null) {
p = new Path(getProject());
return p.concatSystemClasspath("only");
} else {
return p.concatSystemClasspath("ignore");
}
| private boolean | isTomcat5x()
AntClassLoader l = null;
try {
l = getProject().createClassLoader(getClasspath());
l.loadClass("org.apache.jasper.tagplugins.jstl.If");
return true;
} catch (ClassNotFoundException e) {
return false;
} finally {
if (l != null) {
l.cleanup();
}
}
| private org.apache.tools.ant.types.CommandlineJava | setupJasperCommand()build up a command line
CommandlineJava cmd = new CommandlineJava();
JspC jspc = getJspc();
addArg(cmd, "-d", jspc.getDestdir());
addArg(cmd, "-p", jspc.getPackage());
if (!isTomcat5x()) {
addArg(cmd, "-v" + jspc.getVerbose());
} else {
getProject().log("this task doesn't support Tomcat 5.x properly, "
+ "please use the Tomcat provided jspc task "
+ "instead");
}
addArg(cmd, "-uriroot", jspc.getUriroot());
addArg(cmd, "-uribase", jspc.getUribase());
addArg(cmd, "-ieplugin", jspc.getIeplugin());
addArg(cmd, "-webinc", jspc.getWebinc());
addArg(cmd, "-webxml", jspc.getWebxml());
addArg(cmd, "-die9");
if (jspc.isMapped()) {
addArg(cmd, "-mapped");
}
if (jspc.getWebApp() != null) {
File dir = jspc.getWebApp().getDirectory();
addArg(cmd, "-webapp", dir);
}
logAndAddFilesToCompile(getJspc(), getJspc().getCompileList(), cmd);
return cmd;
|
|