More covers debug

Issue #1143
This commit is contained in:
Craig Drummond
2017-12-17 13:32:12 +00:00
parent 6be52581e9
commit 2551ec631e
2 changed files with 8 additions and 3 deletions

View File

@@ -32,6 +32,7 @@
#include <QDebug>
GLOBAL_STATIC(MpdLibraryModel, instance)
#define COVERS_DBUG if (Covers::verboseDebugEnabled()) qWarning() << metaObject()->className() << QThread::currentThread()->objectName() << __FUNCTION__
MpdLibraryModel::MpdLibraryModel()
: SqlLibraryModel(new MpdLibraryDb(0), 0)
@@ -61,11 +62,13 @@ QVariant MpdLibraryModel::data(const QModelIndex &index, int role) const
case Cantata::Role_CoverSong: {
QVariant v;
Item *item = static_cast<Item *>(index.internalPointer());
COVERS_DBUG << index.data().toString() << item->getType() << role;
switch (item->getType()) {
case T_Album:
if (item->getSong().isEmpty()) {
Song song=static_cast<MpdLibraryDb *>(db)->getCoverSong(T_Album==topLevel() ? static_cast<AlbumItem *>(item)->getArtistId() : item->getParent()->getId(), item->getId());
item->setSong(song);
COVERS_DBUG << "Set album cover song" << song.albumArtist() << song.album << song.file;
if (T_Genre==topLevel()) {
song.addGenre(item->getParent()->getParent()->getId());
}
@@ -74,10 +77,12 @@ QVariant MpdLibraryModel::data(const QModelIndex &index, int role) const
break;
case T_Artist:
if (!showArtistImages && Cantata::Role_CoverSong==role) {
COVERS_DBUG << "Not showing artist images";
return QVariant();
}
if (item->getSong().isEmpty()) {
Song song=static_cast<MpdLibraryDb *>(db)->getCoverSong(item->getId());
COVERS_DBUG << "Set artist cover song" << song.albumArtist() << song.album << song.file;
if (song.useComposer()) {
song.setComposerImageRequest();
} else {

View File

@@ -50,7 +50,7 @@
#include <QProxyStyle>
#include <QDebug>
#define DBUG if (Covers::verboseDebugEnabled()) qWarning() << metaObject()->className() << QThread::currentThread()->objectName() << __FUNCTION__
#define COVERS_DBUG if (Covers::verboseDebugEnabled()) qWarning() << metaObject()->className() << QThread::currentThread()->objectName() << __FUNCTION__
static int detailedViewDecorationSize=22;
static int simpleViewDecorationSize=16;
@@ -236,7 +236,7 @@ public:
}
if (pix.isNull() && (iconMode || index.data(Cantata::Role_ListImage).toBool())) {
Song cSong=index.data(iconMode ? Cantata::Role_GridCoverSong : Cantata::Role_CoverSong).value<Song>();
DBUG << "Cover song" << cSong.albumArtist() << cSong.album << cSong.file;
COVERS_DBUG << "Cover song" << cSong.albumArtist() << cSong.album << cSong.file << index.data().toString() << iconMode;
if (!cSong.isEmpty()) {
QPixmap *cp=Covers::self()->get(cSong, iconMode ? zoomedSize(view, gridCoverSize) : listCoverSize, getCoverInUiThread(index));
if (cp) {
@@ -245,7 +245,7 @@ public:
}
}
if (pix.isNull()) {
DBUG << "No cover image, use decoration";
COVERS_DBUG << "No cover image, use decoration";
int size=iconMode ? zoomedSize(view, gridCoverSize) : detailedViewDecorationSize;
pix=index.data(Qt::DecorationRole).value<QIcon>().pixmap(size, size, selected &&
textColor==qApp->palette().color(QPalette::HighlightedText)