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 84 85 86 87 88 89 90 91 92 93 94
|
/*
SPDX-FileCopyrightText: 2011 Joris Guisson <joris.guisson@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KT_TORRENTLOADQUEUE_H
#define KT_TORRENTLOADQUEUE_H
#include <QTimer>
#include <QUrl>
namespace kt
{
class CoreInterface;
/// Action to perform after loading torrent.
enum LoadedTorrentAction {
DeleteAction,
MoveAction,
DefaultAction,
};
/**
* Queue of potential torrents. It will try to load them one by one,
* in a sane and none GUI blocking way.
*/
class TorrentLoadQueue : public QObject
{
Q_OBJECT
public:
TorrentLoadQueue(CoreInterface *core, QObject *parent = nullptr);
~TorrentLoadQueue() override;
/// Set the loaded torrent action
void setLoadedTorrentAction(LoadedTorrentAction act)
{
action = act;
}
/// Get the loaded torrent action
LoadedTorrentAction loadedTorrentAction() const
{
return action;
}
public Q_SLOTS:
/**
* Add a torrent to load.
*/
void add(const QUrl &url);
/**
* Add a list of torrents
*/
void add(const QList<QUrl> &urls);
private:
/**
* Validate if a file is a torrent.
* @param url The file url
* @param data The torrent data will be put into this array upon success
* @return true upon success, false otherwise
*/
bool validateTorrent(const QUrl &url, QByteArray &data);
/**
* Load a torrent
* @param url The file url
* @param data The torrent data
*/
void load(const QUrl &url, const QByteArray &data);
private Q_SLOTS:
/**
* Attempt to load one torrent
*/
void loadOne();
private:
/**
* Loading of a torrent has finished.
* @param url The url
*/
void loadingFinished(const QUrl &url);
private:
CoreInterface *core;
QList<QUrl> to_load;
LoadedTorrentAction action;
QTimer timer;
};
}
#endif
|