Clementine-audio-player-Mac.../src/playlist/songloaderinserter.cpp

105 lines
3.0 KiB
C++
Raw Normal View History

/* This file is part of Clementine.
Copyright 2010, David Sansome <me@davidsansome.com>
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "playlist.h"
#include "songloaderinserter.h"
#include "core/songloader.h"
#include "core/taskmanager.h"
SongLoaderInserter::SongLoaderInserter(
TaskManager* task_manager, LibraryBackendInterface* library)
: task_manager_(task_manager),
destination_(NULL),
row_(-1),
play_now_(true),
enqueue_(false),
async_load_id_(0),
async_progress_(0),
library_(library) {
}
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;
connect(destination, SIGNAL(destroyed()), SLOT(DestinationDestroyed()));
foreach (const QUrl& url, urls) {
SongLoader* loader = new SongLoader(library_, this);
SongLoader::Result ret = loader->Load(url);
if (ret == SongLoader::WillLoadAsync) {
pending_.insert(loader);
connect(loader, SIGNAL(LoadFinished(bool)), SLOT(PendingLoadFinished(bool)));
continue;
}
if (ret == SongLoader::Success)
songs_ << loader->songs();
else
emit Error(tr("Error loading %1").arg(url.toString()));
delete loader;
}
if (pending_.isEmpty())
Finished();
else {
async_progress_ = 0;
async_load_id_ = task_manager_->StartTask(tr("Loading tracks"));
task_manager_->SetTaskProgress(async_load_id_, async_progress_, pending_.count());
}
}
void SongLoaderInserter::DestinationDestroyed() {
destination_ = NULL;
}
void SongLoaderInserter::PendingLoadFinished(bool success) {
SongLoader* loader = qobject_cast<SongLoader*>(sender());
if (!loader || !pending_.contains(loader))
return;
pending_.remove(loader);
if (success)
songs_ << loader->songs();
else
emit Error(tr("Error loading %1").arg(loader->url().toString()));
loader->deleteLater();
task_manager_->SetTaskProgress(async_load_id_, ++async_progress_);
if (pending_.isEmpty()) {
task_manager_->SetTaskFinished(async_load_id_);
Finished();
}
}
void SongLoaderInserter::Finished() {
if (destination_) {
destination_->InsertSongsOrLibraryItems(songs_, row_, play_now_, enqueue_);
}
deleteLater();
}