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