You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Module description

This module allows to compute a boolean operation across multiple input status points in order to produce a single output status point.

The module will cache the values received for each input status point and whenever one of the inputs is received it will compute the result value of the operation and send it.

The types of boolean operations currently available are:

  • Boolean OR


TODO: Diagramme

Configuration

The following attributes are read from the Exchanged data configuration:

  • An array of operations that will generate the current status point as output
  • For each operation:
    • The type of operation
    • The list of inputs status points (Pivot ID)

Filtering rules

R1 : Only status points with a Pivot ID that appear in at least one of the operations are processed.

R2 : When receiving such status point convert its value to an internal boolean value [0-1] that is later called the operation input value.

  • For simple point data type operation input value = status point value unchanged.
  • For double point data type operation input value = 1 if the status point value is "on", else 0.

R3 : List all operations using the received status point as input and apply the following for each of them.

R3.1 : Use the values of all operation inputs to compute the operation result based on the operation type:

  • OR: Compute the logical OR of all inputs defined as "0 if all inputs are 0, else 1".

R3.2 : If one of the inputs was never received, assume its value is 0.

R3.3 : Create a new PIVOT object for the output status point and copy to it all fields from the received input status point (convert if needed the <PivotType>  section to match the type of the output status point).

R3.4 : Set the following values on the PIVOT object based on the operation type :

  • OR:
    • PIVOT.GTIS.Identifier = Pivot ID of the output status point
    • If output is a simple point data type: PIVOT.GTIS.<PivotType>.stVal = operation result.
    • If output is a double point data type: PIVOT.GTIS.<PivotType>.stVal = "on" if operation result is 1, else "off".
    • PIVOT.GTIS.<PivotType>.q.Source = "substituted".

R3.5 : Send the generated status point.

R4 : If any of the mandatory PIVOT fields necessary to identify or compute the operation is missing in the received reading, no output reading is generated for the operation.

R5 : If the input status point received is also the output status point and an output reading was generated with no error, delete the reading of the input status point, else the input reading is forwarded unchanged.

Data processing

Input

This filter plugin expects readings to be a pivot model status point datapoints.

The module uses the identification (Attribute "PIVOT.GTIS.Identifier") of the data to identify the operation to apply.

The data read from the pivots format are :

  • PIVOT.GTIM.SpsTyp.stVal => input value in bool format [0-1]
  • PIVOT.GTIM.DpsTyp.stVal => input value in enum format ("intermediate-state" | "off" | "on" | "bad-state")

Output

The generated output data points have the following format:

  • For a simple point data type :
    • PIVOT.GTIS.* = copy from input PIVOT.GITS 
    • PIVOT.GTIS.Identifier = output status point pivot ID
    • PIVOT.GTIS.SpsTyp.* = copy from input GTIS.<PivotType>
    • PIVOT.GTIS.SpsTyp.stVal = operation result
    • PIVOT.GTIS.SpsTyp.q.Source = "substituted"
  • For a double point data type :
    • PIVOT.GTIS.* = copy from input GITS
    • PIVOT.GTIS.Identifier = output status point pivot ID
    • PIVOT.GTIS.DpsTyp.* = copy from input PIVOT.GTIS.<PivotType> 
    • PIVOT.GTIS.DpsTyp.stVal"on" if operation result is 1, else "off"
    • PIVOT.GTIS.DpsTyp.q.Source = "substituted"


  • No labels