- Added buildconf.pri to hold the master-level build options.
[qtrapids] / src / engine / QBittorrentSession.h
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 #ifndef QBITTORRENTSESSION_H
21 #define QBITTORRENTSESSION_H
22
23 #include <memory>
24
25 #include <QObject>
26
27 #include <libtorrent/session.hpp>
28 #include <libtorrent/torrent_info.hpp>
29 #include <libtorrent/alert_types.hpp>
30
31 #include "QTorrentHandle.h"
32
33
34 // Forward declarations and typedefs
35 class AlertWaiterThread;
36 typedef libtorrent::session TorrentSession;
37 typedef libtorrent::add_torrent_params AddTorrentParams;
38 typedef libtorrent::alert Alert;
39 typedef libtorrent::torrent_alert TorrentAlert;
40 typedef libtorrent::sha1_hash Sha1Hash;
41
42
43 /**
44         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
45 */
46 class QBittorrentSession : public QObject {
47         Q_OBJECT
48 //              class   BitTorrentSession;
49                         
50         public:
51                 QBittorrentSession(QObject *parent = 0);
52     ~QBittorrentSession();
53                 
54                 /// @brief Add torrent to session.
55                 QTorrentHandle addTorrent(AddTorrentParams const& params);
56                 void removeTorrent(QTorrentHandle const& handle);
57                 
58         signals:
59                 void alert(std::auto_ptr<Alert> al);
60                 
61         private slots:
62                 void on_alert(Alert const *al);
63                 
64         private:
65                 TorrentSession btSession_;
66                 AlertWaiterThread *alertWaiter_;
67                 
68 };
69
70 #endif