|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.netbeans.spi.project.support.ant.AntProjectHelper
Support class for implementing Ant-based projects.
Field Summary | |
static String |
PRIVATE_PROPERTIES_PATH
Relative path from project directory to the customary private properties file. |
static String |
PRIVATE_XML_PATH
Relative path from project directory to the required private project metadata file. |
static String |
PROJECT_PROPERTIES_PATH
Relative path from project directory to the customary shared properties file. |
static String |
PROJECT_XML_PATH
Relative path from project directory to the required shared project metadata file. |
Method Summary | |
void |
addAntProjectListener(AntProjectListener listener)
Add a listener to changes in the project configuration. |
AuxiliaryConfiguration |
createAuxiliaryConfiguration()
Create an object permitting this project to store auxiliary configuration. |
CacheDirectoryProvider |
createCacheDirectoryProvider()
Create an object permitting this project to expose a cache directory. |
FileBuiltQueryImplementation |
createGlobFileBuiltQuery(PropertyEvaluator eval,
String[] from,
String[] to)
Create an implementation of FileBuiltQuery that works with files
within the project based on simple glob pattern mappings. |
SharabilityQueryImplementation |
createSharabilityQuery(PropertyEvaluator eval,
String[] sourceRoots,
String[] buildDirectories)
Create an implementation of the file sharability query. |
AntArtifact |
createSimpleAntArtifact(String type,
String locationProperty,
PropertyEvaluator eval,
String targetName,
String cleanTargetName)
Create a basic implementation of AntArtifact which assumes everything of interest
is in a fixed location under a standard Ant-based project. |
Element |
getPrimaryConfigurationData(boolean shared)
Get the primary configuration data for this project. |
FileObject |
getProjectDirectory()
Get the top-level project directory. |
EditableProperties |
getProperties(String path)
Load a property file from some location in the project. |
PropertyProvider |
getPropertyProvider(String path)
Get a property provider that works with loadable project properties. |
PropertyEvaluator |
getStandardPropertyEvaluator()
Get a property evaluator that can evaluate properties according to the default file layout for Ant-based projects. |
PropertyProvider |
getStockPropertyPreprovider()
Get a property provider which defines basedir according to
the project directory and also copies all system properties in the current VM. |
void |
notifyDeleted()
Notification that this project has been deleted. |
void |
putPrimaryConfigurationData(Element data,
boolean shared)
Store the primary configuration data for this project. |
void |
putProperties(String path,
EditableProperties props)
Store a property file to some location in the project. |
void |
removeAntProjectListener(AntProjectListener listener)
Remove a listener to changes in the project configuration. |
File |
resolveFile(String filename)
Find an absolute file path from a possibly project-relative path. |
FileObject |
resolveFileObject(String filename)
Same as resolveFile(java.lang.String) , but produce a FileObject if possible. |
String |
resolvePath(String path)
Take an Ant-style path specification and convert it to a platform-specific absolute path. |
String |
toString()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final String PROJECT_PROPERTIES_PATH
public static final String PRIVATE_PROPERTIES_PATH
public static final String PROJECT_XML_PATH
public static final String PRIVATE_XML_PATH
Method Detail |
public void addAntProjectListener(AntProjectListener listener)
Thread-safe.
listener
- a listener to addpublic void removeAntProjectListener(AntProjectListener listener)
Thread-safe.
listener
- a listener to removepublic FileObject getProjectDirectory()
public void notifyDeleted()
org.netbeans.api.projects.ProjectState#notifyDeleted
.
public EditableProperties getProperties(String path)
putProperties(java.lang.String, org.netbeans.spi.project.support.ant.EditableProperties)
to save any changes you make.
If the file does not (yet) exist or could not be loaded for whatever reason,
an empty properties list is returned instead.
path
- a relative URI in the project directory, e.g.
PROJECT_PROPERTIES_PATH
or PRIVATE_PROPERTIES_PATH
public void putProperties(String path, EditableProperties props)
Acquires write access from ProjectManager.mutex()
. However, you are well
advised to explicitly enclose a complete operation within write access,
starting with getProperties(java.lang.String)
, to prevent race conditions.
path
- a relative URI in the project directory, e.g.
PROJECT_PROPERTIES_PATH
or PRIVATE_PROPERTIES_PATH
props
- a set of properties to store, or null to delete any existing properties file therepublic PropertyProvider getPropertyProvider(String path)
getProperties(java.lang.String)
, and calls to
putProperties(java.lang.String, org.netbeans.spi.project.support.ant.EditableProperties)
should cause it to fire changes.
path
- a relative URI in the project directory, e.g.
PROJECT_PROPERTIES_PATH
or PRIVATE_PROPERTIES_PATH
public Element getPrimaryConfigurationData(boolean shared)
AntBasedProjectType.getPrimaryConfigurationDataElementName(boolean)
and
AntBasedProjectType.getPrimaryConfigurationDataElementNamespace(boolean)
.
The project may read this document fragment to get custom information
from nbproject/project.xml
and nbproject/private/private.xml
.
The fragment will have no parent node and while it may be modified, you must
use putPrimaryConfigurationData(org.w3c.dom.Element, boolean)
to store any changes.
shared
- if true, refers to project.xml
, else refers to
private.xml
public void putPrimaryConfigurationData(Element data, boolean shared) throws IllegalArgumentException
AntBasedProjectType.getPrimaryConfigurationDataElementName(boolean)
and
AntBasedProjectType.getPrimaryConfigurationDataElementNamespace(boolean)
.
The project may save this document fragment to set custom information
in nbproject/project.xml
and nbproject/private/private.xml
.
The fragment will be cloned and so further modifications will have no effect.
Acquires write access from ProjectManager.mutex()
. However, you are well
advised to explicitly enclose a complete operation within write access,
starting with getPrimaryConfigurationData(boolean)
, to prevent race conditions.
data
- the desired new configuration datashared
- if true, refers to project.xml
, else refers to
private.xml
IllegalArgumentException
- if the element is not correctly namedpublic AuxiliaryConfiguration createAuxiliaryConfiguration()
public CacheDirectoryProvider createCacheDirectoryProvider()
public FileBuiltQueryImplementation createGlobFileBuiltQuery(PropertyEvaluator eval, String[] from, String[] to) throws IllegalArgumentException
FileBuiltQuery
that works with files
within the project based on simple glob pattern mappings.
It is intended to be
placed in Project.getLookup()
.
It will return status objects for any files in the project matching a source
glob pattern - this must include exactly one asterisk (*
)
representing a variable portion of a source file path (always slash-separated
and relative to the project directory) and may include some Ant property
references which will be resolved as per the property evaluator.
A file is considered out of date if there is no file represented by the
matching target pattern (which has the same format), or the target file is older
than the source file, or the source file is modified as per
DataObject.isModified()
.
An attempt is made to fire changes from the status object whenever the result
should change from one call to the next.
The (evaluated) source and target patterns may be relative, resolved against the project directory (perhaps going outside it), or absolute.
A typical set of source and target patterns would be:
eval
- a property evaluator to interpret the patterns withfrom
- a list of glob patterns for source filesto
- a matching list of glob patterns for built files
IllegalArgumentException
- if either from or to patterns
have zero or multiple asterisks,
or the arrays are not of equal lengthspublic AntArtifact createSimpleAntArtifact(String type, String locationProperty, PropertyEvaluator eval, String targetName, String cleanTargetName)
AntArtifact
which assumes everything of interest
is in a fixed location under a standard Ant-based project.
type
- the type of artifact, e.g. JavaProjectConstants.ARTIFACT_TYPE_JAR
locationProperty
- an Ant property name giving the project-relative
location of the artifact, e.g. dist.jareval
- a way to evaluate the location property (e.g. getStandardPropertyEvaluator()
)targetName
- the name of an Ant target which will build the artifact,
e.g. jarcleanTargetName
- the name of an Ant target which will delete the artifact
(and maybe other build products), e.g. clean
public SharabilityQueryImplementation createSharabilityQuery(PropertyEvaluator eval, String[] sourceRoots, String[] buildDirectories)
The project directory itself is automatically included in the list of sharable directories
so you need not explicitly specify it.
Similarly, the nbproject/private
subdirectory is automatically excluded
from VCS, so you do not need to explicitly specify it.
Any file (or directory) mentioned (explicitly or implicity) in the source
directory list but not in any of the build directory lists, and not containing
any build directories inside it, will be given as sharable. If a directory itself
is sharable but some directory inside it is not, it will be given as mixed.
A file or directory inside some build directory will be listed as not sharable.
A file or directory matching neither the source list nor the build directory list
will be treated as of unknown status, but in practice such a file should never
have been passed to this implementation anyway - SharabilityQuery
will
normally only call an implementation in project lookup if the file is owned by
that project.
Each entry in either list should be a string evaluated first for Ant property escapes (if any), then treated as a file path relative to the project directory (or it may be absolute).
It is permitted, and harmless, to include items that overlap others. For example, you can have both a directory and one of its children in the include list.
Typical usage would be:
helper.createSharabilityQuery(helper.getStandardPropertyEvaluator(), new String[] {"${src.dir}", "${test.src.dir}"}, new String[] {"${build.dir}", "${dist.dir}"})
A quick rule of thumb is that the include list should contain any source directories which might reside outside the project directory; and the exclude list should contain any directories which you would want to add to a .cvsignore file if using CVS (for example).
Note that in this case ${src.dir} and ${test.src.dir}
may be relative paths inside the project directory; relative paths pointing
outside of the project directory; or absolute paths (generally outside of the
project directory). If they refer to locations inside the project directory,
including them does nothing but is harmless - since the project directory itself
is always treated as sharable. If they refer to external locations, you will
need to also make sure that FileOwnerQuery
actually maps files in those
directories to this project, or else SharabilityQuery
will never find
this implementation in your project lookup and may return UNKNOWN
.
eval
- a property evaluator to interpret paths withsourceRoots
- a list of additional paths to treat as sharablebuildDirectories
- a list of paths to treat as not sharable
Project.getLookup()
public PropertyProvider getStockPropertyPreprovider()
basedir
according to
the project directory and also copies all system properties in the current VM.
It may also define ant.home
if it is able.
PropertyUtils.sequentialPropertyEvaluator(org.netbeans.spi.project.support.ant.PropertyProvider, org.netbeans.spi.project.support.ant.PropertyProvider[])
public PropertyEvaluator getStandardPropertyEvaluator()
stock properties
are predefined.
Then PRIVATE_PROPERTIES_PATH
is loaded via getPropertyProvider(java.lang.String)
,
then global definitions from PropertyUtils.globalPropertyProvider()
(though these may be overridden using the property user.properties.file
in private.properties
), then PROJECT_PROPERTIES_PATH
.
public File resolveFile(String filename)
filename
- a pathname which may be project-relative or absolute and may
use / or \ as the path separator
public FileObject resolveFileObject(String filename)
resolveFile(java.lang.String)
, but produce a FileObject
if possible.
filename
- a pathname according to Ant conventions
public String resolvePath(String path)
resolveFile(java.lang.String)
.
path
- an Ant-style abstract path
public String toString()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |