Warning: That file was not part of the compilation database. It may have many parsing errors.
1 | /**************************************************************************** |
---|---|
2 | ** |
3 | ** Copyright (C) 2017 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the QtBluetooth module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or (at your option) the GNU General |
28 | ** Public license version 3 or any later version approved by the KDE Free |
29 | ** Qt Foundation. The licenses are as published by the Free Software |
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
31 | ** included in the packaging of this file. Please review the following |
32 | ** information to ensure the GNU General Public License requirements will |
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
35 | ** |
36 | ** $QT_END_LICENSE$ |
37 | ** |
38 | ****************************************************************************/ |
39 | |
40 | #ifndef QLOWENERGYCONTROLLERPRIVATEANDROID_P_H |
41 | #define QLOWENERGYCONTROLLERPRIVATEANDROID_P_H |
42 | |
43 | // |
44 | // W A R N I N G |
45 | // ------------- |
46 | // |
47 | // This file is not part of the Qt API. It exists purely as an |
48 | // implementation detail. This header file may change from version to |
49 | // version without notice, or even be removed. |
50 | // |
51 | // We mean it. |
52 | // |
53 | |
54 | |
55 | #include <qglobal.h> |
56 | #include <QtCore/QQueue> |
57 | #include <QtCore/QVector> |
58 | #include <QtBluetooth/qbluetooth.h> |
59 | #include <QtBluetooth/qlowenergycharacteristic.h> |
60 | #include "qlowenergycontroller.h" |
61 | #include "qlowenergycontrollerbase_p.h" |
62 | |
63 | #include <QtAndroidExtras/QAndroidJniObject> |
64 | #include "android/lowenergynotificationhub_p.h" |
65 | |
66 | #include <functional> |
67 | |
68 | QT_BEGIN_NAMESPACE |
69 | |
70 | class QLowEnergyServiceData; |
71 | class QTimer; |
72 | |
73 | class LowEnergyNotificationHub; |
74 | |
75 | extern void registerQLowEnergyControllerMetaType(); |
76 | |
77 | class QLeAdvertiser; |
78 | |
79 | class QLowEnergyControllerPrivateAndroid final : public QLowEnergyControllerPrivate |
80 | { |
81 | Q_OBJECT |
82 | public: |
83 | QLowEnergyControllerPrivateAndroid(); |
84 | ~QLowEnergyControllerPrivateAndroid() override; |
85 | |
86 | void init() override; |
87 | |
88 | void connectToDevice() override; |
89 | void disconnectFromDevice() override; |
90 | |
91 | void discoverServices() override; |
92 | void discoverServiceDetails(const QBluetoothUuid &service) override; |
93 | |
94 | void startAdvertising(const QLowEnergyAdvertisingParameters ¶ms, |
95 | const QLowEnergyAdvertisingData &advertisingData, |
96 | const QLowEnergyAdvertisingData &scanResponseData) override; |
97 | void stopAdvertising() override; |
98 | |
99 | void requestConnectionUpdate(const QLowEnergyConnectionParameters ¶ms) override; |
100 | |
101 | // read data |
102 | void readCharacteristic(const QSharedPointer<QLowEnergyServicePrivate> service, |
103 | const QLowEnergyHandle charHandle) override; |
104 | void readDescriptor(const QSharedPointer<QLowEnergyServicePrivate> service, |
105 | const QLowEnergyHandle charHandle, |
106 | const QLowEnergyHandle descriptorHandle) override; |
107 | |
108 | // write data |
109 | void writeCharacteristic(const QSharedPointer<QLowEnergyServicePrivate> service, |
110 | const QLowEnergyHandle charHandle, |
111 | const QByteArray &newValue, QLowEnergyService::WriteMode mode) override; |
112 | void writeDescriptor(const QSharedPointer<QLowEnergyServicePrivate> service, |
113 | const QLowEnergyHandle charHandle, |
114 | const QLowEnergyHandle descriptorHandle, |
115 | const QByteArray &newValue) override; |
116 | |
117 | void addToGenericAttributeList(const QLowEnergyServiceData &service, |
118 | QLowEnergyHandle startHandle) override; |
119 | |
120 | private: |
121 | |
122 | LowEnergyNotificationHub *hub; |
123 | |
124 | private slots: |
125 | void connectionUpdated(QLowEnergyController::ControllerState newState, |
126 | QLowEnergyController::Error errorCode); |
127 | void servicesDiscovered(QLowEnergyController::Error errorCode, |
128 | const QString &foundServices); |
129 | void serviceDetailsDiscoveryFinished(const QString& serviceUuid, |
130 | int startHandle, int endHandle); |
131 | void characteristicRead(const QBluetoothUuid &serviceUuid, int handle, |
132 | const QBluetoothUuid &charUuid, int properties, |
133 | const QByteArray& data); |
134 | void descriptorRead(const QBluetoothUuid &serviceUuid, const QBluetoothUuid &charUuid, |
135 | int handle, const QBluetoothUuid &descUuid, const QByteArray &data); |
136 | void characteristicWritten(int charHandle, const QByteArray &data, |
137 | QLowEnergyService::ServiceError errorCode); |
138 | void descriptorWritten(int descHandle, const QByteArray &data, |
139 | QLowEnergyService::ServiceError errorCode); |
140 | void serverDescriptorWritten(const QAndroidJniObject &jniDesc, const QByteArray &newValue); |
141 | void characteristicChanged(int charHandle, const QByteArray &data); |
142 | void serverCharacteristicChanged(const QAndroidJniObject &jniChar, const QByteArray &newValue); |
143 | void serviceError(int attributeHandle, QLowEnergyService::ServiceError errorCode); |
144 | void advertisementError(int errorCode); |
145 | |
146 | private: |
147 | void peripheralConnectionUpdated(QLowEnergyController::ControllerState newState, |
148 | QLowEnergyController::Error errorCode); |
149 | void centralConnectionUpdated(QLowEnergyController::ControllerState newState, |
150 | QLowEnergyController::Error errorCode); |
151 | }; |
152 | |
153 | QT_END_NAMESPACE |
154 | |
155 | #endif // QLOWENERGYCONTROLLERPRIVATEANDROID_P_H |
156 |
Warning: That file was not part of the compilation database. It may have many parsing errors.