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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <QtConcurrentRun>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QtAlgorithms>
|
|
|
|
#include <QList>
|
|
|
|
#include <QUrl>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "core/closure.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
#include "core/logging.h"
|
|
|
|
#include "core/songloader.h"
|
|
|
|
#include "core/taskmanager.h"
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "playlist.h"
|
|
|
|
#include "songloaderinserter.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
SongLoaderInserter::SongLoaderInserter(TaskManager *task_manager, CollectionBackendInterface *collection, const Player *player)
|
|
|
|
: task_manager_(task_manager),
|
|
|
|
destination_(nullptr),
|
|
|
|
row_(-1),
|
|
|
|
play_now_(true),
|
|
|
|
enqueue_(false),
|
|
|
|
collection_(collection),
|
|
|
|
player_(player) {}
|
|
|
|
|
|
|
|
SongLoaderInserter::~SongLoaderInserter() { qDeleteAll(pending_); }
|
|
|
|
|
|
|
|
void SongLoaderInserter::Load(Playlist *destination, int row, bool play_now, bool enqueue, const QList<QUrl> &urls) {
|
|
|
|
|
|
|
|
destination_ = destination;
|
|
|
|
row_ = row;
|
|
|
|
play_now_ = play_now;
|
|
|
|
enqueue_ = enqueue;
|
|
|
|
|
|
|
|
connect(destination, SIGNAL(destroyed()), SLOT(DestinationDestroyed()));
|
|
|
|
connect(this, SIGNAL(PreloadFinished()), SLOT(InsertSongs()));
|
|
|
|
connect(this, SIGNAL(EffectiveLoadFinished(const SongList&)), destination, SLOT(UpdateItems(const SongList&)));
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
for (const QUrl &url : urls) {
|
2018-02-27 18:06:05 +01:00
|
|
|
SongLoader *loader = new SongLoader(collection_, player_, this);
|
|
|
|
|
|
|
|
SongLoader::Result ret = loader->Load(url);
|
|
|
|
|
|
|
|
if (ret == SongLoader::BlockingLoadRequired) {
|
|
|
|
pending_.append(loader);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == SongLoader::Success)
|
|
|
|
songs_ << loader->songs();
|
|
|
|
else
|
|
|
|
emit Error(tr("Error loading %1").arg(url.toString()));
|
|
|
|
delete loader;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pending_.isEmpty()) {
|
|
|
|
InsertSongs();
|
|
|
|
deleteLater();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
QtConcurrent::run(this, &SongLoaderInserter::AsyncLoad);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load audio CD tracks:
|
|
|
|
// First, we add tracks (without metadata) into the playlist
|
|
|
|
// In the meantime, MusicBrainz will be queried to get songs' metadata.
|
|
|
|
// AudioCDTagsLoaded will be called next, and playlist's items will be updated.
|
|
|
|
void SongLoaderInserter::LoadAudioCD(Playlist *destination, int row, bool play_now, bool enqueue) {
|
|
|
|
|
|
|
|
destination_ = destination;
|
|
|
|
row_ = row;
|
|
|
|
play_now_ = play_now;
|
|
|
|
enqueue_ = enqueue;
|
|
|
|
|
|
|
|
SongLoader *loader = new SongLoader(collection_, player_, this);
|
|
|
|
NewClosure(loader, SIGNAL(AudioCDTracksLoaded()), this, SLOT(AudioCDTracksLoaded(SongLoader*)), loader);
|
|
|
|
connect(loader, SIGNAL(LoadAudioCDFinished(bool)), SLOT(AudioCDTagsLoaded(bool)));
|
|
|
|
qLog(Info) << "Loading audio CD...";
|
|
|
|
SongLoader::Result ret = loader->LoadAudioCD();
|
|
|
|
if (ret == SongLoader::Error) {
|
|
|
|
emit Error(tr("Error while loading audio CD"));
|
|
|
|
delete loader;
|
|
|
|
}
|
|
|
|
// Songs will be loaded later: see AudioCDTracksLoaded and AudioCDTagsLoaded slots
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SongLoaderInserter::DestinationDestroyed() { destination_ = nullptr; }
|
|
|
|
|
|
|
|
void SongLoaderInserter::AudioCDTracksLoaded(SongLoader *loader) {
|
|
|
|
songs_ = loader->songs();
|
|
|
|
InsertSongs();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SongLoaderInserter::AudioCDTagsLoaded(bool success) {
|
|
|
|
|
|
|
|
SongLoader *loader = qobject_cast<SongLoader*>(sender());
|
|
|
|
if (!loader || !destination_) return;
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
destination_->UpdateItems(loader->songs());
|
|
|
|
else
|
|
|
|
qLog(Error) << "Error while getting audio CD metadata from MusicBrainz";
|
|
|
|
|
|
|
|
deleteLater();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SongLoaderInserter::InsertSongs() {
|
2018-05-01 00:41:33 +02:00
|
|
|
// Insert songs (that haven't been completely loaded) to allow user to see and play them while not loaded completely
|
2018-02-27 18:06:05 +01:00
|
|
|
if (destination_) {
|
|
|
|
destination_->InsertSongsOrCollectionItems(songs_, row_, play_now_, enqueue_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SongLoaderInserter::AsyncLoad() {
|
|
|
|
|
|
|
|
// First, quick load raw songs.
|
|
|
|
int async_progress = 0;
|
|
|
|
int async_load_id = task_manager_->StartTask(tr("Loading tracks"));
|
2018-03-10 13:02:56 +01:00
|
|
|
task_manager_->SetTaskProgress(async_load_id, async_progress, pending_.count());
|
2018-02-27 18:06:05 +01:00
|
|
|
for (int i = 0; i < pending_.count(); ++i) {
|
|
|
|
SongLoader *loader = pending_[i];
|
|
|
|
loader->LoadFilenamesBlocking();
|
|
|
|
task_manager_->SetTaskProgress(async_load_id, ++async_progress);
|
|
|
|
if (i == 0) {
|
2018-05-01 00:41:33 +02:00
|
|
|
// Load everything from the first song.
|
|
|
|
// It'll start playing as soon as we emit PreloadFinished, so it needs to have the duration set to show properly in the UI.
|
2018-02-27 18:06:05 +01:00
|
|
|
loader->LoadMetadataBlocking();
|
|
|
|
}
|
|
|
|
songs_ << loader->songs();
|
|
|
|
}
|
|
|
|
task_manager_->SetTaskFinished(async_load_id);
|
|
|
|
emit PreloadFinished();
|
|
|
|
|
|
|
|
// Songs are inserted in playlist, now load them completely.
|
|
|
|
async_progress = 0;
|
|
|
|
async_load_id = task_manager_->StartTask(tr("Loading tracks info"));
|
|
|
|
task_manager_->SetTaskProgress(async_load_id, async_progress, songs_.count());
|
|
|
|
SongList songs;
|
|
|
|
for (int i = 0; i < pending_.count(); ++i) {
|
|
|
|
SongLoader *loader = pending_[i];
|
|
|
|
if (i != 0) {
|
|
|
|
// We already did this earlier for the first song.
|
|
|
|
loader->LoadMetadataBlocking();
|
|
|
|
}
|
|
|
|
songs << loader->songs();
|
|
|
|
task_manager_->SetTaskProgress(async_load_id, songs.count());
|
|
|
|
}
|
|
|
|
task_manager_->SetTaskFinished(async_load_id);
|
|
|
|
|
|
|
|
// Replace the partially-loaded items by the new ones, fully loaded.
|
|
|
|
emit EffectiveLoadFinished(songs);
|
|
|
|
|
|
|
|
deleteLater();
|
|
|
|
|
|
|
|
}
|
|
|
|
|