blob: 900bf71953a5baf7ed39557482f152eed958ab6d [file] [log] [blame]
/* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.xmlbeans.test.performance.xerces;
import java.io.CharArrayReader;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.apache.xmlbeans.test.performance.utils.Constants;
import org.apache.xmlbeans.test.performance.utils.PerfUtil;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
public class POReadAllXercesDom
{
public static void main(String[] args) throws Exception
{
final int iterations = Constants.ITERATIONS;
String filename;
if(args.length == 0){
filename = Constants.PO_INSTANCE_1;
}
else if(args[0].length() > 1){
filename = Constants.XSD_DIR+Constants.P+args[0];
}
else{
switch( Integer.parseInt(args[0]) )
{
case 1: filename = Constants.PO_INSTANCE_1; break;
case 2: filename = Constants.PO_INSTANCE_2; break;
case 3: filename = Constants.PO_INSTANCE_3; break;
case 4: filename = Constants.PO_INSTANCE_4; break;
case 5: filename = Constants.PO_INSTANCE_5; break;
case 6: filename = Constants.PO_INSTANCE_6; break;
case 7: filename = Constants.PO_INSTANCE_7; break;
default: filename = Constants.PO_INSTANCE_1; break;
}
}
POReadAllXercesDom test = new POReadAllXercesDom();
PerfUtil util = new PerfUtil();
long cputime;
int hash = 0;
// get the xmlinstance
char[] chars = util.fileToChars(filename);
// warm up the vm
cputime = System.currentTimeMillis();
for(int i=0; i<iterations; i++){
CharArrayReader reader = new CharArrayReader(chars);
hash += test.run(reader);
}
cputime = System.currentTimeMillis() - cputime;
// run it again for the real measurement
cputime = System.currentTimeMillis();
for(int i=0; i<iterations; i++){
CharArrayReader reader = new CharArrayReader(chars);
hash += test.run(reader);
}
cputime = System.currentTimeMillis() - cputime;
// print the results
// Class.getSimpleName() is only provided in jdk1.5, so have to trim package name off test name for logging to support 1.4
System.out.print(Constants.DELIM+test.getClass().getName().substring(test.getClass().getName().lastIndexOf('.')+1)+" filesize="+chars.length+" ");
System.out.print("hash "+hash+" ");
System.out.print("time "+cputime+"\n");
}
private int run(CharArrayReader reader) throws Exception
{
int iSumStrings = 0;
// "unmarshall" the xml instance
InputSource is = new InputSource(reader);
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setNamespaceAware(true);
factory.setValidating(false);
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(is);
// retreive the purchase order
Element po = doc.getDocumentElement();
// retreive the customer element
Node customer = po.getElementsByTagName("po:customer").item(0);
NodeList custChildren = customer.getChildNodes();
iSumStrings +=
custChildren.item(1).getFirstChild().getNodeValue().length();
iSumStrings +=
custChildren.item(3).getFirstChild().getNodeValue().length();
// retreive the date
po.getElementsByTagName("po:date").item(0);
// retreive all line items
NodeList lineitems = po.getElementsByTagName("po:line-item");
// sum the line item prices and get the other childs
float sum = 0;
for(int i=0; i<lineitems.getLength(); i++){
NodeList liChildren = lineitems.item(i).getChildNodes();
iSumStrings +=
liChildren.item(1).getFirstChild().getNodeValue().length();
liChildren.item(3);
liChildren.item(7);
sum +=
Float.parseFloat(liChildren.item(5).getFirstChild().getNodeValue());
}
// retreive the shipper element
Node shipper = po.getElementsByTagName("po:shipper").item(0);
NodeList shipperChildren = shipper.getChildNodes();
iSumStrings += shipperChildren.item(1).getFirstChild().getNodeValue().length();
shipperChildren.item(3).getFirstChild().getNodeValue();
return iSumStrings;
}
}