| 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:BSD$ |
| 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 | ** BSD License Usage |
| 18 | ** Alternatively, you may use this file under the terms of the BSD license |
| 19 | ** as follows: |
| 20 | ** |
| 21 | ** "Redistribution and use in source and binary forms, with or without |
| 22 | ** modification, are permitted provided that the following conditions are |
| 23 | ** met: |
| 24 | ** * Redistributions of source code must retain the above copyright |
| 25 | ** notice, this list of conditions and the following disclaimer. |
| 26 | ** * Redistributions in binary form must reproduce the above copyright |
| 27 | ** notice, this list of conditions and the following disclaimer in |
| 28 | ** the documentation and/or other materials provided with the |
| 29 | ** distribution. |
| 30 | ** * Neither the name of The Qt Company Ltd nor the names of its |
| 31 | ** contributors may be used to endorse or promote products derived |
| 32 | ** from this software without specific prior written permission. |
| 33 | ** |
| 34 | ** |
| 35 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 36 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 37 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 38 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 39 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 40 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 41 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 42 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 43 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 44 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 45 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
| 46 | ** |
| 47 | ** $QT_END_LICENSE$ |
| 48 | ** |
| 49 | ****************************************************************************/ |
| 50 | |
| 51 | #include "chatclient.h" |
| 52 | |
| 53 | #include <QtCore/qmetaobject.h> |
| 54 | |
| 55 | ChatClient::ChatClient(QObject *parent) |
| 56 | : QObject(parent) |
| 57 | { |
| 58 | } |
| 59 | |
| 60 | ChatClient::~ChatClient() |
| 61 | { |
| 62 | stopClient(); |
| 63 | } |
| 64 | |
| 65 | //! [startClient] |
| 66 | void ChatClient::startClient(const QBluetoothServiceInfo &remoteService) |
| 67 | { |
| 68 | if (socket) |
| 69 | return; |
| 70 | |
| 71 | // Connect to service |
| 72 | socket = new QBluetoothSocket(QBluetoothServiceInfo::RfcommProtocol); |
| 73 | qDebug() << "Create socket" ; |
| 74 | socket->connectToService(service: remoteService); |
| 75 | qDebug() << "ConnectToService done" ; |
| 76 | |
| 77 | connect(sender: socket, signal: &QBluetoothSocket::readyRead, receiver: this, slot: &ChatClient::readSocket); |
| 78 | connect(sender: socket, signal: &QBluetoothSocket::connected, receiver: this, slot: QOverload<>::of(ptr: &ChatClient::connected)); |
| 79 | connect(sender: socket, signal: &QBluetoothSocket::disconnected, receiver: this, slot: &ChatClient::disconnected); |
| 80 | connect(sender: socket, signal: QOverload<QBluetoothSocket::SocketError>::of(ptr: &QBluetoothSocket::error), |
| 81 | receiver: this, slot: &ChatClient::onSocketErrorOccurred); |
| 82 | |
| 83 | } |
| 84 | //! [startClient] |
| 85 | |
| 86 | //! [stopClient] |
| 87 | void ChatClient::stopClient() |
| 88 | { |
| 89 | delete socket; |
| 90 | socket = nullptr; |
| 91 | } |
| 92 | //! [stopClient] |
| 93 | |
| 94 | //! [readSocket] |
| 95 | void ChatClient::readSocket() |
| 96 | { |
| 97 | if (!socket) |
| 98 | return; |
| 99 | |
| 100 | while (socket->canReadLine()) { |
| 101 | QByteArray line = socket->readLine(); |
| 102 | emit messageReceived(sender: socket->peerName(), |
| 103 | message: QString::fromUtf8(str: line.constData(), size: line.length())); |
| 104 | } |
| 105 | } |
| 106 | //! [readSocket] |
| 107 | |
| 108 | //! [sendMessage] |
| 109 | void ChatClient::sendMessage(const QString &message) |
| 110 | { |
| 111 | QByteArray text = message.toUtf8() + '\n'; |
| 112 | socket->write(data: text); |
| 113 | } |
| 114 | //! [sendMessage] |
| 115 | |
| 116 | void ChatClient::onSocketErrorOccurred(QBluetoothSocket::SocketError error) |
| 117 | { |
| 118 | if (error == QBluetoothSocket::NoSocketError) |
| 119 | return; |
| 120 | |
| 121 | QMetaEnum metaEnum = QMetaEnum::fromType<QBluetoothSocket::SocketError>(); |
| 122 | QString errorString = socket->peerName() + QLatin1Char(' ') |
| 123 | + metaEnum.valueToKey(value: error) + QLatin1String(" occurred" ); |
| 124 | |
| 125 | emit socketErrorOccurred(errorString); |
| 126 | } |
| 127 | |
| 128 | //! [connected] |
| 129 | void ChatClient::connected() |
| 130 | { |
| 131 | emit connected(name: socket->peerName()); |
| 132 | } |
| 133 | //! [connected] |
| 134 | |