dd94f95598681fa8181da7e03d4afe3f65def907
[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(TorrentAlert const*)), this, SLOT(on_alert(TorrentAlert const*)));
35         alertWaiter_->start();
36 }
37
38
39 QBittorrentSession::~QBittorrentSession()
40 {
41 }
42
43
44 std::auto_ptr<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         return handlePtr;
50 }
51
52
53 // ========================== SLOTS ==============================
54 void QBittorrentSession::on_alert(TorrentAlert const *al) 
55                 //NOTE: al parameter not necessarily needed here, as we pop_alert() now!
56 {
57         
58         //qDebug() << "QBittorrentSession:on_alert(" << al << ")";
59 //      if (al)
60 //              qDebug() << "on_alert():" << QString::fromStdString(al->message());
61         
62         std::auto_ptr<TorrentAlert> alertPtr = btSession_.pop_alert();
63         emit alert(alertPtr);
64 }
65
66