2012-02-12 17:06:34 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2012 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 "UpdateDatabase.hxx"
|
|
|
|
#include "UpdateRemove.hxx"
|
2013-01-02 20:25:20 +01:00
|
|
|
#include "PlaylistVector.hxx"
|
2013-01-02 22:52:08 +01:00
|
|
|
#include "Directory.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2013-01-02 20:56:21 +01:00
|
|
|
#include "DatabaseLock.hxx"
|
2012-02-12 17:06:34 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
2013-10-15 20:14:36 +02:00
|
|
|
#include <stddef.h>
|
2012-02-12 17:06:34 +01:00
|
|
|
|
|
|
|
void
|
2013-10-19 18:48:38 +02:00
|
|
|
delete_song(Directory &dir, Song *del)
|
2012-02-12 17:06:34 +01:00
|
|
|
{
|
2013-10-19 18:48:38 +02:00
|
|
|
assert(del->parent == &dir);
|
2012-02-12 17:06:34 +01:00
|
|
|
|
|
|
|
/* first, prevent traversers in main task from getting this */
|
2013-10-19 18:48:38 +02:00
|
|
|
dir.RemoveSong(del);
|
2012-02-12 17:06:34 +01:00
|
|
|
|
|
|
|
db_unlock(); /* temporary unlock, because update_remove_song() blocks */
|
|
|
|
|
|
|
|
/* now take it out of the playlist (in the main_task) */
|
|
|
|
update_remove_song(del);
|
|
|
|
|
|
|
|
/* finally, all possible references gone, free it */
|
2013-07-28 13:25:12 +02:00
|
|
|
del->Free();
|
2012-02-12 17:06:34 +01:00
|
|
|
|
|
|
|
db_lock();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recursively remove all sub directories and songs from a directory,
|
|
|
|
* leaving an empty directory.
|
|
|
|
*
|
|
|
|
* Caller must lock the #db_mutex.
|
|
|
|
*/
|
|
|
|
static void
|
2013-10-19 18:48:38 +02:00
|
|
|
clear_directory(Directory &directory)
|
2012-02-12 17:06:34 +01:00
|
|
|
{
|
2013-01-02 23:06:20 +01:00
|
|
|
Directory *child, *n;
|
2012-02-12 17:06:34 +01:00
|
|
|
directory_for_each_child_safe(child, n, directory)
|
|
|
|
delete_directory(child);
|
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song, *ns;
|
2012-02-12 17:06:34 +01:00
|
|
|
directory_for_each_song_safe(song, ns, directory) {
|
2013-10-19 18:48:38 +02:00
|
|
|
assert(song->parent == &directory);
|
2012-02-12 17:06:34 +01:00
|
|
|
delete_song(directory, song);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-02 23:06:20 +01:00
|
|
|
delete_directory(Directory *directory)
|
2012-02-12 17:06:34 +01:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(directory->parent != nullptr);
|
2012-02-12 17:06:34 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
clear_directory(*directory);
|
2012-02-12 17:06:34 +01:00
|
|
|
|
2013-01-02 23:06:10 +01:00
|
|
|
directory->Delete();
|
2012-02-12 17:06:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-19 18:48:38 +02:00
|
|
|
delete_name_in(Directory &parent, const char *name)
|
2012-02-12 17:06:34 +01:00
|
|
|
{
|
|
|
|
bool modified = false;
|
|
|
|
|
|
|
|
db_lock();
|
2013-10-19 18:48:38 +02:00
|
|
|
Directory *directory = parent.FindChild(name);
|
2012-02-12 17:06:34 +01:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
if (directory != nullptr) {
|
2012-02-12 17:06:34 +01:00
|
|
|
delete_directory(directory);
|
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
Song *song = parent.FindSong(name);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (song != nullptr) {
|
2012-02-12 17:06:34 +01:00
|
|
|
delete_song(parent, song);
|
|
|
|
modified = true;
|
|
|
|
}
|
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
parent.playlists.erase(name);
|
2012-02-12 17:06:34 +01:00
|
|
|
|
2012-02-13 19:25:03 +01:00
|
|
|
db_unlock();
|
|
|
|
|
2012-02-12 17:06:34 +01:00
|
|
|
return modified;
|
|
|
|
}
|