2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-03-24 00:11:46 +01:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
#ifndef PLAYLIST_H
|
|
|
|
#define PLAYLIST_H
|
|
|
|
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
#include <QList>
|
|
|
|
|
2010-04-14 23:03:00 +02:00
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
#include "playlistitem.h"
|
2010-03-08 19:05:41 +01:00
|
|
|
#include "playlistsequence.h"
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "core/song.h"
|
|
|
|
#include "radio/radioitem.h"
|
2010-11-18 21:19:33 +01:00
|
|
|
#include "smartplaylists/generator_fwd.h"
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-08-31 21:45:33 +02:00
|
|
|
class LibraryBackend;
|
2010-05-09 02:10:26 +02:00
|
|
|
class PlaylistBackend;
|
2010-05-22 18:36:13 +02:00
|
|
|
class PlaylistFilter;
|
2010-07-11 17:37:40 +02:00
|
|
|
class Queue;
|
2010-08-31 21:45:33 +02:00
|
|
|
class RadioService;
|
2010-06-23 15:21:30 +02:00
|
|
|
class TaskManager;
|
2009-12-26 22:35:45 +01:00
|
|
|
|
2010-05-22 18:36:13 +02:00
|
|
|
class QSortFilterProxyModel;
|
2010-04-19 20:44:35 +02:00
|
|
|
class QUndoStack;
|
|
|
|
|
|
|
|
namespace PlaylistUndoCommands {
|
|
|
|
class InsertItems;
|
|
|
|
class RemoveItems;
|
|
|
|
class MoveItems;
|
|
|
|
}
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
class Playlist : public QAbstractListModel {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2010-04-19 20:44:35 +02:00
|
|
|
friend class PlaylistUndoCommands::InsertItems;
|
|
|
|
friend class PlaylistUndoCommands::RemoveItems;
|
|
|
|
friend class PlaylistUndoCommands::MoveItems;
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
public:
|
2010-08-31 21:45:33 +02:00
|
|
|
Playlist(PlaylistBackend* backend,
|
|
|
|
TaskManager* task_manager,
|
|
|
|
LibraryBackend* library,
|
|
|
|
int id,
|
2010-06-23 15:21:30 +02:00
|
|
|
QObject* parent = 0);
|
2009-12-24 20:16:07 +01:00
|
|
|
~Playlist();
|
|
|
|
|
2010-10-17 19:10:19 +02:00
|
|
|
// Always add new columns to the end of this enum - the values are persisted
|
2009-12-24 20:16:07 +01:00
|
|
|
enum Column {
|
|
|
|
Column_Title = 0,
|
|
|
|
Column_Artist,
|
|
|
|
Column_Album,
|
2010-03-07 23:46:41 +01:00
|
|
|
Column_AlbumArtist,
|
|
|
|
Column_Composer,
|
2009-12-24 20:16:07 +01:00
|
|
|
Column_Length,
|
|
|
|
Column_Track,
|
2009-12-30 05:05:33 +01:00
|
|
|
Column_Disc,
|
|
|
|
Column_Year,
|
|
|
|
Column_Genre,
|
|
|
|
|
|
|
|
Column_BPM,
|
|
|
|
Column_Bitrate,
|
|
|
|
Column_Samplerate,
|
|
|
|
Column_Filename,
|
2010-03-19 11:39:22 +01:00
|
|
|
Column_BaseFilename,
|
2009-12-30 05:05:33 +01:00
|
|
|
Column_Filesize,
|
2010-03-07 23:46:41 +01:00
|
|
|
Column_Filetype,
|
|
|
|
Column_DateCreated,
|
|
|
|
Column_DateModified,
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-10-17 19:10:19 +02:00
|
|
|
Column_Rating,
|
|
|
|
Column_PlayCount,
|
2010-10-17 20:21:30 +02:00
|
|
|
Column_SkipCount,
|
|
|
|
Column_LastPlayed,
|
2010-11-01 22:15:52 +01:00
|
|
|
Column_Score,
|
2010-10-17 19:10:19 +02:00
|
|
|
|
2010-11-28 16:22:48 +01:00
|
|
|
Column_Comment,
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
ColumnCount
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Role {
|
|
|
|
Role_IsCurrent = Qt::UserRole + 1,
|
|
|
|
Role_IsPaused,
|
|
|
|
Role_StopAfter,
|
2010-07-11 18:17:38 +02:00
|
|
|
Role_QueuePosition,
|
2010-10-17 23:56:19 +02:00
|
|
|
Role_CanSetRating,
|
2009-12-24 20:16:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char* kRowsMimetype;
|
2010-06-18 17:31:49 +02:00
|
|
|
static const char* kPlayNowMimetype;
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
static bool CompareItems(int column, Qt::SortOrder order,
|
2010-10-16 17:22:14 +02:00
|
|
|
PlaylistItemPtr a, PlaylistItemPtr b);
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-03-24 01:12:52 +01:00
|
|
|
static QString column_name(Column column);
|
2010-03-26 00:48:58 +01:00
|
|
|
static bool column_is_editable(Playlist::Column column);
|
|
|
|
static bool set_column_value(Song& song, Column column, const QVariant& value);
|
2010-03-24 01:12:52 +01:00
|
|
|
|
2010-03-10 01:04:04 +01:00
|
|
|
// Persistence
|
|
|
|
void Save() const;
|
|
|
|
void Restore();
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
// Accessors
|
2010-05-22 18:36:13 +02:00
|
|
|
QSortFilterProxyModel* proxy() const;
|
2010-07-11 17:37:40 +02:00
|
|
|
Queue* queue() const { return queue_; }
|
2010-05-22 18:36:13 +02:00
|
|
|
|
2010-05-20 23:21:55 +02:00
|
|
|
int id() const { return id_; }
|
2009-12-29 20:57:33 +01:00
|
|
|
int current_index() const;
|
2010-04-12 02:40:03 +02:00
|
|
|
int last_played_index() const;
|
2009-12-29 20:57:33 +01:00
|
|
|
int next_index() const;
|
|
|
|
int previous_index() const;
|
2009-12-27 00:43:38 +01:00
|
|
|
bool stop_after_current() const;
|
2010-11-20 19:49:54 +01:00
|
|
|
bool is_dynamic() const { return dynamic_playlist_; }
|
2009-12-29 20:57:33 +01:00
|
|
|
|
2010-10-16 17:22:14 +02:00
|
|
|
const PlaylistItemPtr& item_at(int index) const { return items_[index]; }
|
|
|
|
PlaylistItemPtr current_item() const { return current_item_; }
|
2009-12-29 20:57:33 +01:00
|
|
|
|
2009-12-29 17:15:21 +01:00
|
|
|
PlaylistItem::Options current_item_options() const;
|
2009-12-29 20:57:33 +01:00
|
|
|
Song current_item_metadata() const;
|
2010-03-06 16:33:57 +01:00
|
|
|
|
2010-06-18 16:26:46 +02:00
|
|
|
PlaylistItemList library_items_by_id(int id) const;
|
|
|
|
|
2010-05-23 00:20:00 +02:00
|
|
|
SongList GetAllSongs() const;
|
2010-06-12 23:20:53 +02:00
|
|
|
quint64 GetTotalLength() const; // in seconds
|
2010-05-23 00:20:00 +02:00
|
|
|
|
2010-03-08 19:05:41 +01:00
|
|
|
void set_sequence(PlaylistSequence* v);
|
|
|
|
PlaylistSequence* sequence() const { return playlist_sequence_; }
|
2009-12-29 20:57:33 +01:00
|
|
|
|
2010-04-19 20:44:35 +02:00
|
|
|
QUndoStack* undo_stack() const { return undo_stack_; }
|
|
|
|
|
2009-12-29 20:57:33 +01:00
|
|
|
// Scrobbling
|
|
|
|
int scrobble_point() const { return scrobble_point_; }
|
|
|
|
bool has_scrobbled() const { return has_scrobbled_; }
|
|
|
|
void set_scrobbled(bool v) { has_scrobbled_ = v; }
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
// Changing the playlist
|
2010-04-19 20:44:35 +02:00
|
|
|
QModelIndex InsertItems(const PlaylistItemList& items, int pos = -1);
|
|
|
|
QModelIndex InsertLibraryItems(const SongList& items, int pos = -1);
|
|
|
|
QModelIndex InsertSongs(const SongList& items, int pos = -1);
|
2010-12-07 20:33:19 +01:00
|
|
|
QModelIndex InsertSongsOrLibraryItems(const SongList& items, int pos = -1);
|
2010-06-18 17:31:49 +02:00
|
|
|
QModelIndex InsertRadioStations(const QList<RadioItem*>& items, int pos = -1, bool play_now = false);
|
2010-11-18 21:19:33 +01:00
|
|
|
void InsertSmartPlaylist(smart_playlists::GeneratorPtr generator, int pos = -1, bool play_now = false);
|
2010-06-15 20:24:08 +02:00
|
|
|
void InsertUrls(const QList<QUrl>& urls, bool play_now, int pos = -1);
|
2009-12-24 20:16:07 +01:00
|
|
|
void StopAfter(int row);
|
2010-01-16 17:12:47 +01:00
|
|
|
void ReloadItems(const QList<int>& rows);
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
// QAbstractListModel
|
|
|
|
int rowCount(const QModelIndex& = QModelIndex()) const { return items_.count(); }
|
|
|
|
int columnCount(const QModelIndex& = QModelIndex()) const { return ColumnCount; }
|
|
|
|
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
|
2010-03-26 00:48:58 +01:00
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role);
|
2009-12-24 20:16:07 +01:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
|
|
QStringList mimeTypes() const;
|
|
|
|
Qt::DropActions supportedDropActions() const;
|
|
|
|
QMimeData* mimeData(const QModelIndexList& indexes) const;
|
|
|
|
bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent);
|
|
|
|
void sort(int column, Qt::SortOrder order);
|
|
|
|
bool removeRows(int row, int count, const QModelIndex& parent = QModelIndex());
|
|
|
|
|
|
|
|
public slots:
|
2009-12-29 20:57:33 +01:00
|
|
|
void set_current_index(int index);
|
2009-12-24 20:16:07 +01:00
|
|
|
void Paused();
|
|
|
|
void Playing();
|
|
|
|
void Stopped();
|
2009-12-26 16:21:36 +01:00
|
|
|
void IgnoreSorting(bool value) { ignore_sorting_ = value; }
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2009-12-26 23:15:57 +01:00
|
|
|
void ClearStreamMetadata();
|
|
|
|
void SetStreamMetadata(const QUrl& url, const Song& song);
|
2010-10-23 22:58:20 +02:00
|
|
|
void ItemChanged(PlaylistItemPtr item);
|
2009-12-26 23:15:57 +01:00
|
|
|
|
2010-01-14 13:27:50 +01:00
|
|
|
void Clear();
|
2010-02-04 00:56:41 +01:00
|
|
|
void Shuffle();
|
2010-01-14 13:27:50 +01:00
|
|
|
|
2010-03-08 19:05:41 +01:00
|
|
|
void ShuffleModeChanged(PlaylistSequence::ShuffleMode mode);
|
2010-03-08 18:55:40 +01:00
|
|
|
|
2010-11-20 21:00:40 +01:00
|
|
|
void RepopulateDynamicPlaylist();
|
2010-11-20 19:49:54 +01:00
|
|
|
void TurnOffDynamicPlaylist();
|
|
|
|
|
2010-01-08 15:52:05 +01:00
|
|
|
signals:
|
|
|
|
void CurrentSongChanged(const Song& metadata);
|
2010-04-11 19:58:58 +02:00
|
|
|
void EditingFinished(const QModelIndex& index);
|
2010-06-15 20:24:08 +02:00
|
|
|
void PlayRequested(const QModelIndex& index);
|
2010-01-08 15:52:05 +01:00
|
|
|
|
2010-12-09 21:43:06 +01:00
|
|
|
// Signals that the underlying list of items was changed, meaning that
|
|
|
|
// something was added to it, removed from it or the ordering changed.
|
2010-03-24 21:58:17 +01:00
|
|
|
void PlaylistChanged();
|
2010-11-20 21:00:40 +01:00
|
|
|
void DynamicModeChanged(bool dynamic);
|
2010-03-24 21:58:17 +01:00
|
|
|
|
2010-06-15 20:24:08 +02:00
|
|
|
void LoadTracksError(const QString& message);
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
private:
|
|
|
|
void SetCurrentIsPaused(bool paused);
|
2009-12-29 20:57:33 +01:00
|
|
|
void UpdateScrobblePoint();
|
2010-03-08 18:55:40 +01:00
|
|
|
void ReshuffleIndices();
|
|
|
|
int NextVirtualIndex(int i) const;
|
2010-05-17 02:02:22 +02:00
|
|
|
int PreviousVirtualIndex(int i) const;
|
2010-05-22 18:36:13 +02:00
|
|
|
bool FilterContainsVirtualIndex(int i) const;
|
2010-11-20 21:30:21 +01:00
|
|
|
void TurnOnDynamicPlaylist(smart_playlists::GeneratorPtr gen);
|
2010-03-24 13:07:37 +01:00
|
|
|
|
2010-04-19 20:44:35 +02:00
|
|
|
// Modify the playlist without changing the undo stack. These are used by
|
|
|
|
// our friends in PlaylistUndoCommands
|
|
|
|
QModelIndex InsertItemsWithoutUndo(const PlaylistItemList& items, int pos);
|
|
|
|
PlaylistItemList RemoveItemsWithoutUndo(int pos, int count);
|
|
|
|
void MoveItemsWithoutUndo(const QList<int>& source_rows, int pos);
|
|
|
|
void MoveItemsWithoutUndo(int start, const QList<int>& dest_rows);
|
|
|
|
|
2010-11-21 18:48:58 +01:00
|
|
|
void RemoveItemsNotInQueue();
|
|
|
|
|
2010-07-11 18:58:22 +02:00
|
|
|
private slots:
|
|
|
|
void TracksAboutToBeDequeued(const QModelIndex&, int begin, int end);
|
|
|
|
void TracksDequeued();
|
2010-07-26 17:53:06 +02:00
|
|
|
void TracksEnqueued(const QModelIndex&, int begin, int end);
|
2010-07-11 19:39:11 +02:00
|
|
|
void QueueLayoutChanged();
|
2010-08-02 16:00:43 +02:00
|
|
|
void SongSaveComplete();
|
2010-08-08 14:36:07 +02:00
|
|
|
void ItemReloadComplete();
|
2010-08-03 20:57:17 +02:00
|
|
|
void ItemsLoaded();
|
2010-07-11 18:58:22 +02:00
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
private:
|
2010-11-27 20:11:36 +01:00
|
|
|
bool is_loading_;
|
2010-05-22 18:36:13 +02:00
|
|
|
PlaylistFilter* proxy_;
|
2010-07-11 17:37:40 +02:00
|
|
|
Queue* queue_;
|
2010-05-22 18:36:13 +02:00
|
|
|
|
2010-07-26 17:53:06 +02:00
|
|
|
QList<QModelIndex> temp_dequeue_change_indexes_;
|
2010-07-11 18:58:22 +02:00
|
|
|
|
2010-05-09 02:10:26 +02:00
|
|
|
PlaylistBackend* backend_;
|
2010-06-23 15:21:30 +02:00
|
|
|
TaskManager* task_manager_;
|
2010-08-31 21:45:33 +02:00
|
|
|
LibraryBackend* library_;
|
2010-05-20 23:21:55 +02:00
|
|
|
int id_;
|
2010-04-14 23:03:00 +02:00
|
|
|
|
|
|
|
PlaylistItemList items_;
|
2010-03-08 18:55:40 +01:00
|
|
|
QList<int> virtual_items_; // Contains the indices into items_ in the order
|
|
|
|
// that they will be played.
|
2010-06-18 16:26:46 +02:00
|
|
|
// A map of library ID to playlist item - for fast lookups when library
|
|
|
|
// items change.
|
2010-10-16 17:22:14 +02:00
|
|
|
QMultiMap<int, PlaylistItemPtr> library_items_by_id_;
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-04-20 21:08:12 +02:00
|
|
|
QPersistentModelIndex current_item_index_;
|
|
|
|
QPersistentModelIndex last_played_item_index_;
|
2009-12-24 20:16:07 +01:00
|
|
|
QPersistentModelIndex stop_after_;
|
|
|
|
bool current_is_paused_;
|
2010-03-08 18:55:40 +01:00
|
|
|
int current_virtual_index_;
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-10-16 17:22:14 +02:00
|
|
|
PlaylistItemPtr current_item_;
|
2010-04-20 21:08:12 +02:00
|
|
|
|
2010-03-24 13:07:37 +01:00
|
|
|
bool is_shuffled_;
|
|
|
|
|
2009-12-29 20:57:33 +01:00
|
|
|
int scrobble_point_;
|
|
|
|
bool has_scrobbled_;
|
|
|
|
|
2010-03-24 13:07:37 +01:00
|
|
|
PlaylistSequence* playlist_sequence_;
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
// Hack to stop QTreeView::setModel sorting the playlist
|
2009-12-26 16:21:36 +01:00
|
|
|
bool ignore_sorting_;
|
2010-04-19 20:44:35 +02:00
|
|
|
|
|
|
|
QUndoStack* undo_stack_;
|
2010-11-20 19:49:54 +01:00
|
|
|
|
|
|
|
smart_playlists::GeneratorPtr dynamic_playlist_;
|
2009-12-24 20:16:07 +01:00
|
|
|
};
|
|
|
|
|
2010-07-17 14:47:59 +02:00
|
|
|
QDataStream& operator <<(QDataStream&, const Playlist*);
|
|
|
|
QDataStream& operator >>(QDataStream&, Playlist*&);
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
#endif // PLAYLIST_H
|