Bug 38844 - ProjectHelper implementation that avoids re-parsing build.xml files
Summary: ProjectHelper implementation that avoids re-parsing build.xml files
Status: NEW
Alias: None
Product: Ant
Classification: Unclassified
Component: Core (show other bugs)
Version: 1.6.5
Hardware: Other other
: P2 enhancement (vote)
Target Milestone: ---
Assignee: Ant Notifications List
URL:
Keywords: PatchAvailable
Depends on:
Blocks:
 
Reported: 2006-03-03 19:28 UTC by David Green
Modified: 2008-11-24 03:58 UTC (History)
1 user (show)



Attachments
An implementation of ProjectHelper that avoids parsing of build.xml files. (9.75 KB, text/plain)
2006-03-03 19:29 UTC, David Green
Details

Note You need to log in before you can comment on or make changes to this bug.
Description David Green 2006-03-03 19:28:46 UTC
The Ant ProjectHelper implementation is pluggable, such that alternate
implementations may be used.  ProjectHelper2 (the default) uses SAX parsing to
parse Ant build scripts.  Ant build scripts are re-parsed every time an ant or
antcall task is invoked.  An alternate implementation should be available that
avoids this overhead, since for some build configurations ant and antcall are
common.
Comment 1 David Green 2006-03-03 19:29:49 UTC
Created attachment 17830 [details]
An implementation of ProjectHelper that avoids parsing of build.xml files.

Here is an implementation of such a feature.