- Namespaced QBittorrentSession and QTorrentHandle to avoid possible future conflicts
[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 namespace qtrapids {
44
45 /**
46         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
47 */
48 class QBittorrentSession : public QObject {
49         Q_OBJECT
50 //              class   BitTorrentSession;
51                         
52         public:
53                 QBittorrentSession(QObject *parent = 0);
54     ~QBittorrentSession();
55                 
56                 /// @brief Add torrent to session.
57                 qtrapids::QTorrentHandle addTorrent(AddTorrentParams const& params);
58                 void removeTorrent(qtrapids::QTorrentHandle const& handle);
59                 
60         signals:
61                 void alert(std::auto_ptr<Alert> al);
62                 
63         private slots:
64                 void on_alert(Alert const *al);
65                 
66         private:
67                 TorrentSession btSession_;
68                 AlertWaiterThread *alertWaiter_;
69                 
70 };
71
72 } //namespace qtrapids
73 #endif