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:
|
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:
|
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?