Package org.refcodes.io
Class AbstractByteReceiver
- java.lang.Object
-
- org.refcodes.io.AbstractByteProvider
-
- org.refcodes.io.AbstractByteReceiver
-
- All Implemented Interfaces:
org.refcodes.component.Closable,org.refcodes.component.Closable.CloseAutomaton,org.refcodes.component.ClosedAccessor,org.refcodes.component.ConnectableComponent,org.refcodes.component.ConnectableComponent.ConnectableAutomaton,org.refcodes.component.ConnectionStatusAccessor,org.refcodes.component.OpenedAccessor,ByteBlockProvider,ByteBlockReceiver,ByteDatagramProvider,ByteDatagramReceiver,ByteProvider,ByteReceiver,Receivable,org.refcodes.mixin.Releaseable
- Direct Known Subclasses:
AbstractPrefetchInputStreamByteReceiver,ByteArrayReceiverImpl,ByteReceiverDecorator,LoopbackByteReceiverImpl,LoopbackByteTransceiverImpl
public abstract class AbstractByteReceiver extends AbstractByteProvider implements ByteReceiver
TheAbstractByteReceiveris a base abstract implementation of theByteReceiverinterface providing common functionality for concrete real liveByteDatagramReceiverandByteBlockReceiver(=ByteReceiver) implementations. A blocking queue is used internally to which received datagrams are put viaAbstractByteProvider.pushDatagram(byte)and which can be retrieved viareadDatagram(). TheAbstractByteProvider.pushDatagram(byte)method is your hook when extending this class. Make sure your code fetches the datagrams quick enough to prevent filling up of the queue. In case the queue is filled up, adding elements viaAbstractByteProvider.pushDatagram(byte)to the queue is blocked until elements are taken from the queue viareadDatagram(). So cautions are taken to prevent a memory leak.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classAbstractByteReceiver.ConnectableAutomatonThe Class ConnectableAutomaton.-
Nested classes/interfaces inherited from interface org.refcodes.component.Closable
org.refcodes.component.Closable.CloseAutomaton, org.refcodes.component.Closable.CloseBuilder<B extends org.refcodes.component.Closable.CloseBuilder<B>>
-
Nested classes/interfaces inherited from interface org.refcodes.component.ClosedAccessor
org.refcodes.component.ClosedAccessor.ClosedMutator, org.refcodes.component.ClosedAccessor.ClosedProperty
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractByteReceiver.ConnectableAutomaton_automaton-
Fields inherited from class org.refcodes.io.AbstractByteProvider
_datagramQueue, DATAGRAM_QUEUE_SIZE
-
-
Constructor Summary
Constructors Constructor Description AbstractByteReceiver()Constructs aAbstractByteReceiverwith a default sized blocking queue enabling a maximum ofAbstractByteProvider.DATAGRAM_QUEUE_SIZEdatagrams. ------------------------------------------------------------------------- Make sure your code fetches the datagrams quick enough to prevent filling up of the queue.AbstractByteReceiver(int aCapacity)Constructs aAbstractByteReceiverwith a custom sized blocking queue enabling a maximum of datagrams as specified by the capacity parameter. ------------------------------------------------------------------------- Make sure your code fetches the datagrams quick enough to prevent filling up of the queue.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()org.refcodes.component.ConnectionStatusgetConnectionStatus()booleanhasDatagram()Determines whether a datagram is available from aDatagramSender.booleanisClosable()booleanisClosed()protected booleanisOpenable()Checks if is openable.booleanisOpened()protected voidopen()Open.bytereadDatagram()Reads (receives) the next byte passed from aDatagramSendercounterpart.byte[]readDatagrams()Caution: Reads till anOpenException(or anInterruptedExceptionin case of blocking till more data is available) occurs.byte[]readDatagrams(int aBlockSize)Similar toByteBlockProvider.readDatagrams()though at maximum the amount of data as provided by the block-size is returned.voidreleaseAll()protected voidsetConnectionStatus(org.refcodes.component.ConnectionStatus aConnectionStatus)Sets the connection status.-
Methods inherited from class org.refcodes.io.AbstractByteProvider
pushDatagram, pushDatagrams, pushDatagrams
-
Methods inherited from interface org.refcodes.component.Closable
closeIn, closeQuietly, closeUnchecked
-
-
-
-
Field Detail
-
_automaton
protected AbstractByteReceiver.ConnectableAutomaton _automaton
-
-
Constructor Detail
-
AbstractByteReceiver
public AbstractByteReceiver()
Constructs aAbstractByteReceiverwith a default sized blocking queue enabling a maximum ofAbstractByteProvider.DATAGRAM_QUEUE_SIZEdatagrams. ------------------------------------------------------------------------- Make sure your code fetches the datagrams quick enough to prevent filling up of the queue. In case the queue is filled up, adding elements viaAbstractByteProvider.pushDatagram(byte)to the queue is blocked until elements are taken from the queue viareadDatagram().
-
AbstractByteReceiver
public AbstractByteReceiver(int aCapacity)
Constructs aAbstractByteReceiverwith a custom sized blocking queue enabling a maximum of datagrams as specified by the capacity parameter. ------------------------------------------------------------------------- Make sure your code fetches the datagrams quick enough to prevent filling up of the queue. In case the queue is filled up, adding elements viaAbstractByteProvider.pushDatagram(byte)to the queue is blocked until elements are taken from the queue viareadDatagram().- Parameters:
aCapacity- The capacity of the queue holding the received datagrams.
-
-
Method Detail
-
readDatagram
public byte readDatagram() throws org.refcodes.component.OpenException, java.lang.InterruptedExceptionReads (receives) the next byte passed from aDatagramSendercounterpart. In case none byte is available, then this method blocks until one is available. To prevent blocking, use theByteDatagramReceiverextension'sReceivable.hasDatagram()method to test beforehand whether a byte is available (in a multi-threaded usage scenario,Receivable.hasDatagram()is not a reliable indicator whether this method will block or not). When aThreadis waiting for a byte to be read andThread.interrupt()is being called, then the operation is aborted and anInterruptedExceptionis thrown.- Specified by:
readDatagramin interfaceByteDatagramProvider- Overrides:
readDatagramin classAbstractByteProvider- Returns:
- The next byte sent from the
ByteDatagramSendercounterpart. - Throws:
org.refcodes.component.OpenException- Thrown in case opening or accessing an open line (connection, junction, link) caused problems.java.lang.InterruptedException- Thrown when aThreadis waiting, sleeping, or otherwise occupied, and theThreadis interrupted, either before or during the activity.
-
readDatagrams
public byte[] readDatagrams() throws org.refcodes.component.OpenException, java.lang.InterruptedExceptionCaution: Reads till anOpenException(or anInterruptedExceptionin case of blocking till more data is available) occurs. Reads (receives) the next byte block passed from aBlockSenderorDatagramSendercounterpart. In case none byte block is available, then this method blocks until one is available. When aThreadis waiting for a byte to be read andThread.interrupt()is being called, then the operation is aborted and anInterruptedExceptionis thrown.- Specified by:
readDatagramsin interfaceByteBlockProvider- Specified by:
readDatagramsin interfaceByteProvider- Specified by:
readDatagramsin interfaceByteReceiver- Overrides:
readDatagramsin classAbstractByteProvider- Returns:
- The next byte block sent from the
BlockSenderorDatagramReceivercounterpart. - Throws:
org.refcodes.component.OpenException- Thrown in case opening or accessing an open line (connection, junction, link) caused problems.java.lang.InterruptedException- Thrown when aThreadis waiting, sleeping, or otherwise occupied, and theThreadis interrupted, either before or during the activity.
-
readDatagrams
public byte[] readDatagrams(int aBlockSize) throws org.refcodes.component.OpenException, java.lang.InterruptedExceptionSimilar toByteBlockProvider.readDatagrams()though at maximum the amount of data as provided by the block-size is returned.- Specified by:
readDatagramsin interfaceByteBlockProvider- Specified by:
readDatagramsin interfaceByteProvider- Specified by:
readDatagramsin interfaceByteReceiver- Overrides:
readDatagramsin classAbstractByteProvider- Parameters:
aBlockSize- The block-size which is not to exceeded by the returned data. A value of -1 specifies to retrieve all available datagrams (same behavior as methodByteBlockProvider.readDatagrams().- Returns:
- The next short block sent from the
BlockSenderorDatagramReceivercounterpart. - Throws:
org.refcodes.component.OpenException- Thrown in case opening or accessing an open line (connection, junction, link) caused problems.java.lang.InterruptedException- Thrown when aThreadis waiting, sleeping, or otherwise occupied, and theThreadis interrupted, either before or during the activity.
-
hasDatagram
public boolean hasDatagram() throws org.refcodes.component.OpenExceptionDetermines whether a datagram is available from aDatagramSender. Use theDatagramProviderextenison'sDatagramProvider.readDatagram()method for retrieving the available datagram.- Specified by:
hasDatagramin interfaceReceivable- Returns:
- True in case there is a datagram ready to be retrieved .
- Throws:
org.refcodes.component.OpenException- Thrown in case opening or accessing an open line (connection, junction, link) caused problems.
-
close
public void close() throws org.refcodes.component.CloseException- Specified by:
closein interfaceorg.refcodes.component.Closable- Throws:
org.refcodes.component.CloseException
-
releaseAll
public void releaseAll()
- Specified by:
releaseAllin interfaceorg.refcodes.mixin.Releaseable
-
isOpened
public boolean isOpened()
- Specified by:
isOpenedin interfaceorg.refcodes.component.OpenedAccessor
-
isClosable
public boolean isClosable()
- Specified by:
isClosablein interfaceorg.refcodes.component.Closable.CloseAutomaton
-
isClosed
public boolean isClosed()
- Specified by:
isClosedin interfaceorg.refcodes.component.ClosedAccessor
-
getConnectionStatus
public org.refcodes.component.ConnectionStatus getConnectionStatus()
- Specified by:
getConnectionStatusin interfaceorg.refcodes.component.ConnectionStatusAccessor
-
open
protected void open() throws org.refcodes.component.OpenExceptionOpen.- Throws:
org.refcodes.component.OpenException- the open exception
-
setConnectionStatus
protected void setConnectionStatus(org.refcodes.component.ConnectionStatus aConnectionStatus)
Sets the connection status.- Parameters:
aConnectionStatus- the new connection status
-
isOpenable
protected boolean isOpenable()
Checks if is openable.- Returns:
- true, if is openable
-
-