Java Doc for BenchDocBase.java in  » XML » tclib » com » sosnoski » xmlbench » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » XML » tclib » com.sosnoski.xmlbench 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sosnoski.xmlbench.BenchBase
      com.sosnoski.xmlbench.BenchDocBase

All known Subclasses:   com.sosnoski.xmlbench.BenchDOM4J,  com.sosnoski.xmlbench.BenchXPP,  com.sosnoski.xmlbench.BenchJDOM,  com.sosnoski.xmlbench.BenchDOM,  com.sosnoski.xmlbench.BenchElectric,
BenchDocBase
abstract public class BenchDocBase extends BenchBase (Code)
Abstract base class for document representation benchmark tests. This class defines the basic tests along with some implementation methods which must be defined by the subclass for each particular document representation to be tested.
author:
   Dennis M. Sosnoski
version:
   1.2



Constructor Summary
protected  BenchDocBase(String config)
     Constructor.

Method Summary
abstract protected  Objectbuild(InputStream in)
     Build document representation by parsing XML.
abstract protected  voidmodify(Object document)
     Modify a document representation.
abstract protected  voidoutput(Object document, OutputStream out)
     Output a document as XML text.
protected  voidreset()
     Reset test class instance.
public  int[]runSpaceTest(int passes, int excludes, byte[][] texts)
     Main space test method.
public  int[]runTimeTest(int passes, int excludes, byte[][] texts)
     Main time test method.
protected  booleanserialize(Object doc, OutputStream out)
     Serialize a document to a byte array.
protected  Objectunserialize(InputStream in)
     Unserialize a document from a byte array.
abstract protected  voidwalk(Object doc, DocumentSummary summary)
     Walk and summarize document.


Constructor Detail
BenchDocBase
protected BenchDocBase(String config)(Code)
Constructor.
Parameters:
  config - test configuration name




Method Detail
build
abstract protected Object build(InputStream in)(Code)
Build document representation by parsing XML. This method must be implemented by each subclass to use the appropriate construction technique.
Parameters:
  in - XML document input stream document representation



modify
abstract protected void modify(Object document)(Code)
Modify a document representation. This method must be implemented by each subclass to walk the document representation performing the following modifications: remove all content segments which consist only of whitespace; add an attribute "text" set to "true" to any elements which directly contain non-whitespace text content; and replace each non-whitespace text content segment with a "text" element which wraps the content.
Parameters:
  doc - document representation to be modified



output
abstract protected void output(Object document, OutputStream out)(Code)
Output a document as XML text. This method must be implemented by each subclass to use the appropriate output technique.
Parameters:
  doc - document representation to be output
Parameters:
  out - XML document output stream



reset
protected void reset()(Code)
Reset test class instance. This method should be overridden by any subclasses which retain state information during the execution of a test. Any such information should be cleared when this method is called.



runSpaceTest
public int[] runSpaceTest(int passes, int excludes, byte[][] texts)(Code)
Main space test method. This implementation of the abstract base class method performs the normal sequence of space tests.
Parameters:
  passes - number of passes of each test
Parameters:
  excludes - number of initialization passes excluded from averages
Parameters:
  texts - document texts for test result values array



runTimeTest
public int[] runTimeTest(int passes, int excludes, byte[][] texts)(Code)
Main time test method. This implementation of the abstract base class method performs the normal sequence of speed tests. Subclasses which cannot use the normal test sequence must override this method with their own variation.
Parameters:
  passes - number of passes of each test
Parameters:
  excludes - number of initialization passes excluded from averages
Parameters:
  texts - document texts for test result times array



serialize
protected boolean serialize(Object doc, OutputStream out)(Code)
Serialize a document to a byte array.
Parameters:
  doc - document representation to be serialized
Parameters:
  out - serialized document output stream true if successful, false ifrepresentation does not support serialization



unserialize
protected Object unserialize(InputStream in)(Code)
Unserialize a document from a byte array.
Parameters:
  in - serialized document input stream unserialized document representation



walk
abstract protected void walk(Object doc, DocumentSummary summary)(Code)
Walk and summarize document. This method should walk through the nodes of the document, accumulating summary information. It must be implemented by each subclass.
Parameters:
  doc - document representation to be walked
Parameters:
  summary - output document summary information



Fields inherited from com.sosnoski.xmlbench.BenchBase
final public static int ATTRCHAR_COUNT_INDEX(Code)(Java Doc)
final public static int ATTRIBUTE_COUNT_INDEX(Code)(Java Doc)
final public static int AVERAGE_SPACE_INDEX(Code)(Java Doc)
final public static int BUILD_AVERAGE_INDEX(Code)(Java Doc)
final public static int BUILD_MIN_INDEX(Code)(Java Doc)
final public static int CONTENT_COUNT_INDEX(Code)(Java Doc)
final public static int DELTA_MEMORY_INDEX(Code)(Java Doc)
final public static int ELEMENT_COUNT_INDEX(Code)(Java Doc)
final public static int FIRST_SPACE_INDEX(Code)(Java Doc)
final public static long GARBAGE_COLLECT_DELAY(Code)(Java Doc)
final public static long GARBAGE_UNIT_DELAY(Code)(Java Doc)
final public static int INITIAL_MEMORY_INDEX(Code)(Java Doc)
final public static int MODIFY_AVERAGE_INDEX(Code)(Java Doc)
final public static int MODIFY_MIN_INDEX(Code)(Java Doc)
final public static int SERIALIZE_AVERAGE_INDEX(Code)(Java Doc)
final public static int SERIALIZE_MIN_INDEX(Code)(Java Doc)
final public static int SERIALIZE_SIZE_INDEX(Code)(Java Doc)
final public static int SPACE_RESULT_COUNT(Code)(Java Doc)
final public static int TEXTCHAR_COUNT_INDEX(Code)(Java Doc)
final public static int TEXT_AVERAGE_INDEX(Code)(Java Doc)
final public static int TEXT_MIN_INDEX(Code)(Java Doc)
final public static int TIME_RESULT_COUNT(Code)(Java Doc)
final public static int UNSERIALIZE_AVERAGE_INDEX(Code)(Java Doc)
final public static int UNSERIALIZE_MIN_INDEX(Code)(Java Doc)
final public static int WALKED_SPACE_INDEX(Code)(Java Doc)
final public static int WALK_AVERAGE_INDEX(Code)(Java Doc)
final public static int WALK_MIN_INDEX(Code)(Java Doc)
final protected String m_configName(Code)(Java Doc)
protected String m_configVariant(Code)(Java Doc)
protected static long m_lastMemory(Code)(Java Doc)
protected static long m_lastTime(Code)(Java Doc)
protected boolean m_printPass(Code)(Java Doc)
protected PrintStream m_printStream(Code)(Java Doc)
protected boolean m_printSummary(Code)(Java Doc)
final public static String[] s_spaceFullDescriptions(Code)(Java Doc)
final public static String[] s_spaceShortDescriptions(Code)(Java Doc)
final public static String[] s_timeFullDescriptions(Code)(Java Doc)
final public static String[] s_timeShortDescriptions(Code)(Java Doc)

Methods inherited from com.sosnoski.xmlbench.BenchBase
public String getName()(Code)(Java Doc)
protected void initMemory()(Code)(Java Doc)
protected void initTime()(Code)(Java Doc)
protected void printSummary(String lead, DocumentSummary info, PrintStream print)(Code)(Java Doc)
protected int reportSpace(String test)(Code)(Java Doc)
protected int reportTime(String test)(Code)(Java Doc)
protected void reportValue(String lead, int value)(Code)(Java Doc)
abstract public int[] runSpaceTest(int passes, int excludes, byte[][] texts)(Code)(Java Doc)
abstract public int[] runTimeTest(int passes, int excludes, byte[][] texts)(Code)(Java Doc)
public void setPrint(PrintStream print)(Code)(Java Doc)
public void setShowDocument(boolean show)(Code)(Java Doc)
public void setShowPass(boolean show)(Code)(Java Doc)
protected void setVariant(String variant)(Code)(Java Doc)
protected int testPassSpace()(Code)(Java Doc)
protected int testPassTime()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.