|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xml.dtm.ref.DTMStringPool
public class DTMStringPool
DTMStringPool is an "interning" mechanism for strings. It will create a stable 1:1 mapping between a set of string values and a set of integer index values, so the integers can be used to reliably and uniquely identify (and when necessary retrieve) the strings.
Design Priorities:
Implementation detail: A standard Hashtable is relatively inefficient when looking up primitive int values, especially when we're already maintaining an int-to-string vector. So I'm maintaining a simple hash chain within this class.
NOTE: There is nothing in the code that has a real dependency upon String. It would work with any object type that implements reliable .hashCode() and .equals() operations. The API enforces Strings because it's safer that way, but this could trivially be turned into a general ObjectPool if one was needed.
Status: Passed basic test in main().
Field Summary | |
---|---|
(package private) static int |
HASHPRIME
|
(package private) IntVector |
m_hashChain
|
(package private) int[] |
m_hashStart
|
(package private) java.util.Vector |
m_intToString
|
static int |
NULL
|
Constructor Summary | |
---|---|
DTMStringPool()
|
|
DTMStringPool(int chainSize)
Create a DTMStringPool using the given chain size |
Method Summary | |
---|---|
java.lang.String |
indexToString(int i)
|
static void |
main(java.lang.String[] args)
Command-line unit test driver. |
void |
removeAllElements()
|
int |
stringToIndex(java.lang.String s)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
java.util.Vector m_intToString
static final int HASHPRIME
int[] m_hashStart
IntVector m_hashChain
public static final int NULL
Constructor Detail |
---|
public DTMStringPool(int chainSize)
chainSize
- The size of the hash chain vectorpublic DTMStringPool()
Method Detail |
---|
public void removeAllElements()
public java.lang.String indexToString(int i) throws java.lang.ArrayIndexOutOfBoundsException
java.lang.ArrayIndexOutOfBoundsException
- if index doesn't map to a string.public int stringToIndex(java.lang.String s)
public static void main(java.lang.String[] args)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |