2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
2019-09-23 19:17:41 +02:00
|
|
|
* Copyright 2018-2019, Jonas Kvinge <jonas@jkvinge.net>
|
2018-02-27 18:06:05 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COLLECTIONMODEL_H
|
|
|
|
#define COLLECTIONMODEL_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include <QtGlobal>
|
|
|
|
#include <QObject>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QAbstractItemModel>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QFuture>
|
|
|
|
#include <QDataStream>
|
|
|
|
#include <QList>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QMetaType>
|
|
|
|
#include <QMimeData>
|
|
|
|
#include <QPair>
|
|
|
|
#include <QSet>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QImage>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QIcon>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QPixmap>
|
|
|
|
#include <QSettings>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
#include "core/simpletreemodel.h"
|
|
|
|
#include "core/song.h"
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "collectionquery.h"
|
|
|
|
#include "collectionitem.h"
|
|
|
|
#include "sqlrow.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
#include "covermanager/albumcoverloaderoptions.h"
|
|
|
|
|
|
|
|
class Application;
|
|
|
|
class CollectionBackend;
|
2018-05-01 00:41:33 +02:00
|
|
|
class CollectionDirectoryModel;
|
|
|
|
class CollectionItem;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
class CollectionModel : public SimpleTreeModel<CollectionItem> {
|
|
|
|
Q_OBJECT
|
2019-09-15 20:27:32 +02:00
|
|
|
|
|
|
|
Q_ENUMS(GroupBy)
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
CollectionModel(CollectionBackend *backend, Application *app, QObject *parent = nullptr);
|
|
|
|
~CollectionModel();
|
|
|
|
|
|
|
|
static const char *kSavedGroupingsSettingsGroup;
|
|
|
|
|
|
|
|
static const int kPrettyCoverSize;
|
|
|
|
static const qint64 kIconCacheSize;
|
|
|
|
|
|
|
|
enum Role {
|
|
|
|
Role_Type = Qt::UserRole + 1,
|
|
|
|
Role_ContainerType,
|
|
|
|
Role_SortText,
|
|
|
|
Role_Key,
|
|
|
|
Role_Artist,
|
|
|
|
Role_IsDivider,
|
|
|
|
Role_Editable,
|
|
|
|
LastRole
|
|
|
|
};
|
|
|
|
|
|
|
|
// These values get saved in QSettings - don't change them
|
|
|
|
enum GroupBy {
|
|
|
|
GroupBy_None = 0,
|
|
|
|
GroupBy_Artist = 1,
|
|
|
|
GroupBy_Album = 2,
|
|
|
|
GroupBy_YearAlbum = 3,
|
|
|
|
GroupBy_Year = 4,
|
|
|
|
GroupBy_Composer = 5,
|
|
|
|
GroupBy_Genre = 6,
|
|
|
|
GroupBy_AlbumArtist = 7,
|
|
|
|
GroupBy_FileType = 8,
|
|
|
|
GroupBy_Performer = 9,
|
|
|
|
GroupBy_Grouping = 10,
|
|
|
|
GroupBy_Bitrate = 11,
|
|
|
|
GroupBy_Disc = 12,
|
|
|
|
GroupBy_OriginalYearAlbum = 13,
|
|
|
|
GroupBy_OriginalYear = 14,
|
2018-06-28 01:15:32 +02:00
|
|
|
GroupBy_Samplerate = 15,
|
2019-03-30 22:03:33 +01:00
|
|
|
GroupBy_Bitdepth = 16,
|
2019-08-05 19:17:31 +02:00
|
|
|
GroupBy_Format = 17,
|
|
|
|
GroupBy_AlbumDisc = 18,
|
|
|
|
GroupBy_YearAlbumDisc = 19
|
2018-02-27 18:06:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Grouping {
|
|
|
|
Grouping(GroupBy f = GroupBy_None, GroupBy s = GroupBy_None, GroupBy t = GroupBy_None)
|
|
|
|
: first(f), second(s), third(t) {}
|
|
|
|
|
|
|
|
GroupBy first;
|
|
|
|
GroupBy second;
|
|
|
|
GroupBy third;
|
|
|
|
|
|
|
|
const GroupBy &operator[](int i) const;
|
|
|
|
GroupBy &operator[](int i);
|
|
|
|
bool operator==(const Grouping &other) const {
|
|
|
|
return first == other.first && second == other.second && third == other.third;
|
|
|
|
}
|
|
|
|
bool operator!=(const Grouping &other) const { return !(*this == other); }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct QueryResult {
|
|
|
|
QueryResult() : create_va(false) {}
|
|
|
|
|
|
|
|
SqlRowList rows;
|
|
|
|
bool create_va;
|
|
|
|
};
|
|
|
|
|
|
|
|
CollectionBackend *backend() const { return backend_; }
|
|
|
|
CollectionDirectoryModel *directory_model() const { return dir_model_; }
|
|
|
|
|
|
|
|
// Call before Init()
|
|
|
|
void set_show_various_artists(bool show_various_artists) { show_various_artists_ = show_various_artists; }
|
|
|
|
|
|
|
|
// Get information about the collection
|
|
|
|
void GetChildSongs(CollectionItem *item, QList<QUrl> *urls, SongList *songs, QSet<int> *song_ids) const;
|
2019-07-07 21:14:24 +02:00
|
|
|
SongList GetChildSongs(const QModelIndex &idx) const;
|
2018-02-27 18:06:05 +01:00
|
|
|
SongList GetChildSongs(const QModelIndexList &indexes) const;
|
|
|
|
|
|
|
|
// Might be accurate
|
|
|
|
int total_song_count() const { return total_song_count_; }
|
|
|
|
int total_artist_count() const { return total_artist_count_; }
|
|
|
|
int total_album_count() const { return total_album_count_; }
|
|
|
|
|
|
|
|
// QAbstractItemModel
|
2019-07-07 21:14:24 +02:00
|
|
|
QVariant data(const QModelIndex &idx, int role = Qt::DisplayRole) const;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &idx) const;
|
2018-02-27 18:06:05 +01:00
|
|
|
QStringList mimeTypes() const;
|
|
|
|
QMimeData *mimeData(const QModelIndexList &indexes) const;
|
|
|
|
bool canFetchMore(const QModelIndex &parent) const;
|
|
|
|
|
|
|
|
// Whether or not to use album cover art, if it exists, in the collection view
|
|
|
|
void set_pretty_covers(bool use_pretty_covers);
|
|
|
|
bool use_pretty_covers() const { return use_pretty_covers_; }
|
|
|
|
|
|
|
|
// Whether or not to show letters heading in the collection view
|
|
|
|
void set_show_dividers(bool show_dividers);
|
|
|
|
|
|
|
|
// Save the current grouping
|
|
|
|
void SaveGrouping(QString name);
|
|
|
|
|
|
|
|
// Utility functions for manipulating text
|
|
|
|
static QString TextOrUnknown(const QString &text);
|
2019-08-05 19:17:31 +02:00
|
|
|
static QString PrettyYearAlbum(const int year, const QString &album);
|
|
|
|
static QString PrettyAlbumDisc(const QString &album, const int disc);
|
|
|
|
static QString PrettyYearAlbumDisc(const int year, const QString &album, const int disc);
|
2018-02-27 18:06:05 +01:00
|
|
|
static QString SortText(QString text);
|
|
|
|
static QString SortTextForNumber(int year);
|
|
|
|
static QString SortTextForArtist(QString artist);
|
|
|
|
static QString SortTextForSong(const Song &song);
|
|
|
|
static QString SortTextForYear(int year);
|
|
|
|
static QString SortTextForBitrate(int bitrate);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void TotalSongCountUpdated(int count);
|
|
|
|
void TotalArtistCountUpdated(int count);
|
|
|
|
void TotalAlbumCountUpdated(int count);
|
|
|
|
void GroupingChanged(const CollectionModel::Grouping &g);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void SetFilterAge(int age);
|
|
|
|
void SetFilterText(const QString &text);
|
|
|
|
void SetFilterQueryMode(QueryOptions::QueryMode query_mode);
|
|
|
|
|
|
|
|
void SetGroupBy(const CollectionModel::Grouping &g);
|
|
|
|
const CollectionModel::Grouping &GetGroupBy() const { return group_by_; }
|
|
|
|
void Init(bool async = true);
|
|
|
|
void Reset();
|
|
|
|
void ResetAsync();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void LazyPopulate(CollectionItem *item) { LazyPopulate(item, true); }
|
|
|
|
void LazyPopulate(CollectionItem *item, bool signal);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
// From CollectionBackend
|
|
|
|
void SongsDiscovered(const SongList &songs);
|
|
|
|
void SongsDeleted(const SongList &songs);
|
|
|
|
void SongsSlightlyChanged(const SongList &songs);
|
|
|
|
void TotalSongCountUpdatedSlot(int count);
|
|
|
|
void TotalArtistCountUpdatedSlot(int count);
|
|
|
|
void TotalAlbumCountUpdatedSlot(int count);
|
|
|
|
|
|
|
|
// Called after ResetAsync
|
|
|
|
void ResetAsyncQueryFinished(QFuture<CollectionModel::QueryResult> future);
|
|
|
|
|
2019-07-07 21:14:24 +02:00
|
|
|
void AlbumCoverLoaded(const quint64 id, const QUrl &cover_url, const QImage &image);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Provides some optimisations for loading the list of items in the root.
|
2018-05-01 00:41:33 +02:00
|
|
|
// This gets called a lot when filtering the playlist, so it's nice to be able to do it in a background thread.
|
2018-02-27 18:06:05 +01:00
|
|
|
QueryResult RunQuery(CollectionItem *parent);
|
|
|
|
void PostQuery(CollectionItem *parent, const QueryResult &result, bool signal);
|
|
|
|
|
|
|
|
bool HasCompilations(const CollectionQuery &query);
|
|
|
|
|
|
|
|
void BeginReset();
|
|
|
|
|
|
|
|
// Functions for working with queries and creating items.
|
2018-05-01 00:41:33 +02:00
|
|
|
// When the model is reset or when a node is lazy-loaded the Collection constructs a database query to populate the items.
|
|
|
|
// Filters are added for each parent item, restricting the songs returned to a particular album or artist for example.
|
2018-02-27 18:06:05 +01:00
|
|
|
static void InitQuery(GroupBy type, CollectionQuery *q);
|
|
|
|
void FilterQuery(GroupBy type, CollectionItem *item, CollectionQuery *q);
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
// Items can be created either from a query that's been run to populate a node, or by a spontaneous SongsDiscovered emission from the backend.
|
2018-02-27 18:06:05 +01:00
|
|
|
CollectionItem *ItemFromQuery(GroupBy type, bool signal, bool create_divider, CollectionItem *parent, const SqlRow &row, int container_level);
|
|
|
|
CollectionItem *ItemFromSong(GroupBy type, bool signal, bool create_divider, CollectionItem *parent, const Song &s, int container_level);
|
|
|
|
|
|
|
|
// The "Various Artists" node is an annoying special case.
|
|
|
|
CollectionItem *CreateCompilationArtistNode(bool signal, CollectionItem *parent);
|
|
|
|
|
|
|
|
// Helpers for ItemFromQuery and ItemFromSong
|
|
|
|
CollectionItem *InitItem(GroupBy type, bool signal, CollectionItem *parent, int container_level);
|
|
|
|
void FinishItem(GroupBy type, bool signal, bool create_divider, CollectionItem *parent, CollectionItem *item);
|
|
|
|
|
|
|
|
QString DividerKey(GroupBy type, CollectionItem *item) const;
|
|
|
|
QString DividerDisplayText(GroupBy type, const QString &key) const;
|
|
|
|
|
|
|
|
// Helpers
|
2019-07-07 21:14:24 +02:00
|
|
|
QString AlbumIconPixmapCacheKey(const QModelIndex &idx) const;
|
|
|
|
QVariant AlbumIcon(const QModelIndex &idx);
|
2018-02-27 18:06:05 +01:00
|
|
|
QVariant data(const CollectionItem *item, int role) const;
|
|
|
|
bool CompareItems(const CollectionItem *a, const CollectionItem *b) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
CollectionBackend *backend_;
|
|
|
|
Application *app_;
|
|
|
|
CollectionDirectoryModel *dir_model_;
|
|
|
|
bool show_various_artists_;
|
|
|
|
|
|
|
|
int total_song_count_;
|
|
|
|
int total_artist_count_;
|
|
|
|
int total_album_count_;
|
|
|
|
|
|
|
|
QueryOptions query_options_;
|
|
|
|
Grouping group_by_;
|
|
|
|
|
|
|
|
// Keyed on database ID
|
|
|
|
QMap<int, CollectionItem*> song_nodes_;
|
|
|
|
|
|
|
|
// Keyed on whatever the key is for that level - artist, album, year, etc.
|
|
|
|
QMap<QString, CollectionItem*> container_nodes_[3];
|
|
|
|
|
|
|
|
// Keyed on a letter, a year, a century, etc.
|
|
|
|
QMap<QString, CollectionItem*> divider_nodes_;
|
|
|
|
|
|
|
|
QIcon artist_icon_;
|
|
|
|
QIcon album_icon_;
|
2018-05-01 00:41:33 +02:00
|
|
|
// Used as a generic icon to show when no cover art is found, fixed to the same size as the artwork (32x32)
|
2018-02-27 18:06:05 +01:00
|
|
|
QPixmap no_cover_icon_;
|
|
|
|
QIcon playlists_dir_icon_;
|
|
|
|
QIcon playlist_icon_;
|
|
|
|
|
|
|
|
int init_task_id_;
|
|
|
|
|
|
|
|
bool use_pretty_covers_;
|
|
|
|
bool show_dividers_;
|
|
|
|
|
|
|
|
AlbumCoverLoaderOptions cover_loader_options_;
|
|
|
|
|
|
|
|
typedef QPair<CollectionItem*, QString> ItemAndCacheKey;
|
|
|
|
QMap<quint64, ItemAndCacheKey> pending_art_;
|
|
|
|
QSet<QString> pending_cache_keys_;
|
|
|
|
};
|
|
|
|
|
2019-09-15 20:27:32 +02:00
|
|
|
Q_DECLARE_METATYPE(CollectionModel::Grouping)
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
QDataStream &operator<<(QDataStream &s, const CollectionModel::Grouping &g);
|
|
|
|
QDataStream &operator>>(QDataStream &s, CollectionModel::Grouping &g);
|
|
|
|
|
|
|
|
#endif // COLLECTIONMODEL_H
|