-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCoverArtCache.cpp
279 lines (255 loc) · 8.19 KB
/
CoverArtCache.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#include <QtConcurrent>
#include <unistd.h>
#include "CoverArtCache.h"
#include "DBApi.h"
#include "QtGui.h"
#define CACHE_SIZE 100
extern DB_functions_t *deadbeef_internal;
bool operator==(const coverSearch &lhs, const coverSearch &rhs) noexcept {
return lhs.path == rhs.path && lhs.size == rhs.size;
}
uint qHash(const coverSearch &c, uint seed) noexcept {
QtPrivate::QHashCombine hash;
seed = hash(seed, c.path);
seed = hash(seed, c.size.height());
seed = hash(seed, c.size.width());
return seed;
}
CoverArtCache::CoverArtCache(QObject *parent, DB_functions_t *dbapi) : QObject(parent) {
if (dbapi->plug_get_for_id ("artwork2")) {
qDebug() << "CoverArtCache: using new backend";
backend = new CoverArtNew(parent, dbapi);
}
else if (dbapi->plug_get_for_id("artwork")) {
DB_plugin_t *p = dbapi->plug_get_for_id("artwork");
if (p->api_vmajor == 1) {
qDebug() << "CoverArtCache: using legacy backend";
backend = new CoverArtLegacy(parent, dbapi);
}
else if (p->api_vmajor == 2) {
qDebug() << "CoverArtCache: using new backend";
backend = new CoverArtNew(parent,dbapi);
}
}
if (backend && backend->getDefaultCoverArt()) {
default_image = new QImage(backend->getDefaultCoverArt());
cacheCoverArt(coverSearchValue(backend->getDefaultCoverArt()), default_image);
}
}
CoverArtCache::~CoverArtCache() {
if (default_image) {
cacheUnref(default_image);
}
cmut_cache.lock();
cmut_path.lock();
cmut_refc.lock();
QList<QImage *> l = cache_refc.keys();
foreach(QImage *img, l) {
if (cache_refc.value(img) == 0) {
// reverse lookup :)
coverSearch s;
while (!(s = cache.key(img)).path.isEmpty()) {
cache.remove(s);
ddb_playItem_t *it;
while ((it = cache_path.key(s.path))) {
cache_path.remove(it);
}
}
delete img;
}
else {
qDebug() << QString("Image (path: %1, size %2) has refc=%3!").arg(cache.key(img).path) .arg(cache.key(img).size.width()) .arg(cache_refc.value(img));
}
}
cmut_cache.unlock();
cmut_path.unlock();
cmut_refc.unlock();
}
bool CoverArtCache::isCoverArtAvailable(DB_playItem_t *it, QSize size) {
cmut_path.lock();
if (cache_path.contains(it)) {
cmut_cache.lock();
bool ret = cache.contains(coverSearchValue(cache_path.value(it),size));
cmut_path.unlock();
cmut_cache.unlock();
return ret;
}
cmut_path.unlock();
return false;
}
QFuture<QImage *> CoverArtCache::requestCoverArt(DB_playItem_t *it, QSize size) {
if (isCoverArtAvailable(it)) {
// shouldn't be calling it
return QtConcurrent::run(cover_art,cache.value(coverSearchValue(cache_path.value(it),size)));
}
return QtConcurrent::run(cover_art_load,this,it, size);
}
// Threaded static functions
QImage * CoverArtCache::cover_art(QImage *cover) {
return cover;
}
QImage * CoverArtCache::cover_art_load(CoverArtCache *cac, DB_playItem_t *it, QSize size) {
if (!it) {
return nullptr;
}
QImage *ret = nullptr;
// cache path for track
if (cac->getCoverArtPath(it).isEmpty()) {
QFuture<char *> c = cac->backend->loadCoverArt(it);
c.waitForFinished();
if (c.result() && strlen(c.result())) {
cac->cachePath(it,c.result());
}
else {
// no cover, use default
cac->cachePath(it,"");
}
}
// load full cover if missing
bool unref_full_cover = false;
if (!cac->isCoverArtAvailable(it,size) && !cac->isCoverArtAvailable(it)) {
if (!cac->getCoverArtPath(it).isEmpty()) {
QImage *img = new QImage(cac->getCoverArtPath(it));
cac->cacheCoverArt(coverSearchValue(cac->getCoverArtPath(it),QSize()),img);
ret = img;
if (size.isValid()) {
unref_full_cover = true;
}
}
else {
cac->cacheCoverArt(coverSearchValue(cac->getCoverArtPath(it),QSize()),nullptr);
}
}
// scale cover if missing
if (!cac->isCoverArtAvailable(it,size) && size.isValid() && !cac->getCoverArtPath(it).isEmpty()) {
QImage *img = cac->getCoverArt(it);
if (img) {
QImage scaled = img->scaled(size,Qt::IgnoreAspectRatio,Qt::SmoothTransformation);
QImage *n = new QImage(scaled);
cac->cacheCoverArt(coverSearchValue(cac->getCoverArtPath(it),size),n);
cac->cacheUnref(img);
if (unref_full_cover) {
cac->cacheUnref(img, true);
}
ret = n;
}
}
else {
// scaled cover available in cache
ret = cac->getCoverArt(it,size);
}
if (!ret) {
// cover art scaled, cached on getCoverArt
return cac->getCoverArt(nullptr, size);
}
return ret;
}
void CoverArtCache::cacheCoverArt(coverSearch s, QImage *img) {
cmut_cache.lock();
if (cache.contains(s)) {
cmut_cache.unlock();
qDebug() << "already cached?";
return;
}
cache.insert(s,img);
if (img) {
cacheRef(img);
}
cmut_cache.unlock();
}
void CoverArtCache::cachePath(ddb_playItem_t *it, QString path) {
cmut_path.lock();
if (cache_path.contains(it)) {
cache_path.remove(it);
}
cache_path.insert(it,path);
cmut_path.unlock();
}
void CoverArtCache::cacheRef(QImage *img) {
cmut_refc.lock();
if (cache_refc.contains(img)) {
int refc = cache_refc.take(img);
cache_refc.insert(img, refc+1);
}
else {
cache_refc.insert(img,1);
}
cmut_refc.unlock();
}
void CoverArtCache::cacheUnref(QImage *img, bool force_unref) {
cmut_refc.lock();
if (cache_refc.contains(img)) {
// decrease
int refc = cache_refc.take(img);
cache_refc.insert(img, refc-1);
// remove if cache full
if ((cache_refc.size() > CACHE_SIZE || force_unref) && cache_refc.value(img) == 0) {
cache_refc.remove(img);
// reverse lookup :)
coverSearch s;
while (!(s = cache.key(img)).path.isEmpty()) {
cache.remove(s);
ddb_playItem_t *it;
while ((it = cache_path.key(s.path))) {
cache_path.remove(it);
}
}
delete img;
}
}
cmut_refc.unlock();
}
void CoverArtCache::cacheUnrefTrack(DB_playItem_t *it) {
if (cache_path.contains(it)) {
// track no longer existent, no need to keep it in cache
// cover arts are tracked separately
cache_path.take(it);
}
}
QImage * CoverArtCache::getCoverArt(DB_playItem_t *it, QSize size) {
coverSearch cs;
if (cache_path.contains(it)) {
cs = coverSearchValue(cache_path.value(it),size);
if (cache.contains(cs)) {
QImage *img = cache.value(coverSearchValue(cache_path.value(it),size));
if (img) {
cacheRef(img);
}
return img;
}
}
else if (!it) {
cs = coverSearchValue(".default", size);
if (size.isValid()) {
if (cache.contains(coverSearchValue(".default", size))) {
return cache.value(cs);
}
else {
// perform scaling, it should be done on cover_art_load thread
QImage scaled = default_image->scaled(size,Qt::IgnoreAspectRatio,Qt::SmoothTransformation);
QImage *n = new QImage(scaled);
cacheCoverArt(cs,n);
return n;
}
}
else {
return default_image;
}
}
return nullptr;
}
QString CoverArtCache::getCoverArtPath(DB_playItem_t *it) {
if (cache_path.contains(it)) {
return cache_path.value(it);
}
return QString();
}
QImage * CoverArtCache::getCoverArtDefault() {
if (!default_image && backend->getDefaultCoverArt()) {
default_image = new QImage(backend->getDefaultCoverArt());
}
if (default_image) {
cacheRef(default_image);
}
return default_image;
}