- Moved status string mapping to view from QTorrentHandle
[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 /**
34         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
35 */
36 class QTorrentHandle 
37 {
38         public:
39                 
40                 enum State {
41                         QUEUED_FOR_CHECKING = TorrentStatus::queued_for_checking,
42                         CHECKING_FILES,
43                         DOWNLOADING_METADATA,
44                         DOWNLOADING,
45                         FINISHED,
46                         SEEDING,
47                         ALLOCATING,
48                         UNSPECIFIED
49                 };
50                 
51                 QTorrentHandle(libtorrent::torrent_handle handle);
52     ~QTorrentHandle();
53                 
54
55                 
56                 TorrentInfo const& getTorrentInfo() const;
57                 
58                 bool isValid() const;
59
60                 QString name() const;
61                 size_t getTotalSize() const;
62                 QTorrentHandle::State state() const;
63                 float progress() const;
64                 float uploadRate() const;
65                 float downloadRate() const;
66                 qint32 numSeeds() const;
67                 qint32 numLeeches() const;
68                 qint32 ratio() const;
69                 
70                 TorrentHandle getHandle() const;
71                 
72                 bool operator==(QTorrentHandle const& h) const; 
73                 bool operator<(QTorrentHandle const& h) const;
74                 
75         private:
76                 QTorrentHandle(); // Prevent default construct.
77                 TorrentHandle torrentHandle_;
78         
79                 TorrentStatus status() const;
80
81 };
82
83 #endif