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

107 lines
2.7 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>
2021-03-20 21:14:47 +01:00
* Copyright 2018-2021, 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>
2020-02-08 03:40:30 +01:00
#include <QList>
#include <QHash>
#include <QString>
2018-02-27 18:06:05 +01:00
#include "core/shared_ptr.h"
2018-02-27 18:06:05 +01:00
#include "core/song.h"
2020-02-08 03:40:30 +01:00
class QThread;
2018-02-27 18:06:05 +01:00
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:
explicit SCollection(Application *app, QObject *parent = nullptr);
2020-06-15 21:55:05 +02:00
~SCollection() override;
2018-02-27 18:06:05 +01:00
static const char *kSongsTable;
static const char *kFtsTable;
2018-02-27 18:06:05 +01:00
static const char *kDirsTable;
static const char *kSubdirsTable;
void Init();
void Exit();
2018-02-27 18:06:05 +01:00
SharedPtr<CollectionBackend> backend() const { return backend_; }
2018-02-27 18:06:05 +01:00
CollectionModel *model() const { return model_; }
QString full_rescan_reason(int schema_version) const { return full_rescan_revisions_.value(schema_version, QString()); }
void SyncPlaycountAndRatingToFilesAsync();
private:
void SyncPlaycountAndRatingToFiles();
2018-02-27 18:06:05 +01:00
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
void IncrementalScan();
2021-01-26 16:48:04 +01:00
private slots:
void ExitReceived();
void SongsPlaycountChanged(const SongList &songs, const bool save_tags = false);
void SongsRatingChanged(const SongList &songs, const bool save_tags = false);
2018-02-27 18:06:05 +01:00
signals:
void Error(const QString &error);
void ExitFinished();
2018-02-27 18:06:05 +01:00
private:
Application *app_;
SharedPtr<CollectionBackend> backend_;
2018-02-27 18:06:05 +01:00
CollectionModel *model_;
CollectionWatcher *watcher_;
2018-02-27 18:06:05 +01:00
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_;
bool save_playcounts_to_files_;
bool save_ratings_to_files_;
2018-02-27 18:06:05 +01:00
};
#endif