public abstract class AbstractCvsTask extends Task
Modifier and Type | Class and Description |
---|---|
static class |
AbstractCvsTask.Module |
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_COMPRESSION_LEVEL
Default compression level to use, if compression is enabled via
setCompression( true ).
|
Constructor and Description |
---|
AbstractCvsTask()
empty no-arg constructor
|
Modifier and Type | Method and Description |
---|---|
void |
addCommandArgument(Commandline c,
String arg)
This method adds a command line argument to an external command.
|
void |
addCommandArgument(String arg)
This needs to be public to allow configuration
of commands externally.
|
void |
addConfiguredCommandline(Commandline c)
Adds direct command-line to execute.
|
void |
addConfiguredCommandline(Commandline c,
boolean insertAtStart)
Configures and adds the given Commandline.
|
void |
addModule(AbstractCvsTask.Module m)
add a named module/package.
|
protected void |
configureCommandline(Commandline c)
Configure a commandline element for things like cvsRoot, quiet, etc.
|
void |
execute()
do the work
|
String |
getCommand()
accessor to a command line as string
This should be deprecated
AntoineLL July 23d 2003
|
String |
getCvsRoot()
access the CVSROOT variable
|
String |
getCvsRsh()
access the CVS_RSH variable
|
File |
getDest()
get the file where the checked out files should be placed
|
protected OutputStream |
getErrorStream()
access the stream to which the stderr from cvs should go
if this stream has already been set, it will be returned
if the stream has not yet been set, if the attribute error
has been set, the output stream will go to the file denoted by the error attribute
otherwise the stderr output will go to ant's logging system
|
protected ExecuteStreamHandler |
getExecuteStreamHandler()
find the handler and instantiate it if it does not exist yet
|
protected List<AbstractCvsTask.Module> |
getModules() |
protected OutputStream |
getOutputStream()
access the stream to which the stdout from cvs should go
if this stream has already been set, it will be returned
if the stream has not yet been set, if the attribute output
has been set, the output stream will go to the output file
otherwise the output will go to ant's logging system
|
String |
getPackage()
access the package or module to operate upon
|
File |
getPassFile()
find the password file
|
int |
getPort()
access the port of CVS
|
String |
getTag()
tag or branch
|
protected void |
removeCommandline(Commandline c)
remove a particular command from a vector of command lines
|
protected void |
runCommand(Commandline toExecute)
Sets up the environment for toExecute and then runs it.
|
void |
setAppend(boolean value)
Whether to append output/error when redirecting to a file.
|
void |
setCommand(String c)
The CVS command to execute.
|
void |
setCompression(boolean usecomp)
If true, this is the same as compressionlevel="3".
|
void |
setCompressionLevel(int level)
If set to a value 1-9 it adds -zN to the cvs command line, else
it disables compression.
|
void |
setCvsRoot(String root)
The CVSROOT variable.
|
void |
setCvsRsh(String rsh)
The CVS_RSH variable.
|
void |
setDate(String p)
Use the most recent revision no later than the given date.
|
void |
setDest(File dest)
The directory where the checked out files should be placed.
|
void |
setError(File error)
The file to direct standard error from the command.
|
protected void |
setErrorStream(OutputStream errorStream)
sets a stream to which the stderr from the cvs exe should go
|
void |
setExecuteStreamHandler(ExecuteStreamHandler handler)
sets the handler
|
void |
setFailOnError(boolean failOnError)
Stop the build process if the command exits with
a return code other than 0.
|
void |
setNoexec(boolean ne)
If true, report only and don't change any files.
|
void |
setOutput(File output)
The file to direct standard output from the command.
|
protected void |
setOutputStream(OutputStream outputStream)
sets a stream to which the output from the cvs executable should be sent
|
void |
setPackage(String p)
The package/module to operate upon.
|
void |
setPassfile(File passFile)
Password file to read passwords from.
|
void |
setPort(int port)
Port used by CVS to communicate with the server.
|
void |
setQuiet(boolean q)
If true, suppress informational messages.
|
void |
setReallyquiet(boolean q)
If true, suppress all messages.
|
void |
setTag(String p)
The tag of the package/module to operate upon.
|
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
clone, getDescription, getLocation, getProject, setDescription, setLocation, setProject
public static final int DEFAULT_COMPRESSION_LEVEL
public void addCommandArgument(Commandline c, String arg)
c
- command line to which one argument should be addedarg
- argument to addpublic void addCommandArgument(String arg)
arg
- command argumentpublic void addConfiguredCommandline(Commandline c)
c
- command line to executepublic void addConfiguredCommandline(Commandline c, boolean insertAtStart)
c
- commandline to insertinsertAtStart
- If true, c is
inserted at the beginning of the vector of command linespublic void addModule(AbstractCvsTask.Module m)
protected void configureCommandline(Commandline c)
c
- the command line which will be configured
if the commandline is initially null, the function is a noop
otherwise the function append to the commandline arguments concerning
public void execute() throws BuildException
execute
in class Task
BuildException
- if failonerror is set to true and the
cvs command fails.public String getCommand()
public String getCvsRoot()
public String getCvsRsh()
public File getDest()
protected OutputStream getErrorStream()
protected ExecuteStreamHandler getExecuteStreamHandler()
protected List<AbstractCvsTask.Module> getModules()
protected OutputStream getOutputStream()
public String getPackage()
public File getPassFile()
public int getPort()
public String getTag()
protected void removeCommandline(Commandline c)
c
- command line which should be removedprotected void runCommand(Commandline toExecute) throws BuildException
toExecute
- the command line to executeBuildException
- if failonError is set to true and the cvs command failspublic void setAppend(boolean value)
value
- true indicated you want to appendpublic void setCommand(String c)
c
- a command as stringpublic void setCompression(boolean usecomp)
usecomp
- If true, turns on compression using default
level, AbstractCvsTask.DEFAULT_COMPRESSION_LEVEL.public void setCompressionLevel(int level)
level
- compression level 1 to 9public void setCvsRoot(String root)
root
- the CVSROOT variablepublic void setCvsRsh(String rsh)
rsh
- the CVS_RSH variablepublic void setDate(String p)
p
- a date as string in a format that the CVS executable
can understand see man cvspublic void setDest(File dest)
Note that this is different from CVS's -d command line switch as Ant will never shorten pathnames to avoid empty directories.
dest
- directory where the checked out files should be placedpublic void setError(File error)
error
- a file to which stderr should goprotected void setErrorStream(OutputStream errorStream)
errorStream
- an output stream willing to process stderrpublic void setExecuteStreamHandler(ExecuteStreamHandler handler)
handler
- a handler able of processing the output and error streams from the cvs exepublic void setFailOnError(boolean failOnError)
failOnError
- stop the build process if the command exits with
a return code other than 0public void setNoexec(boolean ne)
ne
- if true, report only and do not change any files.public void setOutput(File output)
output
- a file to which stdout should goprotected void setOutputStream(OutputStream outputStream)
outputStream
- stream to which the stdout from cvs should gopublic void setPackage(String p)
p
- package or module to operate uponpublic void setPassfile(File passFile)
passFile
- password file to read passwords frompublic void setPort(int port)
port
- port of CVSpublic void setQuiet(boolean q)
q
- if true, suppress informational messagespublic void setReallyquiet(boolean q)
q
- if true, suppress all messagespublic void setTag(String p)
p
- tag