/usr/include/libtomahawk/collection/Collection.h is in libtomahawk-dev 0.8.4+dfsg1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
* Copyright 2013, Teo Mrnjavac <teo@kde.org>
*
* Tomahawk 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.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
/*
The collection - acts as container for someones music library
load() -> async populate by calling addArtists etc,
then finishedLoading() is emitted.
then use artists() etc to get the data.
*/
#ifndef TOMAHAWK_COLLECTION_H
#define TOMAHAWK_COLLECTION_H
#include <QHash>
#include <QList>
#include <QSharedPointer>
#include "Typedefs.h"
#include "Playlist.h"
#include "playlist/dynamic/DynamicPlaylist.h"
#include "collection/ArtistsRequest.h"
#include "collection/AlbumsRequest.h"
#include "collection/TracksRequest.h"
#include "DllMacro.h"
class QIcon;
namespace Tomahawk
{
class DLLEXPORT Collection : public QObject
{
Q_OBJECT
public:
Collection( const source_ptr& source, const QString& name, QObject* parent = 0 );
virtual ~Collection();
enum BackendType
{
NullCollectionType = 0,
DatabaseCollectionType, //talks to a database, incl. LocalCollection
ScriptCollectionType //performs operations through a resolver
};
virtual QString name() const;
virtual QString prettyName() const;
virtual QString description() const;
virtual QString itemName() const;
virtual BackendType backendType() const { return NullCollectionType; }
virtual QIcon icon() const;
virtual QPixmap bigIcon() const; //for the ViewPage header
virtual void loadPlaylists();
virtual void loadAutoPlaylists();
virtual void loadStations();
virtual Tomahawk::playlist_ptr playlist( const QString& guid );
virtual Tomahawk::dynplaylist_ptr autoPlaylist( const QString& guid );
virtual Tomahawk::dynplaylist_ptr station( const QString& guid );
virtual void addPlaylist( const Tomahawk::playlist_ptr& p );
virtual void deletePlaylist( const Tomahawk::playlist_ptr& p );
virtual void addAutoPlaylist( const Tomahawk::dynplaylist_ptr& p );
virtual void deleteAutoPlaylist( const Tomahawk::dynplaylist_ptr& p );
virtual void addStation( const Tomahawk::dynplaylist_ptr& s );
virtual void deleteStation( const Tomahawk::dynplaylist_ptr& s );
virtual QList< Tomahawk::playlist_ptr > playlists() { return m_playlists.values(); }
virtual QList< Tomahawk::dynplaylist_ptr > autoPlaylists() { return m_autoplaylists.values(); }
virtual QList< Tomahawk::dynplaylist_ptr > stations() { return m_stations.values(); }
// Async requests. Emit artists/albums/tracksResult in subclasses when finished.
virtual Tomahawk::ArtistsRequest* requestArtists() = 0;
virtual Tomahawk::AlbumsRequest* requestAlbums( const Tomahawk::artist_ptr& artist ) = 0;
virtual Tomahawk::TracksRequest* requestTracks( const Tomahawk::album_ptr& album ) = 0;
const source_ptr& source() const;
unsigned int lastmodified() const { return m_lastmodified; }
virtual int trackCount() const;
signals:
void tracksAdded( const QList<unsigned int>& fileids );
void tracksRemoved( const QList<unsigned int>& fileids );
void playlistsAdded( const QList<Tomahawk::playlist_ptr>& );
void playlistsDeleted( const QList<Tomahawk::playlist_ptr>& );
void autoPlaylistsAdded( const QList<Tomahawk::dynplaylist_ptr>& );
void autoPlaylistsDeleted( const QList<Tomahawk::dynplaylist_ptr>& );
void stationsAdded( const QList<Tomahawk::dynplaylist_ptr>& );
void stationsDeleted( const QList<Tomahawk::dynplaylist_ptr>& );
void changed();
public slots:
void setPlaylists( const QList<Tomahawk::playlist_ptr>& plists );
void setAutoPlaylists( const QList< Tomahawk::dynplaylist_ptr >& autoplists );
void setStations( const QList< Tomahawk::dynplaylist_ptr >& stations );
void setTracks( const QList<unsigned int>& fileids );
void delTracks( const QList<unsigned int>& fileids );
protected:
QString m_name;
unsigned int m_lastmodified; // unix time of last change to collection
private slots:
void onSynced();
void doLoadPlaylistUpdater( const playlist_ptr& p );
private:
bool m_changed;
source_ptr m_source;
QHash< QString, Tomahawk::playlist_ptr > m_playlists;
QHash< QString, Tomahawk::dynplaylist_ptr > m_autoplaylists;
QHash< QString, Tomahawk::dynplaylist_ptr > m_stations;
// HACK see line 99 in the dbcmd for why we need this for backwards-compatibility
void moveAutoToStation( const QString& guid );
void moveStationToAuto( const QString& guid );
friend class DatabaseCommand_SetDynamicPlaylistRevision;
};
} // ns
inline uint qHash( const QSharedPointer<Tomahawk::Collection>& key )
{
return qHash( (void *)key.data() );
}
#endif // TOMAHAWK_COLLECTION_H
|