restore support for current stable libtorrent (/w boost::filesystem)
[qtrapids] / src / server / TorrentHandle.hpp
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 #include <QString>
25
26 #include <qtrapids/info.hpp>
27 #include <libtorrent/torrent_handle.hpp>
28
29 namespace qtrapids
30 {
31
32     typedef libtorrent::torrent_info const& torrent_info_cref;
33     typedef libtorrent::torrent_handle torrent_handle_t;
34     typedef libtorrent::sha1_hash Sha1Hash;
35
36
37     inline QString Hash2QStr(Sha1Hash const& hash)
38     {
39         return QString(hash.to_string().c_str());
40     }
41
42     /**
43        @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
44     */
45     class TorrentHandle 
46     {
47     public:
48                 
49         TorrentHandle(libtorrent::torrent_handle handle);
50         ~TorrentHandle();
51                 
52
53                 
54         torrent_info_cref getTorrentInfo() const;
55                 
56         bool isValid() const;
57
58         Sha1Hash hash() const
59         {
60             return torrentHandle_.info_hash();
61         }
62
63         QString name() const;
64         size_t getTotalSize() const;
65         TorrentStatus::Id 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         torrent_handle_t getHandle() const;
74         bool operator==(TorrentHandle const& h) const; 
75         bool operator<(TorrentHandle const& h) const;
76                 
77     private:
78         TorrentHandle(); // Prevent default construct.
79         torrent_handle_t torrentHandle_;
80         
81         TorrentStatus_t status() const;
82
83     };
84
85 }
86
87 #endif