strawberry-audio-player-win.../src/internet/internetsearchmodel.cpp

381 lines
12 KiB
C++
Raw Normal View History

2018-10-14 00:08:33 +02:00
/*
* Strawberry Music Player
* This code was part of Clementine (GlobalSearch)
* Copyright 2012, David Sansome <me@davidsansome.com>
*
* Strawberry 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 3 of the License, or
* (at your option) any later version.
*
* Strawberry is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "config.h"
#include <QStandardItemModel>
2020-02-09 02:29:35 +01:00
#include <QSortFilterProxyModel>
#include <QMimeData>
2018-10-14 00:08:33 +02:00
#include <QList>
#include <QSet>
#include <QVariant>
#include <QString>
#include <QPixmap>
2020-02-09 02:29:35 +01:00
#include <QSize>
2018-10-14 00:08:33 +02:00
#include "core/mimedata.h"
#include "core/iconloader.h"
#include "internetsearch.h"
#include "internetsearchmodel.h"
2018-10-14 00:08:33 +02:00
InternetSearchModel::InternetSearchModel(InternetSearch *engine, QObject *parent)
2018-10-14 00:08:33 +02:00
: QStandardItemModel(parent),
engine_(engine),
proxy_(nullptr),
use_pretty_covers_(true),
artist_icon_(IconLoader::Load("folder-sound")),
album_icon_(IconLoader::Load("cdcase"))
{
2018-10-14 00:08:33 +02:00
2019-03-30 22:03:33 +01:00
group_by_[0] = CollectionModel::GroupBy_AlbumArtist;
2018-10-14 00:08:33 +02:00
group_by_[1] = CollectionModel::GroupBy_Album;
group_by_[2] = CollectionModel::GroupBy_None;
no_cover_icon_ = album_icon_.pixmap(album_icon_.availableSizes().last()).scaled(CollectionModel::kPrettyCoverSize, CollectionModel::kPrettyCoverSize, Qt::KeepAspectRatio, Qt::SmoothTransformation);
2018-10-14 00:08:33 +02:00
}
void InternetSearchModel::AddResults(const InternetSearch::ResultList &results) {
2018-10-14 00:08:33 +02:00
int sort_index = 0;
for (const InternetSearch::Result &result : results) {
2018-10-14 00:08:33 +02:00
QStandardItem *parent = invisibleRootItem();
// Find (or create) the container nodes for this result if we can.
ContainerKey key;
key.provider_index_ = sort_index;
parent = BuildContainers(result.metadata_, parent, &key);
// Create the item
QStandardItem *item = new QStandardItem;
item->setText(result.metadata_.TitleWithCompilationArtist());
item->setData(QVariant::fromValue(result), Role_Result);
item->setData(sort_index, Role_ProviderIndex);
parent->appendRow(item);
}
}
QStandardItem *InternetSearchModel::BuildContainers(const Song &s, QStandardItem *parent, ContainerKey *key, int level) {
2018-10-14 00:08:33 +02:00
if (level >= 3) {
return parent;
}
bool has_artist_icon = false;
bool has_album_icon = false;
QString display_text;
QString sort_text;
QString unique_tag;
2018-10-14 00:08:33 +02:00
switch (group_by_[level]) {
case CollectionModel::GroupBy_AlbumArtist:
if (s.is_compilation()) {
display_text = tr("Various artists");
sort_text = "aaaaaa";
}
else {
display_text = CollectionModel::TextOrUnknown(s.effective_albumartist());
sort_text = CollectionModel::SortTextForArtist(s.effective_albumartist());
}
has_artist_icon = true;
break;
2018-10-14 00:08:33 +02:00
case CollectionModel::GroupBy_Artist:
if (s.is_compilation()) {
display_text = tr("Various artists");
sort_text = "aaaaaa";
}
else {
display_text = CollectionModel::TextOrUnknown(s.artist());
sort_text = CollectionModel::SortTextForArtist(s.artist());
}
has_artist_icon = true;
break;
2019-08-05 19:17:31 +02:00
case CollectionModel::GroupBy_YearAlbum:{
int year = qMax(0, s.year());
2018-10-14 00:08:33 +02:00
display_text = CollectionModel::PrettyYearAlbum(year, s.album());
sort_text = CollectionModel::SortTextForNumber(year) + s.album();
unique_tag = s.album_id();
has_album_icon = true;
break;
2019-08-05 19:17:31 +02:00
}
2018-10-14 00:08:33 +02:00
2019-08-05 19:17:31 +02:00
case CollectionModel::GroupBy_OriginalYearAlbum:{
int year = qMax(0, s.effective_originalyear());
2018-10-14 00:08:33 +02:00
display_text = CollectionModel::PrettyYearAlbum(year, s.album());
sort_text = CollectionModel::SortTextForNumber(year) + s.album();
unique_tag = s.album_id();
has_album_icon = true;
break;
2019-08-05 19:17:31 +02:00
}
2018-10-14 00:08:33 +02:00
2019-08-05 19:17:31 +02:00
case CollectionModel::GroupBy_Year:{
int year = qMax(0, s.year());
2018-10-14 00:08:33 +02:00
display_text = QString::number(year);
sort_text = CollectionModel::SortTextForNumber(year) + " ";
break;
2019-08-05 19:17:31 +02:00
}
2018-10-14 00:08:33 +02:00
2019-08-05 19:17:31 +02:00
case CollectionModel::GroupBy_OriginalYear:{
int year = qMax(0, s.effective_originalyear());
2018-10-14 00:08:33 +02:00
display_text = QString::number(year);
sort_text = CollectionModel::SortTextForNumber(year) + " ";
break;
2019-08-05 19:17:31 +02:00
}
2018-10-14 00:08:33 +02:00
case CollectionModel::GroupBy_Composer:
display_text = CollectionModel::TextOrUnknown(s.composer());
sort_text = CollectionModel::SortTextForArtist(s.composer());
has_album_icon = true;
break;
2018-10-14 00:08:33 +02:00
case CollectionModel::GroupBy_Performer:
display_text = CollectionModel::TextOrUnknown(s.performer());
sort_text = CollectionModel::SortTextForArtist(s.performer());
has_album_icon = true;
break;
2018-10-14 00:08:33 +02:00
case CollectionModel::GroupBy_Disc:
display_text = s.disc();
sort_text = CollectionModel::SortTextForArtist(display_text);
has_album_icon = true;
break;
2018-10-14 00:08:33 +02:00
case CollectionModel::GroupBy_Grouping:
display_text = CollectionModel::TextOrUnknown(s.grouping());
sort_text = CollectionModel::SortTextForArtist(s.grouping());
has_album_icon = true;
break;
2018-10-14 00:08:33 +02:00
case CollectionModel::GroupBy_Genre:
display_text = CollectionModel::TextOrUnknown(s.genre());
sort_text = CollectionModel::SortTextForArtist(s.genre());
has_album_icon = true;
break;
2018-10-14 00:08:33 +02:00
case CollectionModel::GroupBy_Album:
display_text = CollectionModel::TextOrUnknown(s.album());
sort_text = CollectionModel::SortTextForArtist(s.album());
2018-10-14 00:08:33 +02:00
unique_tag = s.album_id();
has_album_icon = true;
break;
case CollectionModel::GroupBy_FileType:
display_text = s.TextForFiletype();
sort_text = display_text;
break;
case CollectionModel::GroupBy_Bitrate:
display_text = QString(s.bitrate(), 1);
sort_text = display_text;
break;
case CollectionModel::GroupBy_Samplerate:
display_text = QString(s.samplerate(), 1);
sort_text = display_text;
break;
case CollectionModel::GroupBy_Bitdepth:
display_text = QString(s.bitdepth(), 1);
sort_text = display_text;
break;
2019-03-30 22:03:33 +01:00
case CollectionModel::GroupBy_Format:
if (s.samplerate() <= 0) {
display_text = s.TextForFiletype();
}
else {
if (s.bitdepth() <= 0) {
display_text = QString("%1 (%2)").arg(s.TextForFiletype()).arg(QString::number(s.samplerate() / 1000.0, 'G', 5));
}
else {
display_text = QString("%1 (%2/%3)").arg(s.TextForFiletype()).arg(QString::number(s.samplerate() / 1000.0, 'G', 5)).arg(QString::number(s.bitdepth()));
}
}
sort_text = display_text;
break;
2019-08-05 19:17:31 +02:00
case CollectionModel::GroupBy_AlbumDisc:{
int disc = qMax(0, s.disc());
display_text = CollectionModel::PrettyAlbumDisc(s.album(), disc);
sort_text = s.album() + CollectionModel::SortTextForNumber(disc);
unique_tag = s.album_id();
has_album_icon = true;
break;
}
case CollectionModel::GroupBy_YearAlbumDisc:{
int year = qMax(0, s.year());
int disc = qMax(0, s.disc());
display_text = CollectionModel::PrettyYearAlbumDisc(year, s.album(), disc);
sort_text = CollectionModel::SortTextForNumber(year) + s.album() + CollectionModel::SortTextForNumber(disc);
unique_tag = s.album_id();
has_album_icon = true;
break;
}
2018-10-14 00:08:33 +02:00
case CollectionModel::GroupBy_None:
return parent;
}
if (display_text.isEmpty()) display_text = "Unknown";
if (sort_text.isEmpty()) sort_text = "Unknown";
2018-10-14 00:08:33 +02:00
// Find a container for this level
key->group_[level] = display_text + unique_tag;
2018-10-14 00:08:33 +02:00
QStandardItem *container = containers_[*key];
if (!container) {
container = new QStandardItem(display_text);
container->setData(key->provider_index_, Role_ProviderIndex);
container->setData(sort_text, CollectionModel::Role_SortText);
container->setData(group_by_[level], CollectionModel::Role_ContainerType);
if (has_artist_icon) {
container->setIcon(artist_icon_);
}
else if (has_album_icon) {
if (use_pretty_covers_) {
container->setData(no_cover_icon_, Qt::DecorationRole);
}
else {
container->setIcon(album_icon_);
}
}
parent->appendRow(container);
containers_[*key] = container;
}
// Create the container for the next level.
return BuildContainers(s, container, key, level + 1);
}
void InternetSearchModel::Clear() {
2018-10-14 00:08:33 +02:00
containers_.clear();
clear();
}
InternetSearch::ResultList InternetSearchModel::GetChildResults(const QModelIndexList &indexes) const {
2018-10-14 00:08:33 +02:00
QList<QStandardItem*> items;
for (const QModelIndex &index : indexes) {
items << itemFromIndex(index);
}
return GetChildResults(items);
}
InternetSearch::ResultList InternetSearchModel::GetChildResults(const QList<QStandardItem*> &items) const {
2018-10-14 00:08:33 +02:00
InternetSearch::ResultList results;
2018-10-14 00:08:33 +02:00
QSet<const QStandardItem*> visited;
for (QStandardItem *item : items) {
GetChildResults(item, &results, &visited);
}
return results;
}
void InternetSearchModel::GetChildResults(const QStandardItem *item, InternetSearch::ResultList *results, QSet<const QStandardItem*> *visited) const {
2018-10-14 00:08:33 +02:00
if (visited->contains(item)) {
return;
}
visited->insert(item);
// Does this item have children?
if (item->rowCount()) {
const QModelIndex parent_proxy_index = proxy_->mapFromSource(item->index());
// Yes - visit all the children, but do so through the proxy so we get them in the right order.
2018-10-14 00:08:33 +02:00
for (int i = 0; i < item->rowCount(); ++i) {
2020-01-05 23:25:23 +01:00
const QModelIndex proxy_index = parent_proxy_index.model()->index(i, 0, parent_proxy_index);
2018-10-14 00:08:33 +02:00
const QModelIndex index = proxy_->mapToSource(proxy_index);
GetChildResults(itemFromIndex(index), results, visited);
}
}
else {
// No - maybe it's a song, add its result if valid
QVariant result = item->data(Role_Result);
if (result.isValid()) {
results->append(result.value<InternetSearch::Result>());
2018-10-14 00:08:33 +02:00
}
else {
// Maybe it's a provider then?
bool is_provider;
const int sort_index = item->data(Role_ProviderIndex).toInt(&is_provider);
if (is_provider) {
// Go through all the items (through the proxy to keep them ordered) and add the ones belonging to this provider to our list
for (int i = 0; i < proxy_->rowCount(invisibleRootItem()->index()); ++i) {
QModelIndex child_index = proxy_->index(i, 0, invisibleRootItem()->index());
const QStandardItem *child_item = itemFromIndex(proxy_->mapToSource(child_index));
if (child_item->data(Role_ProviderIndex).toInt() == sort_index) {
GetChildResults(child_item, results, visited);
}
}
}
}
}
}
QMimeData *InternetSearchModel::mimeData(const QModelIndexList &indexes) const {
2018-10-14 00:08:33 +02:00
return engine_->LoadTracks(GetChildResults(indexes));
}
namespace {
void GatherResults(const QStandardItem *parent, InternetSearch::ResultList *results) {
2018-10-14 00:08:33 +02:00
QVariant result_variant = parent->data(InternetSearchModel::Role_Result);
2018-10-14 00:08:33 +02:00
if (result_variant.isValid()) {
InternetSearch::Result result = result_variant.value<InternetSearch::Result>();
2018-10-14 00:08:33 +02:00
(*results).append(result);
}
for (int i = 0; i < parent->rowCount(); ++i) {
GatherResults(parent->child(i), results);
}
}
}
void InternetSearchModel::SetGroupBy(const CollectionModel::Grouping &grouping, bool regroup_now) {
2018-10-14 00:08:33 +02:00
const CollectionModel::Grouping old_group_by = group_by_;
group_by_ = grouping;
if (regroup_now && group_by_ != old_group_by) {
// Walk the tree gathering the results we have already
InternetSearch::ResultList results;
2018-10-14 00:08:33 +02:00
GatherResults(invisibleRootItem(), &results);
// Reset the model and re-add all the results using the new grouping.
Clear();
AddResults(results);
}
}