2009-04-09 18:55:47 +00:00
|
|
|
/*
|
2016-04-19 20:41:59 +00:00
|
|
|
* This file Copyright (C) 2009-2016 Mnemosyne LLC
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2020-08-15 15:42:51 +00:00
|
|
|
#include <map>
|
2020-07-27 04:30:58 +00:00
|
|
|
#include <string_view>
|
2020-08-15 15:42:51 +00:00
|
|
|
#include <vector>
|
2020-07-27 04:30:58 +00:00
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2013-01-20 01:31:58 +00:00
|
|
|
#include <QStringList>
|
2020-08-27 01:42:41 +00:00
|
|
|
#include <QTimer>
|
2010-08-01 18:55:04 +00:00
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
2012-12-22 20:35:19 +00:00
|
|
|
#include <libtransmission/quark.h>
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "Macros.h"
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "RpcClient.h"
|
2020-07-29 16:56:23 +00:00
|
|
|
#include "RpcQueue.h"
|
2016-04-19 20:41:59 +00:00
|
|
|
#include "Torrent.h"
|
2019-11-12 01:37:05 +00:00
|
|
|
#include "Typedefs.h"
|
2014-12-27 20:03:10 +00:00
|
|
|
|
|
|
|
class AddData;
|
|
|
|
class Prefs;
|
|
|
|
|
2009-04-13 18:21:22 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_variant;
|
2009-04-13 18:21:22 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
class Session : public QObject
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2013-02-03 19:40:20 +00:00
|
|
|
Q_OBJECT
|
2020-08-11 18:11:55 +00:00
|
|
|
TR_DISABLE_COPY_MOVE(Session)
|
2013-02-03 19:40:20 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
public:
|
2020-06-05 19:02:11 +00:00
|
|
|
Session(QString config_dir, Prefs& prefs);
|
2020-09-09 14:24:39 +00:00
|
|
|
~Session() override;
|
2013-02-03 19:40:20 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void stop();
|
|
|
|
void restart();
|
2013-02-03 19:40:20 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
QUrl const& getRemoteUrl() const
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
return rpc_.url();
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2013-02-03 19:40:20 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
tr_session_stats const& getStats() const
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
return stats_;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
tr_session_stats const& getCumulativeStats() const
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
return cumulative_stats_;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
QString const& sessionVersion() const
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
return session_version_;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t blocklistSize() const
|
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
return blocklist_size_;
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setBlocklistSize(int64_t i);
|
|
|
|
void updateBlocklist();
|
|
|
|
void portTest();
|
2020-05-27 21:53:12 +00:00
|
|
|
void copyMagnetLinkToClipboard(int torrent_id);
|
2013-02-03 19:40:20 +00:00
|
|
|
|
|
|
|
/** returns true if the transmission session is being run inside this client */
|
2017-04-19 12:04:45 +00:00
|
|
|
bool isServer() const;
|
2013-02-03 19:40:20 +00:00
|
|
|
|
2017-04-21 07:40:57 +00:00
|
|
|
/** returns true if isServer() is true or if the remote address is the localhost */
|
2017-04-19 12:04:45 +00:00
|
|
|
bool isLocal() const;
|
|
|
|
|
|
|
|
RpcResponseFuture exec(tr_quark method, tr_variant* args);
|
2020-07-27 04:30:58 +00:00
|
|
|
RpcResponseFuture exec(std::string_view method, tr_variant* args);
|
2017-04-20 16:02:19 +00:00
|
|
|
|
2020-07-29 16:56:23 +00:00
|
|
|
using Tag = RpcQueue::Tag;
|
|
|
|
Tag torrentSet(torrent_ids_t const& ids, tr_quark const key, bool val);
|
|
|
|
Tag torrentSet(torrent_ids_t const& ids, tr_quark const key, int val);
|
|
|
|
Tag torrentSet(torrent_ids_t const& ids, tr_quark const key, double val);
|
|
|
|
Tag torrentSet(torrent_ids_t const& ids, tr_quark const key, QList<int> const& val);
|
|
|
|
Tag torrentSet(torrent_ids_t const& ids, tr_quark const key, QStringList const& val);
|
|
|
|
Tag torrentSet(torrent_ids_t const& ids, tr_quark const key, QPair<int, QString> const& val);
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
void torrentSetLocation(torrent_ids_t const& ids, QString const& path, bool do_move);
|
2019-11-12 01:37:05 +00:00
|
|
|
void torrentRenamePath(torrent_ids_t const& ids, QString const& oldpath, QString const& newname);
|
2020-05-27 21:53:12 +00:00
|
|
|
void addTorrent(AddData const& addme, tr_variant* top, bool trash_original);
|
2019-11-12 01:37:05 +00:00
|
|
|
void initTorrents(torrent_ids_t const& ids = {});
|
|
|
|
void pauseTorrents(torrent_ids_t const& torrentIds = {});
|
|
|
|
void startTorrents(torrent_ids_t const& torrentIds = {});
|
|
|
|
void startTorrentsNow(torrent_ids_t const& torrentIds = {});
|
2020-05-27 21:53:12 +00:00
|
|
|
void refreshDetailInfo(torrent_ids_t const& torrent_ids);
|
2017-04-19 12:04:45 +00:00
|
|
|
void refreshActiveTorrents();
|
|
|
|
void refreshAllTorrents();
|
2020-05-27 21:53:12 +00:00
|
|
|
void addNewlyCreatedTorrent(QString const& filename, QString const& local_path);
|
|
|
|
void verifyTorrents(torrent_ids_t const& torrent_ids);
|
|
|
|
void reannounceTorrents(torrent_ids_t const& torrent_ids);
|
2019-11-12 01:37:05 +00:00
|
|
|
void refreshExtraStats(torrent_ids_t const& ids);
|
2019-11-09 14:44:40 +00:00
|
|
|
|
2020-08-15 15:42:51 +00:00
|
|
|
enum class TorrentProperties
|
|
|
|
{
|
|
|
|
MainInfo,
|
|
|
|
MainStats,
|
|
|
|
MainAll,
|
|
|
|
DetailInfo,
|
|
|
|
DetailStat,
|
|
|
|
Rename
|
|
|
|
};
|
|
|
|
|
2019-11-09 14:44:40 +00:00
|
|
|
public slots:
|
|
|
|
void addTorrent(AddData const& addme);
|
2020-11-09 03:31:02 +00:00
|
|
|
void launchWebInterface() const;
|
2019-11-12 01:37:05 +00:00
|
|
|
void queueMoveBottom(torrent_ids_t const& torrentIds = {});
|
|
|
|
void queueMoveDown(torrent_ids_t const& torrentIds = {});
|
|
|
|
void queueMoveTop(torrent_ids_t const& torrentIds = {});
|
|
|
|
void queueMoveUp(torrent_ids_t const& torrentIds = {});
|
2019-11-09 14:44:40 +00:00
|
|
|
void refreshSessionInfo();
|
|
|
|
void refreshSessionStats();
|
2020-05-27 21:53:12 +00:00
|
|
|
void removeTorrents(torrent_ids_t const& torrent_ids, bool delete_files = false);
|
2017-04-19 12:04:45 +00:00
|
|
|
void updatePref(int key);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void sourceChanged();
|
2020-05-27 21:53:12 +00:00
|
|
|
void portTested(bool is_open);
|
2017-04-19 12:04:45 +00:00
|
|
|
void statsUpdated();
|
|
|
|
void sessionUpdated();
|
|
|
|
void blocklistUpdated(int);
|
2020-05-27 21:53:12 +00:00
|
|
|
void torrentsUpdated(tr_variant* torrent_list, bool complete_list);
|
|
|
|
void torrentsRemoved(tr_variant* torrent_list);
|
2020-07-29 16:56:23 +00:00
|
|
|
void sessionCalled(Tag);
|
2017-04-19 12:04:45 +00:00
|
|
|
void dataReadProgress();
|
|
|
|
void dataSendProgress();
|
2017-04-20 16:02:19 +00:00
|
|
|
void networkResponse(QNetworkReply::NetworkError code, QString const& message);
|
2017-04-19 12:04:45 +00:00
|
|
|
void httpAuthenticationRequired();
|
|
|
|
|
2020-11-05 22:46:21 +00:00
|
|
|
private slots:
|
|
|
|
void onDuplicatesTimer();
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
private:
|
|
|
|
void start();
|
|
|
|
|
|
|
|
void updateStats(tr_variant* args);
|
|
|
|
void updateInfo(tr_variant* args);
|
|
|
|
|
2020-07-29 16:56:23 +00:00
|
|
|
Tag torrentSetImpl(tr_variant* args);
|
2017-04-20 16:02:19 +00:00
|
|
|
void sessionSet(tr_quark const key, QVariant const& variant);
|
2017-04-19 12:04:45 +00:00
|
|
|
void pumpRequests();
|
2020-07-27 04:30:58 +00:00
|
|
|
void sendTorrentRequest(std::string_view request, torrent_ids_t const& torrent_ids);
|
2020-08-15 15:42:51 +00:00
|
|
|
void refreshTorrents(torrent_ids_t const& ids, TorrentProperties props);
|
|
|
|
std::vector<std::string_view> const& getKeyNames(TorrentProperties props);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
static void updateStats(tr_variant* d, tr_session_stats* stats);
|
|
|
|
|
2020-11-09 03:31:02 +00:00
|
|
|
void addOptionalIds(tr_variant* args, torrent_ids_t const& ids) const;
|
2020-08-15 15:42:51 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
QString const config_dir_;
|
|
|
|
Prefs& prefs_;
|
|
|
|
|
2020-08-15 15:42:51 +00:00
|
|
|
std::map<TorrentProperties, std::vector<std::string_view>> names_;
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
int64_t blocklist_size_ = -1;
|
|
|
|
tr_session* session_ = {};
|
|
|
|
QStringList idle_json_;
|
2020-06-05 19:02:11 +00:00
|
|
|
tr_session_stats stats_ = {};
|
|
|
|
tr_session_stats cumulative_stats_ = {};
|
2020-05-27 21:53:12 +00:00
|
|
|
QString session_version_;
|
|
|
|
QString session_id_;
|
|
|
|
bool is_definitely_local_session_ = true;
|
|
|
|
RpcClient rpc_;
|
2020-08-15 15:42:51 +00:00
|
|
|
torrent_ids_t const RecentlyActiveIDs = { -1 };
|
2020-08-27 01:42:41 +00:00
|
|
|
|
|
|
|
std::map<QString, QString> duplicates_;
|
|
|
|
QTimer duplicates_timer_;
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|