/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Mobility Components. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, 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, Digia gives you certain additional ** rights. These rights are described in the Digia 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. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qllcpserver_symbian_p.h" #include "symbian/llcpserver_symbian.h" #include "symbian/llcpsockettype2_symbian.h" #include "symbian/nearfieldutility_symbian.h" #include "symbian/debug.h" QTM_BEGIN_NAMESPACE QLlcpServerPrivate::QLlcpServerPrivate(QLlcpServer *q) :q_ptr(q) { BEGIN QT_TRAP_THROWING(m_symbianbackend = CLlcpServer::NewL(*this)); END } QLlcpServerPrivate::~QLlcpServerPrivate() { BEGIN close(); delete m_symbianbackend; END } bool QLlcpServerPrivate::listen(const QString &serviceUri) { BEGIN LOG(serviceUri); HBufC8* uri = NULL; TRAPD(err, uri = QNFCNdefUtility::QString2HBufC8L(serviceUri)); if(err != KErrNone) { return false; } bool ret = m_symbianbackend->Listen(*uri); delete uri; END return ret; } bool QLlcpServerPrivate::isListening() const { BEGIN END return m_symbianbackend->isListening(); } /*! Stops listening for incoming connections. */ void QLlcpServerPrivate::close() { BEGIN m_symbianbackend->StopListening(); qDeleteAll(m_pendingConnections); m_pendingConnections.clear(); END } QString QLlcpServerPrivate::serviceUri() const { BEGIN const TDesC8& uri= m_symbianbackend->serviceUri(); QString ret = QNFCNdefUtility::TDesC82QStringL(uri); LOG("QLlcpServerPrivate::serviceUri() ret="<hasPendingConnections(); } void QLlcpServerPrivate::invokeNewConnection() { BEGIN Q_Q(QLlcpServer); emit q->newConnection(); END } QLlcpSocket *QLlcpServerPrivate::nextPendingConnection() { BEGIN QLlcpSocket* qSocket = NULL; CLlcpSocketType2* socket_symbian = m_symbianbackend->nextPendingConnection(); if (socket_symbian) { QLlcpSocketPrivate *qSocket_p = new QLlcpSocketPrivate(socket_symbian); qSocket = new QLlcpSocket(qSocket_p,NULL); qSocket_p->attachCallbackHandler(qSocket); socket_symbian->AttachCallbackHandler(qSocket_p); QPointer p(qSocket); m_pendingConnections.append(p); } END return qSocket; } QLlcpSocket::SocketError QLlcpServerPrivate::serverError() const { BEGIN END return QLlcpSocket::UnknownSocketError; } QTM_END_NAMESPACE //EOF