Clementine-audio-player-Mac.../src/devices/connecteddevice.h

88 lines
2.4 KiB
C
Raw Normal View History

/* 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/>.
*/
2010-06-26 01:38:21 +02:00
#ifndef CONNECTEDDEVICE_H
#define CONNECTEDDEVICE_H
#include "core/musicstorage.h"
#include "core/song.h"
#include <QObject>
#include <QStringList>
#include <QUrl>
#include <boost/enable_shared_from_this.hpp>
2010-06-26 01:38:21 +02:00
class Database;
class DeviceLister;
class DeviceManager;
2010-06-26 01:38:21 +02:00
class LibraryBackend;
class LibraryModel;
class ConnectedDevice : public QObject, public virtual MusicStorage,
public boost::enable_shared_from_this<ConnectedDevice> {
Q_OBJECT
public:
ConnectedDevice(const QUrl& url, DeviceLister* lister,
const QString& unique_id, DeviceManager* manager,
int database_id, bool first_time);
2010-07-04 01:00:07 +02:00
~ConnectedDevice();
2010-06-26 01:38:21 +02:00
virtual void Init() = 0;
virtual TranscodeMode GetTranscodeMode() const;
virtual Song::FileType GetTranscodeFormat() const;
2010-06-26 01:38:21 +02:00
DeviceLister* lister() const { return lister_; }
QString unique_id() const { return unique_id_; }
LibraryModel* model() const { return model_; }
QUrl url() const { return url_; }
int song_count() const { return song_count_; }
2010-06-26 01:38:21 +02:00
virtual void FinishCopy(bool success);
virtual void FinishDelete(bool success);
2010-08-14 17:57:05 +02:00
virtual void Eject();
signals:
void TaskStarted(int id);
void Error(const QString& message);
void SongCountUpdated(int count);
protected:
void InitBackendDirectory(const QString& mount_point, bool first_time, bool rewrite_path = true);
2010-06-26 01:38:21 +02:00
protected:
QUrl url_;
bool first_time_;
2010-06-26 01:38:21 +02:00
DeviceLister* lister_;
QString unique_id_;
2010-07-04 01:00:07 +02:00
int database_id_;
DeviceManager* manager_;
2010-06-26 01:38:21 +02:00
LibraryBackend* backend_;
LibraryModel* model_;
int song_count_;
private slots:
void BackendTotalSongCountUpdated(int count);
};
2010-06-26 01:38:21 +02:00
#endif // CONNECTEDDEVICE_H