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