1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 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 QBLUETOOTHSERVICEINFO_P_H |
41 | #define QBLUETOOTHSERVICEINFO_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 | #include "qbluetoothuuid.h" |
55 | #include "qbluetoothaddress.h" |
56 | #include "qbluetoothdeviceinfo.h" |
57 | #include "qbluetoothserviceinfo.h" |
58 | |
59 | #include <QMap> |
60 | #include <QVariant> |
61 | |
62 | #ifdef Q_OS_MACOS |
63 | #include "osx/btraii_p.h" |
64 | #endif |
65 | |
66 | class OrgBluezServiceInterface; |
67 | class OrgBluezProfileManager1Interface; |
68 | |
69 | #ifdef QT_WINRT_BLUETOOTH |
70 | #include <wrl.h> |
71 | |
72 | namespace ABI { |
73 | namespace Windows { |
74 | namespace Devices { |
75 | namespace Bluetooth { |
76 | namespace Rfcomm { |
77 | struct IRfcommServiceProvider; |
78 | } |
79 | } |
80 | } |
81 | } |
82 | } |
83 | #endif |
84 | |
85 | #ifdef QT_WIN_BLUETOOTH |
86 | #include <winsock2.h> |
87 | #include <ws2bth.h> |
88 | #endif |
89 | |
90 | QT_BEGIN_NAMESPACE |
91 | |
92 | class QBluetoothServiceInfo; |
93 | |
94 | |
95 | class QBluetoothServiceInfoPrivate |
96 | : public QObject |
97 | { |
98 | Q_OBJECT |
99 | public: |
100 | QBluetoothServiceInfoPrivate(); |
101 | ~QBluetoothServiceInfoPrivate(); |
102 | |
103 | bool registerService(const QBluetoothAddress &localAdapter = QBluetoothAddress()); |
104 | |
105 | bool isRegistered() const; |
106 | |
107 | bool unregisterService(); |
108 | |
109 | QBluetoothDeviceInfo deviceInfo; |
110 | QMap<quint16, QVariant> attributes; |
111 | |
112 | QBluetoothServiceInfo::Sequence protocolDescriptor(QBluetoothUuid::ProtocolUuid protocol) const; |
113 | int serverChannel() const; |
114 | private: |
115 | #if QT_CONFIG(bluez) |
116 | bool ensureSdpConnection(const QBluetoothAddress &localAdapter = QBluetoothAddress()); |
117 | |
118 | OrgBluezServiceInterface *service = nullptr; |
119 | OrgBluezProfileManager1Interface *serviceBluez5 = nullptr; |
120 | quint32 serviceRecord; |
121 | QBluetoothAddress currentLocalAdapter; |
122 | QString profilePath; |
123 | #endif |
124 | |
125 | #ifdef QT_WINRT_BLUETOOTH |
126 | Microsoft::WRL::ComPtr<ABI::Windows::Devices::Bluetooth::Rfcomm::IRfcommServiceProvider> serviceProvider; |
127 | |
128 | bool writeSdpAttributes(); |
129 | #endif |
130 | |
131 | #ifdef QT_WIN_BLUETOOTH |
132 | SOCKADDR_BTH sockaddr = {}; |
133 | CSADDR_INFO addrinfo = {}; |
134 | WSAQUERYSET regInfo = {}; |
135 | QVector<WCHAR> serviceName; |
136 | QVector<WCHAR> serviceDescription; |
137 | #endif |
138 | |
139 | #if QT_OSX_BLUETOOTH |
140 | public: |
141 | bool registerService(const QBluetoothServiceInfo &info); |
142 | |
143 | private: |
144 | |
145 | using SDPRecord = DarwinBluetooth::ScopedPointer; |
146 | SDPRecord serviceRecord; |
147 | quint32 serviceRecordHandle = 0; |
148 | #endif // QT_OSX_BLUETOOTH |
149 | |
150 | mutable bool registered = false; |
151 | }; |
152 | |
153 | QT_END_NAMESPACE |
154 | |
155 | #endif // QBLUETOOTHSERVICEINFO_P_H |
156 | |