|
|
@ -31,7 +31,7 @@ |
|
|
|
#include <QDebug> |
|
|
|
#include <QDebug> |
|
|
|
#include "torrentcontentmodelfolder.h" |
|
|
|
#include "torrentcontentmodelfolder.h" |
|
|
|
|
|
|
|
|
|
|
|
TorrentContentModelFolder::TorrentContentModelFolder(const QString& name, TorrentContentModelFolder* parent) |
|
|
|
TorrentContentModelFolder::TorrentContentModelFolder(const QString &name, TorrentContentModelFolder *parent) |
|
|
|
: TorrentContentModelItem(parent) |
|
|
|
: TorrentContentModelItem(parent) |
|
|
|
{ |
|
|
|
{ |
|
|
|
Q_ASSERT(parent); |
|
|
|
Q_ASSERT(parent); |
|
|
@ -41,7 +41,7 @@ TorrentContentModelFolder::TorrentContentModelFolder(const QString& name, Torren |
|
|
|
m_name.chop(4); |
|
|
|
m_name.chop(4); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
TorrentContentModelFolder::TorrentContentModelFolder(const QList<QVariant>& data) |
|
|
|
TorrentContentModelFolder::TorrentContentModelFolder(const QList<QVariant> &data) |
|
|
|
: TorrentContentModelItem(0) |
|
|
|
: TorrentContentModelItem(0) |
|
|
|
{ |
|
|
|
{ |
|
|
|
Q_ASSERT(data.size() == NB_COL); |
|
|
|
Q_ASSERT(data.size() == NB_COL); |
|
|
@ -53,6 +53,11 @@ TorrentContentModelFolder::~TorrentContentModelFolder() |
|
|
|
qDeleteAll(m_childItems); |
|
|
|
qDeleteAll(m_childItems); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TorrentContentModelItem::ItemType TorrentContentModelFolder::itemType() const |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return FolderType; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void TorrentContentModelFolder::deleteAllChildren() |
|
|
|
void TorrentContentModelFolder::deleteAllChildren() |
|
|
|
{ |
|
|
|
{ |
|
|
|
Q_ASSERT(isRootItem()); |
|
|
|
Q_ASSERT(isRootItem()); |
|
|
@ -60,12 +65,12 @@ void TorrentContentModelFolder::deleteAllChildren() |
|
|
|
m_childItems.clear(); |
|
|
|
m_childItems.clear(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const QList<TorrentContentModelItem*>& TorrentContentModelFolder::children() const |
|
|
|
const QList<TorrentContentModelItem *> &TorrentContentModelFolder::children() const |
|
|
|
{ |
|
|
|
{ |
|
|
|
return m_childItems; |
|
|
|
return m_childItems; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void TorrentContentModelFolder::appendChild(TorrentContentModelItem* item) |
|
|
|
void TorrentContentModelFolder::appendChild(TorrentContentModelItem *item) |
|
|
|
{ |
|
|
|
{ |
|
|
|
Q_ASSERT(item); |
|
|
|
Q_ASSERT(item); |
|
|
|
m_childItems.append(item); |
|
|
|
m_childItems.append(item); |
|
|
@ -74,17 +79,16 @@ void TorrentContentModelFolder::appendChild(TorrentContentModelItem* item) |
|
|
|
increaseSize(item->size()); |
|
|
|
increaseSize(item->size()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
TorrentContentModelItem* TorrentContentModelFolder::child(int row) const |
|
|
|
TorrentContentModelItem *TorrentContentModelFolder::child(int row) const |
|
|
|
{ |
|
|
|
{ |
|
|
|
return m_childItems.value(row, 0); |
|
|
|
return m_childItems.value(row, 0); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
TorrentContentModelFolder* TorrentContentModelFolder::childFolderWithName(const QString& name) const |
|
|
|
TorrentContentModelFolder *TorrentContentModelFolder::childFolderWithName(const QString &name) const |
|
|
|
{ |
|
|
|
{ |
|
|
|
foreach (TorrentContentModelItem* child, m_childItems) { |
|
|
|
foreach (TorrentContentModelItem *child, m_childItems) |
|
|
|
if (child->itemType() == FolderType && child->name() == name) |
|
|
|
if ((child->itemType() == FolderType) && (child->name() == name)) |
|
|
|
return static_cast<TorrentContentModelFolder*>(child); |
|
|
|
return static_cast<TorrentContentModelFolder *>(child); |
|
|
|
} |
|
|
|
|
|
|
|
return 0; |
|
|
|
return 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -105,7 +109,7 @@ void TorrentContentModelFolder::updatePriority() |
|
|
|
// then the folder should have the same
|
|
|
|
// then the folder should have the same
|
|
|
|
// priority
|
|
|
|
// priority
|
|
|
|
const int prio = m_childItems.first()->priority(); |
|
|
|
const int prio = m_childItems.first()->priority(); |
|
|
|
for (int i=1; i<m_childItems.size(); ++i) { |
|
|
|
for (int i = 1; i < m_childItems.size(); ++i) { |
|
|
|
if (m_childItems.at(i)->priority() != prio) { |
|
|
|
if (m_childItems.at(i)->priority() != prio) { |
|
|
|
setPriority(prio::MIXED); |
|
|
|
setPriority(prio::MIXED); |
|
|
|
return; |
|
|
|
return; |
|
|
@ -116,22 +120,21 @@ void TorrentContentModelFolder::updatePriority() |
|
|
|
setPriority(prio); |
|
|
|
setPriority(prio); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void TorrentContentModelFolder::setPriority(int new_prio, bool update_parent) |
|
|
|
void TorrentContentModelFolder::setPriority(int newPriority, bool updateParent) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (m_priority == new_prio) |
|
|
|
if (m_priority == newPriority) |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
m_priority = new_prio; |
|
|
|
m_priority = newPriority; |
|
|
|
|
|
|
|
|
|
|
|
// Update parent priority
|
|
|
|
// Update parent priority
|
|
|
|
if (update_parent) |
|
|
|
if (updateParent) |
|
|
|
m_parentItem->updatePriority(); |
|
|
|
m_parentItem->updatePriority(); |
|
|
|
|
|
|
|
|
|
|
|
// Update children
|
|
|
|
// Update children
|
|
|
|
if (m_priority != prio::MIXED) { |
|
|
|
if (m_priority != prio::MIXED) |
|
|
|
foreach (TorrentContentModelItem* child, m_childItems) |
|
|
|
foreach (TorrentContentModelItem *child, m_childItems) |
|
|
|
child->setPriority(m_priority, false); |
|
|
|
child->setPriority(m_priority, false); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void TorrentContentModelFolder::recalculateProgress() |
|
|
|
void TorrentContentModelFolder::recalculateProgress() |
|
|
@ -139,23 +142,51 @@ void TorrentContentModelFolder::recalculateProgress() |
|
|
|
qreal tProgress = 0; |
|
|
|
qreal tProgress = 0; |
|
|
|
qulonglong tSize = 0; |
|
|
|
qulonglong tSize = 0; |
|
|
|
qulonglong tRemaining = 0; |
|
|
|
qulonglong tRemaining = 0; |
|
|
|
foreach (TorrentContentModelItem* child, m_childItems) { |
|
|
|
foreach (TorrentContentModelItem *child, m_childItems) { |
|
|
|
if (child->priority() != prio::IGNORED) { |
|
|
|
if (child->priority() != prio::IGNORED) { |
|
|
|
if (child->itemType() == FolderType) |
|
|
|
if (child->itemType() == FolderType) |
|
|
|
static_cast<TorrentContentModelFolder*>(child)->recalculateProgress(); |
|
|
|
static_cast<TorrentContentModelFolder *>(child)->recalculateProgress(); |
|
|
|
tProgress += child->progress() * child->size(); |
|
|
|
tProgress += child->progress() * child->size(); |
|
|
|
tSize += child->size(); |
|
|
|
tSize += child->size(); |
|
|
|
tRemaining += child->remaining(); |
|
|
|
tRemaining += child->remaining(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (!isRootItem() && tSize > 0) { |
|
|
|
if (!isRootItem() && (tSize > 0)) { |
|
|
|
m_progress = tProgress / tSize; |
|
|
|
m_progress = tProgress / tSize; |
|
|
|
m_remaining = tRemaining; |
|
|
|
m_remaining = tRemaining; |
|
|
|
Q_ASSERT(m_progress <= 1.); |
|
|
|
Q_ASSERT(m_progress <= 1.); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void TorrentContentModelFolder::recalculateAvailability() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
qreal tAvailability = 0; |
|
|
|
|
|
|
|
qulonglong tSize = 0; |
|
|
|
|
|
|
|
bool foundAnyData = false; |
|
|
|
|
|
|
|
foreach (TorrentContentModelItem* child, m_childItems) { |
|
|
|
|
|
|
|
if (child->priority() == prio::IGNORED) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (child->itemType() == FolderType) |
|
|
|
|
|
|
|
static_cast<TorrentContentModelFolder*>(child)->recalculateAvailability(); |
|
|
|
|
|
|
|
const qreal childAvailability = child->availability(); |
|
|
|
|
|
|
|
if (childAvailability >= 0) { // -1 means "no data"
|
|
|
|
|
|
|
|
tAvailability += childAvailability * child->size(); |
|
|
|
|
|
|
|
foundAnyData = true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
tSize += child->size(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!isRootItem() && (tSize > 0) && foundAnyData) { |
|
|
|
|
|
|
|
m_availability = tAvailability / tSize; |
|
|
|
|
|
|
|
Q_ASSERT(m_availability <= 1.); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else { |
|
|
|
|
|
|
|
m_availability = -1.; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void TorrentContentModelFolder::increaseSize(qulonglong delta) |
|
|
|
void TorrentContentModelFolder::increaseSize(qulonglong delta) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (isRootItem()) |
|
|
|
if (isRootItem()) |
|
|
|