/* * 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. * * Contact : chris@qbittorrent.org */ #ifndef __BITTORRENT_H__ #define __BITTORRENT_H__ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "deleteThread.h" using namespace libtorrent; class downloadThread; class bittorrent : public QObject{ Q_OBJECT private: session *s; bool DHTEnabled; QString scan_dir; QTimer *timerScan; QTimer timerAlerts; downloadThread *downloader; QStringList supported_preview_extensions; QString defaultSavePath; QStringList torrentsToPauseAfterChecking; QStringList torrentsUnchecked; QHash > ETAstats; QHash ETAs; QTimer ETARefresher; protected: QString getSavePath(const QString& hash); public: // Constructor / Destructor bittorrent(); ~bittorrent(); torrent_handle getTorrentHandle(const QString& hash) const; std::vector getTorrentHandles() const; bool isPaused(const QString& hash) const; bool hasFilteredFiles(const QString& fileHash) const; bool isFilePreviewPossible(const QString& fileHash) const; bool isDHTEnabled() const; float getPayloadDownloadRate() const; float getPayloadUploadRate() const; QList getFinishedTorrentHandles() const; session_status getSessionStatus() const; int getListenPort() const; QStringList getTorrentsToPauseAfterChecking() const; QStringList getUncheckedTorrentsList() const; long getETA(QString hash) const; public slots: void addTorrent(const QString& path, bool fromScanDir = false, bool onStartup = false, const QString& from_url = QString()); void downloadFromUrl(const QString& url); void downloadFromURLList(const QStringList& url_list); void deleteTorrent(const QString& hash, bool permanent = false); void pauseTorrent(const QString& hash); bool pauseAllTorrents(); bool resumeAllTorrents(); void resumeTorrent(const QString& hash); void enableDHT(); void disableDHT(); void saveDHTEntry(); void saveFastResumeData(); void enableDirectoryScanning(const QString& scan_dir); void disableDirectoryScanning(); void enablePeerExchange(); void enableIPFilter(ip_filter filter); void disableIPFilter(); void reloadTorrent(const torrent_handle &h, bool compact_mode = true); void setTorrentFinishedChecking(QString hash); void resumeUnfinishedTorrents(); void updateETAs(); // Session configuration - Setters void setListeningPortsRange(std::pair ports); void setMaxConnections(int maxConnec); void setDownloadRateLimit(int rate); void setUploadRateLimit(int rate); void setGlobalRatio(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 setDefaultSavePath(const QString& savepath); void applyEncryptionSettings(pe_settings se); protected slots: void cleanDeleter(deleteThread* deleter); void loadFilteredFiles(torrent_handle& h); void scanDirectory(); void readAlerts(); void processDownloadedFile(const QString&, const QString&, int, const QString&); void resumeUnfinished(); bool loadTrackerFile(const QString& hash); void saveTrackerFile(const QString& hash); signals: void invalidTorrent(const QString& path); void duplicateTorrent(const QString& path); void addedTorrent(const QString& path, torrent_handle& h, bool fastResume); void finishedTorrent(torrent_handle& h); void fullDiskError(torrent_handle& h); void trackerError(const QString& hash, const QString& time, const QString& msg); void portListeningFailure(); void trackerAuthenticationRequired(torrent_handle& h); void downloadFromUrlFailure(const QString& url, const QString& error); void scanDirFoundTorrents(const QStringList& pathList); void newDownloadedTorrent(const QString& path, const QString& url); void aboutToDownloadFromUrl(const QString& url); void updateFileSize(QString hash); void allTorrentsFinishedChecking(); void peerBlocked(const QString&); }; #endif