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 2019-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 TAGFETCHER_H
|
|
|
|
#define TAGFETCHER_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <QObject>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QFutureWatcher>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
|
2023-07-21 05:55:24 +02:00
|
|
|
#include "core/shared_ptr.h"
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "core/song.h"
|
|
|
|
#include "musicbrainzclient.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2023-04-21 20:20:53 +02:00
|
|
|
class NetworkAccessManager;
|
2018-02-27 18:06:05 +01:00
|
|
|
class AcoustidClient;
|
|
|
|
|
|
|
|
class TagFetcher : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
// High level interface to Fingerprinter, AcoustidClient and MusicBrainzClient.
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
public:
|
2023-07-21 05:55:24 +02:00
|
|
|
explicit TagFetcher(SharedPtr<NetworkAccessManager> network, QObject *parent = nullptr);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
void StartFetch(const SongList &songs);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void Cancel();
|
|
|
|
|
2019-06-29 19:57:20 +02:00
|
|
|
signals:
|
2023-04-09 20:23:42 +02:00
|
|
|
void Progress(const Song &original_song, const QString &stage);
|
|
|
|
void ResultAvailable(const Song &original_song, const SongList &songs_guessed, const QString &error = QString());
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
private slots:
|
2019-06-29 19:57:20 +02:00
|
|
|
void FingerprintFound(const int index);
|
|
|
|
void PuidsFound(const int index, const QStringList &puid_list, const QString &error = QString());
|
|
|
|
void TagsFetched(const int index, const MusicBrainzClient::ResultList &results, const QString &error = QString());
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
static QString GetFingerprint(const Song &song);
|
|
|
|
|
|
|
|
QFutureWatcher<QString> *fingerprint_watcher_;
|
|
|
|
AcoustidClient *acoustid_client_;
|
|
|
|
MusicBrainzClient *musicbrainz_client_;
|
|
|
|
|
|
|
|
SongList songs_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TAGFETCHER_H
|