2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-03-24 00:11:46 +01: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/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
#ifndef LIBRARY_H
|
|
|
|
#define LIBRARY_H
|
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "core/backgroundthread.h"
|
2010-05-09 02:10:26 +02:00
|
|
|
|
|
|
|
#include <QObject>
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-03-23 18:26:54 +01:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
|
2010-05-09 02:10:26 +02:00
|
|
|
class Database;
|
|
|
|
class LibraryBackend;
|
|
|
|
class LibraryModel;
|
|
|
|
class LibraryWatcher;
|
2010-06-23 15:21:30 +02:00
|
|
|
class TaskManager;
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-05-09 02:10:26 +02:00
|
|
|
class Library : public QObject {
|
2009-12-24 20:16:07 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2010-06-23 15:21:30 +02:00
|
|
|
Library(BackgroundThread<Database>* db_thread, TaskManager* task_manager_,
|
|
|
|
QObject* parent);
|
2010-05-09 02:10:26 +02:00
|
|
|
|
|
|
|
static const char* kSongsTable;
|
|
|
|
static const char* kDirsTable;
|
|
|
|
static const char* kSubdirsTable;
|
2010-06-20 18:30:10 +02:00
|
|
|
static const char* kFtsTable;
|
2010-03-31 17:18:39 +02:00
|
|
|
|
2010-03-23 18:26:54 +01:00
|
|
|
// Useful for tests. The library takes ownership.
|
|
|
|
void set_watcher_factory(BackgroundThreadFactory<LibraryWatcher>* factory);
|
|
|
|
|
|
|
|
void Init();
|
2009-12-24 20:16:07 +01:00
|
|
|
void StartThreads();
|
|
|
|
|
2010-05-20 16:12:15 +02:00
|
|
|
LibraryBackend* backend() const { return backend_; }
|
2010-05-09 02:10:26 +02:00
|
|
|
LibraryModel* model() const { return model_; }
|
2009-12-26 16:13:38 +01:00
|
|
|
|
2010-06-24 23:46:18 +02:00
|
|
|
public slots:
|
2010-07-10 19:03:28 +02:00
|
|
|
void ReloadSettings();
|
|
|
|
|
2010-06-24 23:46:18 +02:00
|
|
|
void PauseWatcher();
|
|
|
|
void ResumeWatcher();
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
private slots:
|
2010-05-25 22:40:45 +02:00
|
|
|
void IncrementalScan();
|
2009-12-24 20:16:07 +01:00
|
|
|
void WatcherInitialised();
|
|
|
|
|
|
|
|
private:
|
2010-06-23 15:21:30 +02:00
|
|
|
TaskManager* task_manager_;
|
2010-05-09 02:10:26 +02:00
|
|
|
LibraryBackend* backend_;
|
|
|
|
LibraryModel* model_;
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-03-23 18:26:54 +01:00
|
|
|
boost::scoped_ptr<BackgroundThreadFactory<LibraryWatcher> > watcher_factory_;
|
2009-12-24 20:16:07 +01:00
|
|
|
BackgroundThread<LibraryWatcher>* watcher_;
|
|
|
|
};
|
|
|
|
|
2010-05-09 02:10:26 +02:00
|
|
|
#endif
|