|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.tools.ant.ProjectComponent org.apache.tools.ant.Task org.apache.tools.ant.taskdefs.optional.EchoProperties
public class EchoProperties
Displays all the current properties in the build. The output can be sent to a file if desired.
Attribute "destfile" defines a file to send the properties to. This can be processed as a standard property file later.
Attribute "prefix" defines a prefix which is used to filter the properties only those properties starting with this prefix will be echoed.
By default, the "failonerror" attribute is enabled. If an error occurs while writing the properties to a file, and this attribute is enabled, then a BuildException will be thrown. If disabled, then IO errors will be reported as a log statement, but no error will be thrown.
Examples:
<echoproperties />Report the current properties to the log.
<echoproperties destfile="my.properties" />Report the current properties to the file "my.properties", and will fail the build if the file could not be created or written to.
<echoproperties destfile="my.properties" failonerror="false" prefix="ant" />Report all properties beginning with 'ant' to the file "my.properties", and will log a message if the file could not be created or written to, but will still allow the build to continue.
Nested Class Summary | |
---|---|
static class |
EchoProperties.FormatAttribute
A enumerated type for the format attribute. |
Field Summary |
---|
Fields inherited from class org.apache.tools.ant.Task |
---|
target, taskName, taskType, wrapper |
Fields inherited from class org.apache.tools.ant.ProjectComponent |
---|
description, location, project |
Constructor Summary | |
---|---|
EchoProperties()
|
Method Summary | |
---|---|
void |
addPropertyset(PropertySet ps)
A set of properties to write. |
void |
execute()
Run the task. |
protected void |
jdkSaveProperties(java.util.Properties props,
java.io.OutputStream os,
java.lang.String header)
JDK 1.2 allows for the safer method Properties.store(OutputStream, String), which throws an IOException on an output error. |
protected void |
saveProperties(java.util.Hashtable allProps,
java.io.OutputStream os)
Send the key/value pairs in the hashtable to the given output stream. |
void |
setDestfile(java.io.File destfile)
Set a file to store the property output. |
void |
setFailOnError(boolean failonerror)
If true, the task will fail if an error occurs writing the properties file, otherwise errors are just logged. |
void |
setFormat(EchoProperties.FormatAttribute ea)
Set the output format - xml or text. |
void |
setPrefix(java.lang.String prefix)
If the prefix is set, then only properties which start with this prefix string will be recorded. |
void |
setRegex(java.lang.String regex)
If the regex is set, then only properties whose names match it will be recorded. |
void |
setSrcfile(java.io.File file)
Sets the input file. |
protected void |
xmlSaveProperties(java.util.Properties props,
java.io.OutputStream os)
Output the properties as xml output. |
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 |
Methods inherited from class org.apache.tools.ant.ProjectComponent |
---|
clone, getDescription, getLocation, getProject, setDescription, setLocation, setProject |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public EchoProperties()
Method Detail |
---|
public void setSrcfile(java.io.File file)
file
- the input filepublic void setDestfile(java.io.File destfile)
destfile
- file to store the property outputpublic void setFailOnError(boolean failonerror)
failonerror
- true if IO exceptions are reported as build
exceptions, or false if IO exceptions are ignored.public void setPrefix(java.lang.String prefix)
For example, if the attribute is set as:
<echoproperties prefix="ant." />then the property "ant.home" will be recorded, but "ant-example" will not.
prefix
- The new prefix valuepublic void setRegex(java.lang.String regex)
For example, if the attribute is set as:
<echoproperties prefix=".*ant.*" />then the properties "ant.home" and "user.variant" will be recorded, but "ant-example" will not.
regex
- The new regex valuepublic void addPropertyset(PropertySet ps)
ps
- the property set to writepublic void setFormat(EchoProperties.FormatAttribute ea)
ea
- an enumerated FormatAttribute
valuepublic void execute() throws BuildException
execute
in class Task
BuildException
- trouble, probably file IOprotected void saveProperties(java.util.Hashtable allProps, java.io.OutputStream os) throws java.io.IOException, BuildException
allProps
- propfile to saveos
- output stream
java.io.IOException
- on output errors
BuildException
- on other errorsprotected void xmlSaveProperties(java.util.Properties props, java.io.OutputStream os) throws java.io.IOException
props
- the properties to saveos
- the output stream to write to (Note this gets closed)
java.io.IOException
- on error in writing to the streamprotected void jdkSaveProperties(java.util.Properties props, java.io.OutputStream os, java.lang.String header) throws java.io.IOException
props
- the properties to recordos
- record the properties to this output streamheader
- prepend this header to the property output
java.io.IOException
- on an I/O error during a write.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |