|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.mina.util.byteaccess.CompositeByteArrayRelativeWriter
public class CompositeByteArrayRelativeWriter
Provides restricted, relative, write-only access to the bytes in a
CompositeByteArray.
Using this interface has the advantage that it can be automatically
determined when a component ByteArray can no longer be written
to, and thus components can be automatically flushed. This makes it easier to
use pooling for underlying ByteArrays.
By providing an appropriate Expander it is also possible to
automatically add more backing storage as more data is written.
TODO: Get flushing working.
| Nested Class Summary | |
|---|---|
static class |
CompositeByteArrayRelativeWriter.ChunkedExpander
Expands the supplied CompositeByteArray by the number of
bytes provided in the constructor |
static interface |
CompositeByteArrayRelativeWriter.Expander
An object that knows how to expand a CompositeByteArray. |
static interface |
CompositeByteArrayRelativeWriter.Flusher
An object that knows how to flush a ByteArray. |
static class |
CompositeByteArrayRelativeWriter.NopExpander
No-op expander. |
| Field Summary | |
|---|---|
protected CompositeByteArray |
cba
The underlying CompositeByteArray. |
protected ByteArray.Cursor |
cursor
A cursor of the underlying CompositeByteArray. |
| Constructor Summary | |
|---|---|
CompositeByteArrayRelativeWriter(CompositeByteArray cba,
CompositeByteArrayRelativeWriter.Expander expander,
CompositeByteArrayRelativeWriter.Flusher flusher,
boolean autoFlush)
Creates a new instance of CompositeByteArrayRelativeWriter. |
|
| Method Summary | |
|---|---|
void |
append(ByteArray ba)
Make a ByteArray available for access at the end of this object. |
protected void |
cursorPassedFirstComponent()
Called whenever the cursor has passed from the cba's
first component. |
void |
flush()
Flush to the current index. |
void |
flushTo(int index)
Flush to the given index. |
void |
free()
Free all resources associated with this object. |
int |
getIndex()
Get the index that will be used for the next access. |
int |
getRemaining()
|
boolean |
hasRemaining()
|
int |
last()
Get the index after the last byte that can be accessed. |
ByteOrder |
order()
|
void |
put(byte b)
Puts a byte and advances the reader. |
void |
put(IoBuffer bb)
Puts enough bytes to fill the IoBuffer and advances the reader. |
void |
putChar(char c)
Puts a char and advances the reader. |
void |
putDouble(double d)
Puts a double and advances the reader. |
void |
putFloat(float f)
Puts a float and advances the reader. |
void |
putInt(int i)
Puts an int and advances the reader. |
void |
putLong(long l)
Puts a long and advances the reader. |
void |
putShort(short s)
Puts a short and advances the reader. |
void |
skip(int length)
Advances the writer by the given number of bytes. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.mina.util.byteaccess.IoRelativeWriter |
|---|
getRemaining, hasRemaining, order |
| Field Detail |
|---|
protected final CompositeByteArray cba
CompositeByteArray.
protected final ByteArray.Cursor cursor
CompositeByteArray. This
cursor is never moved directly; its position only changes through calls
to relative read or write methods.
| Constructor Detail |
|---|
public CompositeByteArrayRelativeWriter(CompositeByteArray cba,
CompositeByteArrayRelativeWriter.Expander expander,
CompositeByteArrayRelativeWriter.Flusher flusher,
boolean autoFlush)
cba - The CompositeByteArray to use to back this classexpander - The expander. Will increase the size of the internal ByteArrayflusher - Flushed the ByteArray when necessaryautoFlush - Should this class automatically flush?| Method Detail |
|---|
public void flush()
public void flushTo(int index)
public void skip(int length)
IoRelativeWriter
skip in interface IoRelativeWriterprotected void cursorPassedFirstComponent()
cba's
first component. As the first component is no longer used, this provides
a good opportunity for subclasses to perform some action on it (such as
freeing it).
public void put(byte b)
IoRelativeWriterbyte and advances the reader.
put in interface IoRelativeWriterpublic void put(IoBuffer bb)
IoRelativeWriterIoBuffer and advances the reader.
put in interface IoRelativeWriterpublic void putShort(short s)
IoRelativeWritershort and advances the reader.
putShort in interface IoRelativeWriterpublic void putInt(int i)
IoRelativeWriterint and advances the reader.
putInt in interface IoRelativeWriterpublic void putLong(long l)
IoRelativeWriterlong and advances the reader.
putLong in interface IoRelativeWriterpublic void putFloat(float f)
IoRelativeWriterfloat and advances the reader.
putFloat in interface IoRelativeWriterpublic void putDouble(double d)
IoRelativeWriterdouble and advances the reader.
putDouble in interface IoRelativeWriterpublic void putChar(char c)
IoRelativeWriterchar and advances the reader.
putChar in interface IoRelativeWriterpublic final int getRemaining()
public final boolean hasRemaining()
public ByteOrder order()
public final void append(ByteArray ba)
ByteArray available for access at the end of this object.
public final void free()
public final int getIndex()
public final int last()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||