mpd/src/db/update/UpdateRemove.cxx

98 lines
2.4 KiB
C++
Raw Normal View History

/*
2014-01-13 22:30:36 +01:00
* Copyright (C) 2003-2014 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h" /* must be first for large file support */
2013-01-02 19:22:15 +01:00
#include "UpdateRemove.hxx"
#include "UpdateDomain.hxx"
2013-01-09 23:12:53 +01:00
#include "GlobalEvents.hxx"
#include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
2014-01-24 16:18:50 +01:00
#include "db/Song.hxx"
#include "db/LightSong.hxx"
2012-09-28 00:40:00 +02:00
#include "Main.hxx"
#include "Instance.hxx"
#include "Log.hxx"
#ifdef ENABLE_SQLITE
2014-01-24 16:15:41 +01:00
#include "sticker/StickerDatabase.hxx"
#include "sticker/SongSticker.hxx"
#endif
#include <assert.h>
2013-07-28 13:25:12 +02:00
static const Song *removed_song;
static Mutex remove_mutex;
static Cond remove_cond;
/**
* Safely remove a song from the database. This must be done in the
* main task, to be sure that there is no pointer left to it.
*/
static void
song_remove_event(void)
{
2013-10-19 18:19:03 +02:00
assert(removed_song != nullptr);
2013-10-17 01:01:15 +02:00
{
const auto uri = removed_song->GetURI();
FormatDefault(update_domain, "removing %s", uri.c_str());
2013-10-17 01:01:15 +02:00
}
#ifdef ENABLE_SQLITE
/* if the song has a sticker, remove it */
if (sticker_enabled())
sticker_song_delete(removed_song->Export());
#endif
{
const auto uri = removed_song->GetURI();
instance->DeleteSong(uri.c_str());
}
/* clear "removed_song" and send signal to update thread */
remove_mutex.lock();
2013-10-19 18:19:03 +02:00
removed_song = nullptr;
remove_cond.signal();
remove_mutex.unlock();
}
void
update_remove_global_init(void)
{
2013-01-09 23:12:53 +01:00
GlobalEvents::Register(GlobalEvents::DELETE, song_remove_event);
}
void
2013-07-28 13:25:12 +02:00
update_remove_song(const Song *song)
{
2013-10-19 18:19:03 +02:00
assert(removed_song == nullptr);
removed_song = song;
2013-01-09 23:12:53 +01:00
GlobalEvents::Emit(GlobalEvents::DELETE);
remove_mutex.lock();
2013-10-19 18:19:03 +02:00
while (removed_song != nullptr)
remove_cond.wait(remove_mutex);
remove_mutex.unlock();
}