forked from Elleo/libQtSpotify
-
Notifications
You must be signed in to change notification settings - Fork 3
/
qspotifyplaylist.h
221 lines (182 loc) · 7.86 KB
/
qspotifyplaylist.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/****************************************************************************
**
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Yoann Lopes ([email protected])
**
** This file is part of the MeeSpot project.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
**
** Redistributions of source code must retain the above copyright notice,
** this list of conditions and the following disclaimer.
**
** Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
**
** Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the names of its
** contributors may be used to endorse or promote products derived from
** this software without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
** FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
** TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
** If you have questions regarding the use of this file, please contact
** Nokia at [email protected].
**
****************************************************************************/
#ifndef QSPOTIFYPLAYLIST_H
#define QSPOTIFYPLAYLIST_H
#include <QtCore/QSet>
#include <QtCore/QVector>
#include <QtCore/QStringList>
#include <libspotify/api.h>
#include "qspotifyobject.h"
#include "qspotifytracklist.h"
class QSpotifyAlbumBrowse;
class QSpotifyTrack;
struct sp_playlist;
struct sp_playlist_callbacks;
struct sp_track;
class QSpotifyPlaylist : public QSpotifyObject
{
// TODO add a flag if its a user playlist (e.g. is in user playlist container)
// as certain function don't work when it isn't (e.g. offline_mode).
Q_OBJECT
Q_PROPERTY(QString name READ name NOTIFY playlistDataChanged)
Q_PROPERTY(QString description READ description NOTIFY playlistDataChanged)
Q_PROPERTY(int trackCount READ trackCount NOTIFY playlistDataChanged)
Q_PROPERTY(int totalDuration READ totalDuration NOTIFY playlistDataChanged)
Q_PROPERTY(bool isLoaded READ isLoaded NOTIFY thisIsLoadedChanged)
Q_PROPERTY(Type type READ type NOTIFY playlistDataChanged)
Q_PROPERTY(OfflineStatus offlineStatus READ offlineStatus NOTIFY playlistDataChanged)
Q_PROPERTY(QString owner READ owner NOTIFY playlistDataChanged)
Q_PROPERTY(bool collaborative READ collaborative WRITE setCollaborative NOTIFY playlistDataChanged)
Q_PROPERTY(int offlineDownloadProgress READ offlineDownloadProgress NOTIFY playlistDataChanged)
Q_PROPERTY(bool availableOffline READ availableOffline WRITE setAvailableOffline NOTIFY availableOfflineChanged)
Q_PROPERTY(int unseenCount READ unseenCount NOTIFY seenCountChanged)
Q_PROPERTY(bool hasOfflineTracks READ hasOfflineTracks NOTIFY hasOfflineTracksChanged)
Q_PROPERTY(QList<QObject *> playlists READ playlists NOTIFY playlistsChanged)
Q_PROPERTY(int playlistCount READ playlistCount NOTIFY playlistsChanged)
Q_PROPERTY(bool hasImageId READ hasImageId NOTIFY playlistDataChanged)
Q_PROPERTY(QString imageId READ imageId NOTIFY playlistDataChanged)
Q_PROPERTY(QStringList coverImages READ coverImages NOTIFY playlistDataChanged)
Q_ENUMS(Type)
Q_ENUMS(OfflineStatus)
public:
enum Type {
Playlist = SP_PLAYLIST_TYPE_PLAYLIST,
Folder = SP_PLAYLIST_TYPE_START_FOLDER,
FolderEnd = SP_PLAYLIST_TYPE_END_FOLDER,
None = SP_PLAYLIST_TYPE_PLACEHOLDER,
Starred,
Inbox
};
enum OfflineStatus {
No = SP_PLAYLIST_OFFLINE_STATUS_NO,
Yes = SP_PLAYLIST_OFFLINE_STATUS_YES,
Downloading = SP_PLAYLIST_OFFLINE_STATUS_DOWNLOADING,
Waiting = SP_PLAYLIST_OFFLINE_STATUS_WAITING
};
QSpotifyPlaylist(Type type, sp_playlist *playlist, bool incrRefCount = true);
virtual ~QSpotifyPlaylist();
bool isLoaded();
QString name() const { return m_name; }
QString description() const { return m_description; }
int trackCount() const;
int totalDuration() const;
Type type() const { return m_type; }
OfflineStatus offlineStatus() const { return m_offlineStatus; }
QString owner() const { return m_owner; }
bool collaborative() const { return m_collaborative; }
void setCollaborative(bool c);
int offlineDownloadProgress() const { return m_offlineDownloadProgress; }
bool availableOffline() const { return m_availableOffline; }
void setAvailableOffline(bool offline);
int unseenCount() const;
bool hasOfflineTracks() const { return m_offlineTracks.count() > 0; }
QList<QObject *> playlists() const { return m_availablePlaylists + m_unavailablePlaylists; }
int playlistCount() const { return m_availablePlaylists.count() + m_unavailablePlaylists.count(); }
void clearPlaylists() {
m_availablePlaylists.clear();
m_unavailablePlaylists.clear();
}
bool contains(sp_track *t) const { return m_tracksSet.contains(t); }
Q_INVOKABLE void add(QSpotifyTrack *track);
Q_INVOKABLE void remove(QSpotifyTrack *track);
Q_INVOKABLE void addAlbum(QSpotifyAlbumBrowse *album);
Q_INVOKABLE void rename(const QString &name);
Q_INVOKABLE void removeFromContainer();
Q_INVOKABLE void deleteFolderContent();
Q_INVOKABLE bool isCurrentPlaylist() const;
Q_INVOKABLE QSpotifyTrackList *tracks() const { return m_trackList; }
bool hasImageId() const { return m_hasImage; }
QString imageId() const { return m_ImageId; }
QStringList coverImages() const { return m_coverImages; }
static byte* getImageIdPtr(const QString &key);
public Q_SLOTS:
void play();
void enqueue();
Q_SIGNALS:
void playlistDestroyed();
void playlistDataChanged();
void thisIsLoadedChanged();
void tracksAdded(QVector<sp_track *>);
void tracksRemoved(QVector<sp_track *>);
void availableOfflineChanged();
void seenCountChanged();
void hasOfflineTracksChanged();
void tracksChanged();
void nameChanged();
void playlistsChanged();
protected:
bool updateData();
bool event(QEvent *);
private Q_SLOTS:
void onTrackChanged();
private:
QSpotifyTrack *addTrack(sp_track *track, int pos = -1);
void registerTrackType(QSpotifyTrack *t);
void unregisterTrackType(QSpotifyTrack *t);
void postUpdateEvent();
sp_playlist *m_sp_playlist{};
sp_playlist_callbacks *m_callbacks{};
QSpotifyTrackList *m_trackList{};
QSet<sp_track *> m_tracksSet;
QString m_name;
QString m_description;
Type m_type;
OfflineStatus m_offlineStatus{No};
QString m_owner;
bool m_collaborative{};
int m_offlineDownloadProgress{};
bool m_availableOffline{};
bool m_hasImage{};
QString m_ImageId;
QString m_hashKey;
QStringList m_coverImages;
QSet<QSpotifyTrack *> m_offlineTracks;
QSet<QSpotifyTrack *> m_availableTracks;
QList<QObject *> m_availablePlaylists;
QList<QObject *> m_unavailablePlaylists;
QString m_uri;
bool m_skipUpdateTracks{};
bool m_updateEventPosted{};
friend class QSpotifyPlaylistContainer;
friend class QSpotifyUser;
friend class QSpotifyTrack;
friend class QSpotifyCacheManager;
};
#endif // QSPOTIFYPLAYLIST_H