/* * Strawberry Music Player * This file was part of Clementine. * Copyright 2010, David Sansome * * 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 . * */ #ifndef ALBUMCOVEREXPORTER_H #define ALBUMCOVEREXPORTER_H #include "config.h" #include #include #include #include "includes/shared_ptr.h" #include "albumcoverloaderoptions.h" #include "albumcoverexport.h" class QThreadPool; class Song; class CoverExportRunnable; class TagReaderClient; class AlbumCoverExporter : public QObject { Q_OBJECT public: explicit AlbumCoverExporter(const SharedPtr tagreader_client, QObject *parent = nullptr); void SetDialogResult(const AlbumCoverExport::DialogResult &dialog_result); void SetCoverTypes(const AlbumCoverLoaderOptions::Types &cover_types); void AddExportRequest(const Song &song); void StartExporting(); void Cancel(); int request_count() { return static_cast(requests_.size()); } Q_SIGNALS: void AlbumCoversExportUpdate(const int exported, const int skipped, const int all); private Q_SLOTS: void CoverExported(); void CoverSkipped(); private: void AddJobsToPool(); const SharedPtr tagreader_client_; AlbumCoverLoaderOptions::Types cover_types_; AlbumCoverExport::DialogResult dialog_result_; QQueue requests_; QThreadPool *thread_pool_; int exported_; int skipped_; int all_; }; #endif // ALBUMCOVEREXPORTER_H