Interface IBuffer
- All Known Subinterfaces:
InternalBuffer
A buffer is well prepared for the usage with asynchronous IChannel
s but can also be used with pure
SocketChannel
s. All methods of IBuffer
are non-blocking.
Usually buffers are obtained from a IBufferProvider
. Buffers can be accessed, passed around and finally
released
to their original provider. The capacity of a buffer is determined by its provider.
In addition to its payload data each buffer contains an internal header of four bytes, two of them representing a
channel identifier the other two of them denoting the length of the payload data. The payload data may be accessed
through a ByteBuffer
.
This interface is not intended to be implemented by clients.
An example for putting values into a buffer and writing it to a SocketChannel
:
// Obtain a fresh buffer Buffer buffer = bufferProvider.getBuffer(); // Start filling the buffer for channelID 4711 ByteBuffer byteBuffer = buffer.startPutting(4711); byteBuffer.putDouble(15.47); // Write the contents of the Buffer to a // SocketChannel without blocking while (!buffer.write(socketChannel)) { // Do something else }An example for reading a buffer from a
SocketChannel
and getting values from it:
// Obtain a fresh buffer Buffer buffer = bufferProvider.getBuffer(); // Read the contents of the Buffer from a SocketChannel without blocking ByteBuffer byteBuffer; while ((byteBuffer = buffer.startGetting(socketChannel)) == null) { // Do something else } // Access the contents of the buffer and release it to its provider double value = byteBuffer.getDouble(); buffer.release();
- Author:
- Eike Stepper
- See Also:
- No Implement
- This interface is not intended to be implemented by clients.
- No Extend
- This interface is not intended to be extended by clients.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
static final int
static final short
static final short
static final short
static final short
Possible argument value ofstartPutting(short)
and possible return value ofgetChannelID()
that indicates that this buffer is not intended to be passed to aSocketChannel
.static final int
static final int
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Turns the state of this buffer from any state intoINITIAL
.void
compact()
void
flip()
formatContent
(boolean showHeader) byte
get()
void
get
(byte[] dst) Returns theIBufferProvider
that has provided this buffer and that this buffer will be returned to when itsrelease()
method is called.Returns theByteBuffer
that can be used for putting or getting data.short
Returns the capacity of this buffer.short
Returns the channel index value stored in the header of this buffer.org.eclipse.net4j.util.IErrorHandler
int
getInt()
int
getLimit()
int
short
getShort()
getState()
Returns the internal state of this buffer.boolean
boolean
isCCAM()
Returns the Close Channel After Me flag.boolean
isEOS()
Returns the End Of Stream flag to indicate whether this buffer is the last buffer in a stream (typically a signal) of buffers.void
put
(byte b) void
put
(byte[] src, int offset, int length) void
putShort
(short value) void
release()
Releases this buffer to its originalIBufferProvider
.void
setCCAM
(boolean ccam) Sets the Close Channel After Me flag.void
setEOS
(boolean eos) Sets the End Of Stream flag to indicate whether this buffer is the last buffer in a stream (typically a signal) of buffers.void
setErrorHandler
(org.eclipse.net4j.util.IErrorHandler errorHandler) void
setLimit
(int limit) void
setPosition
(int position) startGetting
(SocketChannel socketChannel) Tries to read aByteBuffer
from aSocketChannel
that can be used for getting data.startPutting
(short channelID) Returns aByteBuffer
that can be used for putting data.boolean
write
(SocketChannel socketChannel) Tries to write the data of this buffer to aSocketChannel
.
-
Field Details
-
NO_CHANNEL
static final short NO_CHANNELPossible argument value ofstartPutting(short)
and possible return value ofgetChannelID()
that indicates that this buffer is not intended to be passed to aSocketChannel
.- See Also:
-
MIN_CHANNEL
static final short MIN_CHANNEL- Since:
- 2.0
- See Also:
-
MAX_CHANNEL
static final short MAX_CHANNEL- Since:
- 2.0
- See Also:
-
CHANNEL_ID_BYTES
static final int CHANNEL_ID_BYTES- Since:
- 4.8
- See Also:
-
PAYLOAD_SIZE_BYTES
static final int PAYLOAD_SIZE_BYTES- Since:
- 4.8
- See Also:
-
HEADER_SIZE
static final short HEADER_SIZE- See Also:
-
CHANNEL_ID_POS
static final int CHANNEL_ID_POS- Since:
- 4.10
- See Also:
-
PAYLOAD_SIZE_POS
static final int PAYLOAD_SIZE_POS- Since:
- 4.10
- See Also:
-
-
Method Details
-
getBufferProvider
IBufferProvider getBufferProvider()Returns theIBufferProvider
that has provided this buffer and that this buffer will be returned to when itsrelease()
method is called. -
getChannelID
short getChannelID()Returns the channel index value stored in the header of this buffer.- Since:
- 2.0
-
getCapacity
short getCapacity()Returns the capacity of this buffer.The capacity of this buffer is equal to the
capacity
of theIBufferProvider
that has provided this buffer. -
getState
BufferState getState()Returns the internal state of this buffer. -
startGetting
Tries to read aByteBuffer
from aSocketChannel
that can be used for getting data.This method is non-blocking and it can be necessary to repeatedly call it. If it was not possible to read a complete header from the
SocketChannel
null
is returned and the state of this buffer isREADING_HEADER
. If it was not possible to read a complete body from theSocketChannel
null
is returned and the state of this buffer isREADING_BODY
.If a
ByteBuffer
is returned it may only be used for getting data. It is left to the responsibility of the caller that only the following methods of thatByteBuffer
are used:-
ByteBuffer.get()
-
ByteBuffer.get(byte[])
-
ByteBuffer.get(int)
-
ByteBuffer.get(byte[], int, int)
-
ByteBuffer.getChar()
-
ByteBuffer.getChar(int)
-
ByteBuffer.getDouble()
-
ByteBuffer.getDouble(int)
-
ByteBuffer.getFloat()
-
ByteBuffer.getFloat(int)
-
ByteBuffer.getInt()
-
ByteBuffer.getInt(int)
-
ByteBuffer.getLong()
-
ByteBuffer.getLong(int)
-
ByteBuffer.getShort()
-
ByteBuffer.getShort(int)
- all other methods that do not influence
Buffer.position()
,Buffer.limit()
andBuffer.capacity()
- Parameters:
socketChannel
- ThesocketChannel
to read theByteBuffer
from.- Returns:
- A
ByteBuffer
that can be used for getting data if it was possible to completely read the data from the givenSocketChannel
,null
otherwise. - Throws:
IllegalStateException
- If the state of this buffer is notINITIAL
,READING_HEADER
orREADING_BODY
.IOException
- If theSocketChannel
has been closed or discovers other I/O problems.
-
-
startPutting
Returns aByteBuffer
that can be used for putting data.Turns the
state
of this buffer intoPUTTING
.The returned
ByteBuffer
may only be used for putting data. It is left to the responsibility of the caller that only the following methods of thatByteBuffer
are used:-
ByteBuffer.put(byte)
-
ByteBuffer.put(byte[])
-
ByteBuffer.put(ByteBuffer)
-
ByteBuffer.put(int, byte)
-
ByteBuffer.put(byte[], int, int)
-
ByteBuffer.putChar(char)
-
ByteBuffer.putChar(int, char)
-
ByteBuffer.putDouble(double)
-
ByteBuffer.putDouble(int, double)
-
ByteBuffer.putFloat(float)
-
ByteBuffer.putFloat(int, float)
-
ByteBuffer.putInt(int)
-
ByteBuffer.putInt(int, int)
-
ByteBuffer.putLong(long)
-
ByteBuffer.putLong(int, long)
-
ByteBuffer.putShort(short)
-
ByteBuffer.putShort(int, short)
- all other methods that do not influence
Buffer.position()
,Buffer.limit()
andBuffer.capacity()
- Parameters:
channelID
- The index of anIChannel
that this buffer is intended to be passed to later orNO_CHANNEL
.- Returns:
- A
ByteBuffer
that can be used for putting data. - Throws:
IllegalStateException
- If the state of this buffer is notINITIAL
(PUTTING
is allowed but meaningless if and only if the givenchannelID
is equal to the existingchannelID
of this buffer).
-
-
write
Tries to write the data of this buffer to aSocketChannel
.This method is non-blocking and it can be necessary to repeatedly call it. If it was not possible to completely write the data to the
SocketChannel
false
is returned and the state of this buffer remainsWRITING
.- Parameters:
socketChannel
- ThesocketChannel
to write the data to.- Returns:
true
if it was possible to completely write the data to theSocketChannel
,false
otherwise.- Throws:
IllegalStateException
- If the state of this buffer is notPUTTING
orWRITING
.IOException
- If theSocketChannel
has been closed or discovers other I/O problems.
-
flip
- Throws:
IllegalStateException
- If the state of this buffer is notPUTTING
.
-
getByteBuffer
Returns theByteBuffer
that can be used for putting or getting data.- Throws:
IllegalStateException
- If the state of this buffer is notPUTTING
orGETTING
.
-
isEOS
boolean isEOS()Returns the End Of Stream flag to indicate whether this buffer is the last buffer in a stream (typically a signal) of buffers. -
setEOS
void setEOS(boolean eos) Sets the End Of Stream flag to indicate whether this buffer is the last buffer in a stream (typically a signal) of buffers. -
isCCAM
boolean isCCAM()Returns the Close Channel After Me flag.- Since:
- 4.4
-
setCCAM
void setCCAM(boolean ccam) Sets the Close Channel After Me flag.- Since:
- 4.4
-
release
void release()Releases this buffer to its originalIBufferProvider
. -
clear
void clear()Turns the state of this buffer from any state intoINITIAL
. -
formatContent
-
getErrorHandler
org.eclipse.net4j.util.IErrorHandler getErrorHandler()- Since:
- 2.0
-
setErrorHandler
void setErrorHandler(org.eclipse.net4j.util.IErrorHandler errorHandler) - Since:
- 2.0
-
compact
void compact()- Since:
- 4.7
-
getPosition
int getPosition()- Since:
- 4.7
-
setPosition
void setPosition(int position) - Since:
- 4.7
-
getLimit
int getLimit()- Since:
- 4.7
-
setLimit
void setLimit(int limit) - Since:
- 4.7
-
hasRemaining
boolean hasRemaining()- Since:
- 4.7
-
get
byte get()- Since:
- 4.7
-
get
void get(byte[] dst) - Since:
- 4.7
-
getShort
short getShort()- Since:
- 4.7
-
getInt
int getInt()- Since:
- 4.7
-
getString
String getString()- Since:
- 4.7
-
put
void put(byte b) - Since:
- 4.7
-
put
void put(byte[] src, int offset, int length) - Since:
- 4.7
-
putShort
void putShort(short value) - Since:
- 4.7
-