2010-06-25 21:04:10 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-06-25 21:04:10 +02:00
|
|
|
|
|
|
|
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 FILESYSTEMDEVICE_H
|
|
|
|
#define FILESYSTEMDEVICE_H
|
2010-06-25 21:04:10 +02:00
|
|
|
|
2010-06-26 01:38:21 +02:00
|
|
|
#include "connecteddevice.h"
|
2010-07-19 21:56:29 +02:00
|
|
|
#include "core/filesystemmusicstorage.h"
|
2010-06-25 21:04:10 +02:00
|
|
|
|
2010-06-26 14:41:18 +02:00
|
|
|
class DeviceManager;
|
|
|
|
class LibraryWatcher;
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
class FilesystemDevice : public ConnectedDevice,
|
|
|
|
public virtual FilesystemMusicStorage {
|
2010-06-25 21:04:10 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
|
|
|
Q_INVOKABLE FilesystemDevice(const QUrl& url, DeviceLister* lister,
|
|
|
|
const QString& unique_id, DeviceManager* manager,
|
|
|
|
Application* app, int database_id,
|
|
|
|
bool first_time);
|
2010-06-26 14:41:18 +02:00
|
|
|
~FilesystemDevice();
|
|
|
|
|
2010-08-08 19:41:06 +02:00
|
|
|
void Init();
|
|
|
|
|
2010-07-17 16:22:07 +02:00
|
|
|
static QStringList url_schemes() { return QStringList() << "file"; }
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2012-02-26 16:05:46 +01:00
|
|
|
LibraryWatcher* watcher_;
|
|
|
|
QThread* watcher_thread_;
|
2010-06-25 21:04:10 +02:00
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // FILESYSTEMDEVICE_H
|