kdeconnect-kde/core/backends/bluetooth/bluetoothuploadjob.cpp

69 lines
2.1 KiB
C++
Raw Normal View History

2016-11-11 14:55:16 +00:00
/*
* SPDX-FileCopyrightText: 2016 Saikrishna Arcot <saiarcot895@gmail.com>
* SPDX-FileCopyrightText: 2018 Matthijs TIjink <matthijstijink@gmail.com>
2016-11-11 14:55:16 +00:00
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2016-11-11 14:55:16 +00:00
*/
#include "bluetoothuploadjob.h"
#include "connectionmultiplexer.h"
#include "multiplexchannel.h"
2016-11-11 14:55:16 +00:00
#include "core_debug.h"
#include <QBluetoothSocket>
2016-11-11 14:55:16 +00:00
#include <QCoreApplication>
BluetoothUploadJob::BluetoothUploadJob(const QSharedPointer<QIODevice> &data, ConnectionMultiplexer *connection, QObject *parent)
2016-11-11 14:55:16 +00:00
: QObject(parent)
, mData(data)
, mTransferUuid(connection->newChannel())
2016-11-11 14:55:16 +00:00
{
mSocket = QSharedPointer<MultiplexChannel>{connection->getChannel(mTransferUuid).release()};
2016-11-11 14:55:16 +00:00
}
QVariantMap BluetoothUploadJob::transferInfo() const
{
QVariantMap ret;
ret[QStringLiteral("uuid")] = mTransferUuid.toString().mid(1, 36);
2016-11-11 14:55:16 +00:00
return ret;
}
void BluetoothUploadJob::start()
{
if (!mData->open(QIODevice::ReadOnly)) {
qCWarning(KDECONNECT_CORE) << "error when opening the input to upload";
return; // TODO: Handle error, clean up...
2016-11-11 14:55:16 +00:00
}
connect(mSocket.data(), &MultiplexChannel::bytesWritten, this, &BluetoothUploadJob::writeSome);
connect(mSocket.data(), &MultiplexChannel::aboutToClose, this, &BluetoothUploadJob::closeConnection);
writeSome();
}
void BluetoothUploadJob::writeSome()
{
bool errorOccurred = false;
while (mSocket->bytesToWrite() == 0 && mData->bytesAvailable() && mSocket->isWritable()) {
qint64 bytes = qMin<qint64>(mData->bytesAvailable(), 4096);
int bytesWritten = mSocket->write(mData->read(bytes));
if (bytesWritten < 0) {
qCWarning(KDECONNECT_CORE) << "error when writing data to bluetooth upload" << bytes << mData->bytesAvailable();
errorOccurred = true;
2016-11-11 14:55:16 +00:00
break;
}
}
if (mData->atEnd() || errorOccurred) {
mData->close();
mSocket->close();
}
}
void BluetoothUploadJob::closeConnection()
{
2016-11-11 14:55:16 +00:00
mData->close();
deleteLater();
}
#include "moc_bluetoothuploadjob.cpp"