strawberry-audio-player-win.../src/collection/collection.h

102 lines
2.4 KiB
C
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2010, David Sansome <me@davidsansome.com>
2019-09-23 19:17:41 +02:00
* Copyright 2018-2019, Jonas Kvinge <jonas@jkvinge.net>
2018-02-27 18:06:05 +01:00
*
* Strawberry 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.
*
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
2018-08-09 18:39:44 +02:00
*
2018-02-27 18:06:05 +01:00
*/
#ifndef COLLECTION_H
#define COLLECTION_H
#include "config.h"
#include <QObject>
#include <QHash>
#include <QString>
2018-02-27 18:06:05 +01:00
#include <QUrl>
#include "core/song.h"
class Application;
class Thread;
2018-02-27 18:06:05 +01:00
class CollectionBackend;
class CollectionModel;
class CollectionWatcher;
2018-07-01 22:26:46 +02:00
class SCollection : public QObject {
2018-02-27 18:06:05 +01:00
Q_OBJECT
public:
2018-07-01 22:26:46 +02:00
SCollection(Application *app, QObject *parent);
~SCollection();
2018-02-27 18:06:05 +01:00
static const char *kSongsTable;
static const char *kDirsTable;
static const char *kSubdirsTable;
static const char *kFtsTable;
void Init();
void Exit();
2018-02-27 18:06:05 +01:00
CollectionBackend *backend() const { return backend_; }
CollectionModel *model() const { return model_; }
QString full_rescan_reason(int schema_version) const { return full_rescan_revisions_.value(schema_version, QString()); }
int Total_Albums = 0;
int total_songs_ = 0;
int Total_Artists = 0;
public slots:
void ReloadSettings();
void PauseWatcher();
void ResumeWatcher();
void FullScan();
2019-06-30 21:06:07 +02:00
void AbortScan();
void Rescan(const SongList &songs);
2018-02-27 18:06:05 +01:00
private slots:
void ExitReceived();
2018-02-27 18:06:05 +01:00
void IncrementalScan();
void CurrentSongChanged(const Song &song);
2019-04-19 14:02:28 +02:00
void SongsStatisticsChanged(const SongList& songs);
2018-02-27 18:06:05 +01:00
void Stopped();
signals:
void ExitFinished();
2018-02-27 18:06:05 +01:00
private:
Application *app_;
CollectionBackend *backend_;
CollectionModel *model_;
CollectionWatcher *watcher_;
Thread *watcher_thread_;
QThread *original_thread_;
2018-02-27 18:06:05 +01:00
// DB schema versions which should trigger a full collection rescan (each of those with a short reason why).
2018-02-27 18:06:05 +01:00
QHash<int, QString> full_rescan_revisions_;
QList<QObject*> wait_for_exit_;
2018-02-27 18:06:05 +01:00
};
#endif