2011-08-24 04:09:22 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2013-06-24 14:19:34 +00:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-09-20 07:11:55 +00:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-08-24 04:09:22 +00:00
|
|
|
**
|
2011-10-19 15:53:02 +00:00
|
|
|
** This file is part of the QtBluetooth module of the Qt Toolkit.
|
2011-08-24 04:09:22 +00:00
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
2012-09-20 07:11:55 +00:00
|
|
|
** 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.
|
|
|
|
**
|
2011-08-24 04:09:22 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-20 07:11:55 +00:00
|
|
|
** 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.
|
2011-08-24 04:09:22 +00:00
|
|
|
**
|
2012-09-20 07:11:55 +00:00
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-08-24 04:09:22 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** GNU General Public License Usage
|
2012-09-20 07:11:55 +00:00
|
|
|
** 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.
|
2011-08-24 04:09:22 +00:00
|
|
|
**
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "qbluetoothsocket.h"
|
|
|
|
#include "qbluetoothsocket_p.h"
|
|
|
|
|
|
|
|
#include "bluez/manager_p.h"
|
|
|
|
#include "bluez/adapter_p.h"
|
|
|
|
#include "bluez/device_p.h"
|
|
|
|
|
|
|
|
#include <qplatformdefs.h>
|
|
|
|
|
2013-12-16 15:02:37 +00:00
|
|
|
#include <QtCore/QLoggingCategory>
|
2011-08-24 04:09:22 +00:00
|
|
|
#include <bluetooth/bluetooth.h>
|
|
|
|
#include <bluetooth/rfcomm.h>
|
|
|
|
#include <bluetooth/l2cap.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <QtCore/QSocketNotifier>
|
|
|
|
|
2013-09-05 11:32:00 +00:00
|
|
|
QT_BEGIN_NAMESPACE
|
2011-10-19 15:53:02 +00:00
|
|
|
|
2013-12-16 15:02:37 +00:00
|
|
|
Q_DECLARE_LOGGING_CATEGORY(QT_BT_BLUEZ)
|
|
|
|
|
2011-08-24 04:09:22 +00:00
|
|
|
QBluetoothSocketPrivate::QBluetoothSocketPrivate()
|
|
|
|
: socket(-1),
|
2013-09-18 15:23:16 +00:00
|
|
|
socketType(QBluetoothServiceInfo::UnknownProtocol),
|
2011-08-24 04:09:22 +00:00
|
|
|
state(QBluetoothSocket::UnconnectedState),
|
2014-01-28 10:57:09 +00:00
|
|
|
socketError(QBluetoothSocket::NoSocketError),
|
2011-08-24 04:09:22 +00:00
|
|
|
readNotifier(0),
|
|
|
|
connectWriteNotifier(0),
|
|
|
|
connecting(false),
|
|
|
|
discoveryAgent(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QBluetoothSocketPrivate::~QBluetoothSocketPrivate()
|
|
|
|
{
|
|
|
|
delete readNotifier;
|
|
|
|
readNotifier = 0;
|
|
|
|
delete connectWriteNotifier;
|
|
|
|
connectWriteNotifier = 0;
|
|
|
|
}
|
|
|
|
|
2013-09-18 15:23:16 +00:00
|
|
|
bool QBluetoothSocketPrivate::ensureNativeSocket(QBluetoothServiceInfo::Protocol type)
|
2011-08-24 04:09:22 +00:00
|
|
|
{
|
|
|
|
if (socket != -1) {
|
|
|
|
if (socketType == type)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
delete readNotifier;
|
|
|
|
readNotifier = 0;
|
|
|
|
delete connectWriteNotifier;
|
|
|
|
connectWriteNotifier = 0;
|
|
|
|
QT_CLOSE(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
socketType = type;
|
|
|
|
|
|
|
|
switch (type) {
|
2013-09-18 15:23:16 +00:00
|
|
|
case QBluetoothServiceInfo::L2capProtocol:
|
2011-08-24 04:09:22 +00:00
|
|
|
socket = ::socket(AF_BLUETOOTH, SOCK_SEQPACKET, BTPROTO_L2CAP);
|
|
|
|
break;
|
2013-09-18 15:23:16 +00:00
|
|
|
case QBluetoothServiceInfo::RfcommProtocol:
|
2011-08-24 04:09:22 +00:00
|
|
|
socket = ::socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
socket = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (socket == -1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
int flags = fcntl(socket, F_GETFL, 0);
|
|
|
|
fcntl(socket, F_SETFL, flags | O_NONBLOCK);
|
|
|
|
|
|
|
|
Q_Q(QBluetoothSocket);
|
|
|
|
readNotifier = new QSocketNotifier(socket, QSocketNotifier::Read);
|
|
|
|
QObject::connect(readNotifier, SIGNAL(activated(int)), q, SLOT(_q_readNotify()));
|
2014-01-17 18:04:41 +00:00
|
|
|
connectWriteNotifier = new QSocketNotifier(socket, QSocketNotifier::Write, q);
|
2011-08-24 04:09:22 +00:00
|
|
|
QObject::connect(connectWriteNotifier, SIGNAL(activated(int)), q, SLOT(_q_writeNotify()));
|
|
|
|
|
|
|
|
connectWriteNotifier->setEnabled(false);
|
|
|
|
readNotifier->setEnabled(false);
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QBluetoothSocketPrivate::connectToService(const QBluetoothAddress &address, quint16 port, QIODevice::OpenMode openMode)
|
|
|
|
{
|
|
|
|
Q_Q(QBluetoothSocket);
|
|
|
|
Q_UNUSED(openMode);
|
|
|
|
int result = -1;
|
|
|
|
|
2013-09-18 15:23:16 +00:00
|
|
|
if (socketType == QBluetoothServiceInfo::RfcommProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_rc addr;
|
|
|
|
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
|
|
addr.rc_family = AF_BLUETOOTH;
|
|
|
|
addr.rc_channel = port;
|
|
|
|
|
|
|
|
convertAddress(address.toUInt64(), addr.rc_bdaddr.b);
|
|
|
|
|
|
|
|
connectWriteNotifier->setEnabled(true);
|
|
|
|
readNotifier->setEnabled(true);QString();
|
|
|
|
|
|
|
|
result = ::connect(socket, (sockaddr *)&addr, sizeof(addr));
|
2013-09-18 15:23:16 +00:00
|
|
|
} else if (socketType == QBluetoothServiceInfo::L2capProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_l2 addr;
|
|
|
|
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
|
|
addr.l2_family = AF_BLUETOOTH;
|
|
|
|
addr.l2_psm = port;
|
|
|
|
|
|
|
|
convertAddress(address.toUInt64(), addr.l2_bdaddr.b);
|
|
|
|
|
|
|
|
connectWriteNotifier->setEnabled(true);
|
|
|
|
readNotifier->setEnabled(true);
|
|
|
|
|
|
|
|
result = ::connect(socket, (sockaddr *)&addr, sizeof(addr));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result >= 0 || (result == -1 && errno == EINPROGRESS)) {
|
|
|
|
connecting = true;
|
|
|
|
q->setSocketState(QBluetoothSocket::ConnectingState);
|
|
|
|
} else {
|
2014-01-29 09:18:26 +00:00
|
|
|
errorString = qt_error_string(errno);
|
2011-08-24 04:09:22 +00:00
|
|
|
q->setSocketError(QBluetoothSocket::UnknownSocketError);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QBluetoothSocketPrivate::_q_writeNotify()
|
|
|
|
{
|
|
|
|
Q_Q(QBluetoothSocket);
|
|
|
|
if(connecting && state == QBluetoothSocket::ConnectingState){
|
|
|
|
int errorno, len;
|
|
|
|
len = sizeof(errorno);
|
|
|
|
::getsockopt(socket, SOL_SOCKET, SO_ERROR, &errorno, (socklen_t*)&len);
|
|
|
|
if(errorno) {
|
2014-01-29 09:18:26 +00:00
|
|
|
errorString = qt_error_string(errorno);
|
2014-01-28 09:13:28 +00:00
|
|
|
q->setSocketError(QBluetoothSocket::UnknownSocketError);
|
2011-08-24 04:09:22 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
q->setSocketState(QBluetoothSocket::ConnectedState);
|
|
|
|
emit q->connected();
|
|
|
|
|
|
|
|
connectWriteNotifier->setEnabled(false);
|
|
|
|
connecting = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (txBuffer.size() == 0) {
|
|
|
|
connectWriteNotifier->setEnabled(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
int size = txBuffer.read(buf, 1024);
|
|
|
|
|
|
|
|
if (::write(socket, buf, size) != size) {
|
2014-02-13 11:06:43 +00:00
|
|
|
errorString = QBluetoothSocket::tr("Network Error");
|
2014-01-28 09:13:28 +00:00
|
|
|
q->setSocketError(QBluetoothSocket::NetworkError);
|
2011-08-24 04:09:22 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
emit q->bytesWritten(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (txBuffer.size()) {
|
|
|
|
connectWriteNotifier->setEnabled(true);
|
|
|
|
}
|
|
|
|
else if (state == QBluetoothSocket::ClosingState) {
|
|
|
|
connectWriteNotifier->setEnabled(false);
|
|
|
|
this->close();
|
|
|
|
}
|
2014-01-17 18:04:41 +00:00
|
|
|
}
|
2011-08-24 04:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: move to private backend?
|
|
|
|
|
|
|
|
void QBluetoothSocketPrivate::_q_readNotify()
|
|
|
|
{
|
|
|
|
Q_Q(QBluetoothSocket);
|
|
|
|
char *writePointer = buffer.reserve(QPRIVATELINEARBUFFER_BUFFERSIZE);
|
|
|
|
// qint64 readFromDevice = q->readData(writePointer, QPRIVATELINEARBUFFER_BUFFERSIZE);
|
|
|
|
int readFromDevice = ::read(socket, writePointer, QPRIVATELINEARBUFFER_BUFFERSIZE);
|
|
|
|
if(readFromDevice <= 0){
|
|
|
|
int errsv = errno;
|
|
|
|
readNotifier->setEnabled(false);
|
|
|
|
connectWriteNotifier->setEnabled(false);
|
2014-01-29 09:18:26 +00:00
|
|
|
errorString = qt_error_string(errsv);
|
2013-12-16 15:02:37 +00:00
|
|
|
qCWarning(QT_BT_BLUEZ) << Q_FUNC_INFO << socket << "error:" << readFromDevice << errorString;
|
2011-08-24 04:09:22 +00:00
|
|
|
if(errsv == EHOSTDOWN)
|
2014-01-28 09:13:28 +00:00
|
|
|
q->setSocketError(QBluetoothSocket::HostNotFoundError);
|
2011-08-24 04:09:22 +00:00
|
|
|
else
|
2014-01-28 09:13:28 +00:00
|
|
|
q->setSocketError(QBluetoothSocket::UnknownSocketError);
|
2011-08-24 04:09:22 +00:00
|
|
|
|
|
|
|
q->disconnectFromService();
|
2014-01-17 18:04:41 +00:00
|
|
|
q->setSocketState(QBluetoothSocket::UnconnectedState);
|
2011-08-24 04:09:22 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
buffer.chop(QPRIVATELINEARBUFFER_BUFFERSIZE - (readFromDevice < 0 ? 0 : readFromDevice));
|
|
|
|
|
|
|
|
emit q->readyRead();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QBluetoothSocketPrivate::abort()
|
|
|
|
{
|
|
|
|
delete readNotifier;
|
|
|
|
readNotifier = 0;
|
|
|
|
delete connectWriteNotifier;
|
|
|
|
connectWriteNotifier = 0;
|
|
|
|
|
|
|
|
// We don't transition through Closing for abort, so
|
|
|
|
// we don't call disconnectFromService or
|
|
|
|
// QBluetoothSocket::close
|
|
|
|
QT_CLOSE(socket);
|
2014-01-24 13:59:08 +00:00
|
|
|
socket = -1;
|
2011-08-24 04:09:22 +00:00
|
|
|
|
|
|
|
Q_Q(QBluetoothSocket);
|
|
|
|
emit q->disconnected();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString QBluetoothSocketPrivate::localName() const
|
|
|
|
{
|
|
|
|
const QBluetoothAddress address = localAddress();
|
|
|
|
if (address.isNull())
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
OrgBluezManagerInterface manager(QLatin1String("org.bluez"), QLatin1String("/"),
|
|
|
|
QDBusConnection::systemBus());
|
|
|
|
|
|
|
|
QDBusPendingReply<QDBusObjectPath> reply = manager.FindAdapter(address.toString());
|
|
|
|
reply.waitForFinished();
|
|
|
|
if (reply.isError())
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
OrgBluezAdapterInterface adapter(QLatin1String("org.bluez"), reply.value().path(),
|
|
|
|
QDBusConnection::systemBus());
|
|
|
|
|
|
|
|
QDBusPendingReply<QVariantMap> properties = adapter.GetProperties();
|
|
|
|
properties.waitForFinished();
|
|
|
|
if (properties.isError())
|
|
|
|
return QString();
|
|
|
|
|
2014-01-27 16:36:14 +00:00
|
|
|
return properties.value().value(QLatin1String("Name")).toString();
|
2011-08-24 04:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QBluetoothAddress QBluetoothSocketPrivate::localAddress() const
|
|
|
|
{
|
2013-09-18 15:23:16 +00:00
|
|
|
if (socketType == QBluetoothServiceInfo::RfcommProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_rc addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getsockname(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) == 0) {
|
|
|
|
quint64 bdaddr;
|
|
|
|
convertAddress(addr.rc_bdaddr.b, bdaddr);
|
|
|
|
return QBluetoothAddress(bdaddr);
|
|
|
|
}
|
2013-09-18 15:23:16 +00:00
|
|
|
} else if (socketType == QBluetoothServiceInfo::L2capProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_l2 addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getsockname(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) == 0) {
|
|
|
|
quint64 bdaddr;
|
|
|
|
convertAddress(addr.l2_bdaddr.b, bdaddr);
|
|
|
|
return QBluetoothAddress(bdaddr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QBluetoothAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
quint16 QBluetoothSocketPrivate::localPort() const
|
|
|
|
{
|
2013-09-18 15:23:16 +00:00
|
|
|
if (socketType == QBluetoothServiceInfo::RfcommProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_rc addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getsockname(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) == 0)
|
|
|
|
return addr.rc_channel;
|
2013-09-18 15:23:16 +00:00
|
|
|
} else if (socketType == QBluetoothServiceInfo::L2capProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_l2 addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getsockname(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) == 0)
|
|
|
|
return addr.l2_psm;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString QBluetoothSocketPrivate::peerName() const
|
|
|
|
{
|
|
|
|
quint64 bdaddr;
|
|
|
|
|
2013-09-18 15:23:16 +00:00
|
|
|
if (socketType == QBluetoothServiceInfo::RfcommProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_rc addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getpeername(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) < 0)
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
convertAddress(addr.rc_bdaddr.b, bdaddr);
|
2013-09-18 15:23:16 +00:00
|
|
|
} else if (socketType == QBluetoothServiceInfo::L2capProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_l2 addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getpeername(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) < 0)
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
convertAddress(addr.l2_bdaddr.b, bdaddr);
|
|
|
|
} else {
|
2014-01-24 13:12:46 +00:00
|
|
|
qCWarning(QT_BT_BLUEZ) << "peerName() called on socket of unknown type";
|
2011-08-24 04:09:22 +00:00
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2013-09-23 11:52:35 +00:00
|
|
|
const QString peerAddress = QBluetoothAddress(bdaddr).toString();
|
|
|
|
const QString localAdapter = localAddress().toString();
|
2011-08-24 04:09:22 +00:00
|
|
|
|
|
|
|
OrgBluezManagerInterface manager(QLatin1String("org.bluez"), QLatin1String("/"),
|
|
|
|
QDBusConnection::systemBus());
|
|
|
|
|
2013-09-23 11:52:35 +00:00
|
|
|
QDBusPendingReply<QDBusObjectPath> reply = manager.FindAdapter(localAdapter);
|
2011-08-24 04:09:22 +00:00
|
|
|
reply.waitForFinished();
|
|
|
|
if (reply.isError())
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
OrgBluezAdapterInterface adapter(QLatin1String("org.bluez"), reply.value().path(),
|
|
|
|
QDBusConnection::systemBus());
|
|
|
|
|
2013-09-23 11:52:35 +00:00
|
|
|
QDBusPendingReply<QDBusObjectPath> deviceObjectPath = adapter.CreateDevice(peerAddress);
|
2011-08-24 04:09:22 +00:00
|
|
|
deviceObjectPath.waitForFinished();
|
|
|
|
if (deviceObjectPath.isError()) {
|
|
|
|
if (deviceObjectPath.error().name() != QLatin1String("org.bluez.Error.AlreadyExists"))
|
|
|
|
return QString();
|
|
|
|
|
2013-09-23 11:52:35 +00:00
|
|
|
deviceObjectPath = adapter.FindDevice(peerAddress);
|
2011-08-24 04:09:22 +00:00
|
|
|
deviceObjectPath.waitForFinished();
|
|
|
|
if (deviceObjectPath.isError())
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
OrgBluezDeviceInterface device(QLatin1String("org.bluez"), deviceObjectPath.value().path(),
|
|
|
|
QDBusConnection::systemBus());
|
|
|
|
|
|
|
|
QDBusPendingReply<QVariantMap> properties = device.GetProperties();
|
|
|
|
properties.waitForFinished();
|
|
|
|
if (properties.isError())
|
|
|
|
return QString();
|
|
|
|
|
2014-01-27 16:36:14 +00:00
|
|
|
return properties.value().value(QLatin1String("Alias")).toString();
|
2011-08-24 04:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QBluetoothAddress QBluetoothSocketPrivate::peerAddress() const
|
|
|
|
{
|
2013-09-18 15:23:16 +00:00
|
|
|
if (socketType == QBluetoothServiceInfo::RfcommProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_rc addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getpeername(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) == 0) {
|
|
|
|
quint64 bdaddr;
|
|
|
|
convertAddress(addr.rc_bdaddr.b, bdaddr);
|
|
|
|
return QBluetoothAddress(bdaddr);
|
|
|
|
}
|
2013-09-18 15:23:16 +00:00
|
|
|
} else if (socketType == QBluetoothServiceInfo::L2capProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_l2 addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getpeername(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) == 0) {
|
|
|
|
quint64 bdaddr;
|
|
|
|
convertAddress(addr.l2_bdaddr.b, bdaddr);
|
|
|
|
return QBluetoothAddress(bdaddr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QBluetoothAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
quint16 QBluetoothSocketPrivate::peerPort() const
|
|
|
|
{
|
2013-09-18 15:23:16 +00:00
|
|
|
if (socketType == QBluetoothServiceInfo::RfcommProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_rc addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getpeername(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) == 0)
|
|
|
|
return addr.rc_channel;
|
2013-09-18 15:23:16 +00:00
|
|
|
} else if (socketType == QBluetoothServiceInfo::L2capProtocol) {
|
2011-08-24 04:09:22 +00:00
|
|
|
sockaddr_l2 addr;
|
|
|
|
socklen_t addrLength = sizeof(addr);
|
|
|
|
|
|
|
|
if (::getpeername(socket, reinterpret_cast<sockaddr *>(&addr), &addrLength) == 0)
|
|
|
|
return addr.l2_psm;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 QBluetoothSocketPrivate::writeData(const char *data, qint64 maxSize)
|
|
|
|
{
|
|
|
|
Q_Q(QBluetoothSocket);
|
2014-02-26 12:45:15 +00:00
|
|
|
|
|
|
|
if (state != QBluetoothSocket::ConnectedState) {
|
|
|
|
errorString = QBluetoothSocket::tr("Cannot write while not connected");
|
|
|
|
q->setSocketError(QBluetoothSocket::OperationError);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-08-24 04:09:22 +00:00
|
|
|
if (q->openMode() & QIODevice::Unbuffered) {
|
|
|
|
if (::write(socket, data, maxSize) != maxSize) {
|
2014-02-13 11:06:43 +00:00
|
|
|
errorString = QBluetoothSocket::tr("Network Error");
|
2014-01-28 09:13:28 +00:00
|
|
|
q->setSocketError(QBluetoothSocket::NetworkError);
|
2014-03-11 14:36:22 +00:00
|
|
|
return -1;
|
2011-08-24 04:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
emit q->bytesWritten(maxSize);
|
|
|
|
|
|
|
|
return maxSize;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
if(!connectWriteNotifier)
|
2014-03-11 14:36:22 +00:00
|
|
|
return -1;
|
2011-08-24 04:09:22 +00:00
|
|
|
|
|
|
|
if(txBuffer.size() == 0) {
|
2014-01-17 18:04:41 +00:00
|
|
|
connectWriteNotifier->setEnabled(true);
|
2011-08-24 04:09:22 +00:00
|
|
|
QMetaObject::invokeMethod(q, "_q_writeNotify", Qt::QueuedConnection);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *txbuf = txBuffer.reserve(maxSize);
|
|
|
|
memcpy(txbuf, data, maxSize);
|
|
|
|
|
|
|
|
return maxSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 QBluetoothSocketPrivate::readData(char *data, qint64 maxSize)
|
|
|
|
{
|
2014-02-26 12:45:15 +00:00
|
|
|
Q_Q(QBluetoothSocket);
|
|
|
|
|
|
|
|
if (state != QBluetoothSocket::ConnectedState) {
|
|
|
|
errorString = QBluetoothSocket::tr("Cannot read while not connected");
|
|
|
|
q->setSocketError(QBluetoothSocket::OperationError);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!buffer.isEmpty()) {
|
2011-08-24 04:09:22 +00:00
|
|
|
int i = buffer.read(data, maxSize);
|
|
|
|
return i;
|
|
|
|
}
|
2014-02-26 12:45:15 +00:00
|
|
|
|
2011-08-24 04:09:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QBluetoothSocketPrivate::close()
|
|
|
|
{
|
|
|
|
Q_Q(QBluetoothSocket);
|
|
|
|
|
|
|
|
// Only go through closing if the socket was fully opened
|
|
|
|
if(state == QBluetoothSocket::ConnectedState)
|
|
|
|
q->setSocketState(QBluetoothSocket::ClosingState);
|
|
|
|
|
|
|
|
if(txBuffer.size() > 0 &&
|
|
|
|
state == QBluetoothSocket::ClosingState){
|
|
|
|
connectWriteNotifier->setEnabled(true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
delete readNotifier;
|
|
|
|
readNotifier = 0;
|
|
|
|
delete connectWriteNotifier;
|
|
|
|
connectWriteNotifier = 0;
|
|
|
|
|
|
|
|
// We are disconnected now, so go to unconnected.
|
|
|
|
q->setSocketState(QBluetoothSocket::UnconnectedState);
|
|
|
|
emit q->disconnected();
|
2014-01-24 13:59:08 +00:00
|
|
|
QT_CLOSE(socket);
|
|
|
|
socket = -1;
|
2011-08-24 04:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-18 15:23:16 +00:00
|
|
|
bool QBluetoothSocketPrivate::setSocketDescriptor(int socketDescriptor, QBluetoothServiceInfo::Protocol socketType_,
|
2011-08-24 04:09:22 +00:00
|
|
|
QBluetoothSocket::SocketState socketState, QBluetoothSocket::OpenMode openMode)
|
|
|
|
{
|
|
|
|
Q_Q(QBluetoothSocket);
|
|
|
|
delete readNotifier;
|
|
|
|
readNotifier = 0;
|
|
|
|
delete connectWriteNotifier;
|
|
|
|
connectWriteNotifier = 0;
|
|
|
|
|
|
|
|
socketType = socketType_;
|
|
|
|
socket = socketDescriptor;
|
|
|
|
|
|
|
|
// ensure that O_NONBLOCK is set on new connections.
|
|
|
|
int flags = fcntl(socket, F_GETFL, 0);
|
|
|
|
if (!(flags & O_NONBLOCK))
|
|
|
|
fcntl(socket, F_SETFL, flags | O_NONBLOCK);
|
|
|
|
|
|
|
|
readNotifier = new QSocketNotifier(socket, QSocketNotifier::Read);
|
|
|
|
QObject::connect(readNotifier, SIGNAL(activated(int)), q, SLOT(_q_readNotify()));
|
|
|
|
connectWriteNotifier = new QSocketNotifier(socket, QSocketNotifier::Write, q);
|
|
|
|
QObject::connect(connectWriteNotifier, SIGNAL(activated(int)), q, SLOT(_q_writeNotify()));
|
|
|
|
|
|
|
|
q->setSocketState(socketState);
|
|
|
|
q->setOpenMode(openMode);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 QBluetoothSocketPrivate::bytesAvailable() const
|
|
|
|
{
|
|
|
|
return buffer.size();
|
|
|
|
}
|
|
|
|
|
2013-09-05 11:32:00 +00:00
|
|
|
QT_END_NAMESPACE
|