f03194d4d1610dab202e63d0235a4e70e97794fd
[qtrapids] / src / engine / QTorrentHandle.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 QTORRENTHANDLE_H
21 #define QTORRENTHANDLE_H
22
23 #include <QtGlobal>
24
25 #include <libtorrent/torrent_handle.hpp>
26
27
28 typedef libtorrent::torrent_status TorrentStatus;
29 typedef libtorrent::torrent_info TorrentInfo;
30 typedef libtorrent::torrent_handle TorrentHandle;
31
32 /**
33         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
34 */
35 class QTorrentHandle 
36 {
37         
38         public:
39                 QTorrentHandle(libtorrent::torrent_handle handle);
40     ~QTorrentHandle();
41                 
42
43                 TorrentStatus status() const;
44                 
45                 TorrentInfo const& getTorrentInfo() const;
46                 
47                 bool isValid() const;
48
49                 QString name() const;
50                 size_t getTotalSize() const;
51                 QString state() const;
52                 float progress() const;
53                 float uploadRate() const;
54                 float downloadRate() const;
55                 qint32 numSeeds() const;
56                 qint32 numLeeches() const;
57                 qint32 ratio() const;
58                 
59                 TorrentHandle getHandle() const;
60                 
61                 bool operator==(QTorrentHandle const& h) const; 
62                 bool operator<(QTorrentHandle const& h) const;
63                 
64         private:
65                 QTorrentHandle(); // Prevent default construct.
66                 TorrentHandle torrentHandle_;
67                 
68                 // Private functions.
69                 QString GetStatusString(TorrentStatus const& status) const;
70 };
71
72 #endif