blob: 712f7e3026c13da48e4f8684211563760c9270ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
package org.madore.damlengine;
import java.util.LinkedList;
import java.util.HashMap;
import java.io.OutputStreamWriter;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.DocumentBuilder;
import org.w3c.dom.Document;
import org.xml.sax.EntityResolver;
import org.apache.xerces.jaxp.DocumentBuilderFactoryImpl;
public final class DamlEngine {
public static final String DAML_NS = "http://www.madore.org/~david/NS/daml/";
static Document doc;
private DamlEngine() { } // Forbid instantiation
public static void processDocument() {
TodoDeque todoDeque = new TodoDeque();
HashMap<String,Object> options = new HashMap<String,Object>();
options.put("isRoot", true);
todoDeque.registerAtEnd(TodoElement.getTodoElement(doc.getDocumentElement(),
new HashMap<String,Object>(),
options));
todoDeque.dispatchLoop();
}
public static void main(String[] args)
throws Exception {
final Resolver resolver = new Resolver();
final DocumentBuilderFactory dbf = new DocumentBuilderFactoryImpl();
dbf.setNamespaceAware(true);
dbf.setValidating(false);
final DocumentBuilder db = dbf.newDocumentBuilder();
db.setEntityResolver((EntityResolver)resolver);
if ( args.length == 0 ) {
System.err.println("expecting filename as argument");
}
for (String fname : args) {
doc = db.parse(fname);
processDocument();
doc.normalizeDocument();
Unparser unparser
= new Unparser(doc, new OutputStreamWriter(System.out));
unparser.unparse();
}
}
}
|