/* This file is part of Clementine. Copyright 2010, David Sansome 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 . */ #ifndef CDDADEVICE_H #define CDDADEVICE_H #include // These must come after Qt includes (issue 3247) #include #include #include "cddasongloader.h" #include "connecteddevice.h" #include "core/song.h" #include "musicbrainz/musicbrainzclient.h" class CddaDevice : public ConnectedDevice { Q_OBJECT public: Q_INVOKABLE CddaDevice(const QUrl& url, DeviceLister* lister, const QString& unique_id, DeviceManager* manager, Application* app, int database_id, bool first_time); ~CddaDevice(); void Init(); void Refresh(); bool CopyToStorage(const MusicStorage::CopyJob&) { return false; } bool DeleteFromStorage(const MusicStorage::DeleteJob&) { return false; } static QStringList url_schemes() { return QStringList() << "cdda"; } // QUrl interprets a single number as an ip address, so the QString cdda://1 // would become the QUrl cdda://0.0.0.1. For this reason, we append a single // character to strings when converting to URLs and strip that character // when doing the reverse conversion. static QUrl TrackStrToUrl(const QString& name) { return QUrl(name + "a"); } static QString TrackUrlToStr(const QUrl& url) { QString str = url.toString(); str.remove(str.lastIndexOf(QChar('a')), 1); return str; } signals: void SongsDiscovered(const SongList& songs); private slots: void SongsLoaded(const SongList& songs); private: CddaSongLoader cdda_song_loader_; }; #endif