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
|
/*
SPDX-FileCopyrightText: 2011 Joris Guisson <joris.guisson@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KT_SCANTHREAD_H
#define KT_SCANTHREAD_H
#include <QMutex>
#include <QStringList>
#include <QThread>
#include <QUrl>
#include "scanfolder.h"
#include <util/ptrmap.h>
#include <atomic>
class QDir;
namespace kt
{
/**
* Thread which scans directories in the background and looks for torrent files.
*/
class ScanThread : public QThread
{
Q_OBJECT
public:
ScanThread();
~ScanThread() override;
/**
* Set whether to scan recursively or not
* @param rec Recursive or not
*/
void setRecursive(bool rec);
/**
* Add a directory to scan.
* @param url Directory
* @param recursive Whether or not to scan resursively
*/
void addDirectory(const QUrl &url, bool recursive);
/**
* Stop the scanning thread.
*/
void stop();
/**
* Set the list of folders to scan.
* @param folders List of folders
*/
void setFolderList(const QStringList &folders);
protected:
void run() override;
private:
void scan(const QUrl &dir, bool recursive);
bool alreadyLoaded(const QDir &d, const QString &torrent);
void updateFolders();
void customEvent(QEvent *ev) override;
Q_SIGNALS:
/**
* Emitted when one or more torrents are found.
* @param torrents The list of torrents
*/
void found(const QList<QUrl> &torrents);
private:
QMutex mutex;
QStringList folders;
std::atomic<bool> stop_requested;
std::atomic<bool> recursive;
bt::PtrMap<QString, ScanFolder> scan_folders;
};
}
#endif // KT_SCANTHREAD_H
|