e68a940859032fe1ba7f7ab9f0e3eb66fd556b8a
[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
37 namespace qtrapids
38 {
39
40 class QTorrentHandle
41 {
42 public:
43
44     enum State
45     {
46         QUEUED_FOR_CHECKING = TorrentStatus::queued_for_checking,
47         CHECKING_FILES,
48         DOWNLOADING_METADATA,
49         DOWNLOADING,
50         FINISHED,
51         SEEDING,
52         ALLOCATING,
53         UNSPECIFIED
54     };
55
56     QTorrentHandle(libtorrent::torrent_handle handle);
57     ~QTorrentHandle();
58
59
60
61     TorrentInfo const& getTorrentInfo() const;
62
63     bool isValid() const;
64
65     QString name() const;
66     size_t getTotalSize() const;
67     QTorrentHandle::State state() const;
68     float progress() const;
69     float uploadRate() const;
70     float downloadRate() const;
71     qint32 numSeeds() const;
72     qint32 numLeeches() const;
73     qint32 ratio() const;
74
75     TorrentHandle getHandle() const;
76
77     bool operator==(QTorrentHandle const& h) const;
78     bool operator<(QTorrentHandle const& h) const;
79
80 private:
81     QTorrentHandle(); // Prevent default construct.
82     TorrentHandle torrentHandle_;
83
84     TorrentStatus status() const;
85
86 };
87
88 } // namespace qtrapids
89 #endif