summaryrefslogtreecommitdiffstats
path: root/src/nfc/qnearfieldtagtype3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/nfc/qnearfieldtagtype3.cpp')
-rw-r--r--src/nfc/qnearfieldtagtype3.cpp185
1 files changed, 185 insertions, 0 deletions
diff --git a/src/nfc/qnearfieldtagtype3.cpp b/src/nfc/qnearfieldtagtype3.cpp
new file mode 100644
index 00000000..2c751b09
--- /dev/null
+++ b/src/nfc/qnearfieldtagtype3.cpp
@@ -0,0 +1,185 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Mobility Components.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "qnearfieldtagtype3.h"
+
+/*!
+ \class QNearFieldTagType3
+ \brief The QNearFieldTagType3 class provides an interface for communicating with an NFC Tag
+ Type 3 tag.
+ \since 5.0
+
+ \ingroup connectivity-nfc
+ \inmodule QtConnectivity
+*/
+
+/*!
+ \fn Type QNearFieldTagType3::type() const
+ \reimp
+*/
+
+/*!
+ Constructs a new tag type 3 near field target with \a parent.
+*/
+QNearFieldTagType3::QNearFieldTagType3(QObject *parent) :
+ QNearFieldTarget(parent)
+{
+}
+
+/*!
+ Returns the system code of the target.
+*/
+quint16 QNearFieldTagType3::systemCode()
+{
+ return 0;
+}
+
+/*!
+ Returns a list of available services.
+*/
+QList<quint16> QNearFieldTagType3::services()
+{
+ return QList<quint16>();
+}
+
+/*!
+ Returns the memory size of the service specified by \a serviceCode.
+*/
+int QNearFieldTagType3::serviceMemorySize(quint16 serviceCode)
+{
+ Q_UNUSED(serviceCode);
+
+ return 0;
+}
+
+/*!
+ Requests the data contents of the service specified by \a serviceCode. Returns a request id
+ which can be used to track the completion status of the request.
+
+ Once the request completes successfully the service data can be retrieved from the
+ requestResponse() function. The response of this request will be a QByteArray.
+
+ \sa requestCompleted(), waitForRequestCompleted()
+*/
+QNearFieldTarget::RequestId QNearFieldTagType3::serviceData(quint16 serviceCode)
+{
+ Q_UNUSED(serviceCode);
+
+ return RequestId();
+}
+
+/*!
+ Writes \a data to the the service specified by \a serviceCode. Returns a request id which can
+ be used to track the completion status of the request.
+
+ Once the request completes the response can be retrieved from the requestResponse() function.
+ The response of this request will be a boolean value, true for success; otherwise false.
+
+ \sa requestCompleted(), waitForRequestCompleted()
+*/
+QNearFieldTarget::RequestId QNearFieldTagType3::writeServiceData(quint16 serviceCode,
+ const QByteArray &data)
+{
+ Q_UNUSED(serviceCode);
+ Q_UNUSED(data);
+
+ return RequestId();
+}
+
+/*!
+ Sends the \i check request to the target. Requests the service data blocks specified by
+ \a serviceBlockList. Returns a request id which can be used to track the completion status of
+ the request.
+
+ The \a serviceBlockList parameter is a map with the key being the service code and the value
+ being a list of block indexes to retrieve.
+
+ Once the request completes the response can be retrieved from the requestResponse() function.
+ The response of this request will be a QMap<quint16, QByteArray>, with the key being the
+ service code and the value being the concatenated blocks retrieved for that service.
+
+ This is a low level function, to retrieve the entire data contents of a service use
+ serviceData().
+
+ \sa requestCompleted(), waitForRequestCompleted()
+*/
+QNearFieldTarget::RequestId QNearFieldTagType3::check(const QMap<quint16, QList<quint16> > &serviceBlockList)
+{
+ Q_UNUSED(serviceBlockList);
+
+ return RequestId();
+}
+
+/*!
+ Sends the \i update request to the target. Writes \a data to the services and block indexes
+ sepecified by \a serviceBlockList. Returns a request id which can be used to track the
+ completion status of the request.
+
+ The \a serviceBlockList parameter is a map with the key being the service code and the value
+ being a list of block indexes to write to.
+
+ Once the request completes the response can be retried from the requestResponse() function. The
+ response of this request will be a boolean value, true for success; otherwise false.
+
+ This is a low level function, to write the entire data contents of a service use
+ writeServiceData().
+
+ \sa requestCompleted(), waitForRequestCompleted()
+*/
+QNearFieldTarget::RequestId QNearFieldTagType3::update(const QMap<quint16, QList<quint16> > &serviceBlockList,
+ const QByteArray &data)
+{
+ Q_UNUSED(serviceBlockList);
+ Q_UNUSED(data);
+
+ return RequestId();
+}
+
+/*!
+ \reimp
+*/
+bool QNearFieldTagType3::handleResponse(const QNearFieldTarget::RequestId &id,
+ const QByteArray &response)
+{
+ return QNearFieldTarget::handleResponse(id, response);
+}
+
+#include "moc_qnearfieldtagtype3.cpp"