Class RingBufferArrayFast<T>
- Type Parameters:
T- the type of instances to store.
- All Implemented Interfaces:
IRingBuffer<T>,Serializable,Cloneable,Iterable<T>
- Direct Known Subclasses:
RingBufferArray
This implementation differs from the RingBufferArray in one
point:
If setBufferSize(int asize) decreases the size of the buffer and
it will get smaller than the actual amount of elements stored, they will get
lost. This avoids the need for an internal List to store elements
overhanging. Some tests may be left out that may speed up this
IRingBuffer. Adding 5000000 elements was about 25 % faster
compared to the RingBufferArray on an Athlon 1200, 256 MB RAM.
For allowing high performance single-threaded use this implementation and the
implementations of the retrievable Iterator- instances are not
synchronized at all.
- Author:
- Achim Westermann
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classBase for ring buffer iterators that has access to the ring buffer by being an non-static inner class.Nested classes/interfaces inherited from interface info.monitorenter.util.collections.IRingBuffer
IRingBuffer.RingBufferException -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final booleanFlip the switch and you will see how the compiler changes the size of the class file.protected Object[]The internal array used as buffer.protected booleanFlag that marks whether this buffer is empty or not.protected intThe internal index to buffer where the next element is going to be placed (not placed yet!).protected intThe internal size of the buffer.protected intThe internal index to buffer where the next element is going to be read. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdds an element to the ring buffer, potentially removing the first element to make more room.voidclear()Fast method to clear the buffer - only needs to set three primitive members.protected Objectclone()booleanintReturns the absolute amount of space in the buffer.Returns the oldest element from the buffer.Returns the last element added.inthashCode()booleanisEmpty()Tests whether no elements are stored in the buffer.booleanisFull()Returns true if no more space in the buffer is available.iterator()Delegates to.iteratorL2F()Returns anIteratorthat will return the elements in exactly the inverse order the subsequent call toremove()would do.Returns anIteratorthat will return the elements in exactly the order the subsequent call toremove()would do.remove()Removes the oldest element from the buffer.T[]Clears the buffer.voidsetBufferSize(int newSize) Sets a new buffer- size.intsize()Returns the actual amount of elements stored in the buffer.toString()Returns a string representation of the RingBuffer and it's contents.Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Field Details
-
DEBUG
public static final boolean DEBUGFlip the switch and you will see how the compiler changes the size of the class file.- See Also:
-
m_buffer
The internal array used as buffer. -
m_empty
protected boolean m_emptyFlag that marks whether this buffer is empty or not.headpointer | +---+---+---+---+ | 0 | 1 | 2 | 3 | +---+---+---+---+ | tailpointer From where to where are the elements? Where is empty space? empty == true: 0 elements are contained: buffer empty empty == false: 4 elements are contained: buffer full remember: -the headpointer points to the space where the next element will be inserted. -the tailpointer points to the space to read the next element from. -
m_headpointer
protected int m_headpointerThe internal index to buffer where the next element is going to be placed (not placed yet!). -
m_size
protected int m_sizeThe internal size of the buffer.For performance reasons the size of the buffer -1!
-
m_tailpointer
protected int m_tailpointerThe internal index to buffer where the next element is going to be read.
-
-
Constructor Details
-
RingBufferArrayFast
public RingBufferArrayFast(int aSize) Constructs a RingBuffer with the given size.- Parameters:
aSize- the size of the buffer.
-
-
Method Details
-
add
Adds an element to the ring buffer, potentially removing the first element to make more room.- Specified by:
addin interfaceIRingBuffer<T>- Parameters:
anObject- the instance to add.- Returns:
- the oldest Object, if RingBuffer was filled with 'maxsize' elements before, or null.
-
clear
public void clear()Fast method to clear the buffer - only needs to set three primitive members.- Specified by:
clearin interfaceIRingBuffer<T>- See Also:
-
clone
- Overrides:
clonein classObject- Throws:
CloneNotSupportedException- See Also:
-
equals
-
getBufferSize
public int getBufferSize()Description copied from interface:IRingBufferReturns the absolute amount of space in the buffer.- Specified by:
getBufferSizein interfaceIRingBuffer<T>- Returns:
- the absolute amount of space in the buffer.
- See Also:
-
getOldest
Description copied from interface:IRingBufferReturns the oldest element from the buffer. This method does not remove the element.- Specified by:
getOldestin interfaceIRingBuffer<T>- Returns:
- the oldest element from the buffer.
- Throws:
IRingBuffer.RingBufferException- if the buffer is empty.- See Also:
-
getYoungest
Description copied from interface:IRingBufferReturns the last element added. This method does not remove the element.- Specified by:
getYoungestin interfaceIRingBuffer<T>- Returns:
- the last element added.
- Throws:
IRingBuffer.RingBufferException- if the buffer is empty.- See Also:
-
hashCode
public int hashCode() -
isEmpty
public boolean isEmpty()Description copied from interface:IRingBufferTests whether no elements are stored in the buffer.- Specified by:
isEmptyin interfaceIRingBuffer<T>- Returns:
- true if no element is stored in the buffer.
- See Also:
-
isFull
public boolean isFull()Description copied from interface:IRingBufferReturns true if no more space in the buffer is available. This method should be used to test before callingIRingBuffer.add(Object).- Specified by:
isFullin interfaceIRingBuffer<T>- Returns:
- true if no more space in the buffer is available.
- See Also:
-
iterator
Delegates to.iteratorL2F() -
iteratorF2L
Returns anIteratorthat will return the elements in exactly the inverse order the subsequent call toremove()would do.The youngest elements are returned first. The
Iteratorreturned is not thread- safe!- Specified by:
iteratorF2Lin interfaceIRingBuffer<T>- Returns:
- an
Iteratorthat will return the elements in exactly the inverse order the subsequent call toremove()would do.
-
iteratorL2F
Returns anIteratorthat will return the elements in exactly the order the subsequent call toremove()would do.The oldest elements are returned first. The
Iteratorreturned is not thread- safe!- Specified by:
iteratorL2Fin interfaceIRingBuffer<T>- Returns:
- an
Iteratorthat will return the elements in exactly the order the subsequent call toremove()would do.
-
remove
Description copied from interface:IRingBufferRemoves the oldest element from the buffer.- Specified by:
removein interfaceIRingBuffer<T>- Returns:
- the removed oldest element from the buffer.
- See Also:
-
removeAll
Description copied from interface:IRingBufferClears the buffer. It will return all of it's stored elements.- Specified by:
removeAllin interfaceIRingBuffer<T>- Returns:
- all removed elements.
- See Also:
-
setBufferSize
public void setBufferSize(int newSize) Sets a new buffer- size.
A new size is assigned but the elements "overhanging" are returned by the
Object remove()- method first. This may take time until the buffer has its actual size again. Don't pretend on calling this method for saving of memory very often as the whole buffer has to be copied into a new array every time- and if newSize < getSize() additional the overhanging elements references have to be moved to the internalList pendingremove.- Specified by:
setBufferSizein interfaceIRingBuffer<T>- Parameters:
newSize- the new size of the buffer.
-
size
public int size()Description copied from interface:IRingBufferReturns the actual amount of elements stored in the buffer.- Specified by:
sizein interfaceIRingBuffer<T>- Returns:
- the actual amount of elements stored in the buffer.
- See Also:
-
toString
Returns a string representation of the RingBuffer and it's contents.Don't call this in your application too often: hard arraycopy - operation an malloc are triggered.
-