Clementine-audio-player-Mac.../src/covers/albumcoverloader.h

117 lines
2.9 KiB
C
Raw Normal View History

/* This file is part of Clementine.
Copyright 2010, David Sansome <me@davidsansome.com>
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef ALBUMCOVERLOADER_H
#define ALBUMCOVERLOADER_H
#include "core/backgroundthread.h"
#include "core/song.h"
#include <QObject>
#include <QImage>
#include <QMutex>
#include <QQueue>
class NetworkAccessManager;
class QNetworkReply;
class AlbumCoverLoader : public QObject {
Q_OBJECT
public:
AlbumCoverLoader(QObject* parent = 0);
void Stop() { stop_requested_ = true; }
static QString ImageCacheDir();
void SetDesiredHeight(int height) { height_ = height; }
void SetScaleOutputImage(bool scale) { scale_ = scale; }
2010-05-17 00:41:01 +02:00
void SetPadOutputImage(bool padding) { padding_ = padding; }
void SetDefaultOutputImage(const QImage& image);
quint64 LoadImageAsync(const Song& song);
2010-12-10 15:26:29 +01:00
virtual quint64 LoadImageAsync(
const QString& art_automatic,
const QString& art_manual,
const QString& song_filename = QString(),
const QImage& embedded_image = QImage());
void Clear();
static QPixmap TryLoadPixmap(const QString& automatic, const QString& manual,
const QString& filename = QString());
signals:
void ImageLoaded(quint64 id, const QImage& image);
void ImageLoaded(quint64 id, const QImage& scaled, const QImage& original);
2010-12-10 15:26:29 +01:00
protected slots:
void ProcessTasks();
void RemoteFetchFinished();
2010-12-10 15:26:29 +01:00
protected:
enum State {
State_TryingManual,
State_TryingAuto,
};
struct Task {
2010-11-29 14:34:30 +01:00
Task() : redirects(0) {}
quint64 id;
QString art_automatic;
QString art_manual;
QString song_filename;
QImage embedded_image;
State state;
2010-11-29 14:34:30 +01:00
int redirects;
};
struct TryLoadResult {
TryLoadResult(bool async, bool success, const QImage& i)
: started_async(async), loaded_success(success), image(i) {}
bool started_async;
bool loaded_success;
QImage image;
};
void ProcessTask(Task* task);
void NextState(Task* task);
TryLoadResult TryLoadImage(const Task& task);
QImage ScaleAndPad(const QImage& image) const;
bool stop_requested_;
int height_;
bool scale_;
2010-05-17 00:41:01 +02:00
bool padding_;
QImage default_;
QMutex mutex_;
QQueue<Task> tasks_;
QMap<QNetworkReply*, Task> remote_tasks_;
quint64 next_id_;
NetworkAccessManager* network_;
2010-11-29 14:34:30 +01:00
static const int kMaxRedirects = 3;
};
#endif // ALBUMCOVERLOADER_H