Clementine-audio-player-Mac.../src/playlist/songplaylistitem.cpp

71 lines
1.8 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/>.
*/
#include "playlistbackend.h"
2009-12-24 20:16:07 +01:00
#include "songplaylistitem.h"
#include "library/sqlrow.h"
2009-12-24 20:16:07 +01:00
#include <QtDebug>
2010-03-10 22:39:25 +01:00
#include <QFile>
2009-12-24 20:16:07 +01:00
#include <QSettings>
SongPlaylistItem::SongPlaylistItem(const QString& type)
: PlaylistItem(type)
2009-12-24 20:16:07 +01:00
{
}
SongPlaylistItem::SongPlaylistItem(const Song& song)
: PlaylistItem(song.is_stream() ? "Stream" : "File"),
song_(song)
2009-12-24 20:16:07 +01:00
{
}
bool SongPlaylistItem::InitFromQuery(const SqlRow& query) {
song_.InitFromQuery(query, (Song::kColumns.count() + 1) * 3);
2010-03-10 22:39:25 +01:00
if (type() == "Stream") {
song_.set_filetype(Song::Type_Stream);
2010-03-10 22:39:25 +01:00
} else {
song_.set_directory_id(-1);
2010-03-10 22:39:25 +01:00
}
return true;
2010-03-10 22:39:25 +01:00
}
QUrl SongPlaylistItem::Url() const {
return song_.url();
2009-12-24 20:16:07 +01:00
}
2010-01-16 17:12:47 +01:00
void SongPlaylistItem::Reload() {
if (song_.url().scheme() != "file")
return;
QString old_filename = song_.url().toLocalFile();
int old_directory_id = song_.directory_id();
song_ = Song();
song_.InitFromFile(old_filename, old_directory_id);
2010-01-16 17:12:47 +01:00
}
Song SongPlaylistItem::Metadata() const {
if (HasTemporaryMetadata())
return temp_metadata_;
return song_;
}