94 lines
2.4 KiB
C++
94 lines
2.4 KiB
C++
/*
|
|
* Strawberry Music Player
|
|
* Copyright 2018-2025, Jonas Kvinge <jonas@jkvinge.net>
|
|
*
|
|
* 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/>.
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <QVariant>
|
|
#include <QUrl>
|
|
|
|
#include "core/logging.h"
|
|
#include "collectionplaylistitem.h"
|
|
#include "tagreader/tagreaderclient.h"
|
|
|
|
class SqlRow;
|
|
|
|
CollectionPlaylistItem::CollectionPlaylistItem(const Song::Source source) : PlaylistItem(source) {
|
|
song_.set_source(source);
|
|
}
|
|
|
|
CollectionPlaylistItem::CollectionPlaylistItem(const Song &song) : PlaylistItem(song.source()), song_(song) {}
|
|
|
|
QUrl CollectionPlaylistItem::Url() const { return song_.url(); }
|
|
|
|
bool CollectionPlaylistItem::InitFromQuery(const SqlRow &query) {
|
|
|
|
int col = 0;
|
|
switch (source_) {
|
|
case Song::Source::Collection:
|
|
col = 0;
|
|
break;
|
|
default:
|
|
col = static_cast<int>(Song::kRowIdColumns.count());
|
|
break;
|
|
}
|
|
|
|
song_.InitFromQuery(query, true, col);
|
|
|
|
return song_.is_valid();
|
|
|
|
}
|
|
|
|
void CollectionPlaylistItem::Reload() {
|
|
|
|
if (song_.url().isLocalFile()) {
|
|
const TagReaderResult result = TagReaderClient::Instance()->ReadFileBlocking(song_.url().toLocalFile(), &song_);
|
|
if (!result.success()) {
|
|
qLog(Error) << "Could not reload file" << song_.url() << result.error_string();
|
|
return;
|
|
}
|
|
UpdateTemporaryMetadata(song_);
|
|
}
|
|
|
|
}
|
|
|
|
QVariant CollectionPlaylistItem::DatabaseValue(const DatabaseColumn database_column) const {
|
|
|
|
switch (database_column) {
|
|
case DatabaseColumn::CollectionId:
|
|
return song_.id();
|
|
default:
|
|
return PlaylistItem::DatabaseValue(database_column);
|
|
}
|
|
|
|
}
|
|
|
|
Song CollectionPlaylistItem::Metadata() const {
|
|
|
|
if (HasTemporaryMetadata()) return temp_metadata_;
|
|
return song_;
|
|
|
|
}
|
|
|
|
void CollectionPlaylistItem::SetArtManual(const QUrl &cover_url) {
|
|
|
|
song_.set_art_manual(cover_url);
|
|
if (HasTemporaryMetadata()) temp_metadata_.set_art_manual(cover_url);
|
|
|
|
}
|