blob: 56f9a1b42fff507e5dfdab0868d67204f5b77071 [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.castor;
//import java.io.File;
import java.io.CharArrayReader;
import org.apache.xmlbeans.test.performance.utils.PerfUtil;
import org.apache.xmlbeans.test.performance.utils.Constants;
// from castor-generated schema jar(s)
import org.openuri.easypo.PurchaseOrder;
import org.openuri.easypo.Customer;
import org.openuri.easypo.LineItem;
//import org.openuri.easypo.Shipper;
public class POGetCustNameCastor
{
public static void main(String[] args) throws Exception
{
final int iterations = Constants.GET_SET_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;
}
}
POGetCustNameCastor test = new POGetCustNameCastor();
PerfUtil util = new PerfUtil();
long cputime;
int hash = 0;
// get the xmlinstance
char[] chars = util.fileToChars(filename);
// parse the instance
// unmarshall/retreive the purchase order
PurchaseOrder po = (PurchaseOrder)PurchaseOrder.unmarshal(new CharArrayReader(chars));
Customer customer = po.getCustomer();
// warm up the vm
cputime = System.currentTimeMillis();
for(int i=0; i<iterations; i++){
CharArrayReader reader = new CharArrayReader(chars);
hash += test.run(customer);
}
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(customer);
}
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(Customer p_customer) throws Exception
{
return p_customer.getName().length() * 17;
}
}