Class GlueGenTask
- java.lang.Object
-
- org.apache.tools.ant.ProjectComponent
-
- org.apache.tools.ant.Task
-
- com.jogamp.gluegen.ant.GlueGenTask
-
- All Implemented Interfaces:
Cloneable
public class GlueGenTask extends org.apache.tools.ant.TaskAn ANT
Taskfor usingGlueGen.Usage:
<gluegen src="[source C file]" outputrootdir="[optional output root dir]" includes="[optional directory pattern of include files to include]" excludes="[optional directory pattern of include files to exclude]" includeRefid="[optional FileSet or DirSet for include files]" literalInclude="[optional comma separated list of literal include directories, avoiding limitations of FileSet / DirSet issues]" emitter="[emitter class name]" config="[configuration file]" dumpCPP="[optional boolean]" debug="[optional boolean]" logLevel="[optional string]" />- Author:
- Rob Grzywinski rgrzywinski@yahoo.com
-
-
Constructor Summary
Constructors Constructor Description GlueGenTask()Create and add the VM and classname toCommandlineJava.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDirset(org.apache.tools.ant.types.DirSet dirset)Add a nestedDirSetto specify the files to include.org.apache.tools.ant.types.PathcreateClasspath()Add an optional classpath that defines the location ofGlueGenandGlueGen's dependencies.org.apache.tools.ant.types.PatternSet.NameEntrycreateExclude()Add an include file to the list that is to be exluded.org.apache.tools.ant.types.PatternSet.NameEntrycreateExcludesFile()Add an exclude file to the list.org.apache.tools.ant.types.PatternSet.NameEntrycreateInclude()Add an include file to the list.org.apache.tools.ant.types.PatternSet.NameEntrycreateIncludesFile()Add an include file to the list.voidexecute()Run the task.voidsetConfig(String configuration)Set the configuration file name.voidsetDebug(boolean debug)Set the debug flag (optional).voidsetDumpCPP(boolean dumpCPP)Set the dumpCPP flag (optional).voidsetEmitter(String emitter)Set the emitter class name.voidsetExcludes(String excludes)Set the set of exclude patterns.voidsetIncludeRefid(org.apache.tools.ant.types.Reference reference)Set aReferenceto simplify adding of complex sets of files to include.voidsetIncludes(String includes)Set the set of include patterns.voidsetLiteralInclude(String commaSeparatedIncludes)Set a literal include directories, separated with a comma.voidsetLogLevel(String logLevel)Set the logLevel (optional).voidsetOutputRootDir(String outputRootDir)Set the output root dir (optional).voidsetSrc(String sourceFile)Set the source C file that is to be parsed.-
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
-
setDebug
public void setDebug(boolean debug)
Set the debug flag (optional). This is called by ANT.
-
setLogLevel
public void setLogLevel(String logLevel)
Set the logLevel (optional). This is called by ANT.
-
setDumpCPP
public void setDumpCPP(boolean dumpCPP)
Set the dumpCPP flag (optional). This is called by ANT.
-
setOutputRootDir
public void setOutputRootDir(String outputRootDir)
Set the output root dir (optional). This is called by ANT.
- Parameters:
outputRootDir- the optional output root dir
-
setEmitter
public void setEmitter(String emitter)
Set the emitter class name. This is called by ANT.
- Parameters:
emitter- the name of the emitter class
-
setConfig
public void setConfig(String configuration)
Set the configuration file name. This is called by ANT.
- Parameters:
configuration- the name of the configuration file
-
setSrc
public void setSrc(String sourceFile)
Set the source C file that is to be parsed. This is called by ANT.
- Parameters:
sourceFile- the name of the source file
-
setLiteralInclude
public void setLiteralInclude(String commaSeparatedIncludes)
Set a literal include directories, separated with a comma. See the
literalIncludejavadoc for more information.- Parameters:
commaSeparatedIncludes- the comma separated directories to include
-
createInclude
public org.apache.tools.ant.types.PatternSet.NameEntry createInclude()
Add an include file to the list. This is called by ANT for a nested element.
- Returns:
PatternSet.NameEntry
-
createIncludesFile
public org.apache.tools.ant.types.PatternSet.NameEntry createIncludesFile()
Add an include file to the list. This is called by ANT for a nested element.
- Returns:
PatternSet.NameEntry
-
setIncludes
public void setIncludes(String includes)
Set the set of include patterns. Patterns may be separated by a comma or a space. This is called by ANT.
- Parameters:
includes- the string containing the include patterns
-
createExclude
public org.apache.tools.ant.types.PatternSet.NameEntry createExclude()
Add an include file to the list that is to be exluded. This is called by ANT for a nested element.
- Returns:
PatternSet.NameEntry
-
createExcludesFile
public org.apache.tools.ant.types.PatternSet.NameEntry createExcludesFile()
Add an exclude file to the list. This is called by ANT for a nested element.
- Returns:
PatternSet.NameEntry
-
setExcludes
public void setExcludes(String excludes)
Set the set of exclude patterns. Patterns may be separated by a comma or a space. This is called by ANT.
- Parameters:
includes- the string containing the exclude patterns
-
setIncludeRefid
public void setIncludeRefid(org.apache.tools.ant.types.Reference reference)
Set a
?Referenceto simplify adding of complex sets of files to include. This is called by ANT.- Parameters:
reference- aReferenceto aFileSetorDirSet- Throws:
org.apache.tools.ant.BuildException- if the specifiedReferenceis not either aFileSetorDirSet
-
addDirset
public void addDirset(org.apache.tools.ant.types.DirSet dirset)
Add a nested
DirSetto specify the files to include. This is called by ANT.- Parameters:
dirset- theDirSetto be added
-
createClasspath
public org.apache.tools.ant.types.Path createClasspath()
Add an optional classpath that defines the location of
GlueGenandGlueGen's dependencies.
-
execute
public void execute() throws org.apache.tools.ant.BuildExceptionRun the task. This involves validating the set attributes, creating the command line to be executed and finally executing the command.
- Overrides:
executein classorg.apache.tools.ant.Task- Throws:
org.apache.tools.ant.BuildException- See Also:
Task.execute()
-
-