summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/qbluetoothdevicediscoveryagent_winrt.cpp
blob: db1592b11f768f344c2770452a42e0bfd53a232c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** 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 The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/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.
**
** As a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include "qbluetoothdevicediscoveryagent.h"
#include "qbluetoothdevicediscoveryagent_p.h"
#include "qbluetoothaddress.h"
#include "qbluetoothuuid.h"
#include "qfunctions_winrt.h"

#include <QtCore/QLoggingCategory>
#include <QtCore/private/qeventdispatcher_winrt_p.h>

#include <wrl.h>
#include <windows.devices.enumeration.h>
#include <windows.devices.bluetooth.h>
#include <windows.foundation.collections.h>

using namespace Microsoft::WRL;
using namespace Microsoft::WRL::Wrappers;
using namespace ABI::Windows::Foundation;
using namespace ABI::Windows::Foundation::Collections;
using namespace ABI::Windows::Devices;
using namespace ABI::Windows::Devices::Bluetooth;
using namespace ABI::Windows::Devices::Enumeration;

QT_BEGIN_NAMESPACE

Q_DECLARE_LOGGING_CATEGORY(QT_BT_WINRT)

#define WARN_AND_RETURN_IF_FAILED(msg, ret) \
    if (FAILED(hr)) { \
        qCWarning(QT_BT_WINRT) << msg; \
        ret; \
    }

QBluetoothDeviceInfo bluetoothInfoFromDeviceId(HSTRING deviceId)
{
    ComPtr<IBluetoothDeviceStatics> deviceStatics;
    ComPtr<IBluetoothDevice> device;
    HRESULT hr = GetActivationFactory(HString::MakeReference(RuntimeClass_Windows_Devices_Bluetooth_BluetoothDevice).Get(), &deviceStatics);
    WARN_AND_RETURN_IF_FAILED("Could not obtain bluetooth device statics", return QBluetoothDeviceInfo());
    ComPtr<IAsyncOperation<BluetoothDevice *>> deviceFromIdOperation;
    hr = deviceStatics->FromIdAsync(deviceId, &deviceFromIdOperation);
    WARN_AND_RETURN_IF_FAILED("Could not obtain bluetooth device from id", return QBluetoothDeviceInfo());
    QWinRTFunctions::await(deviceFromIdOperation, device.GetAddressOf());
    WARN_AND_RETURN_IF_FAILED("Could not wait for bluetooth device operation to finish", return QBluetoothDeviceInfo());
    if (!device)
        return QBluetoothDeviceInfo();
    UINT64 address;
    HString name;
    ComPtr<IBluetoothClassOfDevice> classOfDevice;
    UINT32 classOfDeviceInt;
    device->get_BluetoothAddress(&address);
    device->get_Name(name.GetAddressOf());
    const QString btName = QString::fromWCharArray(WindowsGetStringRawBuffer(name.Get(), nullptr));
    device->get_ClassOfDevice(&classOfDevice);
    classOfDevice->get_RawValue(&classOfDeviceInt);
    IVectorView <Rfcomm::RfcommDeviceService *> *deviceServices;
    hr = device->get_RfcommServices(&deviceServices);
    WARN_AND_RETURN_IF_FAILED("Could not obtain bluetooth device services", return QBluetoothDeviceInfo());
    uint serviceCount;
    deviceServices->get_Size(&serviceCount);
    QList<QBluetoothUuid> uuids;
    for (uint i = 0; i < serviceCount; ++i) {
        ComPtr<Rfcomm::IRfcommDeviceService> service;
        deviceServices->GetAt(i, &service);
        ComPtr<Rfcomm::IRfcommServiceId> id;
        service->get_ServiceId(&id);
        GUID uuid;
        id->get_Uuid(&uuid);
        uuids.append(QBluetoothUuid(uuid));
    }

    qCDebug(QT_BT_WINRT) << "Discovered BT device: " << QString::number(address) << btName
        << "Num UUIDs" << uuids.count();

    QBluetoothDeviceInfo info(QBluetoothAddress(address), btName, classOfDeviceInt);
    info.setCoreConfigurations(QBluetoothDeviceInfo::BaseRateCoreConfiguration);
    info.setServiceUuids(uuids, QBluetoothDeviceInfo::DataIncomplete);
    info.setCached(true);

    return info;
}

QBluetoothDeviceInfo bluetoothInfoFromLeDeviceId(HSTRING deviceId)
{
    ComPtr<IBluetoothLEDeviceStatics> deviceStatics;
    ComPtr<IBluetoothLEDevice> device;
    HRESULT hr = GetActivationFactory(HString::MakeReference(RuntimeClass_Windows_Devices_Bluetooth_BluetoothLEDevice).Get(), &deviceStatics);
    WARN_AND_RETURN_IF_FAILED("Could not obtain bluetooth LE device statics", return QBluetoothDeviceInfo());
    ComPtr<IAsyncOperation<BluetoothLEDevice *>> deviceFromIdOperation;
    hr = deviceStatics->FromIdAsync(deviceId, &deviceFromIdOperation);
    WARN_AND_RETURN_IF_FAILED("Could not obtain bluetooth LE device from id", return QBluetoothDeviceInfo());
    QWinRTFunctions::await(deviceFromIdOperation, device.GetAddressOf());
    WARN_AND_RETURN_IF_FAILED("Could not wait for bluetooth LE device operation to finish", return QBluetoothDeviceInfo());
    if (!device)
        return QBluetoothDeviceInfo();
    UINT64 address;
    HString name;
    device->get_BluetoothAddress(&address);
    device->get_Name(name.GetAddressOf());
    const QString btName = QString::fromWCharArray(WindowsGetStringRawBuffer(name.Get(), nullptr));
    IVectorView <GenericAttributeProfile::GattDeviceService *> *deviceServices;
    hr = device->get_GattServices(&deviceServices);
    WARN_AND_RETURN_IF_FAILED("Could not obtain bluetooth LE device services", return QBluetoothDeviceInfo());
    uint serviceCount;
    deviceServices->get_Size(&serviceCount);
    QList<QBluetoothUuid> uuids;
    for (uint i = 0; i < serviceCount; ++i) {
        ComPtr<GenericAttributeProfile::IGattDeviceService> service;
        deviceServices->GetAt(i, &service);
        ComPtr<Rfcomm::IRfcommServiceId> id;
        GUID uuid;
        service->get_Uuid(&uuid);
        uuids.append(QBluetoothUuid(uuid));
    }

    qCDebug(QT_BT_WINRT) << "Discovered BTLE device: " << QString::number(address) << btName
        << "Num UUIDs" << uuids.count();

    QBluetoothDeviceInfo info(QBluetoothAddress(address), btName, 0);
    info.setCoreConfigurations(QBluetoothDeviceInfo::LowEnergyCoreConfiguration);
    info.setServiceUuids(uuids, QBluetoothDeviceInfo::DataIncomplete);
    info.setCached(true);

    return info;
}

class QWinRTBluetoothDeviceDiscoveryWorker : public QObject
{
    Q_OBJECT
public:
    QWinRTBluetoothDeviceDiscoveryWorker() : initializedModes(0)
    {
    }

    void start()
    {
        QEventDispatcherWinRT::runOnXamlThread([this]() {
            startDeviceDiscovery(BT);

            startDeviceDiscovery(BTLE);
            return S_OK;
        });

        qCDebug(QT_BT_WINRT) << "Worker started";
    }

    ~QWinRTBluetoothDeviceDiscoveryWorker()
    {
        if (leDeviceWatcher && leDeviceAddedToken.value)
            leDeviceWatcher->remove_Added(leDeviceAddedToken);
    }

private:
    enum BTMode {
        BT = 0x1,
        BTLE = 0x2,
        BTAll = BT|BTLE
    };

    void startDeviceDiscovery(BTMode mode)
    {
        HString deviceSelector;
        ComPtr<IDeviceInformationStatics> deviceInformationStatics;
        HRESULT hr = GetActivationFactory(HString::MakeReference(RuntimeClass_Windows_Devices_Enumeration_DeviceInformation).Get(), &deviceInformationStatics);
        WARN_AND_RETURN_IF_FAILED("Could not obtain device information statics", return);
        if (mode == BTLE) {
            ComPtr<IBluetoothLEDeviceStatics> bluetoothLeDeviceStatics;
            hr = GetActivationFactory(HString::MakeReference(RuntimeClass_Windows_Devices_Bluetooth_BluetoothLEDevice).Get(), &bluetoothLeDeviceStatics);
            WARN_AND_RETURN_IF_FAILED("Could not obtain bluetooth LE device statics", return);
            bluetoothLeDeviceStatics->GetDeviceSelector(deviceSelector.GetAddressOf());
        } else {
            ComPtr<IBluetoothDeviceStatics> bluetoothDeviceStatics;
            hr = GetActivationFactory(HString::MakeReference(RuntimeClass_Windows_Devices_Bluetooth_BluetoothDevice).Get(), &bluetoothDeviceStatics);
            WARN_AND_RETURN_IF_FAILED("Could not obtain bluetooth device statics", return);
            bluetoothDeviceStatics->GetDeviceSelector(deviceSelector.GetAddressOf());
        }
        ComPtr<IAsyncOperation<DeviceInformationCollection *>> op;
        hr = deviceInformationStatics->FindAllAsyncAqsFilter(deviceSelector.Get(), &op);
        WARN_AND_RETURN_IF_FAILED("Could not start bluetooth device discovery operation", return);
        op->put_Completed(
            Callback<IAsyncOperationCompletedHandler<DeviceInformationCollection *>>([this, mode](IAsyncOperation<DeviceInformationCollection *> *op, AsyncStatus) {
                onDeviceDiscoveryFinished(op, mode);
                return S_OK;
            }).Get());
        WARN_AND_RETURN_IF_FAILED("Could not add callback to bluetooth device discovery operation", return);
    }

    void onDeviceDiscoveryFinished(IAsyncOperation<DeviceInformationCollection *> *op, BTMode mode)
    {
        qCDebug(QT_BT_WINRT) << (mode == BT ? "BT" : "BTLE") << "scan completed";
        ComPtr<IVectorView<DeviceInformation *>> devices;
        op->GetResults(&devices);
        onDevicesFound(devices.Get(), mode);
        initializedModes |= mode;
        if (initializedModes == BTAll) {
            qCDebug(QT_BT_WINRT) << "All scans completed";
            emit initializationCompleted();
            setupLEDeviceWatcher();
        }
    }

    void onDeviceAdded(IDeviceInformation *deviceInfo, BTMode mode)
    {
        HString deviceId;
        deviceInfo->get_Id(deviceId.GetAddressOf());
        const QBluetoothDeviceInfo info = mode == BTLE
            ? bluetoothInfoFromLeDeviceId(deviceId.Get())
            : bluetoothInfoFromDeviceId(deviceId.Get());
        if (!info.isValid())
            return;

        for (QVector<QBluetoothDeviceInfo>::iterator iter = deviceList.begin();
            iter != deviceList.end(); ++iter) {
            // one of them has to be the traditional device, the other one the BTLE version (found in both scans)
            if (iter->address() == info.address()) {
                qCDebug(QT_BT_WINRT) << "Updating device" << iter->name() << iter->address();
                // merge service uuids
                QList<QBluetoothUuid> uuids = iter->serviceUuids();
                uuids.append(info.serviceUuids());
                const QSet<QBluetoothUuid> uuidSet = uuids.toSet();
                if (iter->serviceUuids().count() != uuidSet.count())
                    iter->setServiceUuids(uuidSet.toList(), QBluetoothDeviceInfo::DataIncomplete);

                iter->setCoreConfigurations(QBluetoothDeviceInfo::BaseRateAndLowEnergyCoreConfiguration);
                return;
            }
        }
        qCDebug(QT_BT_WINRT) << "Adding device" << info.name() << info.address();
        deviceList.append(info);
    }

    void onDevicesFound(IVectorView<DeviceInformation *> *devices, BTMode mode)
    {
        quint32 deviceCount;
        HRESULT hr = devices->get_Size(&deviceCount);
        deviceList.reserve(deviceList.length() + deviceCount);
        for (quint32 i = 0; i < deviceCount; ++i) {
            ComPtr<IDeviceInformation> device;
            hr = devices->GetAt(i, &device);
            onDeviceAdded(device.Get(), mode);
        }
    }

    void setupLEDeviceWatcher()
    {
        HString deviceSelector;
        ComPtr<IDeviceInformationStatics> deviceInformationStatics;
        HRESULT hr = GetActivationFactory(HString::MakeReference(RuntimeClass_Windows_Devices_Enumeration_DeviceInformation).Get(), &deviceInformationStatics);
        WARN_AND_RETURN_IF_FAILED("Could not obtain device information statics", return);
        ComPtr<IBluetoothLEDeviceStatics> bluetoothLeDeviceStatics;
        hr = GetActivationFactory(HString::MakeReference(RuntimeClass_Windows_Devices_Bluetooth_BluetoothLEDevice).Get(), &bluetoothLeDeviceStatics);
        WARN_AND_RETURN_IF_FAILED("Could not obtain bluetooth LE device statics", return);
        hr = bluetoothLeDeviceStatics->GetDeviceSelector(deviceSelector.GetAddressOf());
        WARN_AND_RETURN_IF_FAILED("Could not obtain device selector string", return);
        hr = deviceInformationStatics->CreateWatcherAqsFilter(deviceSelector.Get(), &leDeviceWatcher);
        WARN_AND_RETURN_IF_FAILED("Could not create le device watcher", return);
        auto deviceAddedCallback =
            Callback<ITypedEventHandler<DeviceWatcher*, DeviceInformation*>>([this](IDeviceWatcher *, IDeviceInformation *deviceInfo)
        {
            HString deviceId;
            HRESULT hr;
            hr = deviceInfo->get_Id(deviceId.GetAddressOf());
            Q_ASSERT_SUCCEEDED(hr);
            const QBluetoothDeviceInfo info = bluetoothInfoFromLeDeviceId(deviceId.Get());
            if (!info.isValid())
                return S_OK;

            qCDebug(QT_BT_WINRT) << "Found device" << info.name() << info.address();
            emit leDeviceFound(info);
            return S_OK;
        });
        hr = leDeviceWatcher->add_Added(deviceAddedCallback.Get(), &leDeviceAddedToken);
        WARN_AND_RETURN_IF_FAILED("Could not add \"device added\" callback", return);
    }

public slots:
    void onLeTimeout()
    {
        if (initializedModes == BTAll)
            emit scanFinished();
        else
            emit scanCanceled();
        deleteLater();
    }

Q_SIGNALS:
    void initializationCompleted();
    void leDeviceFound(const QBluetoothDeviceInfo &info);
    void scanFinished();
    void scanCanceled();

public:
    QVector<QBluetoothDeviceInfo> deviceList;

private:
    quint8 initializedModes;
    ComPtr<IDeviceWatcher> leDeviceWatcher;
    EventRegistrationToken leDeviceAddedToken;
};

QBluetoothDeviceDiscoveryAgentPrivate::QBluetoothDeviceDiscoveryAgentPrivate(
                const QBluetoothAddress &deviceAdapter,
                QBluetoothDeviceDiscoveryAgent *parent)

    :   inquiryType(QBluetoothDeviceDiscoveryAgent::GeneralUnlimitedInquiry),
        lastError(QBluetoothDeviceDiscoveryAgent::NoError),
        lowEnergySearchTimeout(25000),
        q_ptr(parent),
        leScanTimer(0)
{
    Q_UNUSED(deviceAdapter);
}

QBluetoothDeviceDiscoveryAgentPrivate::~QBluetoothDeviceDiscoveryAgentPrivate()
{
    disconnectAndClearWorker();
}

bool QBluetoothDeviceDiscoveryAgentPrivate::isActive() const
{
    return worker;
}

QBluetoothDeviceDiscoveryAgent::DiscoveryMethods QBluetoothDeviceDiscoveryAgent::supportedDiscoveryMethods()
{
    return (ClassicMethod | LowEnergyMethod);
}

void QBluetoothDeviceDiscoveryAgentPrivate::start(QBluetoothDeviceDiscoveryAgent::DiscoveryMethods)
{
    Q_Q(QBluetoothDeviceDiscoveryAgent);
    if (worker)
        return;

    // The worker handles its lifetime on its own (basically deletes itself as soon
    // as it's done with its work) to prevent windows callbacks that access objects
    // that have already been destroyed. Thus we create a new worker for every start
    // and just forget about it as soon as the operation is canceled or finished.
    worker = new QWinRTBluetoothDeviceDiscoveryWorker();
    discoveredDevices.clear();
    connect(worker, &QWinRTBluetoothDeviceDiscoveryWorker::initializationCompleted,
        this, &QBluetoothDeviceDiscoveryAgentPrivate::onListInitializationCompleted);
    connect(worker, &QWinRTBluetoothDeviceDiscoveryWorker::scanFinished,
            this, &QBluetoothDeviceDiscoveryAgentPrivate::onScanFinished);
    connect(worker, &QWinRTBluetoothDeviceDiscoveryWorker::scanCanceled,
            this, &QBluetoothDeviceDiscoveryAgentPrivate::onScanCanceled);
    connect(worker, &QWinRTBluetoothDeviceDiscoveryWorker::leDeviceFound,
            q, &QBluetoothDeviceDiscoveryAgent::deviceDiscovered);
    worker->start();

    if (lowEnergySearchTimeout > 0) { // otherwise no timeout and stop() required
        if (!leScanTimer) {
            leScanTimer = new QTimer(this);
            leScanTimer->setSingleShot(true);
            connect(leScanTimer, &QTimer::timeout,
                    worker, &QWinRTBluetoothDeviceDiscoveryWorker::onLeTimeout);
        }
        leScanTimer->setInterval(lowEnergySearchTimeout);
        leScanTimer->start();
    }
}

void QBluetoothDeviceDiscoveryAgentPrivate::stop()
{
    Q_Q(QBluetoothDeviceDiscoveryAgent);
    if (worker) {
        disconnectAndClearWorker();
        emit q->canceled();
    }
}

void QBluetoothDeviceDiscoveryAgentPrivate::onListInitializationCompleted()
{
    Q_Q(QBluetoothDeviceDiscoveryAgent);
    discoveredDevices = worker->deviceList.toList();
    foreach (const QBluetoothDeviceInfo &info, worker->deviceList)
        emit q->deviceDiscovered(info);
}

void QBluetoothDeviceDiscoveryAgentPrivate::onScanFinished()
{
    Q_Q(QBluetoothDeviceDiscoveryAgent);
    disconnectAndClearWorker();
    emit q->finished();
}

void QBluetoothDeviceDiscoveryAgentPrivate::onScanCanceled()
{
    Q_Q(QBluetoothDeviceDiscoveryAgent);
    disconnectAndClearWorker();
    emit q->canceled();
}

void QBluetoothDeviceDiscoveryAgentPrivate::disconnectAndClearWorker()
{
    if (!worker)
        return;

    disconnect(worker, &QWinRTBluetoothDeviceDiscoveryWorker::initializationCompleted,
        this, &QBluetoothDeviceDiscoveryAgentPrivate::onListInitializationCompleted);
    worker->deleteLater();
    worker.clear();
}

QT_END_NAMESPACE

#include <qbluetoothdevicediscoveryagent_winrt.moc>