1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/**************************************************************************
* Copyright (C) 2011 Matthias Fuchs <mat69@gmx.net> *
* *
* 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) any later version. *
* *
* 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, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
***************************************************************************/
#include "filedeleter.h"
#include "filedeleter_p.h"
Q_GLOBAL_STATIC(FileDeleter, fileDeleter)
FileDeleter::Private::Private()
: QObject(nullptr)
{
}
FileDeleter::Private::~Private()
{
}
bool FileDeleter::Private::isFileBeingDeleted(const QUrl &dest) const
{
return m_jobs.contains(dest);
}
KJob *FileDeleter::Private::deleteFile(const QUrl &dest, QObject *receiver, const char *method)
{
QHash<QUrl, KJob *>::iterator it = m_jobs.find(dest);
if (it == m_jobs.end()) {
KJob *job = KIO::del(dest, KIO::HideProgressInfo);
it = m_jobs.insert(dest, job);
connect(*it, &KJob::result, this, &FileDeleter::Private::slotResult);
}
if (receiver && method) {
// make sure that there is just one connection
disconnect(*it, SIGNAL(result(KJob *)), receiver, method);
connect(*it, SIGNAL(result(KJob *)), receiver, method);
}
return *it;
}
void FileDeleter::Private::slotResult(KJob *job)
{
auto *deleteJob = static_cast<KIO::DeleteJob *>(job);
m_jobs.remove(deleteJob->urls().first());
}
FileDeleter::FileDeleter()
: d(new Private)
{
}
FileDeleter::~FileDeleter()
{
delete d;
}
KJob *FileDeleter::deleteFile(const QUrl &dest, QObject *receiver, const char *method)
{
return fileDeleter->d->deleteFile(dest, receiver, method);
}
bool FileDeleter::isFileBeingDeleted(const QUrl &dest)
{
return fileDeleter->d->isFileBeingDeleted(dest);
}
#include "moc_filedeleter_p.cpp"
|