2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
2020-04-20 18:03:18 +02:00
|
|
|
* Copyright 2019-2020, 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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QtGlobal>
|
|
|
|
#include <QObject>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QDir>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QString>
|
|
|
|
#include <QStringBuilder>
|
|
|
|
#include <QImage>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QTemporaryFile>
|
|
|
|
|
|
|
|
#include "core/application.h"
|
|
|
|
#include "playlist/playlistmanager.h"
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "albumcoverloader.h"
|
2020-02-09 02:29:35 +01:00
|
|
|
#include "albumcoverloaderoptions.h"
|
2020-04-20 18:03:18 +02:00
|
|
|
#include "albumcoverloaderresult.h"
|
2019-07-07 21:14:24 +02:00
|
|
|
#include "currentalbumcoverloader.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-07-07 21:14:24 +02:00
|
|
|
CurrentAlbumCoverLoader::CurrentAlbumCoverLoader(Application *app, QObject *parent)
|
2018-02-27 18:06:05 +01:00
|
|
|
: QObject(parent),
|
|
|
|
app_(app),
|
2019-07-07 21:14:24 +02:00
|
|
|
temp_file_pattern_(QDir::tempPath() + "/strawberry-cover-XXXXXX.jpg"),
|
|
|
|
id_(0)
|
2019-02-09 14:51:12 +01:00
|
|
|
{
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
options_.scale_output_image_ = false;
|
|
|
|
options_.pad_output_image_ = false;
|
2020-04-20 18:03:18 +02:00
|
|
|
options_.create_thumbnail_ = true;
|
|
|
|
options_.thumbnail_size_ = QSize(120, 120);
|
2019-02-09 14:51:12 +01:00
|
|
|
options_.default_output_image_ = QImage(":/pictures/cdcase.png");
|
2020-04-20 18:03:18 +02:00
|
|
|
options_.default_thumbnail_image_ = options_.default_output_image_.scaledToHeight(120, Qt::SmoothTransformation);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
connect(app_->album_cover_loader(), SIGNAL(AlbumCoverLoaded(quint64, AlbumCoverLoaderResult)), SLOT(TempAlbumCoverLoaded(quint64, AlbumCoverLoaderResult)));
|
2019-07-07 21:14:24 +02:00
|
|
|
connect(app_->playlist_manager(), SIGNAL(CurrentSongChanged(Song)), SLOT(LoadAlbumCover(Song)));
|
2019-02-09 14:51:12 +01:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-07-24 19:16:51 +02:00
|
|
|
CurrentAlbumCoverLoader::~CurrentAlbumCoverLoader() {
|
2020-04-20 18:03:18 +02:00
|
|
|
|
2019-07-24 19:16:51 +02:00
|
|
|
if (temp_cover_) temp_cover_->remove();
|
|
|
|
if (temp_cover_thumbnail_) temp_cover_thumbnail_->remove();
|
2020-04-20 18:03:18 +02:00
|
|
|
|
2019-07-24 19:16:51 +02:00
|
|
|
}
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-07-07 21:14:24 +02:00
|
|
|
void CurrentAlbumCoverLoader::LoadAlbumCover(const Song &song) {
|
2020-04-20 18:03:18 +02:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
last_song_ = song;
|
|
|
|
id_ = app_->album_cover_loader()->LoadImageAsync(options_, last_song_);
|
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
}
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
void CurrentAlbumCoverLoader::TempAlbumCoverLoaded(const quint64 id, AlbumCoverLoaderResult result) {
|
2019-09-15 20:27:32 +02:00
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
if (id != id_) return;
|
|
|
|
id_ = 0;
|
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
if (!result.image_scaled.isNull()) {
|
2019-07-07 21:14:24 +02:00
|
|
|
temp_cover_.reset(new QTemporaryFile(temp_file_pattern_));
|
|
|
|
temp_cover_->setAutoRemove(true);
|
2020-04-20 18:03:18 +02:00
|
|
|
if (temp_cover_->open()) {
|
|
|
|
if (result.image_scaled.save(temp_cover_->fileName(), "JPEG")) {
|
|
|
|
result.temp_cover_url = QUrl::fromLocalFile(temp_cover_->fileName());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
qLog(Error) << "Unable to save cover image to" << temp_cover_->fileName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
qLog(Error) << "Unable to open" << temp_cover_->fileName();
|
|
|
|
}
|
|
|
|
}
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
QUrl thumbnail_url;
|
|
|
|
if (!result.image_thumbnail.isNull()) {
|
2019-07-07 21:14:24 +02:00
|
|
|
temp_cover_thumbnail_.reset(new QTemporaryFile(temp_file_pattern_));
|
|
|
|
temp_cover_thumbnail_->setAutoRemove(true);
|
2020-04-20 18:03:18 +02:00
|
|
|
if (temp_cover_thumbnail_->open()) {
|
|
|
|
if (result.image_thumbnail.save(temp_cover_thumbnail_->fileName(), "JPEG")) {
|
|
|
|
thumbnail_url = QUrl::fromLocalFile(temp_cover_thumbnail_->fileName());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
qLog(Error) << "Unable to save cover thumbnail image to" << temp_cover_thumbnail_->fileName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
qLog(Error) << "Unable to open" << temp_cover_thumbnail_->fileName();
|
|
|
|
}
|
|
|
|
}
|
2019-07-07 21:14:24 +02:00
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
if (result.updated) {
|
|
|
|
last_song_.set_art_manual(result.cover_url);
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
emit AlbumCoverLoaded(last_song_, result);
|
|
|
|
emit ThumbnailLoaded(last_song_, thumbnail_url, result.image_thumbnail);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
}
|