Code formatting/indentation unified in trunk
[qtrapids] / src / engine / QTorrentHandle.cpp
index b1f426a..093b1a3 100644 (file)
 
 #include "QTorrentHandle.h"
 
-namespace qtrapids {
+namespace qtrapids
+{
+
 
-       
-QTorrentHandle::QTorrentHandle(libtorrent::torrent_handle handle) : 
-               torrentHandle_(handle)
+QTorrentHandle::QTorrentHandle(libtorrent::torrent_handle handle) :
+        torrentHandle_(handle)
 {
 }
 
@@ -37,126 +38,129 @@ 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();
-       
-               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;
-       }
-       
+    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;
+    }
+
 }
 
 
 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);
-       }
-       
-       return ratio;
+    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;
 }
 
 
 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
 
 
-                               
\ No newline at end of file