Rewritten iterative category summarized lookup.
This commit is contained in:
parent
af254235f8
commit
ec09fb69c2
@ -426,20 +426,26 @@ QHash<int, FeedsModelCategory*> FeedsModel::getAllCategories() {
|
|||||||
return getCategories(m_rootItem);
|
return getCategories(m_rootItem);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Rewrite this iterativelly (instead of
|
|
||||||
// current recursive implementation).
|
|
||||||
QHash<int, FeedsModelCategory*> FeedsModel::getCategories(FeedsModelRootItem *root) {
|
QHash<int, FeedsModelCategory*> FeedsModel::getCategories(FeedsModelRootItem *root) {
|
||||||
QHash<int, FeedsModelCategory*> categories;
|
QHash<int, FeedsModelCategory*> categories;
|
||||||
|
QList<FeedsModelRootItem*> parents;
|
||||||
|
|
||||||
foreach (FeedsModelRootItem *child, root->childItems()) {
|
parents.append(root->childItems());
|
||||||
if (child->kind() == FeedsModelRootItem::Category) {
|
|
||||||
FeedsModelCategory *converted = static_cast<FeedsModelCategory*>(child);
|
|
||||||
|
|
||||||
// This child is some kind of category.
|
while (!parents.isEmpty()) {
|
||||||
categories.insert(converted->id(), converted);
|
FeedsModelRootItem *item = parents.takeFirst();
|
||||||
|
|
||||||
// Moreover, add all child categories of this category.
|
if (item->kind() == FeedsModelRootItem::Category) {
|
||||||
categories.unite(getCategories(converted));
|
// This item is category, add it to the output list and
|
||||||
|
// scan its children.
|
||||||
|
int category_id = item->id();
|
||||||
|
FeedsModelCategory *category = static_cast<FeedsModelCategory*>(item);
|
||||||
|
|
||||||
|
if (!categories.contains(category_id)) {
|
||||||
|
categories.insert(category_id, category);
|
||||||
|
}
|
||||||
|
|
||||||
|
parents.append(category->childItems());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user