summaryrefslogtreecommitdiffstats
path: root/tests/nfctestserver/servercontroller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nfctestserver/servercontroller.cpp')
-rw-r--r--tests/nfctestserver/servercontroller.cpp159
1 files changed, 159 insertions, 0 deletions
diff --git a/tests/nfctestserver/servercontroller.cpp b/tests/nfctestserver/servercontroller.cpp
new file mode 100644
index 00000000..aafb82d4
--- /dev/null
+++ b/tests/nfctestserver/servercontroller.cpp
@@ -0,0 +1,159 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 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 "servercontroller.h"
+#include "servicenames.h"
+
+ServerController::ServerController(ConnectionType type, QObject *parent)
+: QObject(parent), m_server(new QLlcpServer(this)), m_socket(0), m_connectionType(type)
+{
+ connect(m_server, SIGNAL(newConnection()), this, SLOT(newConnection()));
+
+ switch (m_connectionType) {
+ case StreamConnection:
+ m_service = commandServer + streamSuffix;
+ break;
+ case DatagramConnection:
+ m_service = commandServer + datagramSuffix;
+ break;
+ }
+
+ m_server->listen(m_service);
+
+ if (m_server->isListening())
+ qDebug() << "Server listening on" << m_service;
+}
+
+ServerController::~ServerController()
+{
+ delete m_socket;
+ delete m_server;
+}
+
+void ServerController::newConnection()
+{
+ m_socket = m_server->nextPendingConnection();
+
+ qDebug() << "Server got new connection";
+
+ connect(m_socket, SIGNAL(readyRead()), this, SLOT(socketReadyRead()));
+ connect(m_socket, SIGNAL(bytesWritten(qint64)), this, SLOT(socketBytesWritten(qint64)));
+ connect(m_socket, SIGNAL(disconnected()), this, SLOT(socketDisconnected()));
+}
+
+void ServerController::socketReadyRead()
+{
+ switch (m_connectionType) {
+ case StreamConnection:
+ while (m_socket->canReadLine()) {
+ const QByteArray line = m_socket->readLine().trimmed();
+
+ qDebug() << "Server read line:" << line;
+
+ QByteArray command;
+ QByteArray parameter;
+
+ int index = line.indexOf(' ');
+ if (index >= 0) {
+ command = line.left(index);
+ parameter = line.mid(index + 1);
+ } else {
+ command = line;
+ }
+
+ if (command == "ECHO") {
+ m_socket->write(parameter + '\n');
+ } else if (command == "DISCONNECT") {
+ m_socket->disconnectFromService();
+ break;
+ } else if (command == "CLOSE") {
+ m_socket->close();
+ break;
+ } else if (command == "URI") {
+ m_socket->write(m_service.toLatin1());
+ m_socket->write("\n");
+ }
+ }
+ break;
+ case DatagramConnection:
+ while (m_socket->hasPendingDatagrams()) {
+ qint64 size = m_socket->pendingDatagramSize();
+ QByteArray data;
+ data.resize(size);
+ m_socket->readDatagram(data.data(), data.size());
+
+ QByteArray command;
+ QByteArray parameter;
+
+ int index = data.indexOf(' ');
+ if (index >= 0) {
+ command = data.left(index);
+ parameter = data.mid(index + 1);
+ } else {
+ command = data;
+ }
+
+ if (command == "ECHO") {
+ m_socket->writeDatagram(parameter);
+ } else if (command == "DISCONNECT") {
+ m_socket->disconnectFromService();
+ break;
+ } else if (command == "CLOSE") {
+ m_socket->close();
+ break;
+ } else if (command == "URI") {
+ m_socket->writeDatagram(m_service.toLatin1());
+ }
+ }
+ break;
+ }
+}
+
+void ServerController::socketBytesWritten(qint64 bytes)
+{
+ Q_UNUSED(bytes);
+}
+
+void ServerController::socketDisconnected()
+{
+ m_socket->deleteLater();
+ m_socket = 0;
+}