Implement offset to all Tidal requests

This commit is contained in:
Jonas Kvinge 2019-05-29 17:39:51 +02:00
parent 8b05af7ca3
commit 7609bc181e
2 changed files with 274 additions and 172 deletions

View File

@ -47,19 +47,19 @@ TidalRequest::TidalRequest(TidalService *service, TidalUrlHandler *url_handler,
url_handler_(url_handler), url_handler_(url_handler),
network_(network), network_(network),
type_(type), type_(type),
artist_query_(false),
search_id_(-1), search_id_(-1),
artist_albums_requested_(0), artists_total_(0),
artists_chunk_requested_(0),
artists_chunk_received_(0),
artists_received_(0),
artist_albums_chunk_requested_(0),
artist_albums_chunk_received_(0),
artist_albums_received_(0), artist_albums_received_(0),
album_songs_requested_(0),
album_songs_received_(0), album_songs_received_(0),
album_covers_requested_(0), album_covers_requested_(0),
album_covers_received_(0), album_covers_received_(0),
need_login_(false), need_login_(false),
no_match_(false) no_results_(false) {}
{
}
TidalRequest::~TidalRequest() { TidalRequest::~TidalRequest() {
@ -105,13 +105,13 @@ void TidalRequest::Process() {
GetSongs(); GetSongs();
break; break;
case QueryType::QueryType_SearchArtists: case QueryType::QueryType_SearchArtists:
SendArtistsSearch(); ArtistsSearch();
break; break;
case QueryType::QueryType_SearchAlbums: case QueryType::QueryType_SearchAlbums:
SendAlbumsSearch(); AlbumsSearch();
break; break;
case QueryType::QueryType_SearchSongs: case QueryType::QueryType_SearchSongs:
SendSongsSearch(); SongsSearch();
break; break;
default: default:
Error("Invalid query type."); Error("Invalid query type.");
@ -125,40 +125,40 @@ void TidalRequest::Search(const int search_id, const QString &search_text) {
search_text_ = search_text; search_text_ = search_text;
} }
void TidalRequest::GetArtists() { void TidalRequest::GetArtists(const int offset) {
emit UpdateStatus(tr("Retrieving artists...")); if (offset == 0) emit UpdateStatus(tr("Retrieving artists..."));
artist_query_ = true; ++artists_chunk_requested_;
ParamList parameters; ParamList parameters;
if (offset > 0) parameters << Param("offset", QString::number(offset));
QNetworkReply *reply = CreateRequest(QString("users/%1/favorites/artists").arg(service_->user_id()), parameters); QNetworkReply *reply = CreateRequest(QString("users/%1/favorites/artists").arg(service_->user_id()), parameters);
NewClosure(reply, SIGNAL(finished()), this, SLOT(ArtistsReceived(QNetworkReply*)), reply); NewClosure(reply, SIGNAL(finished()), this, SLOT(ArtistsReceived(QNetworkReply*, int, int)), reply, 0, offset);
} }
void TidalRequest::GetAlbums() { void TidalRequest::GetAlbums(const int offset) {
emit UpdateStatus(tr("Retrieving albums...")); if (offset == 0) emit UpdateStatus(tr("Retrieving albums..."));
type_ = QueryType_Albums;
if (!service_->authenticated()) { if (!service_->authenticated()) {
need_login_ = true; need_login_ = true;
return; return;
} }
++artist_albums_chunk_requested_;
ParamList parameters; ParamList parameters;
if (offset > 0) parameters << Param("offset", QString::number(offset));
QNetworkReply *reply = CreateRequest(QString("users/%1/favorites/albums").arg(service_->user_id()), parameters); QNetworkReply *reply = CreateRequest(QString("users/%1/favorites/albums").arg(service_->user_id()), parameters);
NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumsReceived(QNetworkReply*, int, int)), reply, 0, 0); NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumsReceived(QNetworkReply*, int, int, int)), reply, 0, 0, offset);
} }
void TidalRequest::GetSongs() { void TidalRequest::GetSongs(const int offset) {
emit UpdateStatus(tr("Retrieving songs...")); if (offset == 0) emit UpdateStatus(tr("Retrieving songs..."));
type_ = QueryType_Songs;
if (!service_->authenticated()) { if (!service_->authenticated()) {
need_login_ = true; need_login_ = true;
@ -166,83 +166,144 @@ void TidalRequest::GetSongs() {
} }
ParamList parameters; ParamList parameters;
if (offset > 0) parameters << Param("offset", QString::number(offset));
QNetworkReply *reply = CreateRequest(QString("users/%1/favorites/tracks").arg(service_->user_id()), parameters); QNetworkReply *reply = CreateRequest(QString("users/%1/favorites/tracks").arg(service_->user_id()), parameters);
NewClosure(reply, SIGNAL(finished()), this, SLOT(SongsReceived(QNetworkReply*, int)), reply, 0); NewClosure(reply, SIGNAL(finished()), this, SLOT(SongsReceived(QNetworkReply*, int, int)), reply, 0, offset);
} }
void TidalRequest::SendArtistsSearch() { void TidalRequest::ArtistsSearch(const int offset) {
if (!service_->authenticated()) { if (!service_->authenticated()) {
need_login_ = true; need_login_ = true;
return; return;
} }
artist_query_ = true; if (offset == 0) emit UpdateStatus(tr("Searching..."));
++artists_chunk_requested_;
int limit = service_->artistssearchlimit();
ParamList parameters; ParamList parameters;
parameters << Param("query", search_text_); parameters << Param("query", search_text_);
parameters << Param("limit", QString::number(service_->artistssearchlimit())); parameters << Param("limit", QString::number(limit));
if (offset > 0) parameters << Param("offset", QString::number(offset));
QNetworkReply *reply = CreateRequest("search/artists", parameters); QNetworkReply *reply = CreateRequest("search/artists", parameters);
NewClosure(reply, SIGNAL(finished()), this, SLOT(ArtistsReceived(QNetworkReply*)), reply); NewClosure(reply, SIGNAL(finished()), this, SLOT(ArtistsReceived(QNetworkReply*, int, int)), reply, limit, offset);
} }
void TidalRequest::SendAlbumsSearch() { void TidalRequest::AlbumsSearch(const int offset) {
if (!service_->authenticated()) { if (!service_->authenticated()) {
need_login_ = true; need_login_ = true;
return; return;
} }
if (offset == 0) emit UpdateStatus(tr("Searching..."));
++artist_albums_chunk_requested_;
int limit = service_->albumssearchlimit();
ParamList parameters; ParamList parameters;
parameters << Param("query", search_text_); parameters << Param("query", search_text_);
parameters << Param("limit", QString::number(service_->albumssearchlimit())); parameters << Param("limit", QString::number(limit));
if (offset > 0) parameters << Param("offset", QString::number(offset));
QNetworkReply *reply = CreateRequest("search/albums", parameters); QNetworkReply *reply = CreateRequest("search/albums", parameters);
NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumsReceived(QNetworkReply*, int, int)), reply, 0, 0); NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumsReceived(QNetworkReply*, int, int, int)), reply, 0, limit, offset);
} }
void TidalRequest::SendSongsSearch() { void TidalRequest::SongsSearch(const int offset) {
if (!service_->authenticated()) { if (!service_->authenticated()) {
need_login_ = true; need_login_ = true;
return; return;
} }
if (offset == 0) emit UpdateStatus(tr("Searching..."));
int limit = service_->songssearchlimit();
ParamList parameters; ParamList parameters;
parameters << Param("query", search_text_); parameters << Param("query", search_text_);
parameters << Param("limit", QString::number(service_->songssearchlimit())); parameters << Param("limit", QString::number(limit));
if (offset > 0) parameters << Param("offset", QString::number(offset));
QNetworkReply *reply = CreateRequest("search/tracks", parameters); QNetworkReply *reply = CreateRequest("search/tracks", parameters);
NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumsReceived(QNetworkReply*, int, int)), reply, 0, 0); NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumsReceived(QNetworkReply*, int, int, int)), reply, 0, limit, offset);
} }
void TidalRequest::ArtistsReceived(QNetworkReply *reply) { void TidalRequest::ArtistsReceived(QNetworkReply *reply, const int limit_requested, const int offset_requested) {
QString error; QString error;
QByteArray data = GetReplyData(reply, error, true); QByteArray data = GetReplyData(reply, error, (offset_requested == 0));
++artists_chunk_received_;
if (data.isEmpty()) { if (data.isEmpty()) {
artist_query_ = false; ArtistsFinishCheck();
CheckFinish();
return; return;
} }
QJsonObject json_obj = ExtractJsonObj(data, error);
if (json_obj.isEmpty()) {
ArtistsFinishCheck();
return;
}
if (!json_obj.contains("limit") ||
!json_obj.contains("offset") ||
!json_obj.contains("totalNumberOfItems") ||
!json_obj.contains("items")) {
ArtistsFinishCheck();
Error("Json object missing values.", json_obj);
return;
}
//int limit = json_obj["limit"].toInt();
int offset = json_obj["offset"].toInt();
int artists_total = json_obj["totalNumberOfItems"].toInt();
if (offset_requested == 0) {
artists_total_ = artists_total;
}
else if (artists_total != artists_total_) {
Error(QString("totalNumberOfItems returned does not match previous totalNumberOfItems! %1 != %2").arg(artists_total).arg(artists_total_));
ArtistsFinishCheck();
return;
}
if (offset != offset_requested) {
Error(QString("Offset returned does not match offset requested! %1 != %2").arg(offset).arg(offset_requested));
ArtistsFinishCheck();
return;
}
if (offset_requested == 0) {
emit ProgressSetMaximum(artists_total_);
emit UpdateProgress(artists_received_);
}
QJsonValue json_value = ExtractItems(data, error); QJsonValue json_value = ExtractItems(data, error);
if (!json_value.isArray()) { if (!json_value.isArray()) {
artist_query_ = false; ArtistsFinishCheck();
CheckFinish();
return;
}
QJsonArray json_items = json_value.toArray();
if (json_items.isEmpty()) { // Empty array means no match
artist_query_ = false;
no_match_ = true;
CheckFinish();
return; return;
} }
QJsonArray json_items = json_value.toArray();
if (json_items.isEmpty()) { // Empty array means no results
no_results_ = true;
ArtistsFinishCheck();
return;
}
int artists_received = 0;
for (const QJsonValue &value : json_items) { for (const QJsonValue &value : json_items) {
++artists_received;
if (!value.isObject()) { if (!value.isObject()) {
qLog(Error) << "Tidal: Invalid Json reply, item not a object."; qLog(Error) << "Tidal: Invalid Json reply, item not a object.";
qLog(Debug) << value; qLog(Debug) << value;
@ -267,94 +328,122 @@ void TidalRequest::ArtistsReceived(QNetworkReply *reply) {
} }
int artist_id = json_obj["id"].toInt(); int artist_id = json_obj["id"].toInt();
if (requests_artist_albums_.contains(artist_id)) continue; if (artist_albums_queue_.contains(artist_id)) continue;
requests_artist_albums_.append(artist_id); artist_albums_queue_.append(artist_id);
GetArtistAlbums(artist_id);
artist_albums_requested_++; }
artists_received_ += artists_received;
if (offset_requested != 0) emit UpdateProgress(artists_received_);
ArtistsFinishCheck(limit_requested, offset, artists_received);
}
void TidalRequest::ArtistsFinishCheck(const int limit, const int offset, const int artists_received) {
if ((limit == 0 || limit > artists_received) && artists_received_ < artists_total_) {
int offset_next = offset + artists_received;
if (offset_next > 0 && offset_next < artists_total_) {
if (IsQuery()) GetArtists(offset_next);
else ArtistsSearch(offset_next);
}
}
if (artists_chunk_received_ >= artists_chunk_requested_) { // Artist query is finished, get all albums for all artists.
// Get artist albums
for (int artist_id : artist_albums_queue_) {
GetArtistAlbums(artist_id);
}
artist_albums_queue_.clear();
if (artist_albums_requests_.count() > 0) {
if (artist_albums_requests_.count() == 1) emit UpdateStatus(tr("Retrieving albums for %1 artist...").arg(artist_albums_requests_.count()));
else emit UpdateStatus(tr("Retrieving albums for %1 artists...").arg(artist_albums_requests_.count()));
emit ProgressSetMaximum(artist_albums_requests_.count());
emit UpdateProgress(0);
}
} }
if (artist_albums_requested_ > 0) { FinishCheck();
if (artist_albums_requested_ == 1) emit UpdateStatus(tr("Retrieving albums for %1 artist...").arg(artist_albums_requested_));
else emit UpdateStatus(tr("Retrieving albums for %1 artists...").arg(artist_albums_requested_));
emit ProgressSetMaximum(artist_albums_requested_);
emit UpdateProgress(0);
}
else {
artist_query_ = false;
}
CheckFinish();
} }
void TidalRequest::GetArtistAlbums(const int artist_id, const int offset) { void TidalRequest::GetArtistAlbums(const int artist_id, const int offset) {
if (offset == 0) artist_albums_requests_.append(artist_id);
++artist_albums_chunk_requested_;
ParamList parameters; ParamList parameters;
if (offset > 0) parameters << Param("offset", QString::number(offset)); if (offset > 0) parameters << Param("offset", QString::number(offset));
QNetworkReply *reply = CreateRequest(QString("artists/%1/albums").arg(artist_id), parameters); QNetworkReply *reply = CreateRequest(QString("artists/%1/albums").arg(artist_id), parameters);
NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumsReceived(QNetworkReply*, int, int)), reply, artist_id, offset); NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumsReceived(QNetworkReply*, int, int, int)), reply, artist_id, 0, offset);
} }
void TidalRequest::AlbumsReceived(QNetworkReply *reply, const int artist_id, const int offset_requested) { void TidalRequest::AlbumsReceived(QNetworkReply *reply, const int artist_id, const int limit_requested, const int offset_requested) {
QString error; QString error;
QByteArray data = GetReplyData(reply, error, (artist_id == 0)); QByteArray data = GetReplyData(reply, error, (artist_id == 0));
if (artist_query_) { ++artist_albums_chunk_received_;
if (!requests_artist_albums_.contains(artist_id)) return;
artist_albums_received_++; if (artist_id != 0) {
if (!artist_albums_requests_.contains(artist_id)) return;
++artist_albums_received_;
emit UpdateProgress(artist_albums_received_); emit UpdateProgress(artist_albums_received_);
} }
if (data.isEmpty()) { if (data.isEmpty()) {
AlbumsFinished(artist_id, offset_requested); AlbumsFinishCheck(artist_id);
return; return;
} }
QJsonObject json_obj = ExtractJsonObj(data, error); QJsonObject json_obj = ExtractJsonObj(data, error);
if (json_obj.isEmpty()) { if (json_obj.isEmpty()) {
AlbumsFinished(artist_id, offset_requested); AlbumsFinishCheck(artist_id);
return; return;
} }
int limit = 0; if (!json_obj.contains("limit") ||
int total_albums = 0; !json_obj.contains("offset") ||
if (artist_query_) { // This was a list of albums by artist !json_obj.contains("totalNumberOfItems") ||
if (!json_obj.contains("limit") || !json_obj.contains("items")) {
!json_obj.contains("offset") || Error("Json object missing values.", json_obj);
!json_obj.contains("totalNumberOfItems") || AlbumsFinishCheck(artist_id);
!json_obj.contains("items")) { return;
AlbumsFinished(artist_id, offset_requested); }
Error("Json object missing values.", json_obj);
return; //int limit = json_obj["limit"].toInt();
} int offset = json_obj["offset"].toInt();
limit = json_obj["limit"].toInt(); int albums_total = json_obj["totalNumberOfItems"].toInt();
int offset = json_obj["offset"].toInt();
total_albums = json_obj["totalNumberOfItems"].toInt(); if (offset != offset_requested) {
if (offset != offset_requested) { Error(QString("Offset returned does not match offset requested! %1 != %2").arg(offset).arg(offset_requested));
AlbumsFinished(artist_id, offset_requested, total_albums, limit); AlbumsFinishCheck(artist_id);
Error(QString("Offset returned does not match offset requested! %1 != %2").arg(offset).arg(offset_requested)); return;
return;
}
} }
QJsonValue json_value = ExtractItems(json_obj, error); QJsonValue json_value = ExtractItems(json_obj, error);
if (!json_value.isArray()) { if (!json_value.isArray()) {
AlbumsFinished(artist_id, offset_requested, total_albums, limit); AlbumsFinishCheck(artist_id);
return; return;
} }
QJsonArray json_items = json_value.toArray(); QJsonArray json_items = json_value.toArray();
if (json_items.isEmpty()) { if (json_items.isEmpty()) {
if (!artist_query_) no_match_ = true; no_results_ = true;
AlbumsFinished(artist_id, offset_requested, total_albums, limit); AlbumsFinishCheck(artist_id);
return; return;
} }
int albums = 0; int albums_received = 0;
for (const QJsonValue &value : json_items) { for (const QJsonValue &value : json_items) {
++albums;
++albums_received;
if (!value.isObject()) { if (!value.isObject()) {
qLog(Error) << "Tidal: Invalid Json reply, item not a object."; qLog(Error) << "Tidal: Invalid Json reply, item not a object.";
qLog(Debug) << value; qLog(Debug) << value;
@ -412,7 +501,7 @@ void TidalRequest::AlbumsReceived(QNetworkReply *reply, const int artist_id, con
continue; continue;
} }
if (requests_album_songs_.contains(album_id)) continue; if (album_songs_requests_.contains(album_id)) continue;
if (!json_obj.contains("artist") || !json_obj.contains("title") || !json_obj.contains("audioQuality")) { if (!json_obj.contains("artist") || !json_obj.contains("title") || !json_obj.contains("audioQuality")) {
qLog(Error) << "Tidal: Invalid Json reply, item missing artist, title or audioQuality."; qLog(Error) << "Tidal: Invalid Json reply, item missing artist, title or audioQuality.";
@ -438,48 +527,51 @@ void TidalRequest::AlbumsReceived(QNetworkReply *reply, const int artist_id, con
//qLog(Debug) << "Tidal:" << artist << album << quality << copyright; //qLog(Debug) << "Tidal:" << artist << album << quality << copyright;
requests_album_songs_.insert(album_id, artist); album_songs_requests_.insert(album_id, artist);
album_songs_requested_++;
} }
AlbumsFinished(artist_id, offset_requested, total_albums, limit, albums); AlbumsFinishCheck(artist_id, limit_requested, offset, albums_total, albums_received);
} }
void TidalRequest::AlbumsFinished(const int artist_id, const int offset_requested, const int total_albums, const int limit, const int albums) { void TidalRequest::AlbumsFinishCheck(const int artist_id, const int limit, const int offset, const int albums_total, const int albums_received) {
if (artist_query_) { // This is a artist search. if (limit == 0 || limit > albums_received) {
if (albums > limit) { int offset_next = offset + albums_received;
Error("Albums returned does not match limit returned!"); if (offset_next > 0 && offset_next < albums_total) {
} if (type_ == QueryType_Albums) {
int offset_next = offset_requested + albums; GetAlbums(offset_next);
if (offset_next < total_albums) { }
GetArtistAlbums(artist_id, offset_next); else if (type_ == QueryType_SearchAlbums) {
artist_albums_requested_++; AlbumsSearch(offset_next);
} }
else if (artist_albums_received_ >= artist_albums_requested_) { // Artist search is finished. else if (type_ == QueryType_SearchSongs) {
artist_query_ = false; SongsSearch(offset_next);
}
else {
GetArtistAlbums(artist_id, offset_next);
}
} }
} }
if (!artist_query_) { if (artist_albums_chunk_received_ >= artist_albums_chunk_requested_) {
// Get songs for the albums. // Get songs for the albums.
QHashIterator<int, QString> i(requests_album_songs_); QHashIterator<int, QString> i(album_songs_requests_);
while (i.hasNext()) { while (i.hasNext()) {
i.next(); i.next();
GetAlbumSongs(i.key()); GetAlbumSongs(i.key());
} }
if (album_songs_requested_ > 0) { if (album_songs_requests_.count() > 0) {
if (album_songs_requested_ == 1) emit UpdateStatus(tr("Retrieving songs for %1 album...").arg(album_songs_requested_)); if (album_songs_requests_.count() == 1) emit UpdateStatus(tr("Retrieving songs for %1 album...").arg(album_songs_requests_.count()));
else emit UpdateStatus(tr("Retrieving songs for %1 albums...").arg(album_songs_requested_)); else emit UpdateStatus(tr("Retrieving songs for %1 albums...").arg(album_songs_requests_.count()));
emit ProgressSetMaximum(album_songs_requested_); emit ProgressSetMaximum(album_songs_requests_.count());
emit UpdateProgress(0); emit UpdateProgress(0);
} }
} }
CheckFinish(); FinishCheck();
} }
@ -498,30 +590,28 @@ void TidalRequest::SongsReceived(QNetworkReply *reply, const int album_id) {
QString album_artist; QString album_artist;
if (album_id != 0) { if (album_id != 0) {
if (!requests_album_songs_.contains(album_id)) return; if (!album_songs_requests_.contains(album_id)) return;
album_artist = requests_album_songs_[album_id]; album_artist = album_songs_requests_[album_id];
} }
album_songs_received_++; ++album_songs_received_;
if (!artist_query_) { emit UpdateProgress(album_songs_received_);
emit UpdateProgress(album_songs_received_);
}
if (data.isEmpty()) { if (data.isEmpty()) {
CheckFinish(); FinishCheck();
return; return;
} }
QJsonValue json_value = ExtractItems(data, error); QJsonValue json_value = ExtractItems(data, error);
if (!json_value.isArray()) { if (!json_value.isArray()) {
CheckFinish(); FinishCheck();
return; return;
} }
QJsonArray json_items = json_value.toArray(); QJsonArray json_items = json_value.toArray();
if (json_items.isEmpty()) { if (json_items.isEmpty()) {
no_match_ = true; no_results_ = true;
CheckFinish(); FinishCheck();
return; return;
} }
@ -544,14 +634,18 @@ void TidalRequest::SongsReceived(QNetworkReply *reply, const int album_id) {
song.set_album(album_full); song.set_album(album_full);
} }
songs_ << song; songs_ << song;
} }
if (service_->cache_album_covers() && artist_albums_requested_ <= artist_albums_received_ && album_songs_requested_ <= album_songs_received_) { if (
service_->cache_album_covers() &&
artists_total_ <= artists_received_ &&
artist_albums_requests_.count() <= artist_albums_received_ &&
album_songs_requests_.count() <= album_songs_received_
) {
GetAlbumCovers(); GetAlbumCovers();
} }
CheckFinish(); FinishCheck();
} }
@ -700,52 +794,52 @@ void TidalRequest::GetAlbumCovers() {
void TidalRequest::GetAlbumCover(Song &song) { void TidalRequest::GetAlbumCover(Song &song) {
if (requests_album_covers_.contains(song.album_id())) { if (album_covers_requests_.contains(song.album_id())) {
requests_album_covers_.insertMulti(song.album_id(), &song); album_covers_requests_.insertMulti(song.album_id(), &song);
return; return;
} }
album_covers_requested_++; album_covers_requests_.insertMulti(song.album_id(), &song);
requests_album_covers_.insertMulti(song.album_id(), &song); ++album_covers_requested_;
QUrl url(song.art_automatic()); QUrl url(song.art_automatic());
QNetworkRequest req(url); QNetworkRequest req(url);
QNetworkReply *reply = network_->get(req); QNetworkReply *reply = network_->get(req);
NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumCoverReceived(QNetworkReply*, int, QUrl)), reply, song.album_id(), url);
replies_ << reply; replies_ << reply;
NewClosure(reply, SIGNAL(finished()), this, SLOT(AlbumCoverReceived(QNetworkReply*, int, QUrl)), reply, song.album_id(), url);
} }
void TidalRequest::AlbumCoverReceived(QNetworkReply *reply, int album_id, QUrl url) { void TidalRequest::AlbumCoverReceived(QNetworkReply *reply, const int album_id, const QUrl url) {
if (replies_.contains(reply)) { if (replies_.contains(reply)) {
replies_.removeAll(reply); replies_.removeAll(reply);
reply->deleteLater(); reply->deleteLater();
} }
else { else {
CheckFinish(); FinishCheck();
return; return;
} }
if (!requests_album_covers_.contains(album_id)) { if (!album_covers_requests_.contains(album_id)) {
CheckFinish(); FinishCheck();
return; return;
} }
album_covers_received_++; ++album_covers_received_;
emit UpdateProgress(album_covers_received_); emit UpdateProgress(album_covers_received_);
QString error; QString error;
if (reply->error() != QNetworkReply::NoError) { if (reply->error() != QNetworkReply::NoError) {
error = Error(QString("%1 (%2)").arg(reply->errorString()).arg(reply->error())); error = Error(QString("%1 (%2)").arg(reply->errorString()).arg(reply->error()));
requests_album_covers_.remove(album_id); album_covers_requests_.remove(album_id);
return; return;
} }
QByteArray data = reply->readAll(); QByteArray data = reply->readAll();
if (data.isEmpty()) { if (data.isEmpty()) {
error = Error(QString("Received empty image data for %1").arg(url.toString())); error = Error(QString("Received empty image data for %1").arg(url.toString()));
requests_album_covers_.remove(album_id); album_covers_requests_.remove(album_id);
return; return;
} }
@ -756,8 +850,8 @@ void TidalRequest::AlbumCoverReceived(QNetworkReply *reply, int album_id, QUrl u
if (dir.mkpath(service_->CoverCacheDir())) { if (dir.mkpath(service_->CoverCacheDir())) {
QString filename(service_->CoverCacheDir() + "/" + QString::number(album_id) + "-" + url.fileName()); QString filename(service_->CoverCacheDir() + "/" + QString::number(album_id) + "-" + url.fileName());
if (image.save(filename, "JPG")) { if (image.save(filename, "JPG")) {
while (requests_album_covers_.contains(album_id)) { while (album_covers_requests_.contains(album_id)) {
Song *song = requests_album_covers_.take(album_id); Song *song = album_covers_requests_.take(album_id);
song->set_art_automatic(filename); song->set_art_automatic(filename);
} }
} }
@ -768,26 +862,28 @@ void TidalRequest::AlbumCoverReceived(QNetworkReply *reply, int album_id, QUrl u
error = Error(QString("Error decoding image data from %1").arg(url.toString())); error = Error(QString("Error decoding image data from %1").arg(url.toString()));
} }
CheckFinish(); FinishCheck();
} }
void TidalRequest::CheckFinish() { void TidalRequest::FinishCheck() {
if (!need_login_ && if (
!artist_query_ && !need_login_ &&
artist_albums_requested_ <= artist_albums_received_ && artists_chunk_requested_ <= artists_chunk_received_ &&
album_songs_requested_ <= album_songs_received_ && artist_albums_chunk_requested_ <= artist_albums_chunk_received_ &&
artist_albums_requests_.count() <= artist_albums_received_ &&
album_songs_requests_.count() <= album_songs_received_ &&
album_covers_requested_ <= album_covers_received_ album_covers_requested_ <= album_covers_received_
) { ) {
if (songs_.isEmpty()) { if (songs_.isEmpty()) {
if (IsSearch()) { if (IsSearch()) {
if (no_match_) emit ErrorSignal(search_id_, tr("No match")); if (no_results_) emit ErrorSignal(search_id_, tr("No match"));
else if (errors_.isEmpty()) emit ErrorSignal(search_id_, tr("Unknown error")); else if (errors_.isEmpty()) emit ErrorSignal(search_id_, tr("Unknown error"));
else emit ErrorSignal(search_id_, errors_); else emit ErrorSignal(search_id_, errors_);
} }
else { else {
if (no_match_) emit Results(songs_); if (no_results_) emit Results(songs_);
else if (errors_.isEmpty()) emit ErrorSignal(tr("Unknown error")); else if (errors_.isEmpty()) emit ErrorSignal(tr("Unknown error"));
else emit ErrorSignal(errors_); else emit ErrorSignal(errors_);
} }
@ -814,7 +910,7 @@ QString TidalRequest::Error(QString error, QVariant debug) {
errors_ += error; errors_ += error;
errors_ += "<br />"; errors_ += "<br />";
} }
CheckFinish(); FinishCheck();
return error; return error;

View File

@ -56,9 +56,6 @@ class TidalRequest : public TidalBaseRequest {
void Process(); void Process();
void NeedLogin() { need_login_ = true; } void NeedLogin() { need_login_ = true; }
void Search(const int search_id, const QString &search_text); void Search(const int search_id, const QString &search_text);
void SendArtistsSearch();
void SendAlbumsSearch();
void SendSongsSearch();
signals: signals:
void Login(); void Login();
@ -75,31 +72,36 @@ class TidalRequest : public TidalBaseRequest {
void StreamURLFinished(const QUrl original_url, const QUrl url, const Song::FileType, QString error = QString()); void StreamURLFinished(const QUrl original_url, const QUrl url, const Song::FileType, QString error = QString());
public slots: public slots:
void GetArtists(); void GetArtists(const int offset = 0);
void GetAlbums(); void GetAlbums(const int offset = 0);
void GetSongs(); void GetSongs(const int offset = 0);
private slots: private slots:
void LoginComplete(bool success, QString error = QString()); void LoginComplete(bool success, QString error = QString());
void ArtistsReceived(QNetworkReply *reply); void ArtistsReceived(QNetworkReply *reply, const int limit_requested = 0, const int offset_requested = 0);
void AlbumsReceived(QNetworkReply *reply, const int artist_id, const int offset_requested = 0); void AlbumsReceived(QNetworkReply *reply, const int artist_id = 0, const int limit_requested = 0, const int offset_requested = 0);
void AlbumsFinished(const int artist_id, const int offset_requested, const int total_albums = 0, const int limit = 0, const int albums = 0); void SongsReceived(QNetworkReply *reply, const int album_id);
void SongsReceived(QNetworkReply *reply, int album_id); void AlbumCoverReceived(QNetworkReply *reply, const int album_id, const QUrl url);
void AlbumCoverReceived(QNetworkReply *reply, int album_id, QUrl url);
private: private:
typedef QPair<QString, QString> Param; typedef QPair<QString, QString> Param;
typedef QList<Param> ParamList; typedef QList<Param> ParamList;
const bool IsQuery() { return (type_ == QueryType_Artists || type_ == QueryType_Albums || type_ == QueryType_Songs); }
const bool IsSearch() { return (type_ == QueryType_SearchArtists || type_ == QueryType_SearchAlbums || type_ == QueryType_SearchSongs); } const bool IsSearch() { return (type_ == QueryType_SearchArtists || type_ == QueryType_SearchAlbums || type_ == QueryType_SearchSongs); }
void SendSearch(); void SendSearch();
void ArtistsSearch(const int offset = 0);
void AlbumsSearch(const int offset = 0);
void SongsSearch(const int offset = 0);
void ArtistsFinishCheck(const int limit = 0, const int offset = 0, const int artists_received = 0);
void AlbumsFinishCheck(const int artist_id, const int limit = 0, const int offset = 0, const int albums_total = 0, const int albums_received = 0);
void GetArtistAlbums(const int artist_id, const int offset = 0); void GetArtistAlbums(const int artist_id, const int offset = 0);
void GetAlbumSongs(const int album_id); void GetAlbumSongs(const int album_id);
void GetSongs(const int album_id);
int ParseSong(Song &song, const int album_id_requested, const QJsonValue &value, QString album_artist = QString()); int ParseSong(Song &song, const int album_id_requested, const QJsonValue &value, QString album_artist = QString());
void GetAlbumCovers(); void GetAlbumCovers();
void GetAlbumCover(Song &song); void GetAlbumCover(Song &song);
void CheckFinish(); void FinishCheck();
QString LoginError(QString error, QVariant debug = QVariant()); QString LoginError(QString error, QVariant debug = QVariant());
QString Error(QString error, QVariant debug = QVariant()); QString Error(QString error, QVariant debug = QVariant());
@ -110,23 +112,27 @@ class TidalRequest : public TidalBaseRequest {
NetworkAccessManager *network_; NetworkAccessManager *network_;
QueryType type_; QueryType type_;
bool artist_query_;
int search_id_; int search_id_;
QString search_text_; QString search_text_;
QList<int> requests_artist_albums_; QList<int> artist_albums_queue_;
QHash<int, QString> requests_album_songs_; QList<int> artist_albums_requests_;
QMultiMap<int, Song*> requests_album_covers_; QHash<int, QString> album_songs_requests_;
int artist_albums_requested_; QMultiMap<int, Song*> album_covers_requests_;
int artists_total_;
int artists_chunk_requested_;
int artists_chunk_received_;
int artists_received_;
int artist_albums_chunk_requested_;
int artist_albums_chunk_received_;
int artist_albums_received_; int artist_albums_received_;
int album_songs_requested_;
int album_songs_received_; int album_songs_received_;
int album_covers_requested_; int album_covers_requested_;
int album_covers_received_; int album_covers_received_;
SongList songs_; SongList songs_;
QString errors_; QString errors_;
bool need_login_; bool need_login_;
bool no_match_; bool no_results_;
QList<QNetworkReply*> replies_; QList<QNetworkReply*> replies_;
}; };