I have a build.xml which imports other ant xml files. I'd like to get all javac tasks from it so I can see what classpath is set to for these tasks (javac is used at multiple targets). I came up with the following code (simplified a bit):
public static void main(String[] args) throws Exception {
Project project = new Project();
project.init();
String build = "build.xml";
File buildFile = new File(build);
ProjectHelper.configureProject(project, buildFile);
Hashtable<String,Object>ht = project.getTargets();
for (String key : ht.keySet()) {
try {
Target target = (Target)ht.get(key);
Task[] tasks = target.getTasks();
for (Task task : tasks) {
if (task instanceof UnknownElement) {
((UnknownElement)task).maybeConfigure();
task = ((UnknownElement)task).getTask();
if (task == null) {
return;
}
}
if (task instanceof Javac) {
// here we go
}
}
} catch(Exception ignore) {}
}
}
However, there are tasks like MacroDef which may have nested other tasks. The TaskContainer interface only specifies addTask(task), I see no way to retrieve nested tasks.
How can I retrieve all javac tasks? It's okay to have a solution where the ant library is not used, but XML parsing seems to be cumbersome since ant uses properties, references, buildfiles can import other files etc.