|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xml.utils.SuballocatedIntVector
A very simple table that stores a list of int. Very similar API to our IntVector class (same API); different internal storage. This version uses an array-of-arrays solution. Read/write access is thus a bit slower than the simple IntVector, and basic storage is a trifle higher due to the top-level array -- but appending is O(1) fast rather than O(N**2) slow, which will swamp those costs in situations where long vectors are being built up. Known issues: Some methods are private because they haven't yet been tested properly. Retrieval performance is critical, since this is used at the core of the DTM model. (Append performance is almost as important.) That's pushing me toward just letting reads from unset indices throw exceptions or return stale data; safer behavior would have performance costs.
Field Summary | |
protected int |
m_blocksize
Size of blocks to allocate |
protected int |
m_firstFree
Number of ints in array |
protected int[][] |
m_map
Array of arrays of ints |
protected int[] |
m_map0
"Shortcut" handle to m_map[0]. |
protected int |
m_MASK
Bitwise addressing (much faster than div/remainder |
protected int |
m_numblocks
Number of blocks to (over)allocate by |
protected int |
m_SHIFT
Bitwise addressing (much faster than div/remainder |
Constructor Summary | |
SuballocatedIntVector()
Default constructor. |
|
SuballocatedIntVector(int blocksize)
Construct a IntVector, using the given block size. |
|
SuballocatedIntVector(int blocksize,
int increasesize)
Deprecated. use SuballocatedIntVector(int) |
Method Summary | |
void |
addElement(int value)
Append a int onto the vector. |
private void |
addElements(int numberOfElements)
Append several slots onto the vector, but do not set the values. |
private void |
addElements(int value,
int numberOfElements)
Append several int values onto the vector. |
private boolean |
contains(int s)
Tell if the table contains the given node. |
int |
elementAt(int i)
Get the nth element. |
int |
indexOf(int elem)
Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method. |
int |
indexOf(int elem,
int index)
Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method. |
private void |
insertElementAt(int value,
int at)
Inserts the specified node in this vector at the specified index. |
private int |
lastIndexOf(int elem)
Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method. |
void |
removeAllElements()
Wipe it out. |
private boolean |
removeElement(int s)
Removes the first occurrence of the argument from this vector. |
private void |
removeElementAt(int at)
Deletes the component at the specified index. |
void |
setElementAt(int value,
int at)
Sets the component at the specified index of this vector to be the specified object. |
void |
setSize(int sz)
Set the length of the list. |
int |
size()
Get the length of the list. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected int m_blocksize
protected int m_SHIFT
protected int m_MASK
protected int m_numblocks
protected int[][] m_map
protected int m_firstFree
protected int[] m_map0
Constructor Detail |
public SuballocatedIntVector()
public SuballocatedIntVector(int blocksize)
blocksize
- Size of block to allocatepublic SuballocatedIntVector(int blocksize, int increasesize)
SuballocatedIntVector(int)
Method Detail |
public int size()
public void setSize(int sz)
public void addElement(int value)
value
- Int to add to the listprivate void addElements(int value, int numberOfElements)
value
- Int to add to the listprivate void addElements(int numberOfElements)
private void insertElementAt(int value, int at)
value
- Int to insertat
- Index of where to insertpublic void removeAllElements()
private boolean removeElement(int s)
s
- Int to remove from array
private void removeElementAt(int at)
public void setElementAt(int value, int at)
public int elementAt(int i)
i
- index of value to get
private boolean contains(int s)
s
- object to look for
public int indexOf(int elem, int index)
elem
- object to look forindex
- Index of where to begin search
public int indexOf(int elem)
elem
- object to look for
private int lastIndexOf(int elem)
elem
- Object to look for
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |