strawberry-audio-player-win.../src/covermanager/albumcoverloader.h

118 lines
3.0 KiB
C
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2010, 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/>.
2018-08-09 18:39:44 +02:00
*
2018-02-27 18:06:05 +01:00
*/
#ifndef ALBUMCOVERLOADER_H
#define ALBUMCOVERLOADER_H
#include "config.h"
#include <stdbool.h>
2018-02-27 18:06:05 +01:00
#include <QtGlobal>
2018-02-27 18:06:05 +01:00
#include <QObject>
#include <QMutex>
2018-02-27 18:06:05 +01:00
#include <QQueue>
#include <QMap>
#include <QSet>
#include <QString>
#include <QImage>
#include <QPixmap>
#include <QNetworkReply>
#include "core/song.h"
#include "albumcoverloaderoptions.h"
2018-02-27 18:06:05 +01:00
class Song;
2018-02-27 18:06:05 +01:00
class NetworkAccessManager;
class AlbumCoverLoader : public QObject {
Q_OBJECT
public:
explicit AlbumCoverLoader(QObject *parent = nullptr);
void Stop() { stop_requested_ = true; }
static QString ImageCacheDir();
quint64 LoadImageAsync(const AlbumCoverLoaderOptions &options, const Song &song);
virtual quint64 LoadImageAsync(const AlbumCoverLoaderOptions &options, const QString &art_automatic, const QString &art_manual, const QString &song_filename = QString(), const QImage &embedded_image = QImage());
void CancelTask(quint64 id);
void CancelTasks(const QSet<quint64> &ids);
static QPixmap TryLoadPixmap(const QString &automatic, const QString &manual, const QString &filename = QString());
static QImage ScaleAndPad(const AlbumCoverLoaderOptions &options, const QImage &image);
signals:
void ImageLoaded(quint64 id, const QImage &image);
void ImageLoaded(quint64 id, const QImage &scaled, const QImage &original);
protected slots:
void ProcessTasks();
void RemoteFetchFinished(QNetworkReply *reply);
2018-02-27 18:06:05 +01:00
protected:
enum State {
State_TryingManual,
State_TryingAuto,
};
struct Task {
Task() : redirects(0) {}
AlbumCoverLoaderOptions options;
quint64 id;
QString art_automatic;
QString art_manual;
QString song_filename;
QImage embedded_image;
State state;
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);
2018-02-27 18:06:05 +01:00
TryLoadResult TryLoadImage(const Task &task);
bool stop_requested_;
QMutex mutex_;
QQueue<Task> tasks_;
QMap<QNetworkReply *, Task> remote_tasks_;
quint64 next_id_;
NetworkAccessManager *network_;
static const int kMaxRedirects = 3;
};
#endif // ALBUMCOVERLOADER_H