- Fixes: Restoring download rate setting on startup. Rate setting spinbox initial...
[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::session_settings SessionSettings;
38 typedef libtorrent::add_torrent_params AddTorrentParams;
39 typedef libtorrent::alert Alert;
40 typedef libtorrent::torrent_alert TorrentAlert;
41 typedef libtorrent::sha1_hash Sha1Hash;
42
43
44 namespace qtrapids
45 {
46
47 /**
48         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
49 */
50 class QBittorrentSession : public QObject
51 {
52         Q_OBJECT
53 //              class   BitTorrentSession;
54
55 public:
56         QBittorrentSession(QObject *parent = 0);
57         ~QBittorrentSession();
58
59         /// @brief Add torrent to session.
60         qtrapids::QTorrentHandle addTorrent(AddTorrentParams const& params);
61         void removeTorrent(qtrapids::QTorrentHandle const& handle);
62
63         void setUploadRateLimit(int rate);
64         void setDownloadRateLimit(int rate);
65         int getUploadRateLimt() const;
66         int getDownloadRateLimit() const;
67         
68 signals:
69         void alert(std::auto_ptr<Alert> al);
70
71 private slots:
72         void on_alert(Alert const *al);
73
74 private:
75         TorrentSession btSession_;
76         AlertWaiterThread *alertWaiter_;
77
78 };
79
80 } //namespace qtrapids
81 #endif