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
|
|
|
|
|
2012-02-26 16:05:46 +01:00
|
|
|
#include <QHash>
|
2010-05-09 02:10:26 +02:00
|
|
|
#include <QObject>
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2012-02-12 14:41:50 +01:00
|
|
|
class Application;
|
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:
|
2012-02-12 14:41:50 +01:00
|
|
|
Library(Application* app, QObject* parent);
|
2012-02-26 16:05:46 +01:00
|
|
|
~Library();
|
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
|
|
|
void Init();
|
2009-12-24 20:16:07 +01:00
|
|
|
|
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
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
QString full_rescan_reason(int schema_version) const {
|
|
|
|
return full_rescan_revisions_.value(schema_version, QString());
|
|
|
|
}
|
2011-02-25 21:10:41 +01:00
|
|
|
|
2013-03-26 23:56:46 +01:00
|
|
|
void WriteAllSongsStatisticsToFiles();
|
|
|
|
|
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();
|
|
|
|
|
2011-02-25 21:10:41 +01:00
|
|
|
void FullScan();
|
|
|
|
|
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
|
|
|
|
|
|
|
private:
|
2012-02-12 14:41:50 +01:00
|
|
|
Application* app_;
|
2010-05-09 02:10:26 +02:00
|
|
|
LibraryBackend* backend_;
|
|
|
|
LibraryModel* model_;
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2012-02-26 16:05:46 +01:00
|
|
|
LibraryWatcher* watcher_;
|
|
|
|
QThread* watcher_thread_;
|
2011-02-25 21:10:41 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
// DB schema versions which should trigger a full library rescan (each of
|
|
|
|
// those with
|
2011-02-25 21:10:41 +01:00
|
|
|
// a short reason why).
|
|
|
|
QHash<int, QString> full_rescan_revisions_;
|
2009-12-24 20:16:07 +01:00
|
|
|
};
|
|
|
|
|
2010-05-09 02:10:26 +02:00
|
|
|
#endif
|