/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk
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
import java.io.*;
import java.util.*;
import java.text.*;
import javax.xml.parsers.DocumentBuilderFactory; 
import javax.xml.parsers.DocumentBuilder; 

import org.w3c.dom.Document;

public class intel_dom2 extends bench {

    DocumentBuilder parser;
    DocumentBuilderFactory factory;
    
    public void InitXML() {
    	factory = DocumentBuilderFactory.newInstance();
	factory.setNamespaceAware(true);
	factory.setValidating(false);
	try {
	    if (System.getenv("memory_bench")!=null) {
		factory.setFeature("http://apache.org/xml/features/dom/defer-node-expansion", true);
	    } else {
		factory.setFeature("http://apache.org/xml/features/dom/defer-node-expansion", false);
	    }
	} catch (Throwable err) {
	    // ignoring missing option
	}
	
	try {
    	    parser = factory.newDocumentBuilder();
	}
	catch (Throwable err) {
    	    err.printStackTrace ();
	}
    }

    public void ParseXML(FileInputStream is, int iters, int iter) {
	try {
	    Document doc = parser.parse(is);		
	}
	catch (Exception e)
        {
    	    System.out.println(e.toString());
        }
    }
  
    static public void main(String argv[]) throws IOException {
	bench mybench = new intel_dom2();
	mybench.Bench(argv);
    }
}