The QNdefFilter class provides a filter for matching NDEF messages. 更多...
头: | #include <QNdefFilter> |
CMake: |
find_package(Qt6 REQUIRED COMPONENTS Nfc)
target_link_libraries(mytarget PRIVATE Qt6::Nfc) |
qmake: | QT += nfc |
struct | Record |
QNdefFilter () | |
QNdefFilter (const QNdefFilter & other ) | |
~QNdefFilter () | |
bool | appendRecord (unsigned int min = 1, unsigned int max = 1) |
bool | appendRecord (QNdefRecord::TypeNameFormat typeNameFormat , const QByteArray & type , unsigned int min = 1, unsigned int max = 1) |
bool | appendRecord (const QNdefFilter::Record & record ) |
void | clear () |
bool | match (const QNdefMessage & message ) const |
bool | orderMatch () const |
QNdefFilter::Record | recordAt (qsizetype i ) const |
qsizetype | recordCount () const |
void | setOrderMatch (bool on ) |
QNdefFilter & | operator= (const QNdefFilter & other ) |
The QNdefFilter encapsulates the structure of an NDEF message and is used for matching messages that have a particular structure.
The following filter matches NDEF messages that contain a single smart poster record:
QNdefFilter filter; filter.append(QNdefRecord::NfcRtd, "Sp");
The following filter matches NDEF messages that contain a URI, a localized piece of text and an optional JPEG image. The order of the records must be in the order specified:
QNdefFilter filter; filter.setOrderMatch(true); filter.appendRecord(QNdefRecord::NfcRtd, "U"); filter.appendRecord<QNdefNfcTextRecord>(); filter.appendRecord(QNdefRecord::Mime, "image/jpeg", 0, 1);
The match () method can be used to check if a message matches the filter.
The filter behavior depends on the value of orderMatch () parameter.
注意:
In the discussion below we will consider the filter records to be equal if their
typeNameFormat
and
type
parameters match. Joining two records means adding their
minimum
and
maximum
values, respectively.
If the record order is not taken into account, all the equal records in the filter can be joined. The resulting filter will contain only unique records, each with the updated
minimum
and
maximum
值。
考虑以下范例:
QNdefFilter filter; filter.appendRecord<QNdefNfcTextRecord>(0, 1); filter.appendRecord<QNdefNfcTextRecord>(0, 1); filter.appendRecord(QNdefRecord::Mime, "", 1, 1); filter.appendRecord<QNdefNfcTextRecord>(1, 1); filter.setOrderMatch(false);
With the unordered matching, the filter will be simplified to the following:
QNdefFilter filter; filter.appendRecord<QNdefNfcTextRecord>(1, 3); filter.appendRecord(QNdefRecord::Mime, "", 1, 1); filter.setOrderMatch(false);
Once the filter contains only the unique records, the matching algorithm iterates through the message and calculates the actual amount of records of each type. If all the actual amounts fit in the corresponding [minimum, maximum] ranges, the matching algorithm returns
true
.
If the record order is important, a different approach is applied. In this case the equal records can't be simply joined together. However, the consecutive equal records can still be joined. Then, the matching algorithm iterates through the message, this time also taking the positions of the records into account.
It's possible to add a filter record with an empty
type
. In this case the empty type will act as a wildcard for any type.
For example, the filter can be defined as follows:
QNdefFilter filter; filter.addRecord(QNdefRecord::Mime, "", 1, 1);
This filter specifies that the message must contain exactly one NDEF record with Mime typeNameFormat (), and any type ().
If the message contains some records that do not match
any
record in the filter, the matching algorithm will return
false
.
In the table below, each filter record is specified by the following parameters (in the given order):
typeNameFormat
- contains the
typeNameFormat
() of the record.
type
- contains the
type
() of the record.
minimum
- contains the minimum amount of occurrences of the record in the message.
maximum
- contains the maximum amount of occurrences of the record in the message.
The filter contains multiple records.
The message consists of multiple QNdefRecord s. In the table below, only the typeNameFormat () 和 type () of each record will be shown, because the other parameters do not matter for filtering.
Filter | Message | Match Result | 注释 |
---|---|---|---|
Empty filter | Empty message | Match | |
Empty filter | Non-empty message | No match | |
Non-empty filter | Empty message | No match | |
[( QNdefRecord::NfcRtd , "T", 1, 2), ( QNdefRecord::Mime , "", 1, 1), ( QNdefRecord::Empty , "", 0, 100)] | [( QNdefRecord::Mime , "image/jpeg"), ( QNdefRecord::Empty , ""), ( QNdefRecord::NfcRtd , "T"), ( QNdefRecord::Empty , ""), ( QNdefRecord::NfcRtd , "T")] | Unordered: match | Ordered filter does not match because the message must start with a QNdefRecord::NfcRtd record, but it starts with QNdefRecord::Mime . |
Ordered: no match | |||
[( QNdefRecord::NfcRtd , "T", 0, 2), ( QNdefRecord::Mime , "", 1, 1), ( QNdefRecord::NfcRtd , "T", 1, 1)] | [( QNdefRecord::NfcRtd , "T"), ( QNdefRecord::NfcRtd , "T"), ( QNdefRecord::Mime , "image/jpeg")] | Unordered: match | Ordered filter does not match because an QNdefRecord::NfcRtd record is expected after QNdefRecord::Mime , but the message does not have it. |
Ordered: no match | |||
[( QNdefRecord::NfcRtd , "T", 0, 2), ( QNdefRecord::NfcRtd , "T", 1, 1), ( QNdefRecord::Mime , "", 1, 1)] | [( QNdefRecord::NfcRtd , "T"), ( QNdefRecord::Mime , "image/jpeg")] | Unordered: match | Both cases match because the message contains the required minimum of records in the correct order. |
Ordered: match |
Constructs a new NDEF filter.
Constructs a new NDEF filter that is a copy of other .
Destroys the NDEF filter.
Appends a record matching the template parameter to the NDEF filter. The record must occur between min and max times in the NDEF message.
返回
true
if the record was appended successfully. Otherwise returns
false
.
Appends a record with type name format typeNameFormat and type type to the NDEF filter. The record must occur between min and max times in the NDEF message.
返回
true
if the record was appended successfully. Otherwise returns
false
.
Verifies the record and appends it to the NDEF filter.
返回
true
if the record was appended successfully. Otherwise returns
false
.
Clears the filter.
[since 6.2]
bool
QNdefFilter::
match
(const
QNdefMessage
&
message
) const
返回
true
若
message
matches the given filter. Otherwise returns
false
.
见 Matching Algorithms for more detailed explanation of matching.
该函数在 Qt 6.2 引入。
返回
true
if the filter takes NDEF record order into account when matching. Otherwise returns
false
.
另请参阅 setOrderMatch ().
Returns the NDEF record at index i .
i must be a valid index (i.e. 0 <= i < recordCount ()).
另请参阅 recordCount ().
Returns the number of NDEF records in the filter.
Sets the ordering requirements of the filter. If
on
is
true
, the filter will only match if the order of records in the filter matches the order of the records in the NDEF message. If
on
is
false
, the order of the records is not taken into account when matching.
By default record order is not taken into account.
另请参阅 orderMatch ().
赋值 other to this filter and returns a reference to this filter.