| 1 | /**************************************************************************** |
| 2 | ** |
| 3 | ** Copyright (C) 2016 The Qt Company Ltd. |
| 4 | ** Copyright (C) 2016 BlackBerry Limited. All rights reserved. |
| 5 | ** Contact: https://www.qt.io/licensing/ |
| 6 | ** |
| 7 | ** This file is part of the QtBluetooth module of the Qt Toolkit. |
| 8 | ** |
| 9 | ** $QT_BEGIN_LICENSE:LGPL$ |
| 10 | ** Commercial License Usage |
| 11 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 12 | ** accordance with the commercial license agreement provided with the |
| 13 | ** Software or, alternatively, in accordance with the terms contained in |
| 14 | ** a written agreement between you and The Qt Company. For licensing terms |
| 15 | ** and conditions see https://www.qt.io/terms-conditions. For further |
| 16 | ** information use the contact form at https://www.qt.io/contact-us. |
| 17 | ** |
| 18 | ** GNU Lesser General Public License Usage |
| 19 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 20 | ** General Public License version 3 as published by the Free Software |
| 21 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
| 22 | ** packaging of this file. Please review the following information to |
| 23 | ** ensure the GNU Lesser General Public License version 3 requirements |
| 24 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
| 25 | ** |
| 26 | ** GNU General Public License Usage |
| 27 | ** Alternatively, this file may be used under the terms of the GNU |
| 28 | ** General Public License version 2.0 or (at your option) the GNU General |
| 29 | ** Public license version 3 or any later version approved by the KDE Free |
| 30 | ** Qt Foundation. The licenses are as published by the Free Software |
| 31 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
| 32 | ** included in the packaging of this file. Please review the following |
| 33 | ** information to ensure the GNU General Public License requirements will |
| 34 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
| 35 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
| 36 | ** |
| 37 | ** $QT_END_LICENSE$ |
| 38 | ** |
| 39 | ****************************************************************************/ |
| 40 | |
| 41 | #include "qbluetoothserver.h" |
| 42 | #include "qbluetoothserver_p.h" |
| 43 | #include "qbluetoothsocket.h" |
| 44 | #include "qbluetoothserviceinfo.h" |
| 45 | |
| 46 | QT_BEGIN_NAMESPACE |
| 47 | |
| 48 | /*! |
| 49 | \class QBluetoothServer |
| 50 | \inmodule QtBluetooth |
| 51 | \brief The QBluetoothServer class uses the RFCOMM or L2cap protocol to communicate with |
| 52 | a Bluetooth device. |
| 53 | |
| 54 | \since 5.2 |
| 55 | |
| 56 | QBluetoothServer is used to implement Bluetooth services over RFCOMM or L2cap. |
| 57 | |
| 58 | Start listening for incoming connections with listen(). Wait till the newConnection() signal |
| 59 | is emitted when a new connection is established, and call nextPendingConnection() to get a QBluetoothSocket |
| 60 | for the new connection. |
| 61 | |
| 62 | To enable other devices to find your service, create a QBluetoothServiceInfo with the |
| 63 | applicable attributes for your service and register it using QBluetoothServiceInfo::registerService(). |
| 64 | Call serverPort() to get the channel number that is being used. |
| 65 | |
| 66 | If the \l QBluetoothServiceInfo::Protocol is not supported by a platform, \l listen() will return \c false. |
| 67 | Android and WinRT only support RFCOMM for example. |
| 68 | |
| 69 | On iOS, this class cannot be used because the platform does not expose |
| 70 | an API which may permit access to QBluetoothServer related features. |
| 71 | |
| 72 | \sa QBluetoothServiceInfo, QBluetoothSocket |
| 73 | */ |
| 74 | |
| 75 | /*! |
| 76 | \fn void QBluetoothServer::newConnection() |
| 77 | |
| 78 | This signal is emitted when a new connection is available. |
| 79 | |
| 80 | The connected slot should call nextPendingConnection() to get a QBluetoothSocket object to |
| 81 | send and receive data over the connection. |
| 82 | |
| 83 | \sa nextPendingConnection(), hasPendingConnections() |
| 84 | */ |
| 85 | |
| 86 | /*! |
| 87 | \fn void QBluetoothServer::error(QBluetoothServer::Error error) |
| 88 | |
| 89 | This signal is emitted when an \a error occurs. |
| 90 | |
| 91 | \sa error(), QBluetoothServer::Error |
| 92 | */ |
| 93 | |
| 94 | /*! |
| 95 | \fn void QBluetoothServer::close() |
| 96 | |
| 97 | Closes and resets the listening socket. Any already established \l QBluetoothSocket |
| 98 | continues to operate and must be separately \l {QBluetoothSocket::close()}{closed}. |
| 99 | */ |
| 100 | |
| 101 | /*! |
| 102 | \enum QBluetoothServer::Error |
| 103 | |
| 104 | This enum describes Bluetooth server error types. |
| 105 | |
| 106 | \value NoError No error. |
| 107 | \value UnknownError An unknown error occurred. |
| 108 | \value PoweredOffError The Bluetooth adapter is powered off. |
| 109 | \value InputOutputError An input output error occurred. |
| 110 | \value ServiceAlreadyRegisteredError The service or port was already registered |
| 111 | \value UnsupportedProtocolError The \l {QBluetoothServiceInfo::Protocol}{Protocol} is not |
| 112 | supported on this platform. |
| 113 | */ |
| 114 | |
| 115 | /*! |
| 116 | \fn bool QBluetoothServer::listen(const QBluetoothAddress &address, quint16 port) |
| 117 | |
| 118 | Start listening for incoming connections to \a address on \a port. \a address |
| 119 | must be a local Bluetooth adapter address and \a port must be larger than zero |
| 120 | and not be taken already by another Bluetooth server object. It is recommended |
| 121 | to avoid setting a port number to enable the system to automatically choose |
| 122 | a port. |
| 123 | |
| 124 | Returns \c true if the operation succeeded and the server is listening for |
| 125 | incoming connections, otherwise returns \c false. |
| 126 | |
| 127 | If the server object is already listening for incoming connections this function |
| 128 | always returns \c false. \l close() should be called before calling this function. |
| 129 | |
| 130 | \sa isListening(), newConnection() |
| 131 | */ |
| 132 | |
| 133 | /*! |
| 134 | \fn void QBluetoothServer::setMaxPendingConnections(int numConnections) |
| 135 | |
| 136 | Sets the maximum number of pending connections to \a numConnections. If |
| 137 | the number of pending sockets exceeds this limit new sockets will be rejected. |
| 138 | |
| 139 | \sa maxPendingConnections() |
| 140 | */ |
| 141 | |
| 142 | /*! |
| 143 | \fn bool QBluetoothServer::hasPendingConnections() const |
| 144 | Returns true if a connection is pending, otherwise false. |
| 145 | */ |
| 146 | |
| 147 | /*! |
| 148 | \fn QBluetoothSocket *QBluetoothServer::nextPendingConnection() |
| 149 | |
| 150 | Returns a pointer to the QBluetoothSocket for the next pending connection. It is the callers |
| 151 | responsibility to delete the pointer. |
| 152 | */ |
| 153 | |
| 154 | /*! |
| 155 | \fn QBluetoothAddress QBluetoothServer::serverAddress() const |
| 156 | |
| 157 | Returns the server address. |
| 158 | */ |
| 159 | |
| 160 | /*! |
| 161 | \fn quint16 QBluetoothServer::serverPort() const |
| 162 | |
| 163 | Returns the server port number. |
| 164 | */ |
| 165 | |
| 166 | /*! |
| 167 | Constructs a bluetooth server with \a parent and \a serverType. |
| 168 | */ |
| 169 | QBluetoothServer::QBluetoothServer(QBluetoothServiceInfo::Protocol serverType, QObject *parent) |
| 170 | : QObject(parent), d_ptr(new QBluetoothServerPrivate(serverType, this)) |
| 171 | { |
| 172 | } |
| 173 | |
| 174 | /*! |
| 175 | Destroys the bluetooth server. |
| 176 | */ |
| 177 | QBluetoothServer::~QBluetoothServer() |
| 178 | { |
| 179 | delete d_ptr; |
| 180 | } |
| 181 | |
| 182 | /*! |
| 183 | \fn QBluetoothServiceInfo QBluetoothServer::listen(const QBluetoothUuid &uuid, const QString &serviceName) |
| 184 | |
| 185 | Convenience function for registering an SPP service with \a uuid and \a serviceName. |
| 186 | Because this function already registers the service, the QBluetoothServiceInfo object |
| 187 | which is returned can not be changed any more. To shutdown the server later on it is |
| 188 | required to call \l QBluetoothServiceInfo::unregisterService() and \l close() on this |
| 189 | server object. |
| 190 | |
| 191 | Returns a registered QBluetoothServiceInfo instance if successful otherwise an |
| 192 | invalid QBluetoothServiceInfo. This function always assumes that the default Bluetooth adapter |
| 193 | should be used. |
| 194 | |
| 195 | If the server object is already listening for incoming connections this function |
| 196 | returns an invalid \l QBluetoothServiceInfo. |
| 197 | |
| 198 | For an RFCOMM server this function is equivalent to following code snippet. |
| 199 | |
| 200 | \snippet qbluetoothserver.cpp listen |
| 201 | \snippet qbluetoothserver.cpp listen2 |
| 202 | \snippet qbluetoothserver.cpp listen3 |
| 203 | |
| 204 | \sa isListening(), newConnection(), listen() |
| 205 | */ |
| 206 | QBluetoothServiceInfo QBluetoothServer::listen(const QBluetoothUuid &uuid, const QString &serviceName) |
| 207 | { |
| 208 | Q_D(const QBluetoothServer); |
| 209 | if (!listen()) |
| 210 | return QBluetoothServiceInfo(); |
| 211 | //! [listen] |
| 212 | QBluetoothServiceInfo serviceInfo; |
| 213 | serviceInfo.setAttribute(attributeId: QBluetoothServiceInfo::ServiceName, value: serviceName); |
| 214 | QBluetoothServiceInfo::Sequence browseSequence; |
| 215 | browseSequence << QVariant::fromValue(value: QBluetoothUuid(QBluetoothUuid::PublicBrowseGroup)); |
| 216 | serviceInfo.setAttribute(attributeId: QBluetoothServiceInfo::BrowseGroupList, |
| 217 | value: browseSequence); |
| 218 | |
| 219 | QBluetoothServiceInfo::Sequence profileSequence; |
| 220 | QBluetoothServiceInfo::Sequence classId; |
| 221 | classId << QVariant::fromValue(value: QBluetoothUuid(QBluetoothUuid::SerialPort)); |
| 222 | classId << QVariant::fromValue(value: quint16(0x100)); |
| 223 | profileSequence.append(t: QVariant::fromValue(value: classId)); |
| 224 | serviceInfo.setAttribute(attributeId: QBluetoothServiceInfo::BluetoothProfileDescriptorList, |
| 225 | value: profileSequence); |
| 226 | |
| 227 | classId.clear(); |
| 228 | //Android requires custom uuid to be set as service class |
| 229 | classId << QVariant::fromValue(value: uuid); |
| 230 | classId << QVariant::fromValue(value: QBluetoothUuid(QBluetoothUuid::SerialPort)); |
| 231 | serviceInfo.setAttribute(attributeId: QBluetoothServiceInfo::ServiceClassIds, value: classId); |
| 232 | serviceInfo.setServiceUuid(uuid); |
| 233 | |
| 234 | QBluetoothServiceInfo::Sequence protocolDescriptorList; |
| 235 | QBluetoothServiceInfo::Sequence protocol; |
| 236 | protocol << QVariant::fromValue(value: QBluetoothUuid(QBluetoothUuid::L2cap)); |
| 237 | if (d->serverType == QBluetoothServiceInfo::L2capProtocol) |
| 238 | protocol << QVariant::fromValue(value: serverPort()); |
| 239 | protocolDescriptorList.append(t: QVariant::fromValue(value: protocol)); |
| 240 | protocol.clear(); |
| 241 | //! [listen] |
| 242 | if (d->serverType == QBluetoothServiceInfo::RfcommProtocol) { |
| 243 | //! [listen2] |
| 244 | protocol << QVariant::fromValue(value: QBluetoothUuid(QBluetoothUuid::Rfcomm)) |
| 245 | << QVariant::fromValue(value: quint8(serverPort())); |
| 246 | protocolDescriptorList.append(t: QVariant::fromValue(value: protocol)); |
| 247 | //! [listen2] |
| 248 | } |
| 249 | //! [listen3] |
| 250 | serviceInfo.setAttribute(attributeId: QBluetoothServiceInfo::ProtocolDescriptorList, |
| 251 | value: protocolDescriptorList); |
| 252 | bool result = serviceInfo.registerService(); |
| 253 | //! [listen3] |
| 254 | if (!result) { |
| 255 | close(); //close the still listening socket |
| 256 | return QBluetoothServiceInfo(); |
| 257 | } |
| 258 | return serviceInfo; |
| 259 | } |
| 260 | |
| 261 | /*! |
| 262 | Returns true if the server is listening for incoming connections, otherwise false. |
| 263 | */ |
| 264 | bool QBluetoothServer::isListening() const |
| 265 | { |
| 266 | Q_D(const QBluetoothServer); |
| 267 | |
| 268 | #if defined(QT_ANDROID_BLUETOOTH) || defined(QT_WINRT_BLUETOOTH) || defined(QT_OSX_BLUETOOTH) |
| 269 | return d->isListening(); |
| 270 | #endif |
| 271 | |
| 272 | return d->socket->state() == QBluetoothSocket::ListeningState; |
| 273 | } |
| 274 | |
| 275 | /*! |
| 276 | Returns the maximum number of pending connections. |
| 277 | |
| 278 | \sa setMaxPendingConnections() |
| 279 | */ |
| 280 | int QBluetoothServer::maxPendingConnections() const |
| 281 | { |
| 282 | Q_D(const QBluetoothServer); |
| 283 | |
| 284 | return d->maxPendingConnections; |
| 285 | } |
| 286 | |
| 287 | /*! |
| 288 | \fn QBluetoothServer::setSecurityFlags(QBluetooth::SecurityFlags security) |
| 289 | Sets the Bluetooth security flags to \a security. This function must be called before calling listen(). |
| 290 | The Bluetooth link will always be encrypted when using Bluetooth 2.1 devices as encryption is |
| 291 | mandatory. |
| 292 | |
| 293 | Android only supports two levels of security (secure and non-secure). If this flag is set to |
| 294 | \l QBluetooth::NoSecurity the server object will not employ any authentication or encryption. |
| 295 | Any other security flag combination will trigger a secure Bluetooth connection. |
| 296 | |
| 297 | On \macos, security flags are not supported and will be ignored. |
| 298 | */ |
| 299 | |
| 300 | /*! |
| 301 | \fn QBluetooth::SecurityFlags QBluetoothServer::securityFlags() const |
| 302 | Returns the Bluetooth security flags. |
| 303 | */ |
| 304 | |
| 305 | /*! |
| 306 | \fn QBluetoothSocket::ServerType QBluetoothServer::serverType() const |
| 307 | Returns the type of the QBluetoothServer. |
| 308 | */ |
| 309 | QBluetoothServiceInfo::Protocol QBluetoothServer::serverType() const |
| 310 | { |
| 311 | Q_D(const QBluetoothServer); |
| 312 | return d->serverType; |
| 313 | } |
| 314 | |
| 315 | /*! |
| 316 | \fn QBluetoothServer::Error QBluetoothServer::error() const |
| 317 | Returns the last error of the QBluetoothServer. |
| 318 | */ |
| 319 | QBluetoothServer::Error QBluetoothServer::error() const |
| 320 | { |
| 321 | Q_D(const QBluetoothServer); |
| 322 | return d->m_lastError; |
| 323 | } |
| 324 | |
| 325 | QT_END_NAMESPACE |
| 326 | |
| 327 | #include "moc_qbluetoothserver.cpp" |
| 328 | |