- Added buildconf.pri to hold the master-level build options.
[qtrapids] / src / engine / QBittorrentSession.cpp
1 /***************************************************************************
2  *   Copyright (C) 2009 by Lassi Väätämöinen   *
3  *   lassi.vaatamoinen@ixonos.com   *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include <QDebug>
22
23 #include "AlertWaiterThread.h"
24 #include "QBittorrentSession.h"
25
26
27 QBittorrentSession::QBittorrentSession(QObject *parent):
28                 QObject(parent),
29                 btSession_(),
30                 alertWaiter_(NULL)
31 {
32         alertWaiter_ = new AlertWaiterThread(&btSession_, this);
33         alertWaiter_->allAlerts();
34         connect(alertWaiter_, SIGNAL(alert(Alert const*)), this, SLOT(on_alert(Alert const*)));
35         alertWaiter_->start();
36 }
37
38
39 QBittorrentSession::~QBittorrentSession()
40 {
41 }
42
43
44 QTorrentHandle
45 QBittorrentSession::addTorrent(AddTorrentParams const& params)
46 {
47         // Delegate to Libtorrent and return QTorrentHandle.
48         //std::auto_ptr<QTorrentHandle> handlePtr(new QTorrentHandle(btSession_.add_torrent(params)));
49         QTorrentHandle  handle = QTorrentHandle(btSession_.add_torrent(params));
50         return handle;
51 }
52
53
54 void QBittorrentSession::removeTorrent(QTorrentHandle const& handle) 
55 {
56         btSession_.remove_torrent(handle.getHandle());
57 }
58
59
60 // ========================== SLOTS ==============================
61 /// @TODO This function is called when AlertWaiterThread emits alert()
62 /// If connection is direct, as it is now, we need to use QMutex here (if necessary?)
63 void QBittorrentSession::on_alert(Alert const *al) 
64                 //NOTE: al parameter not necessarily needed here, as we pop_alert() now!
65 {
66         
67 #ifdef QTRAPIDS_DEBUG
68         if (al)
69                 qDebug() << "on_alert():" << QString::fromStdString(al->message());
70 #endif
71
72         std::auto_ptr<Alert> alertPtr = btSession_.pop_alert();
73         emit alert(alertPtr);
74 }
75
76
77