Added Q_FUNC_INFO macros to some functions.
[qtrapids] / src / engine / QBittorrentSession.cpp
index e0d6c5c..77dac96 100644 (file)
@@ -1,11 +1,9 @@
 /***************************************************************************
- *   Copyright (C) 2009 by Lassi Väätämöinen   *
- *   lassi.vaatamoinen@ixonos.com   *
+ *   Copyright (C) 2010 by Ixonos Plc   *
  *                                                                         *
  *   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.                                   *
+ *   the Free Software Foundation; version 2 of the License.               *
  *                                                                         *
  *   This program is distributed in the hope that it will be useful,       *
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
@@ -23,6 +21,8 @@
 #include "AlertWaiterThread.h"
 #include "QBittorrentSession.h"
 
+namespace qtrapids
+{
 
 QBittorrentSession::QBittorrentSession(QObject *parent):
                QObject(parent),
@@ -31,8 +31,13 @@ QBittorrentSession::QBittorrentSession(QObject *parent):
 {
        alertWaiter_ = new AlertWaiterThread(&btSession_, this);
        alertWaiter_->allAlerts();
-       connect(alertWaiter_, SIGNAL(alert(TorrentAlert const*)), this, SLOT(on_alert(TorrentAlert const*)));
+       connect(alertWaiter_, SIGNAL(alert(Alert const*)), this, SLOT(on_alert(Alert const*)));
        alertWaiter_->start();
+       
+       SessionSettings settings;
+       settings.ignore_limits_on_local_network = false;
+       btSession_.set_settings(settings);
+       
 }
 
 
@@ -41,27 +46,63 @@ QBittorrentSession::~QBittorrentSession()
 }
 
 
-QTorrentHandle QBittorrentSession::addTorrent(AddTorrentParams const& params)
+qtrapids::QTorrentHandle
+QBittorrentSession::addTorrent(AddTorrentParams const& params)
 {
        // Delegate to Libtorrent and return QTorrentHandle.
-       QTorrentHandle handle(btSession_.add_torrent(params));
-       qDebug() << "Is valid: " << handle.isValid();
+       //std::auto_ptr<QTorrentHandle> handlePtr(new QTorrentHandle(btSession_.add_torrent(params)));
+       qtrapids::QTorrentHandle  handle = qtrapids::QTorrentHandle(btSession_.add_torrent(params));
        return handle;
 }
 
 
+void QBittorrentSession::removeTorrent(qtrapids::QTorrentHandle const& handle)
+{
+       btSession_.remove_torrent(handle.getHandle());
+}
+
+
+void QBittorrentSession::setUploadRateLimit(int rate)
+{
+       btSession_.set_upload_rate_limit(rate);
+}
+
+
+void QBittorrentSession::setDownloadRateLimit(int rate)
+{
+       btSession_.set_download_rate_limit(rate);
+}
+
+
+int QBittorrentSession::getUploadRateLimt() const
+{
+       return btSession_.upload_rate_limit();
+}
+
+
+int QBittorrentSession::getDownloadRateLimit() const
+{
+       return btSession_.download_rate_limit();
+}
+
+
+
+
+
 // ========================== SLOTS ==============================
-void QBittorrentSession::on_alert(TorrentAlert const *al) 
-               //NOTE: al parameter not necessarily needed here, as we pop_alert() now!
+/// @TODO This function is called when AlertWaiterThread emits alert()
+/// If connection is direct, as it is now, we need to use QMutex here (if necessary?)
+void QBittorrentSession::on_alert(Alert const *al)
+//NOTE: al parameter not necessarily needed here, as we pop_alert() now!
 {
-       
-       qDebug() << "QBittorrentSession:on_alert(" << al << ")";
-//     if (al)
-//             qDebug() << "on_alert():" << QString::fromStdString(al->message());
-       
-       
-       std::auto_ptr<TorrentAlert> alertPtr = btSession_.pop_alert();
+
+#ifdef QTRAPIDS_DEBUG
+       //if (al)
+       //      qDebug() << "on_alert():" << QString::fromStdString(al->message());
+#endif
+
+       std::auto_ptr<Alert> alertPtr = btSession_.pop_alert();
        emit alert(alertPtr);
 }
 
-
+} //namespace qtrapids