-Added QTorrentHandle and started torrent adding implementation
[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         connect(alertWaiter_, SIGNAL(alert(TorrentAlert const*)), this, SLOT(on_alert(TorrentAlert const*)));
34         alertWaiter_->start();
35 }
36
37
38 QBittorrentSession::~QBittorrentSession()
39 {
40 }
41
42
43 QTorrentHandle QBittorrentSession::addTorrent(AddTorrentParams const& params)
44 {
45         // Delegate to Libtorrent and return QTorrentHandle.
46         QTorrentHandle handle(btSession_.add_torrent(params));
47         return handle;
48 }
49
50
51 // ========================== SLOTS ==============================
52 void QBittorrentSession::on_alert(TorrentAlert const *al)
53 {
54         qDebug() << "QBittorrentSession:on_alert(" << al << ")";
55         emit alert(al);
56 }
57
58