1 package size; 2 40 41 import java.io.*; 42 import java.net.URI ; 43 import org.xml.sax.InputSource ; 44 import javax.xml.parsers.*; 45 import java.util.Properties ; 46 47 import com.sun.xml.fastinfoset.sax.*; 48 import com.sun.xml.fastinfoset.vocab.*; 49 50 import com.sun.japex.*; 51 52 public class FastInfosetSizeExtVocDriver extends JapexDriverBase { 53 54 protected String _xmlFile; 55 protected byte[] _fastInfosetByteArray; 56 57 public FastInfosetSizeExtVocDriver() { 58 } 59 60 public void initializeDriver() { 61 } 62 63 public void prepare(TestCase testCase) { 64 _xmlFile = testCase.getParam("xmlfile"); 65 if (_xmlFile == null) { 66 throw new RuntimeException ("xmlfile not specified"); 67 } 68 69 try { 71 SAXParserFactory spf = SAXParserFactory.newInstance(); 73 spf.setNamespaceAware(true); 74 SAXParser parser = spf.newSAXParser(); 75 76 FileInputStream fis = new FileInputStream(new File(_xmlFile)); 78 byte[] xmlFileByteArray = Util.streamToByteArray(fis); 79 fis.close(); 80 81 SerializerVocabulary externalVocabulary = new SerializerVocabulary(); 83 externalVocabulary.attributeValueSizeConstraint 84 = externalVocabulary.characterContentChunkSizeContraint = 0; 85 86 VocabularyGenerator vocabularyGenerator = new VocabularyGenerator(externalVocabulary); 88 parser.parse(new ByteArrayInputStream(xmlFileByteArray), 89 vocabularyGenerator); 90 91 ByteArrayOutputStream baos = new ByteArrayOutputStream(); 93 SAXDocumentSerializer ds = new SAXDocumentSerializer(); 94 95 SerializerVocabulary initialVocabulary = new SerializerVocabulary(); 96 initialVocabulary.setExternalVocabulary( 97 new URI ("file:///" + _xmlFile), 98 externalVocabulary, false); 99 ds.setVocabulary(initialVocabulary); 100 ds.setOutputStream(baos); 101 parser.parse(new ByteArrayInputStream(xmlFileByteArray), ds); 102 103 _fastInfosetByteArray = baos.toByteArray(); 104 } 105 catch (Exception e) { 106 e.printStackTrace(); 107 } 108 } 109 110 public void warmup(TestCase testCase) { 111 } 112 113 public void run(TestCase testCase) { 114 } 115 116 public void finish(TestCase testCase) { 117 testCase.setDoubleParam(Constants.RESULT_VALUE, 118 _fastInfosetByteArray.length / 1024.0); 119 } 120 121 public void terminateDriver() { 122 } 123 } 124
| Popular Tags
|