- class EventFilter¶
Defines an
EventFilter
for a monitored item. More…Synopsis¶
Methods¶
def
__init__()
def
__lshift__()
def
__eq__()
def
selectClauses()
def
setWhereClause()
def
whereClause()
def
whereClauseRef()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
An event filter is required for monitoring events on the server. It consists of
select
clauses and awhere
clause.The
select
clauses are used to specify the data the user wants to receive when an event occurs. It consists ofQOpcUaSimpleAttributeOperand
simple attribute operands which select attributes of child nodes of an event type, for example the value attribute of the “Message” property of BaseEventType.The
where
clause is used to restrict the reported events by matching against certain criteria. Several operators and four different operand types allow filtering based on the values of the attributes of the child nodes of an event type.Filters can be constructed using the setter or the streaming operator. Streaming a
QOpcUaSimpleAttributeOperand
into an event filter adds a newselect
clause to the filter, aQOpcUaContentFilterElement
is appended to thewhere
clause. A content filter element can be constructed by streaming operands of the typesQOpcUaLiteralOperand
,QOpcUaElementOperand
,QOpcUaAttributeOperand
andQOpcUaSimpleAttributeOperand
and an operator into a content filter element. Only the last operator is used, previous operators will be discarded.The following
EventFilter
tells the server to report the value of the “Message” field for events that have a “Severity” field with value >= 500:QOpcUaMonitoringParameters::EventFilter filter; filter << QOpcUaSimpleAttributeOperand("Message"); // Select clause of the filter QOpcUaContentFilterElement condition; condition << QOpcUaContentFilterElement::FilterOperator::GreaterThanOrEqual; condition << QOpcUaSimpleAttributeOperand("Severity"); condition << QOpcUaLiteralOperand(500, QOpcUa::Types::UInt16); filter << condition; // Where clause of the filter
For a more complex example with two conditions, see
QOpcUaElementOperand
.- __init__()¶
- __init__(arg__1)
- Parameters:
arg__1 –
EventFilter
Constructs an event filter from
rhs
.- __lshift__(whereClauseElement)¶
- Parameters:
whereClauseElement –
QOpcUaContentFilterElement
- Return type:
EventFilter
Adds the content filter element
whereClauseElement
to the where clause of this event filter.- __lshift__(selectClauseElement)
- Parameters:
selectClauseElement –
QOpcUaSimpleAttributeOperand
- Return type:
EventFilter
Adds the simple attribute operand
selectClauseElement
to the select clause of this content filter element.- __eq__(rhs)¶
- Parameters:
rhs –
EventFilter
- Return type:
bool
Returns
true
if this event filter has the same value asrhs
.- selectClauses()¶
- Return type:
.list of QOpcUaSimpleAttributeOperand
Returns the selected event fields that shall be included when a new event is reported.
See also
setSelectClauses()
- selectClausesRef()¶
- Return type:
.list of QOpcUaSimpleAttributeOperand
Returns a reference to the select clauses.
- setSelectClauses(selectClauses)¶
- Parameters:
selectClauses – .list of QOpcUaSimpleAttributeOperand
Sets the select clauses to
selectClauses
.See also
selectClauses()
- setWhereClause(whereClause)¶
- Parameters:
whereClause – .list of QOpcUaContentFilterElement
Sets the where clause to
whereClause
.See also
whereClause()
- whereClause()¶
- Return type:
.list of QOpcUaContentFilterElement
Returns the content filter used to restrict the reported events to events matching certain criteria.
See also
setWhereClause()
- whereClauseRef()¶
- Return type:
.list of QOpcUaContentFilterElement
Returns a reference to the where clause.
See also
whereClause()