|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
|
|
|
* Copyright (C) 2006 Christophe Dumez
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
|
|
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
|
|
* and distribute the linked executables. You must obey the GNU General Public
|
|
|
|
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
* modify file(s), you may extend this exception to your version of the file(s),
|
|
|
|
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
|
|
* exception statement from your version.
|
|
|
|
*
|
|
|
|
* Contact : chris@qbittorrent.org
|
|
|
|
*/
|
|
|
|
#ifndef __BITTORRENT_H__
|
|
|
|
#define __BITTORRENT_H__
|
|
|
|
|
|
|
|
#include <QHash>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QPalette>
|
|
|
|
#include <QPointer>
|
|
|
|
|
|
|
|
#include <libtorrent/session.hpp>
|
|
|
|
#include <libtorrent/ip_filter.hpp>
|
|
|
|
#include "qtorrenthandle.h"
|
|
|
|
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
#define MAX_SAMPLES 20
|
|
|
|
|
|
|
|
class downloadThread;
|
|
|
|
class QTimer;
|
|
|
|
class FileSystemWatcher;
|
|
|
|
class FilterParserThread;
|
|
|
|
class HttpServer;
|
|
|
|
|
|
|
|
class bittorrent : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private:
|
|
|
|
session *s;
|
|
|
|
QPointer<FileSystemWatcher> FSWatcher;
|
|
|
|
QPointer<QTimer> timerAlerts;
|
|
|
|
QPointer<QTimer> BigRatioTimer;
|
|
|
|
bool DHTEnabled;
|
|
|
|
QPointer<downloadThread> downloader;
|
|
|
|
QString defaultSavePath;
|
|
|
|
QString defaultTempPath;
|
|
|
|
QHash<QString, QHash<QString, QString> > trackersErrors;
|
|
|
|
QStringList consoleMessages;
|
|
|
|
QStringList peerBanMessages;
|
|
|
|
bool preAllocateAll;
|
|
|
|
bool addInPause;
|
|
|
|
float ratio_limit;
|
|
|
|
bool UPnPEnabled;
|
|
|
|
bool NATPMPEnabled;
|
|
|
|
bool LSDEnabled;
|
|
|
|
QPointer<FilterParserThread> filterParser;
|
|
|
|
QString filterPath;
|
|
|
|
bool queueingEnabled;
|
|
|
|
QStringList url_skippingDlg;
|
|
|
|
QHash<QString, QString> savepath_fromurl;
|
|
|
|
bool resolve_countries;
|
|
|
|
bool geoipDBLoaded;
|
|
|
|
QPointer<QTimer> timerETA;
|
|
|
|
QHash<QString, QList<int> > ETA_samples;
|
|
|
|
// Web UI
|
|
|
|
QPointer<HttpServer> httpServer;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
QString getSavePath(QString hash);
|
|
|
|
bool initWebUi(QString username, QString password, int port);
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Constructor / Destructor
|
|
|
|
bittorrent();
|
|
|
|
~bittorrent();
|
|
|
|
QTorrentHandle getTorrentHandle(QString hash) const;
|
|
|
|
std::vector<torrent_handle> getTorrents() const;
|
|
|
|
bool isFilePreviewPossible(QString fileHash) const;
|
|
|
|
bool isDHTEnabled() const;
|
|
|
|
float getPayloadDownloadRate() const;
|
|
|
|
float getPayloadUploadRate() const;
|
|
|
|
session_status getSessionStatus() const;
|
|
|
|
int getListenPort() const;
|
|
|
|
float getRealRatio(QString hash) const;
|
|
|
|
session* getSession() const;
|
|
|
|
QHash<QString, QString> getTrackersErrors(QString hash) const;
|
|
|
|
bool has_filtered_files(QString hash) const;
|
|
|
|
bool hasActiveTorrents() const;
|
|
|
|
bool isQueueingEnabled() const;
|
|
|
|
int getMaximumActiveDownloads() const;
|
|
|
|
int getMaximumActiveTorrents() const;
|
|
|
|
int loadTorrentPriority(QString hash);
|
|
|
|
QStringList getConsoleMessages() const;
|
|
|
|
QStringList getPeerBanMessages() const;
|
|
|
|
qlonglong getETA(QString hash);
|
|
|
|
bool useTemporaryFolder() const;
|
|
|
|
QString getDefaultSavePath() const;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
QTorrentHandle addTorrent(QString path, bool fromScanDir = false, QString from_url = QString(), bool resumed = false);
|
|
|
|
QTorrentHandle addMagnetUri(QString magnet_uri, bool resumed=false);
|
|
|
|
void importOldTorrents();
|
|
|
|
void applyFormerAttributeFiles(QTorrentHandle h);
|
|
|
|
void importOldTempData(QString torrent_path);
|
|
|
|
void loadSessionState();
|
|
|
|
void saveSessionState();
|
|
|
|
void downloadFromUrl(QString url);
|
|
|
|
void deleteTorrent(QString hash, bool delete_local_files = false);
|
|
|
|
void startUpTorrents();
|
|
|
|
/* Needed by Web UI */
|
|
|
|
void pauseAllTorrents();
|
|
|
|
void pauseTorrent(QString hash);
|
|
|
|
void resumeTorrent(QString hash);
|
|
|
|
void resumeAllTorrents();
|
|
|
|
/* End Web UI */
|
|
|
|
void saveDHTEntry();
|
|
|
|
void preAllocateAllFiles(bool b);
|
|
|
|
void saveFastResumeData();
|
|
|
|
void enableDirectoryScanning(QString scan_dir);
|
|
|
|
void disableDirectoryScanning();
|
|
|
|
void enableIPFilter(QString filter);
|
|
|
|
void disableIPFilter();
|
|
|
|
void setQueueingEnabled(bool enable);
|
|
|
|
void handleDownloadFailure(QString url, QString reason);
|
|
|
|
void loadWebSeeds(QString fileHash);
|
|
|
|
void downloadUrlAndSkipDialog(QString url, QString save_path=QString::null);
|
|
|
|
// Session configuration - Setters
|
|
|
|
void setListeningPort(int port);
|
|
|
|
void setMaxConnections(int maxConnec);
|
|
|
|
void setMaxConnectionsPerTorrent(int max);
|
|
|
|
void setMaxUploadsPerTorrent(int max);
|
|
|
|
void setDownloadRateLimit(long rate);
|
|
|
|
void setUploadRateLimit(long rate);
|
|
|
|
void setGlobalRatio(float ratio);
|
|
|
|
void setDeleteRatio(float ratio);
|
|
|
|
void setDHTPort(int dht_port);
|
|
|
|
void setProxySettings(proxy_settings proxySettings, bool trackers=true, bool peers=true, bool web_seeds=true, bool dht=true);
|
|
|
|
void setSessionSettings(session_settings sessionSettings);
|
|
|
|
void startTorrentsInPause(bool b);
|
|
|
|
void setDefaultSavePath(QString savepath);
|
|
|
|
void setDefaultTempPath(QString temppath);
|
|
|
|
void applyEncryptionSettings(pe_settings se);
|
|
|
|
void loadFilesPriorities(QTorrentHandle& h);
|
|
|
|
void setDownloadLimit(QString hash, long val);
|
|
|
|
void setUploadLimit(QString hash, long val);
|
|
|
|
void enableUPnP(bool b);
|
|
|
|
void enableNATPMP(bool b);
|
|
|
|
void enableLSD(bool b);
|
|
|
|
bool enableDHT(bool b);
|
|
|
|
void addConsoleMessage(QString msg, QColor color=QApplication::palette().color(QPalette::WindowText));
|
|
|
|
void addPeerBanMessage(QString msg, bool from_ipfilter);
|
|
|
|
void processDownloadedFile(QString, QString);
|
|
|
|
void saveTrackerFile(QString hash);
|
|
|
|
void addMagnetSkipAddDlg(QString uri);
|
|
|
|
void downloadFromURLList(const QStringList& urls);
|
|
|
|
void configureSession();
|
|
|
|
void banIP(QString ip);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void addTorrentsFromScanFolder(QStringList&);
|
|
|
|
void readAlerts();
|
|
|
|
void loadTrackerFile(QString hash);
|
|
|
|
void deleteBigRatios();
|
|
|
|
void takeETASamples();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void addedTorrent(QTorrentHandle& h);
|
|
|
|
void deletedTorrent(QString hash);
|
|
|
|
void pausedTorrent(QTorrentHandle& h);
|
|
|
|
void resumedTorrent(QTorrentHandle& h);
|
|
|
|
void finishedTorrent(QTorrentHandle& h);
|
|
|
|
void fullDiskError(QTorrentHandle& h, QString msg);
|
|
|
|
void trackerError(QString hash, QString time, QString msg);
|
|
|
|
void trackerAuthenticationRequired(QTorrentHandle& h);
|
|
|
|
void newDownloadedTorrent(QString path, QString url);
|
|
|
|
void updateFileSize(QString hash);
|
|
|
|
void downloadFromUrlFailure(QString url, QString reason);
|
|
|
|
void torrentFinishedChecking(QTorrentHandle& h);
|
|
|
|
void metadataReceived(QTorrentHandle &h);
|
|
|
|
void torrentPaused(QTorrentHandle &h);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|