Package net.sf.jasperreports.ant
Class JRAntCompileTask
- java.lang.Object
-
- org.apache.tools.ant.ProjectComponent
-
- org.apache.tools.ant.Task
-
- org.apache.tools.ant.taskdefs.MatchingTask
-
- net.sf.jasperreports.ant.JRBaseAntTask
-
- net.sf.jasperreports.ant.JRAntCompileTask
-
- All Implemented Interfaces:
Cloneable,org.apache.tools.ant.types.selectors.SelectorContainer
public class JRAntCompileTask extends JRBaseAntTask
Ant task for batch-compiling XML report design files. Works like the built-injavacAnt task.This task can take the following arguments:
- src
- destdir
- compiler
- classpath
- tempdir
- keepjava
- xmlvalidation
srcanddestdirare required. When this task executes, it will recursively scan thesrcanddestdirlooking for XML report design files to compile. This task makes its compile decision based on timestamp and only XML files that have no corresponding .jasper file or where the compiled report design file is older than the XML file will be compiled.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Field Summary
-
Fields inherited from class net.sf.jasperreports.ant.JRBaseAntTask
jasperReportsContext
-
-
Constructor Summary
Constructors Constructor Description JRAntCompileTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcheckParameters()Checks that all required attributes have been set and that the supplied values are valid.protected voidcompile()Performs the compilation of the selected report design files.org.apache.tools.ant.types.PathcreateClasspath()Adds a path to the classpath.org.apache.tools.ant.types.PathcreateSrc()Adds a path for source compilation.voidexecute()Executes the task.protected voidscanDir(File srcdir, File destdir, String[] files)Scans the directory looking for source files to be compiled.protected voidscanSrc()Scans the source directories looking for source files to be compiled.voidsetCompiler(String compiler)Sets the name of the report compiler class to use when compiling the XML report design files.voidsetDestdir(File destdir)Sets the destination directory into which the XML report design files should be compiled.voidsetKeepjava(Boolean keepjava)Sets a boolean flag that will instruct the Java bytecode report compilers to avoid deletion of the Java source files generated in the temporary working directory during report generation.voidsetSrcdir(org.apache.tools.ant.types.Path srcdir)Sets the source directories to find the XML report design files.voidsetTempdir(File tempdir)Sets the temporary working directory into which to store the temporary files generated during XML report design file compilation.voidsetXmlvalidation(boolean xmlvalidation)Instructs the XML parser to validate the XML report design file during compilation.-
Methods inherited from class org.apache.tools.ant.taskdefs.MatchingTask
add, addAnd, addContains, addContainsRegexp, addCustom, addDate, addDepend, addDepth, addDifferent, addFilename, addMajority, addModified, addNone, addNot, addOr, addPresent, addSelector, addSize, addType, appendSelector, createExclude, createExcludesFile, createInclude, createIncludesFile, createPatternSet, getDirectoryScanner, getImplicitFileSet, getSelectors, hasSelectors, selectorCount, selectorElements, setCaseSensitive, setDefaultexcludes, setExcludes, setExcludesfile, setFollowSymlinks, setIncludes, setIncludesfile, setProject, XsetIgnore, XsetItems
-
Methods inherited from class org.apache.tools.ant.Task
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
-
-
-
-
Method Detail
-
setSrcdir
public void setSrcdir(org.apache.tools.ant.types.Path srcdir)
Sets the source directories to find the XML report design files.- Parameters:
srcdir- source path
-
createSrc
public org.apache.tools.ant.types.Path createSrc()
Adds a path for source compilation.- Returns:
- source path
-
setDestdir
public void setDestdir(File destdir)
Sets the destination directory into which the XML report design files should be compiled.- Parameters:
destdir- destination directory
-
setTempdir
public void setTempdir(File tempdir)
Sets the temporary working directory into which to store the temporary files generated during XML report design file compilation. This is only used by the Java bytecode report compilers that need to have the Java source files stored on disk in order to compile them.If not set, the temporary working directory will be the current working directory, as specified by the
user.dirsystem property.- Parameters:
tempdir- temporary working directory
-
setKeepjava
public void setKeepjava(Boolean keepjava)
Sets a boolean flag that will instruct the Java bytecode report compilers to avoid deletion of the Java source files generated in the temporary working directory during report generation. This is useful when debugging.- Parameters:
keepjava- flag for preventing the deletion of generated Java source files
-
setCompiler
public void setCompiler(String compiler)
Sets the name of the report compiler class to use when compiling the XML report design files.The specified class should be an implementation of the
JRCompilerinterface. When specified, this value will temporarily override the value of thenet.sf.jasperreports.compiler.classsystem property.- Parameters:
compiler- report compiler class name
-
createClasspath
public org.apache.tools.ant.types.Path createClasspath()
Adds a path to the classpath.- Returns:
- classpath to use when compiling the report associated Java expressions class
-
setXmlvalidation
public void setXmlvalidation(boolean xmlvalidation)
Instructs the XML parser to validate the XML report design file during compilation.- Parameters:
xmlvalidation- flag for enabling/disabling the validation feature of the XML parser
-
execute
public void execute() throws org.apache.tools.ant.BuildExceptionExecutes the task.- Overrides:
executein classorg.apache.tools.ant.Task- Throws:
org.apache.tools.ant.BuildException
-
checkParameters
protected void checkParameters() throws org.apache.tools.ant.BuildExceptionChecks that all required attributes have been set and that the supplied values are valid.- Throws:
org.apache.tools.ant.BuildException
-
scanSrc
protected void scanSrc() throws org.apache.tools.ant.BuildExceptionScans the source directories looking for source files to be compiled.- Throws:
org.apache.tools.ant.BuildException
-
scanDir
protected void scanDir(File srcdir, File destdir, String[] files)
Scans the directory looking for source files to be compiled. The results are returned in the instance variablereportFilesMap.- Parameters:
srcdir- source directorydestdir- destination directoryfiles- included file names
-
compile
protected void compile() throws org.apache.tools.ant.BuildExceptionPerforms the compilation of the selected report design files.- Throws:
org.apache.tools.ant.BuildException
-
-