Back to Adaptive Vision Studio website

You are here: Start » Filter Reference » System » TCP IP » TcpIp_ReadBuffer

TcpIp_ReadBuffer


Module: FoundationLite

Receives a fixed number of bytes from a connected TCP socket.

Name Type Range Description
inSocket SocketId Connected socket ID.
inLength Integer 1 - 20971520 Number of bytes to receive.
inTimeout Integer* 0 - Timeout in milliseconds, block if not specified.
inAcceptEof Bool When false, throws an IoError on attempt to read data from beyond the end of stream; when true interrupts operation without exception in such a case.
outBuffer ByteBuffer? Buffer with raw received data, or Nil if the operation was interrupted (by timeout or reading beyond the end of stream).
outEof Bool Indicates whether the operation was interrupted on attempt to get data from beyond the end of stream.

Description

This filter reads a fixed number of bytes from the socket. The number of bytes is specified by the inLength input.

The inTimeout input specifies the longest possible waiting time, in milliseconds, for the incoming data to be fully received. When no timeout is specified (set to Auto), the execution is blocking. When the filter execution is terminated by timeout condition no data is returned or removed from the input buffer (Nil is returned instead). In such situation the operation can be retried later. When timeout is et to zero the filter performs a single read attempt and returns immediately when no data is available.

outBuffer is a buffer containing raw binary data (a sequence of bytes). Data buffer can be processed using filters from the Binary Data category.

The outEof output can be used to detect whether the peer finished transmission and gracefully closed connection on its side. To enable this inAcceptEof must be set, otherwise connection closing will be treated as erroneous state.

The point in transmission when the other side closes the connection gracefully is known as the end of stream (or End of File - Eof). All TCP/IP reading filters can normally read data remaining in the input buffer even when the connection has been closed, as long as the whole required chunk of data is present in the input buffer. However, the reaction to the attempt to read from the input buffer beyond the end of the stream depends on the inAcceptEof input. When inAcceptEof is set to False the filter will raise IO_Error when required chunk of data cannot be read. When inAcceptEof is set to True the filter execution is terminated, no data is removed from the input buffer, Nil is returned instead of requested data and the outEof output is set to True. In such situation the socket remains valid and subsequent reads will perform similar data read attempts.

This filter can raise IO_Error when the connection is disruptively broken or when other network-related error occurred.

Hints

  • Connect inSocket with the output of TcpIp_Connect or TcpIp_Accept.
  • Set inLength to the number of bytes you want to read.
  • Set inTimeout if you want the filter to abort waiting for data after a predefined time.

Remarks

User manual

For more information about using this filter, please follow the link: Using TCP/IP Communication.

Complexity Level

This filter is available on Basic Complexity Level.

Disabled in Lite Edition

This filter is disabled in Lite Edition. It is available only in full, Adaptive Vision Studio Professional version.

See Also

  • TcpIp_ReadLine – Reads from a connected TCP socket until receiving a specific sequence.
  • TcpIp_ReadAllBuffer – Receives data from a connected socket until the other side closes connection.