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

147 lines
4.5 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>
* Copyright 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 ALBUMCOVERLOADER_H
#define ALBUMCOVERLOADER_H
#include "config.h"
#include <QtGlobal>
2018-02-27 18:06:05 +01:00
#include <QObject>
#include <QMutex>
#include <QPair>
#include <QSet>
2020-02-09 02:29:35 +01:00
#include <QMap>
#include <QQueue>
#include <QString>
#include <QImage>
#include <QPixmap>
#include "core/song.h"
#include "settings/collectionsettingspage.h"
#include "albumcoverloaderoptions.h"
#include "albumcoverloaderresult.h"
2018-02-27 18:06:05 +01:00
2019-07-24 23:29:09 +02:00
class QThread;
2020-02-09 02:29:35 +01:00
class QNetworkReply;
2018-02-27 18:06:05 +01:00
class NetworkAccessManager;
class AlbumCoverLoader : public QObject {
Q_OBJECT
public:
explicit AlbumCoverLoader(QObject *parent = nullptr);
enum State {
State_None,
State_Manual,
State_Automatic,
};
void ReloadSettings();
2019-07-24 23:29:09 +02:00
void ExitAsync();
2018-02-27 18:06:05 +01:00
void Stop() { stop_requested_ = true; }
static QString AlbumCoverFilename(QString artist, QString album, const QString &extension);
QString CoverFilenameFromSource(const Song::Source source, const QUrl &cover_url, const QString &artist, const QString &album, const QString &album_id, const QString &extension);
QString CoverFilenameFromVariable(const QString &artist, const QString &album, const QString &extension = QString());
QString CoverFilePath(const Song &song, const QString &album_dir, const QUrl &cover_url, const QString &extension = QString());
QString CoverFilePath(const Song::Source source, const QString &artist, QString album, const QString &album_id, const QString &album_dir, const QUrl &cover_url, const QString &extension = QString());
2018-02-27 18:06:05 +01:00
quint64 LoadImageAsync(const AlbumCoverLoaderOptions &options, const Song &song);
virtual quint64 LoadImageAsync(const AlbumCoverLoaderOptions &options, const QUrl &art_automatic, const QUrl &art_manual, const QUrl &song_url = QUrl(), const Song song = Song(), const QImage &embedded_image = QImage());
2018-02-27 18:06:05 +01:00
void CancelTask(const quint64 id);
2018-02-27 18:06:05 +01:00
void CancelTasks(const QSet<quint64> &ids);
2019-07-09 01:14:58 +02:00
static QPixmap TryLoadPixmap(const QUrl &automatic, const QUrl &manual, const QUrl &url = QUrl());
static QPair<QImage, QImage> ScaleAndPad(const AlbumCoverLoaderOptions &options, const QImage &image);
2018-02-27 18:06:05 +01:00
2019-07-24 23:29:09 +02:00
signals:
void ExitFinished();
void AlbumCoverLoaded(quint64 id, AlbumCoverLoaderResult result);
2018-02-27 18:06:05 +01:00
protected slots:
2019-07-24 23:29:09 +02:00
void Exit();
2018-02-27 18:06:05 +01:00
void ProcessTasks();
void RemoteFetchFinished(QNetworkReply *reply, const QUrl &cover_url);
2018-02-27 18:06:05 +01:00
protected:
struct Task {
explicit Task() : id(0), state(State_None), type(AlbumCoverLoaderResult::Type_None), art_updated(false), redirects(0) {}
2018-02-27 18:06:05 +01:00
AlbumCoverLoaderOptions options;
quint64 id;
QUrl art_manual;
QUrl art_automatic;
QUrl song_url;
Song song;
2018-02-27 18:06:05 +01:00
QImage embedded_image;
State state;
AlbumCoverLoaderResult::Type type;
bool art_updated;
2018-02-27 18:06:05 +01:00
int redirects;
};
struct TryLoadResult {
explicit TryLoadResult(const bool _started_async = false, const bool _loaded_success = false, const AlbumCoverLoaderResult::Type _type = AlbumCoverLoaderResult::Type_None, const QUrl &_cover_url = QUrl(), const QImage &_image = QImage()) : started_async(_started_async), loaded_success(_loaded_success), type(_type), cover_url(_cover_url), image(_image) {}
2018-02-27 18:06:05 +01:00
bool started_async;
bool loaded_success;
AlbumCoverLoaderResult::Type type;
QUrl cover_url;
2018-02-27 18:06:05 +01:00
QImage image;
};
void ProcessTask(Task *task);
void NextState(Task *task);
TryLoadResult TryLoadImage(Task *task);
2018-02-27 18:06:05 +01:00
bool stop_requested_;
QMutex mutex_;
QQueue<Task> tasks_;
2020-02-09 02:29:35 +01:00
QMap<QNetworkReply*, Task> remote_tasks_;
2018-02-27 18:06:05 +01:00
quint64 next_id_;
NetworkAccessManager *network_;
static const int kMaxRedirects = 3;
bool cover_album_dir_;
CollectionSettingsPage::SaveCover cover_filename_;
QString cover_pattern_;
bool cover_overwrite_;
bool cover_lowercase_;
bool cover_replace_spaces_;
2019-07-24 23:29:09 +02:00
QThread *original_thread_;
2018-02-27 18:06:05 +01:00
};
#endif // ALBUMCOVERLOADER_H