/**************************************************************************** ** ** Copyright (C) 2013 Lauri Laanmets (Proekspert AS) ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtBluetooth module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** 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 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** 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. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qbluetoothdevicediscoveryagent_p.h" #include #include #include #include "android/devicediscoverybroadcastreceiver_p.h" QT_BEGIN_NAMESPACE Q_DECLARE_LOGGING_CATEGORY(QT_BT_ANDROID) QBluetoothDeviceDiscoveryAgentPrivate::QBluetoothDeviceDiscoveryAgentPrivate( const QBluetoothAddress &deviceAdapter, QBluetoothDeviceDiscoveryAgent *parent) : inquiryType(QBluetoothDeviceDiscoveryAgent::GeneralUnlimitedInquiry), lastError(QBluetoothDeviceDiscoveryAgent::NoError), errorString(QStringLiteral()), receiver(0), m_adapterAddress(deviceAdapter), m_active(false), pendingCancel(false), pendingStart(false), q_ptr(parent) { adapter = QAndroidJniObject::callStaticObjectMethod("android/bluetooth/BluetoothAdapter", "getDefaultAdapter", "()Landroid/bluetooth/BluetoothAdapter;"); } QBluetoothDeviceDiscoveryAgentPrivate::~QBluetoothDeviceDiscoveryAgentPrivate() { if (m_active) stop(); if (receiver) { receiver->unregisterReceiver(); delete receiver; } } bool QBluetoothDeviceDiscoveryAgentPrivate::isActive() const { if (pendingStart) return true; if (pendingCancel) return false; return m_active; } void QBluetoothDeviceDiscoveryAgentPrivate::start() { if (pendingCancel) { pendingStart = true; return; } Q_Q(QBluetoothDeviceDiscoveryAgent); if (!adapter.isValid()) { qCWarning(QT_BT_ANDROID) << "Device does not support Bluetooth"; lastError = QBluetoothDeviceDiscoveryAgent::InputOutputError; errorString = QBluetoothDeviceDiscoveryAgent::tr("Device does not support Bluetooth"); emit q->error(lastError); return; } if (!m_adapterAddress.isNull() && adapter.callObjectMethod("getAddress").toString() != m_adapterAddress.toString()) { qCWarning(QT_BT_ANDROID) << "Incorrect local adapter passed."; lastError = QBluetoothDeviceDiscoveryAgent::InvalidBluetoothAdapterError; errorString = QBluetoothDeviceDiscoveryAgent::tr("Passed address is not a local device."); emit q->error(lastError); return; } const int state = adapter.callMethod("getState"); if (state != 12) { // BluetoothAdapter.STATE_ON lastError = QBluetoothDeviceDiscoveryAgent::PoweredOffError; errorString = QBluetoothDeviceDiscoveryAgent::tr("Device is powered off"); emit q->error(lastError); return; } // install Java BroadcastReceiver if (!receiver) { receiver = new DeviceDiscoveryBroadcastReceiver(); qRegisterMetaType("QBluetoothDeviceInfo"); QObject::connect(receiver, SIGNAL(deviceDiscovered(QBluetoothDeviceInfo)), this, SLOT(processDiscoveredDevices(QBluetoothDeviceInfo))); QObject::connect(receiver, SIGNAL(finished()), this, SLOT(processDiscoveryFinished())); } discoveredDevices.clear(); const bool success = adapter.callMethod("startDiscovery"); if (!success) { lastError = QBluetoothDeviceDiscoveryAgent::InputOutputError; errorString = QBluetoothDeviceDiscoveryAgent::tr("Discovery cannot be started"); emit q->error(lastError); return; } m_active = true; qCDebug(QT_BT_ANDROID) << "QBluetoothDeviceDiscoveryAgentPrivate::start() - successfully executed."; } void QBluetoothDeviceDiscoveryAgentPrivate::stop() { Q_Q(QBluetoothDeviceDiscoveryAgent); if (!m_active) return; pendingCancel = true; pendingStart = false; bool success = adapter.callMethod("cancelDiscovery"); if (!success) { lastError = QBluetoothDeviceDiscoveryAgent::InputOutputError; errorString = QBluetoothDeviceDiscoveryAgent::tr("Discovery cannot be stopped"); emit q->error(lastError); return; } } void QBluetoothDeviceDiscoveryAgentPrivate::processDiscoveryFinished() { // We need to guard because Android sends two DISCOVERY_FINISHED when cancelling // Also if we have two active agents both receive the same signal. // If this one is not active ignore the device information if (!m_active) return; m_active = false; Q_Q(QBluetoothDeviceDiscoveryAgent); if (pendingCancel && !pendingStart) { emit q->canceled(); pendingCancel = false; } else if (pendingStart) { pendingStart = pendingCancel = false; start(); } else { // check that it didn't finish due to turned off Bluetooth Device const int state = adapter.callMethod("getState"); if (state != 12) { // BluetoothAdapter.STATE_ON lastError = QBluetoothDeviceDiscoveryAgent::PoweredOffError; errorString = QBluetoothDeviceDiscoveryAgent::tr("Device is powered off"); emit q->error(lastError); return; } emit q->finished(); } } void QBluetoothDeviceDiscoveryAgentPrivate::processDiscoveredDevices( const QBluetoothDeviceInfo &info) { // If we have two active agents both receive the same signal. // If this one is not active ignore the device information if (!m_active) return; Q_Q(QBluetoothDeviceDiscoveryAgent); discoveredDevices.append(info); qCDebug(QT_BT_ANDROID) << "Device found: " << info.name() << info.address().toString(); emit q->deviceDiscovered(info); } QT_END_NAMESPACE