/* * Copyright 2013 Albert Vaca * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License or (at your option) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved * by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of version 3 of the license. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "filetransferjob.h" #include #include #include #include #include "kdebugnamespace.h" FileTransferJob::FileTransferJob(const QSharedPointer& origin, qint64 size, const KUrl& destination) : KJob() , mOrigin(origin) , mDestinationJob(0) , mDeviceName("KDE Connect") , mDestination(destination) , mSpeedBytes(0) , mSize(size) , mWritten(0) { Q_ASSERT(destination.isLocalFile()); setCapabilities(Killable); kDebug(debugArea()) << "FileTransferJob Downloading payload to" << destination; } void FileTransferJob::openFinished(KJob* job) { kDebug(debugArea()) << job->errorString(); } void FileTransferJob::start() { QMetaObject::invokeMethod(this, "doStart", Qt::QueuedConnection); //kDebug(debugArea()) << "FileTransferJob start"; } void FileTransferJob::doStart() { description(this, i18n("Receiving file over KDE-Connect"), QPair(i18nc("File transfer origin", "From"), QString(mDeviceName)) ); KUrl destCheck = mDestination; if (QFile::exists(destCheck.path())) { QFileInfo destInfo(destCheck.path()); KIO::RenameDialog *dialog = new KIO::RenameDialog(0, i18n("Incoming file exists"), KUrl(mDeviceName + ":/" + destCheck.fileName()), destCheck, KIO::M_OVERWRITE, mSize, destInfo.size(), -1, destInfo.created().toTime_t(), -1, destInfo.lastModified().toTime_t() ); connect(this, SIGNAL(finished(KJob*)), dialog, SLOT(deleteLater())); connect(dialog, SIGNAL(finished(int)), SLOT(renameDone(int))); dialog->show(); return; } startTransfer(); } void FileTransferJob::renameDone(int result) { KIO::RenameDialog *renameDialog = qobject_cast(sender()); switch (result) { case KIO::R_CANCEL: //The user cancelled, killing the job emitResult(); case KIO::R_RENAME: mDestination = renameDialog->newDestUrl(); break; case KIO::R_OVERWRITE: { // Delete the old file if exists QFile oldFile(mDestination.path()); if (oldFile.exists()) { oldFile.remove(); } break; } default: kWarning() << "Unknown Error"; emitResult(); } renameDialog->deleteLater(); startTransfer(); } void FileTransferJob::startTransfer() { setTotalAmount(Bytes, mSize); setProcessedAmount(Bytes, 0); mTime = QTime::currentTime(); description(this, i18n("Receiving file over KDE-Connect"), QPair(i18nc("File transfer origin", "From"), QString(mDeviceName)), QPair(i18nc("File transfer destination", "To"), mDestination.path())); mDestinationJob = KIO::open(mDestination, QIODevice::WriteOnly); QFile(mDestination.path()).open(QIODevice::WriteOnly | QIODevice::Truncate); //KIO won't create the file if it doesn't exist connect(mDestinationJob, SIGNAL(open(KIO::Job*)), this, SLOT(open(KIO::Job*))); connect(mDestinationJob, SIGNAL(result(KJob*)), this, SLOT(openFinished(KJob*))); //Open destination file mDestinationJob->start(); } void FileTransferJob::open(KIO::Job* job) { Q_UNUSED(job); //kDebug(debugArea()) << "FileTransferJob open"; if (!mOrigin) { kDebug(debugArea()) << "FileTransferJob: Origin is null"; return; } //Open source file mOrigin->open(QIODevice::ReadOnly); Q_ASSERT(mOrigin->isOpen()); connect(mOrigin.data(), SIGNAL(readyRead()),this, SLOT(readyRead())); connect(mOrigin.data(), SIGNAL(disconnected()),this, SLOT(sourceFinished())); if (mOrigin->bytesAvailable() > 0) readyRead(); } void FileTransferJob::readyRead() { int bytes = qMin(qint64(4096), mOrigin->bytesAvailable()); QByteArray data = mOrigin->read(bytes); mDestinationJob->write(data); mWritten += data.size(); setProcessedAmount(Bytes, mWritten); //kDebug(debugArea()) << "readyRead" << mSize << mWritten << bytes; if (mSize > -1) { //If a least 1 second has passed since last update int secondsSinceLastTime = mTime.secsTo(QTime::currentTime()); if (secondsSinceLastTime > 0 && mSpeedBytes > 0) { float speed = (mWritten - mSpeedBytes) / secondsSinceLastTime; emitSpeed(speed); mTime = QTime::currentTime(); mSpeedBytes = mWritten; } else if(mSpeedBytes == 0) { mSpeedBytes = mWritten; } } if (mSize > -1 && mWritten >= mSize) { //At the end or expected size reached mOrigin->close(); //sourceFinished(); } else if (mOrigin->bytesAvailable() > 0) { QMetaObject::invokeMethod(this, "readyRead", Qt::QueuedConnection); } } void FileTransferJob::sourceFinished() { //Make sure we do not enter this function again disconnect(mOrigin.data(), SIGNAL(aboutToClose()),this, SLOT(sourceFinished())); //TODO: MD5-check the file if (mSize > -1 && mWritten != mSize) { kDebug(debugArea()) << "Received incomplete file (" << mWritten << " of " << mSize << " bytes)"; setError(1); setErrorText(i18n("Received incomplete file")); } else { kDebug(debugArea()) << "Finished transfer" << mDestinationJob->url(); } mDestinationJob->close(); mDestinationJob->deleteLater(); emitResult(); } bool FileTransferJob::doKill() { if (mDestinationJob) { mDestinationJob->close(); } if (mOrigin) { mOrigin->close(); } return true; }