2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
*
|
|
|
|
* 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 ALBUMCOVEREXPORTER_H
|
|
|
|
#define ALBUMCOVEREXPORTER_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QQueue>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "albumcoverexport.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-02-09 02:29:35 +01:00
|
|
|
class QThreadPool;
|
2018-05-01 00:41:33 +02:00
|
|
|
class Song;
|
|
|
|
class CoverExportRunnable;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
class AlbumCoverExporter : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit AlbumCoverExporter(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
static const int kMaxConcurrentRequests;
|
|
|
|
|
|
|
|
void SetDialogResult(const AlbumCoverExport::DialogResult &dialog_result);
|
2021-06-20 19:04:08 +02:00
|
|
|
void AddExportRequest(const Song &song);
|
2018-02-27 18:06:05 +01:00
|
|
|
void StartExporting();
|
|
|
|
void Cancel();
|
|
|
|
|
|
|
|
int request_count() { return requests_.size(); }
|
|
|
|
|
2021-01-26 16:48:04 +01:00
|
|
|
signals:
|
2018-02-27 18:06:05 +01:00
|
|
|
void AlbumCoversExportUpdate(int exported, int skipped, int all);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void CoverExported();
|
|
|
|
void CoverSkipped();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void AddJobsToPool();
|
|
|
|
AlbumCoverExport::DialogResult dialog_result_;
|
|
|
|
|
|
|
|
QQueue<CoverExportRunnable*> requests_;
|
|
|
|
QThreadPool *thread_pool_;
|
|
|
|
|
|
|
|
int exported_;
|
|
|
|
int skipped_;
|
|
|
|
int all_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ALBUMCOVEREXPORTER_H
|
|
|
|
|