Incoming Data Stream Handling

This section explains how flexible driver is handling the incoming data stream.

The driver is constantly receiving data bytes from a TCP connection, a serial port or via UDP datagrams. All those bytes are appended to the so-called Incoming Data Buffer.

Current contents of the buffer can be browsed in the Incoming Data Buffer Statistics property available via View Status action of flexible device context.

Every time a new data byte(s) are received and appended to the buffer, driver evaluates the Input Stream Splitter Expression. This expression must figure out whether the input buffer contains a fully defined protocol unit. If this is true, the splitter expression must return length of the protocol unit, i.e. number of bytes in it. In other case, if a complete protocol unit isn't fully received, the expression must return zero.

The Input Stream Splitter Expression is often analyzing the following:

  • First bytes of the input buffer that contain length of the current protocol unit. In this case, the expression checks certain "command length" bytes and returns their value once the buffer contains that much or more data.
  • Some command separator characters, or, more precisely, their first occurrence in the input buffer. If those characters are found, their index in the buffer is returned by the expression as it matches command length.

When the input stream splitter expression has returned a non-zero value (let's say N), driver removes first N bytes from the input buffer and sends them for further processing. At this point those bytes are converted to a String using UTF-8 encoding and further referred as Command.

Once a Command has been fully defined, driver evaluates the Decode Expression. This expression should transform (decode) the Command and return transformed command data as a String.

If the Command cannot be successfully decoded (e.g. command data is not consistent), the decode expression must return NULL.

The Decode Expression is normally doing the following:

  • Trimming command data by getting rid of meaningless command prefix and suffix
  • Checking command data validity, e.g. evaluating and checking the CRC by calling an external script

Decode expression and all other expressions in Command Exchange and Data Operations group can access Command data via command environment variable from within the expression. Use {env/command} reference to get a String representing bytes of the Command.

Once the Command was decoded, the driver needs to decide whether this Command is:

  • a synchronous reply to one of the previously send commands
  • or a asynchronous message representing a device event or asynchronous update of some device variable's value

To make this decision, driver evaluates the Asynchronous Command Detector Expression. This expression must analyze Command data and return:

  • TRUE is the Command is an asynchronous event of variable update. Further processing follows the algorithm described in Asynchronous Command Processing section.
  • FALSE otherwise, i.e. if the Command is a reply to one of the commands send by the server. Further processing follows the algorithm described in Synchronous Reply Processing section.

Was this page helpful?