Clementine-audio-player-Mac.../src/radio/jamendoservice.h

124 lines
3.3 KiB
C++

/* 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/>.
*/
#ifndef JAMENDOSERVICE_H
#define JAMENDOSERVICE_H
#include "radioservice.h"
#include <QXmlStreamReader>
#include "core/song.h"
class LibraryBackend;
class LibraryFilterWidget;
class LibraryModel;
class NetworkAccessManager;
class QIODevice;
class QMenu;
class QSortFilterProxyModel;
class JamendoService : public RadioService {
Q_OBJECT
public:
JamendoService(RadioModel* parent);
~JamendoService();
QStandardItem* CreateRootItem();
void LazyPopulate(QStandardItem* item);
void ShowContextMenu(const QModelIndex& index, const QPoint& global_pos);
QWidget* HeaderWidget() const;
LibraryBackend* library_backend() const { return library_backend_; }
static const char* kServiceName;
static const char* kDirectoryUrl;
static const char* kMp3StreamUrl;
static const char* kOggStreamUrl;
static const char* kAlbumCoverUrl;
static const char* kAlbumInfoUrl;
static const char* kDownloadAlbumUrl;
static const char* kHomepage;
static const char* kSongsTable;
static const char* kFtsTable;
static const char* kTrackIdsTable;
static const char* kTrackIdsColumn;
static const char* kSettingsGroup;
static const int kBatchSize;
static const int kApproxDatabaseSize;
private:
void ParseDirectory(QIODevice* device) const;
typedef QList<int> TrackIdList;
SongList ReadArtist(QXmlStreamReader* reader, TrackIdList* track_ids) const;
SongList ReadAlbum(const QString& artist, QXmlStreamReader* reader,
TrackIdList* track_ids) const;
Song ReadTrack(const QString& artist,
const QString& album,
const QString& album_cover,
int album_id,
QXmlStreamReader* reader,
TrackIdList* track_ids) const;
void InsertTrackIds(const TrackIdList& ids) const;
void EnsureMenuCreated();
private slots:
void DownloadDirectory();
void DownloadDirectoryProgress(qint64 received, qint64 total);
void DownloadDirectoryFinished();
void ParseDirectoryFinished();
void UpdateTotalSongCount(int count);
void AddToPlaylist();
void LoadToPlaylist();
void OpenInNewPlaylist();
void AlbumInfo();
void DownloadAlbum();
void Homepage();
private:
NetworkAccessManager* network_;
QMenu* context_menu_;
QModelIndex context_item_;
QAction* add_to_playlist_;
QAction* load_to_playlist_;
QAction* open_in_new_playlist_;
QAction* album_info_;
QAction* download_album_;
LibraryBackend* library_backend_;
LibraryFilterWidget* library_filter_;
LibraryModel* library_model_;
QSortFilterProxyModel* library_sort_model_;
int load_database_task_id_;
int total_song_count_;
};
#endif