transmission/qt/session.cc

991 lines
27 KiB
C++
Raw Normal View History

2009-04-09 18:55:47 +00:00
/*
* This file Copyright (C) 2009-2014 Mnemosyne LLC
2009-04-09 18:55:47 +00:00
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
2009-04-09 18:55:47 +00:00
*
* $Id$
2009-04-09 18:55:47 +00:00
*/
#include <cassert>
#include <iostream>
#include <QApplication>
#include <QByteArray>
#include <QClipboard>
2009-04-09 18:55:47 +00:00
#include <QCoreApplication>
#include <QDesktopServices>
#include <QFile>
#include <QFileInfo>
2009-04-09 18:55:47 +00:00
#include <QMessageBox>
#include <QStyle>
#include <QTextStream>
2009-04-09 18:55:47 +00:00
#include <libtransmission/transmission.h>
#include <libtransmission/utils.h> // tr_free
#include <libtransmission/variant.h>
2009-04-09 18:55:47 +00:00
#include "add-data.h"
2009-04-09 18:55:47 +00:00
#include "prefs.h"
#include "session.h"
#include "session-dialog.h"
2009-04-09 18:55:47 +00:00
#include "torrent.h"
#include "utils.h"
2009-04-09 18:55:47 +00:00
namespace
{
enum
{
TAG_SOME_TORRENTS,
TAG_ALL_TORRENTS,
TAG_SESSION_STATS,
TAG_SESSION_INFO,
TAG_BLOCKLIST_UPDATE,
TAG_ADD_TORRENT,
TAG_PORT_TEST,
TAG_MAGNET_LINK,
TAG_RENAME_PATH,
FIRST_UNIQUE_TAG
};
2009-04-09 18:55:47 +00:00
}
/***
****
***/
namespace
{
typedef Torrent::KeyList KeyList;
const KeyList& getInfoKeys () { return Torrent::getInfoKeys (); }
const KeyList& getStatKeys () { return Torrent::getStatKeys (); }
const KeyList& getExtraStatKeys () { return Torrent::getExtraStatKeys (); }
void
addList (tr_variant * list, const KeyList& keys)
{
tr_variantListReserve (list, keys.size ());
foreach (tr_quark key, keys)
tr_variantListAddQuark (list, key);
}
2009-04-09 18:55:47 +00:00
}
/***
****
***/
void
FileAdded::executed (int64_t tag, const QString& result, tr_variant * arguments)
{
if (tag != myTag)
return;
if (result == "success")
{
tr_variant * dup;
const char * str;
if (tr_variantDictFindDict (arguments, TR_KEY_torrent_duplicate, &dup) &&
tr_variantDictFindStr (dup, TR_KEY_name, &str, NULL))
{
const QString myFilename = QFileInfo (myName).fileName ();
const QString name = QString::fromUtf8 (str);
QMessageBox::warning (qApp->activeWindow (),
tr ("Add Torrent"),
tr ("<p><b>Unable to add \"%1\".</b></p><p>It is a duplicate of \"%2\" which is already added.</p>").arg (myFilename).arg (name));
}
if (!myDelFile.isEmpty ())
{
QFile file (myDelFile);
file.setPermissions (QFile::ReadOwner | QFile::WriteOwner);
file.remove ();
}
}
else
{
QString text = result;
for (int i=0, n=text.size (); i<n; ++i)
if (!i || text[i-1].isSpace ())
text[i] = text[i].toUpper ();
QMessageBox::warning (qApp->activeWindow (),
tr ("Error Adding Torrent"),
QString::fromLatin1 ("<p><b>%1</b></p><p>%2</p>").arg (text).arg (myName));
}
deleteLater ();
}
/***
****
***/
2009-04-09 18:55:47 +00:00
void
Session::sessionSet (const tr_quark key, const QVariant& value)
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 1);
switch (value.type ())
{
case QVariant::Bool: tr_variantDictAddBool (&args, key, value.toBool ()); break;
case QVariant::Int: tr_variantDictAddInt (&args, key, value.toInt ()); break;
case QVariant::Double: tr_variantDictAddReal (&args, key, value.toDouble ()); break;
case QVariant::String: tr_variantDictAddStr (&args, key, value.toString ().toUtf8 ().constData ()); break;
default: assert ("unknown type");
2009-04-09 18:55:47 +00:00
}
exec ("session-set", &args);
2009-04-09 18:55:47 +00:00
}
void
Session::portTest ()
2009-04-09 18:55:47 +00:00
{
exec ("port-test", nullptr, TAG_PORT_TEST);
2009-04-09 18:55:47 +00:00
}
void
Session::copyMagnetLinkToClipboard (int torrentId)
{
tr_variant args;
tr_variantInitDict (&args, 2);
tr_variantListAddInt (tr_variantDictAddList (&args, TR_KEY_ids, 1), torrentId);
tr_variantListAddStr (tr_variantDictAddList (&args, TR_KEY_fields, 1), "magnetLink");
exec (TR_KEY_torrent_get, &args, TAG_MAGNET_LINK);
}
2009-04-09 18:55:47 +00:00
void
Session::updatePref (int key)
2009-04-09 18:55:47 +00:00
{
if (myPrefs.isCore (key)) switch (key)
2009-04-09 18:55:47 +00:00
{
case Prefs::ALT_SPEED_LIMIT_DOWN:
case Prefs::ALT_SPEED_LIMIT_ENABLED:
case Prefs::ALT_SPEED_LIMIT_TIME_BEGIN:
case Prefs::ALT_SPEED_LIMIT_TIME_DAY:
case Prefs::ALT_SPEED_LIMIT_TIME_ENABLED:
case Prefs::ALT_SPEED_LIMIT_TIME_END:
case Prefs::ALT_SPEED_LIMIT_UP:
case Prefs::BLOCKLIST_DATE:
case Prefs::BLOCKLIST_ENABLED:
case Prefs::BLOCKLIST_URL:
case Prefs::DHT_ENABLED:
case Prefs::DOWNLOAD_QUEUE_ENABLED:
case Prefs::DOWNLOAD_QUEUE_SIZE:
case Prefs::DSPEED:
case Prefs::DSPEED_ENABLED:
case Prefs::IDLE_LIMIT:
case Prefs::IDLE_LIMIT_ENABLED:
case Prefs::INCOMPLETE_DIR:
case Prefs::INCOMPLETE_DIR_ENABLED:
case Prefs::LPD_ENABLED:
case Prefs::PEER_LIMIT_GLOBAL:
case Prefs::PEER_LIMIT_TORRENT:
case Prefs::PEER_PORT:
case Prefs::PEER_PORT_RANDOM_ON_START:
case Prefs::QUEUE_STALLED_MINUTES:
case Prefs::PEX_ENABLED:
case Prefs::PORT_FORWARDING:
case Prefs::RENAME_PARTIAL_FILES:
case Prefs::SCRIPT_TORRENT_DONE_ENABLED:
case Prefs::SCRIPT_TORRENT_DONE_FILENAME:
case Prefs::START:
case Prefs::TRASH_ORIGINAL:
case Prefs::USPEED:
case Prefs::USPEED_ENABLED:
case Prefs::UTP_ENABLED:
sessionSet (myPrefs.getKey (key), myPrefs.variant (key));
break;
case Prefs::DOWNLOAD_DIR:
sessionSet (myPrefs.getKey (key), myPrefs.variant (key));
/* this will change the 'freespace' argument, so refresh */
refreshSessionInfo ();
break;
case Prefs::RATIO:
sessionSet (TR_KEY_seedRatioLimit, myPrefs.variant (key));
break;
case Prefs::RATIO_ENABLED:
sessionSet (TR_KEY_seedRatioLimited, myPrefs.variant (key));
break;
case Prefs::ENCRYPTION:
{
const int i = myPrefs.variant (key).toInt ();
switch (i)
{
case 0:
sessionSet (myPrefs.getKey (key), "tolerated");
break;
case 1:
sessionSet (myPrefs.getKey (key), "preferred");
break;
case 2:
sessionSet (myPrefs.getKey (key), "required");
break;
}
break;
}
case Prefs::RPC_AUTH_REQUIRED:
if (mySession)
tr_sessionSetRPCPasswordEnabled (mySession, myPrefs.getBool (key));
break;
case Prefs::RPC_ENABLED:
if (mySession)
tr_sessionSetRPCEnabled (mySession, myPrefs.getBool (key));
break;
case Prefs::RPC_PASSWORD:
if (mySession)
tr_sessionSetRPCPassword (mySession, myPrefs.getString (key).toUtf8 ().constData ());
break;
case Prefs::RPC_PORT:
if (mySession)
tr_sessionSetRPCPort (mySession, myPrefs.getInt (key));
break;
case Prefs::RPC_USERNAME:
if (mySession)
tr_sessionSetRPCUsername (mySession, myPrefs.getString (key).toUtf8 ().constData ());
break;
case Prefs::RPC_WHITELIST_ENABLED:
if (mySession)
tr_sessionSetRPCWhitelistEnabled (mySession, myPrefs.getBool (key));
break;
case Prefs::RPC_WHITELIST:
if (mySession)
tr_sessionSetRPCWhitelist (mySession, myPrefs.getString (key).toUtf8 ().constData ());
break;
default:
std::cerr << "unhandled pref: " << key << std::endl;
2009-04-09 18:55:47 +00:00
}
}
/***
****
***/
Session::Session (const char * configDir, Prefs& prefs):
nextUniqueTag (FIRST_UNIQUE_TAG),
myBlocklistSize (-1),
myPrefs (prefs),
mySession (0),
myConfigDir (QString::fromUtf8 (configDir))
2009-04-09 18:55:47 +00:00
{
myStats.ratio = TR_RATIO_NA;
myStats.uploadedBytes = 0;
myStats.downloadedBytes = 0;
myStats.filesAdded = 0;
myStats.sessionCount = 0;
myStats.secondsActive = 0;
myCumulativeStats = myStats;
connect (&myPrefs, SIGNAL (changed (int)), this, SLOT (updatePref (int)));
connect (&myRpc, SIGNAL (executed (int64_t, QString, tr_variant *)), this, SLOT (responseReceived (int64_t, QString, tr_variant *)));
connect (&myRpc, SIGNAL (httpAuthenticationRequired ()), this, SIGNAL (httpAuthenticationRequired ()));
connect (&myRpc, SIGNAL (dataReadProgress ()), this, SIGNAL (dataReadProgress ()));
connect (&myRpc, SIGNAL (dataSendProgress ()), this, SIGNAL (dataSendProgress ()));
connect (&myRpc, SIGNAL (error (QNetworkReply::NetworkError)), this, SIGNAL (error (QNetworkReply::NetworkError)));
connect (&myRpc, SIGNAL (errorMessage (QString)), this, SIGNAL (errorMessage (QString)));
}
Session::~Session ()
{
stop ();
}
/***
****
***/
void
Session::stop ()
{
myRpc.stop ();
if (mySession)
2009-04-09 18:55:47 +00:00
{
tr_sessionClose (mySession);
mySession = 0;
}
}
void
Session::restart ()
{
stop ();
start ();
}
void
Session::start ()
{
if (myPrefs.get<bool> (Prefs::SESSION_IS_REMOTE))
{
QUrl url;
url.setScheme ("http");
url.setHost (myPrefs.get<QString> (Prefs::SESSION_REMOTE_HOST));
url.setPort (myPrefs.get<int> (Prefs::SESSION_REMOTE_PORT));
url.setPath ("/transmission/rpc");
if (myPrefs.get<bool> (Prefs::SESSION_REMOTE_AUTH))
{
url.setUserName (myPrefs.get<QString> (Prefs::SESSION_REMOTE_USERNAME));
url.setPassword (myPrefs.get<QString> (Prefs::SESSION_REMOTE_PASSWORD));
}
myRpc.start (url);
2009-04-09 18:55:47 +00:00
}
else
2009-04-09 18:55:47 +00:00
{
tr_variant settings;
tr_variantInitDict (&settings, 0);
tr_sessionLoadSettings (&settings, myConfigDir.toUtf8 ().constData (), "qt");
mySession = tr_sessionInit ("qt", myConfigDir.toUtf8 ().constData (), true, &settings);
tr_variantFree (&settings);
myRpc.start (mySession);
tr_ctor * ctor = tr_ctorNew (mySession);
int torrentCount;
tr_torrent ** torrents = tr_sessionLoadTorrents (mySession, ctor, &torrentCount);
tr_free (torrents);
tr_ctorFree (ctor);
2009-04-09 18:55:47 +00:00
}
emit sourceChanged ();
2009-04-09 18:55:47 +00:00
}
bool
Session::isServer () const
2009-04-09 18:55:47 +00:00
{
return mySession != 0;
2009-04-09 18:55:47 +00:00
}
bool
Session::isLocal () const
2009-04-09 18:55:47 +00:00
{
return myRpc.isLocal ();
2009-04-09 18:55:47 +00:00
}
/***
****
***/
namespace
{
void
addOptionalIds (tr_variant * args, const QSet<int>& ids)
{
if (!ids.isEmpty ())
{
tr_variant * idList (tr_variantDictAddList (args, TR_KEY_ids, ids.size ()));
foreach (int i, ids)
tr_variantListAddInt (idList, i);
}
}
2009-04-09 18:55:47 +00:00
}
void
Session::torrentSet (const QSet<int>& ids, const tr_quark key, double value)
{
tr_variant args;
tr_variantInitDict (&args, 2);
tr_variantDictAddReal (&args, key, value);
addOptionalIds (&args, ids);
exec (TR_KEY_torrent_set, &args);
}
void
Session::torrentSet (const QSet<int>& ids, const tr_quark key, int value)
{
tr_variant args;
tr_variantInitDict (&args, 2);
tr_variantDictAddInt (&args, key, value);
addOptionalIds (&args, ids);
exec (TR_KEY_torrent_set, &args);
}
2009-04-09 18:55:47 +00:00
void
Session::torrentSet (const QSet<int>& ids, const tr_quark key, bool value)
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 2);
tr_variantDictAddBool (&args, key, value);
addOptionalIds (&args, ids);
exec (TR_KEY_torrent_set, &args);
2009-04-09 18:55:47 +00:00
}
void
Session::torrentSet (const QSet<int>& ids, const tr_quark key, const QStringList& value)
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 2);
addOptionalIds (&args, ids);
tr_variant * list (tr_variantDictAddList (&args, key, value.size ()));
foreach (const QString& str, value)
tr_variantListAddStr (list, str.toUtf8 ().constData ());
exec(TR_KEY_torrent_set, &args);
2009-04-09 18:55:47 +00:00
}
void
Session::torrentSet (const QSet<int>& ids, const tr_quark key, const QList<int>& value)
{
tr_variant args;
tr_variantInitDict (&args, 2);
addOptionalIds (&args, ids);
tr_variant * list (tr_variantDictAddList (&args, key, value.size ()));
foreach (int i, value)
tr_variantListAddInt (list, i);
exec (TR_KEY_torrent_set, &args);
}
void
Session::torrentSet (const QSet<int>& ids, const tr_quark key, const QPair<int,QString>& value)
{
tr_variant args;
tr_variantInitDict (&args, 2);
addOptionalIds (&args, ids);
tr_variant * list (tr_variantDictAddList (&args, key, 2));
tr_variantListAddInt (list, value.first);
tr_variantListAddStr (list, value.second.toUtf8 ().constData ());
exec (TR_KEY_torrent_set, &args);
}
void
Session::torrentSetLocation (const QSet<int>& ids, const QString& location, bool doMove)
{
tr_variant args;
tr_variantInitDict (&args, 3);
addOptionalIds (&args, ids);
tr_variantDictAddStr (&args, TR_KEY_location, location.toUtf8 ().constData ());
tr_variantDictAddBool (&args, TR_KEY_move, doMove);
exec (TR_KEY_torrent_set_location, &args);
}
2009-04-09 18:55:47 +00:00
void
Session::torrentRenamePath (const QSet<int>& ids, const QString& oldpath, const QString& newname)
{
tr_variant args;
tr_variantInitDict (&args, 2);
addOptionalIds (&args, ids);
tr_variantDictAddStr (&args, TR_KEY_path, oldpath.toUtf8 ().constData ());
tr_variantDictAddStr (&args, TR_KEY_name, newname.toUtf8 ().constData ());
exec ("torrent-rename-path", &args, TAG_RENAME_PATH);
}
2009-04-09 18:55:47 +00:00
void
Session::refreshTorrents (const QSet<int>& ids)
2009-04-09 18:55:47 +00:00
{
if (ids.empty ())
2009-04-09 18:55:47 +00:00
{
refreshAllTorrents ();
2009-04-09 18:55:47 +00:00
}
else
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 2);
addList (tr_variantDictAddList (&args, TR_KEY_fields, 0), getStatKeys ());
addOptionalIds (&args, ids);
exec (TR_KEY_torrent_get, &args, TAG_SOME_TORRENTS);
2009-04-09 18:55:47 +00:00
}
}
void
Session::refreshExtraStats (const QSet<int>& ids)
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 3);
addOptionalIds (&args, ids);
addList (tr_variantDictAddList (&args, TR_KEY_fields, 0), getStatKeys () + getExtraStatKeys ());
exec (TR_KEY_torrent_get, &args, TAG_SOME_TORRENTS);
2009-04-09 18:55:47 +00:00
}
void
Session::sendTorrentRequest (const char * request, const QSet<int>& ids)
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 1);
addOptionalIds (&args, ids);
2009-04-09 18:55:47 +00:00
exec (request, &args);
refreshTorrents (ids);
2009-04-09 18:55:47 +00:00
}
void Session::pauseTorrents (const QSet<int>& ids) { sendTorrentRequest ("torrent-stop", ids); }
void Session::startTorrents (const QSet<int>& ids) { sendTorrentRequest ("torrent-start", ids); }
void Session::startTorrentsNow (const QSet<int>& ids) { sendTorrentRequest ("torrent-start-now", ids); }
void Session::queueMoveTop (const QSet<int>& ids) { sendTorrentRequest ("queue-move-top", ids); }
void Session::queueMoveUp (const QSet<int>& ids) { sendTorrentRequest ("queue-move-up", ids); }
void Session::queueMoveDown (const QSet<int>& ids) { sendTorrentRequest ("queue-move-down", ids); }
void Session::queueMoveBottom (const QSet<int>& ids) { sendTorrentRequest ("queue-move-bottom", ids); }
2009-04-09 18:55:47 +00:00
void
Session::refreshActiveTorrents ()
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 2);
tr_variantDictAddStr (&args, TR_KEY_ids, "recently-active");
addList (tr_variantDictAddList (&args, TR_KEY_fields, 0), getStatKeys ());
exec (TR_KEY_torrent_get, &args, TAG_SOME_TORRENTS);
2009-04-09 18:55:47 +00:00
}
void
Session::refreshAllTorrents ()
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 1);
addList (tr_variantDictAddList (&args, TR_KEY_fields, 0), getStatKeys ());
exec (TR_KEY_torrent_get, &args, TAG_ALL_TORRENTS);
2009-04-09 18:55:47 +00:00
}
void
Session::initTorrents (const QSet<int>& ids)
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 2);
addOptionalIds (&args, ids);
addList (tr_variantDictAddList (&args, TR_KEY_fields, 0), getStatKeys ()+getInfoKeys ());
exec ("torrent-get", &args, ids.isEmpty () ? TAG_ALL_TORRENTS : TAG_SOME_TORRENTS);
2009-04-09 18:55:47 +00:00
}
void
Session::refreshSessionStats ()
2009-04-09 18:55:47 +00:00
{
exec ("session-stats", nullptr, TAG_SESSION_STATS);
2009-04-09 18:55:47 +00:00
}
void
Session::refreshSessionInfo ()
2009-04-09 18:55:47 +00:00
{
exec ("session-get", nullptr, TAG_SESSION_INFO);
2009-04-09 18:55:47 +00:00
}
void
Session::updateBlocklist ()
2009-04-09 18:55:47 +00:00
{
exec ("blocklist-update", nullptr, TAG_BLOCKLIST_UPDATE);
2009-04-09 18:55:47 +00:00
}
/***
****
***/
void
Session::exec (tr_quark method, tr_variant * args, int64_t tag)
2009-04-09 18:55:47 +00:00
{
myRpc.exec (method, args, tag);
2009-04-09 18:55:47 +00:00
}
void
Session::exec (const char* method, tr_variant * args, int64_t tag)
2009-04-09 18:55:47 +00:00
{
myRpc.exec (method, args, tag);
2009-04-09 18:55:47 +00:00
}
void
Session::responseReceived (int64_t tag, const QString& result, tr_variant * args)
2009-04-09 18:55:47 +00:00
{
emit executed (tag, result, args);
2009-04-09 18:55:47 +00:00
if (tag < 0)
return;
switch (tag)
{
case TAG_SOME_TORRENTS:
case TAG_ALL_TORRENTS:
if (args != nullptr)
{
tr_variant * torrents;
if (tr_variantDictFindList (args, TR_KEY_torrents, &torrents))
emit torrentsUpdated (torrents, tag==TAG_ALL_TORRENTS);
if (tr_variantDictFindList (args, TR_KEY_removed, &torrents))
emit torrentsRemoved (torrents);
}
break;
2009-04-09 18:55:47 +00:00
case TAG_SESSION_STATS:
if (args != nullptr)
updateStats (args);
break;
2009-04-09 18:55:47 +00:00
case TAG_SESSION_INFO:
if (args != nullptr)
updateInfo (args);
break;
case TAG_BLOCKLIST_UPDATE:
{
int64_t intVal = 0;
if (args != nullptr)
{
if (tr_variantDictFindInt (args, TR_KEY_blocklist_size, &intVal))
setBlocklistSize (intVal);
}
break;
}
case TAG_RENAME_PATH:
{
int64_t id = 0;
if (result != QLatin1String ("success"))
{
const char * path = "";
const char * name = "";
tr_variantDictFindStr (args, TR_KEY_path, &path, 0);
tr_variantDictFindStr (args, TR_KEY_name, &name, 0);
const QString title = tr ("Error Renaming Path");
const QString text = tr ("<p><b>Unable to rename \"%1\" as \"%2\": %3.</b></p> <p>Please correct the errors and try again.</p>").arg (path).arg (name).arg (result);
QMessageBox * d = new QMessageBox (QMessageBox::Information, title, text,
QMessageBox::Close,
qApp->activeWindow ());
connect (d, SIGNAL (rejected ()), d, SLOT (deleteLater ()));
d->show ();
}
else if (tr_variantDictFindInt (args, TR_KEY_id, &id) && id)
{
tr_variant args;
tr_variantInitDict (&args, 2);
tr_variantDictAddInt (&args, TR_KEY_ids, id);
addList (tr_variantDictAddList (&args, TR_KEY_fields, 0),
KeyList () << TR_KEY_fileStats << TR_KEY_files << TR_KEY_id << TR_KEY_name);
exec ("torrent-get", &args, TAG_SOME_TORRENTS);
}
break;
}
case TAG_PORT_TEST:
{
bool isOpen = false;
if (args != nullptr)
tr_variantDictFindBool (args, TR_KEY_port_is_open, &isOpen);
emit portTested (isOpen);
break;
}
case TAG_MAGNET_LINK:
{
tr_variant * torrents;
tr_variant * child;
const char * str;
if (args != nullptr
&& tr_variantDictFindList (args, TR_KEY_torrents, &torrents)
&& ( (child = tr_variantListChild (torrents, 0)))
&& tr_variantDictFindStr (child, TR_KEY_magnetLink, &str, NULL))
qApp->clipboard ()->setText (str);
break;
}
case TAG_ADD_TORRENT:
2009-04-09 18:55:47 +00:00
{
const char * str = "";
if (result != QLatin1String ("success"))
2009-04-09 18:55:47 +00:00
{
QMessageBox * d = new QMessageBox (QMessageBox::Information,
tr ("Add Torrent"),
QString::fromUtf8 (str),
QMessageBox::Close,
qApp->activeWindow ());
connect (d, SIGNAL (rejected ()), d, SLOT (deleteLater ()));
d->show ();
2009-04-09 18:55:47 +00:00
}
break;
2009-04-09 18:55:47 +00:00
}
}
}
void
Session::updateStats (tr_variant * d, tr_session_stats * stats)
2009-04-09 18:55:47 +00:00
{
int64_t i;
2009-04-09 18:55:47 +00:00
if (tr_variantDictFindInt (d, TR_KEY_uploadedBytes, &i))
stats->uploadedBytes = i;
if (tr_variantDictFindInt (d, TR_KEY_downloadedBytes, &i))
stats->downloadedBytes = i;
if (tr_variantDictFindInt (d, TR_KEY_filesAdded, &i))
stats->filesAdded = i;
if (tr_variantDictFindInt (d, TR_KEY_sessionCount, &i))
stats->sessionCount = i;
if (tr_variantDictFindInt (d, TR_KEY_secondsActive, &i))
stats->secondsActive = i;
stats->ratio = tr_getRatio (stats->uploadedBytes, stats->downloadedBytes);
2009-04-09 18:55:47 +00:00
}
void
Session::updateStats (tr_variant * d)
2009-04-09 18:55:47 +00:00
{
tr_variant * c;
2009-04-09 18:55:47 +00:00
if (tr_variantDictFindDict (d, TR_KEY_current_stats, &c))
updateStats (c, &myStats);
2009-04-09 18:55:47 +00:00
if (tr_variantDictFindDict (d, TR_KEY_cumulative_stats, &c))
updateStats (c, &myCumulativeStats);
2009-04-09 18:55:47 +00:00
emit statsUpdated ();
2009-04-09 18:55:47 +00:00
}
void
Session::updateInfo (tr_variant * d)
2009-04-09 18:55:47 +00:00
{
int64_t i;
const char * str;
disconnect (&myPrefs, SIGNAL (changed (int)), this, SLOT (updatePref (int)));
2009-04-09 18:55:47 +00:00
for (int i=Prefs::FIRST_CORE_PREF; i<=Prefs::LAST_CORE_PREF; ++i)
2009-04-09 18:55:47 +00:00
{
const tr_variant * b (tr_variantDictFind (d, myPrefs.getKey (i)));
2009-04-09 18:55:47 +00:00
if (!b)
continue;
2009-04-09 18:55:47 +00:00
if (i == Prefs::ENCRYPTION)
{
const char * val;
if (tr_variantGetStr (b, &val, NULL))
{
if (!qstrcmp (val , "required"))
myPrefs.set (i, 2);
else if (!qstrcmp (val , "preferred"))
myPrefs.set (i, 1);
else if (!qstrcmp (val , "tolerated"))
myPrefs.set (i, 0);
}
continue;
}
switch (myPrefs.type (i))
2009-04-09 18:55:47 +00:00
{
case QVariant::Int:
{
int64_t val;
if (tr_variantGetInt (b, &val))
myPrefs.set (i, static_cast<int>(val));
break;
2009-04-09 18:55:47 +00:00
}
case QVariant::Double:
{
double val;
if (tr_variantGetReal (b, &val))
myPrefs.set (i, val);
break;
2009-04-09 18:55:47 +00:00
}
case QVariant::Bool:
{
bool val;
if (tr_variantGetBool (b, &val))
myPrefs.set (i, val);
break;
2009-04-09 18:55:47 +00:00
}
case TrTypes::FilterModeType:
case TrTypes::SortModeType:
case QVariant::String:
{
const char * val;
if (tr_variantGetStr (b, &val, NULL))
myPrefs.set (i, QString::fromUtf8 (val));
break;
2009-04-09 18:55:47 +00:00
}
default:
break;
2009-04-09 18:55:47 +00:00
}
}
bool b;
double x;
if (tr_variantDictFindBool (d, TR_KEY_seedRatioLimited, &b))
myPrefs.set (Prefs::RATIO_ENABLED, b);
if (tr_variantDictFindReal (d, TR_KEY_seedRatioLimit, &x))
myPrefs.set (Prefs::RATIO, x);
/* Use the C API to get settings that, for security reasons, aren't supported by RPC */
if (mySession != 0)
2009-04-09 18:55:47 +00:00
{
myPrefs.set (Prefs::RPC_ENABLED, tr_sessionIsRPCEnabled (mySession));
myPrefs.set (Prefs::RPC_AUTH_REQUIRED, tr_sessionIsRPCPasswordEnabled (mySession));
myPrefs.set (Prefs::RPC_PASSWORD, tr_sessionGetRPCPassword (mySession));
myPrefs.set (Prefs::RPC_PORT, tr_sessionGetRPCPort (mySession));
myPrefs.set (Prefs::RPC_USERNAME, tr_sessionGetRPCUsername (mySession));
myPrefs.set (Prefs::RPC_WHITELIST_ENABLED, tr_sessionGetRPCWhitelistEnabled (mySession));
myPrefs.set (Prefs::RPC_WHITELIST, tr_sessionGetRPCWhitelist (mySession));
2009-04-09 18:55:47 +00:00
}
if (tr_variantDictFindInt (d, TR_KEY_blocklist_size, &i) && i!=blocklistSize ())
setBlocklistSize (i);
2009-04-09 18:55:47 +00:00
if (tr_variantDictFindStr (d, TR_KEY_version, &str, NULL) && (mySessionVersion != str))
mySessionVersion = str;
2009-04-09 18:55:47 +00:00
//std::cerr << "Session::updateInfo end" << std::endl;
connect (&myPrefs, SIGNAL (changed (int)), this, SLOT (updatePref (int)));
2009-04-09 18:55:47 +00:00
emit sessionUpdated ();
2009-04-09 18:55:47 +00:00
}
void
Session::setBlocklistSize (int64_t i)
2009-04-09 18:55:47 +00:00
{
myBlocklistSize = i;
2009-04-09 18:55:47 +00:00
emit blocklistUpdated (i);
2009-04-09 18:55:47 +00:00
}
void
Session::addTorrent (const AddData& addMe, tr_variant * args, bool trashOriginal)
{
assert (tr_variantDictFind (args, TR_KEY_filename) == nullptr);
assert (tr_variantDictFind (args, TR_KEY_metainfo) == nullptr);
if (tr_variantDictFind (args, TR_KEY_paused) == nullptr)
tr_variantDictAddBool (args, TR_KEY_paused, !myPrefs.getBool (Prefs::START));
switch (addMe.type)
{
case AddData::MAGNET:
tr_variantDictAddStr (args, TR_KEY_filename, addMe.magnet.toUtf8 ().constData ());
break;
case AddData::URL:
tr_variantDictAddStr (args, TR_KEY_filename, addMe.url.toString ().toUtf8 ().constData ());
break;
case AddData::FILENAME: /* fall-through */
case AddData::METAINFO:
{
const QByteArray b64 = addMe.toBase64 ();
tr_variantDictAddRaw (args, TR_KEY_metainfo, b64.constData (), b64.size ());
break;
}
default:
qWarning() << "Unhandled AddData type: " << addMe.type;
break;
}
const int64_t tag = getUniqueTag ();
// maybe delete the source .torrent
FileAdded * fileAdded = new FileAdded (tag, addMe.readableName ());
if (trashOriginal && addMe.type == AddData::FILENAME)
fileAdded->setFileToDelete (addMe.filename);
connect (this, SIGNAL (executed (int64_t, QString, tr_variant *)),
fileAdded, SLOT (executed (int64_t, QString, tr_variant *)));
exec ("torrent-add", args, tag);
}
void
Session::addTorrent (const AddData& addMe)
{
tr_variant args;
tr_variantInitDict (&args, 3);
addTorrent (addMe, &args, myPrefs.getBool (Prefs::TRASH_ORIGINAL));
}
void
Session::addNewlyCreatedTorrent (const QString& filename, const QString& localPath)
2009-04-09 18:55:47 +00:00
{
const QByteArray b64 = AddData (filename).toBase64 ();
tr_variant args;
tr_variantInitDict (&args, 3);
tr_variantDictAddStr (&args, TR_KEY_download_dir, localPath.toUtf8 ().constData ());
tr_variantDictAddBool (&args, TR_KEY_paused, !myPrefs.getBool (Prefs::START));
tr_variantDictAddRaw (&args, TR_KEY_metainfo, b64.constData (), b64.size ());
exec ("torrent-add", &args);
2009-04-09 18:55:47 +00:00
}
void
Session::removeTorrents (const QSet<int>& ids, bool deleteFiles)
2009-04-09 18:55:47 +00:00
{
if (!ids.isEmpty ())
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 2);
addOptionalIds (&args, ids);
tr_variantDictAddInt (&args, TR_KEY_delete_local_data, deleteFiles);
exec ("torrent-remove", &args);
2009-04-09 18:55:47 +00:00
}
}
void
Session::verifyTorrents (const QSet<int>& ids)
2009-04-09 18:55:47 +00:00
{
if (!ids.isEmpty ())
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 1);
addOptionalIds (&args, ids);
exec ("torrent-verify", &args);
2009-04-09 18:55:47 +00:00
}
}
void
Session::reannounceTorrents (const QSet<int>& ids)
2009-04-09 18:55:47 +00:00
{
if (!ids.isEmpty ())
2009-04-09 18:55:47 +00:00
{
tr_variant args;
tr_variantInitDict (&args, 1);
addOptionalIds (&args, ids);
exec ("torrent-reannounce", &args);
2009-04-09 18:55:47 +00:00
}
}
/***
****
***/
void
Session::launchWebInterface ()
2009-04-09 18:55:47 +00:00
{
QUrl url;
if (!mySession) // remote session
{
url = myRpc.url ();
url.setPath ("/transmission/web/");
}
else // local session
{
url.setScheme ("http");
url.setHost ("localhost");
url.setPort (myPrefs.getInt (Prefs::RPC_PORT));
2009-04-09 18:55:47 +00:00
}
QDesktopServices::openUrl (url);
2009-04-09 18:55:47 +00:00
}