/**************************************************************************** ** ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: http://www.qt-project.org/ ** ** This file is part of the QtBluetooth module of the Qt Toolkit. ** ** $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 "qrfcommserver.h" #include "qrfcommserver_p.h" #include "qbluetoothsocket.h" #include "qbluetoothsocket_p.h" #include "qbluetoothlocaldevice.h" #include "symbian/utils_symbian_p.h" #include #include #include QTBLUETOOTH_BEGIN_NAMESPACE QRfcommServerPrivate::QRfcommServerPrivate() : socket(0),maxPendingConnections(1),securityFlags(QBluetooth::NoSecurity) { } QRfcommServerPrivate::~QRfcommServerPrivate() { delete socket; } void QRfcommServer::close() { Q_D(QRfcommServer); if(!d->socket) { // there is no way to propagate the error to user // so just ignore the problem. return; } d->socket->setSocketState(QBluetoothSocket::ClosingState); d->socket->close(); // force active object (socket) to run and shutdown socket. qApp->processEvents(QEventLoop::ExcludeUserInputEvents); } bool QRfcommServer::listen(const QBluetoothAddress &address, quint16 port) { Q_D(QRfcommServer); // listen has already been called before if(d->socket) return true; d->socket = new QBluetoothSocket(QBluetoothSocket::RfcommSocket,this); if(!d->socket) { return false; } d->ds = d->socket->d_ptr; if(!d->ds) { delete d->socket; d->socket = 0; return false; } d->ds->ensureNativeSocket(QBluetoothSocket::RfcommSocket); TRfcommSockAddr addr; if(!address.isNull()) { // TBTDevAddr constructor may panic TRAPD(err,addr.SetBTAddr(TBTDevAddr(address.toUInt64()))); if(err != KErrNone) { delete d->socket; d->socket = 0; return false; } } if (port == 0) addr.SetPort(KRfcommPassiveAutoBind); else addr.SetPort(port); TBTServiceSecurity security; switch (d->securityFlags) { case QBluetooth::Authentication: security.SetAuthentication(EMitmDesired); break; case QBluetooth::Authorization: security.SetAuthorisation(ETrue); break; case QBluetooth::Encryption: // "Secure" is BlueZ specific we just make sure the code remain compatible case QBluetooth::Secure: // authentication required security.SetAuthentication(EMitmDesired); security.SetEncryption(ETrue); break; case QBluetooth::NoSecurity: default: break; } if(d->ds->iSocket->Bind(addr) == KErrNone) { d->socket->setSocketState(QBluetoothSocket::BoundState); } else { delete d->socket; d->socket = 0; return false; } if(d->ds->iSocket->Listen(d->maxPendingConnections) != KErrNone) { delete d->socket; d->socket = 0; return false; } QBluetoothSocket *pendingSocket = new QBluetoothSocket(QBluetoothSocket::UnknownSocketType, this); if(!pendingSocket) { delete d->socket; d->socket = 0; return false; } QBluetoothSocketPrivate *pd = pendingSocket->d_ptr; pd->ensureBlankNativeSocket(QBluetoothSocket::RfcommSocket); connect(d->socket, SIGNAL(disconnected()), this, SLOT(_q_disconnected())); connect(d->socket, SIGNAL(connected()), this, SLOT(_q_connected())); connect(d->socket, SIGNAL(error(QBluetoothSocket::SocketError)), this, SLOT(_q_socketError(QBluetoothSocket::SocketError))); if (d->ds->iSocket->Accept(*pd->iSocket) == KErrNone) { d->socket->setSocketState(QBluetoothSocket::ListeningState); d->activeSockets.append(pendingSocket); return true; } else { delete d->socket, pendingSocket; d->socket = 0; return false; } } void QRfcommServer::setMaxPendingConnections(int numConnections) { Q_D(QRfcommServer); d->maxPendingConnections = numConnections; } QBluetoothAddress QRfcommServer::serverAddress() const { Q_D(const QRfcommServer); if(d->socket) return d->socket->localAddress(); else return QBluetoothAddress(); } quint16 QRfcommServer::serverPort() const { Q_D(const QRfcommServer); if(d->socket) return d->socket->localPort(); else return 0; } bool QRfcommServer::hasPendingConnections() const { Q_D(const QRfcommServer); return !d->activeSockets.isEmpty(); } QBluetoothSocket *QRfcommServer::nextPendingConnection() { Q_D(QRfcommServer); if (d->activeSockets.isEmpty()) return 0; QBluetoothSocket *next = d->activeSockets.takeFirst(); return next; } void QRfcommServerPrivate::_q_connected() { Q_Q(QRfcommServer); if(!activeSockets.isEmpty()) { // update state of the pending socket and start receiving (activeSockets.last())->setSocketState(QBluetoothSocket::ConnectedState); (activeSockets.last())->d_ptr->startReceive(); } else return; emit q->newConnection(); QBluetoothSocket *pendingSocket = new QBluetoothSocket(QBluetoothSocket::UnknownSocketType); if(!pendingSocket) { delete socket; socket = 0; return; } QBluetoothSocketPrivate *pd = pendingSocket->d_ptr; pd->ensureBlankNativeSocket(QBluetoothSocket::RfcommSocket); if (ds->iSocket->Accept(*pd->iSocket) == KErrNone) { socket->setSocketState(QBluetoothSocket::ListeningState); activeSockets.append(pendingSocket); return; } else { // we might reach this statement if we have reach // maxPendingConnections delete socket, pendingSocket; socket = 0; return; } } void QRfcommServerPrivate::_q_disconnected() { delete socket; socket = 0; } void QRfcommServerPrivate::_q_socketError(QBluetoothSocket::SocketError err) { delete socket; socket = 0; } void QRfcommServer::setSecurityFlags(QBluetooth::SecurityFlags security) { Q_D(QRfcommServer); d->securityFlags = security; } QBluetooth::SecurityFlags QRfcommServer::securityFlags() const { Q_D(const QRfcommServer); return d->securityFlags; } QTBLUETOOTH_END_NAMESPACE