Added Q_FUNC_INFO macros to some functions.
[qtrapids] / src / engine / QTorrentHandle.cpp
index 093b1a3..677341e 100644 (file)
@@ -1,11 +1,9 @@
 /***************************************************************************
- *   Copyright (C) 2009 by Lassi Väätämöinen   *
- *   lassi.vaatamoinen@ixonos.com   *
+ *   Copyright (C) 2010 by Ixonos Plc   *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   it under the terms of the GNU General Public License as published by  *
- *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
+ *   the Free Software Foundation; version 2 of the License.               *
  *                                                                         *
  *   This program is distributed in the hope that it will be useful,       *
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
@@ -26,7 +24,7 @@ namespace qtrapids
 
 
 QTorrentHandle::QTorrentHandle(libtorrent::torrent_handle handle) :
-        torrentHandle_(handle)
+               torrentHandle_(handle)
 {
 }
 
@@ -38,127 +36,123 @@ QTorrentHandle::~QTorrentHandle()
 
 TorrentStatus QTorrentHandle::status() const
 {
-    return torrentHandle_.status();
+       return torrentHandle_.status();
 }
 
 
 TorrentInfo const& QTorrentHandle::getTorrentInfo() const
 {
-    return torrentHandle_.get_torrent_info();
+       return torrentHandle_.get_torrent_info();
 }
 
 
 bool QTorrentHandle::isValid() const
 {
-    return torrentHandle_.is_valid();
+       return torrentHandle_.is_valid();
 }
 
 
 QString QTorrentHandle::name() const
 {
-    return QString::fromStdString(torrentHandle_.name());
+       return QString::fromStdString(torrentHandle_.name());
 }
 
 size_t QTorrentHandle::getTotalSize() const
 {
-    TorrentInfo info = getTorrentInfo();
-    return static_cast<size_t> (info.total_size());
+       TorrentInfo info = getTorrentInfo();
+       return static_cast<size_t> (info.total_size());
 }
 
 
 QTorrentHandle::State QTorrentHandle::state() const
 {
-    TorrentStatus statusTmp = status();
+       TorrentStatus statusTmp = status();
 
-    switch (statusTmp.state)
-    {
-    case TorrentStatus::queued_for_checking :
-        return QTorrentHandle::QUEUED_FOR_CHECKING;
-    case TorrentStatus::checking_files :
-        return QTorrentHandle::CHECKING_FILES;
-    case TorrentStatus::downloading_metadata :
-        return QTorrentHandle::DOWNLOADING_METADATA;
-    case TorrentStatus::downloading :
-        return QTorrentHandle::DOWNLOADING;
-    case TorrentStatus::finished :
-        return QTorrentHandle::FINISHED;
-    case TorrentStatus::seeding :
-        return QTorrentHandle::SEEDING;
-    case TorrentStatus::allocating :
-        return QTorrentHandle::ALLOCATING;
-    default:
-        return QTorrentHandle::UNSPECIFIED;
-    }
+       switch (statusTmp.state) {
+       case TorrentStatus::queued_for_checking :
+               return QTorrentHandle::QUEUED_FOR_CHECKING;
+       case TorrentStatus::checking_files :
+               return QTorrentHandle::CHECKING_FILES;
+       case TorrentStatus::downloading_metadata :
+               return QTorrentHandle::DOWNLOADING_METADATA;
+       case TorrentStatus::downloading :
+               return QTorrentHandle::DOWNLOADING;
+       case TorrentStatus::finished :
+               return QTorrentHandle::FINISHED;
+       case TorrentStatus::seeding :
+               return QTorrentHandle::SEEDING;
+       case TorrentStatus::allocating :
+               return QTorrentHandle::ALLOCATING;
+       default:
+               return QTorrentHandle::UNSPECIFIED;
+       }
 
 }
 
 
 float QTorrentHandle::progress() const
 {
-    TorrentStatus statusTmp = status();
-    return statusTmp.progress;
+       TorrentStatus statusTmp = status();
+       return statusTmp.progress;
 }
 
 float QTorrentHandle::uploadRate() const
 {
-    TorrentStatus statusTmp = status();
-    return statusTmp.upload_rate;
+       TorrentStatus statusTmp = status();
+       return statusTmp.upload_rate;
 }
 
 
 float QTorrentHandle::downloadRate() const
 {
-    TorrentStatus statusTmp = status();
-    return statusTmp.download_rate;
+       TorrentStatus statusTmp = status();
+       return statusTmp.download_rate;
 }
 
 
 qint32 QTorrentHandle::numSeeds() const
 {
-    TorrentStatus statusTmp = status();
-    return statusTmp.list_seeds;
+       TorrentStatus statusTmp = status();
+       return statusTmp.list_seeds;
 }
 
 
 qint32 QTorrentHandle::numLeeches() const
 {
-    TorrentStatus statusTmp = status();
-    return (statusTmp.list_peers - statusTmp.list_seeds);
+       TorrentStatus statusTmp = status();
+       return (statusTmp.list_peers - statusTmp.list_seeds);
 }
 
 
 qint32 QTorrentHandle::ratio() const
 {
-    TorrentStatus statusTmp = status();
-    size_t ratio;
-    if (statusTmp.total_payload_download == 0)
-    {
-        ratio = 0;
-    }
-    else
-    {
-        ratio = static_cast<size_t> (statusTmp.total_payload_upload / statusTmp.total_payload_download);
-    }
+       TorrentStatus statusTmp = status();
+       size_t ratio;
+       if (statusTmp.total_payload_download == 0) {
+               ratio = 0;
+       } else {
+               ratio = static_cast<size_t> (statusTmp.total_payload_upload / statusTmp.total_payload_download);
+       }
 
-    return ratio;
+       return ratio;
 }
 
 
 TorrentHandle QTorrentHandle::getHandle() const
 {
-    return torrentHandle_;
+       return torrentHandle_;
 }
 
 
 bool QTorrentHandle::operator==(QTorrentHandle const& h) const
 {
-    return torrentHandle_ == h.torrentHandle_;
+       return torrentHandle_ == h.torrentHandle_;
 }
 
 
 bool QTorrentHandle::operator<(QTorrentHandle const& h) const
 {
-    return torrentHandle_ < h.torrentHandle_;
+       return torrentHandle_ < h.torrentHandle_;
 }
 
 } // namespace qtrapids