mpd/src/db/update/Editor.cxx

114 lines
2.7 KiB
C++
Raw Normal View History

2012-02-12 17:06:34 +01:00
/*
2019-06-17 11:17:30 +02:00
* Copyright 2003-2019 The Music Player Daemon Project
2012-02-12 17:06:34 +01:00
* 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 "Editor.hxx"
#include "Remove.hxx"
2014-01-27 11:05:21 +01:00
#include "db/PlaylistVector.hxx"
2014-01-24 16:18:50 +01:00
#include "db/DatabaseLock.hxx"
2014-02-26 09:17:41 +01:00
#include "db/plugins/simple/Directory.hxx"
#include "db/plugins/simple/Song.hxx"
2012-02-12 17:06:34 +01:00
#include <assert.h>
void
DatabaseEditor::DeleteSong(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
/* temporary unlock, because update_remove_song() blocks */
const ScopeDatabaseUnlock unlock;
2012-02-12 17:06:34 +01:00
/* now take it out of the playlist (in the main_task) */
2016-03-18 16:56:33 +01:00
remove.Remove(del->GetURI());
2012-02-12 17:06:34 +01:00
/* finally, all possible references gone, free it */
delete del;
2012-02-12 17:06:34 +01:00
}
void
DatabaseEditor::LockDeleteSong(Directory &parent, Song *song)
{
2015-12-15 23:27:05 +01:00
const ScopeDatabaseLock protect;
DeleteSong(parent, song);
}
2012-02-12 17:06:34 +01:00
/**
* Recursively remove all sub directories and songs from a directory,
* leaving an empty directory.
*
* Caller must lock the #db_mutex.
*/
inline void
DatabaseEditor::ClearDirectory(Directory &directory)
2012-02-12 17:06:34 +01:00
{
directory.ForEachChildSafe([this](Directory &child){
DeleteDirectory(&child);
});
directory.ForEachSongSafe([this, &directory](Song &song){
assert(song.parent == &directory);
DeleteSong(directory, &song);
});
2012-02-12 17:06:34 +01:00
}
void
DatabaseEditor::DeleteDirectory(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
ClearDirectory(*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
}
void
DatabaseEditor::LockDeleteDirectory(Directory *directory)
{
2015-12-15 23:27:05 +01:00
const ScopeDatabaseLock protect;
DeleteDirectory(directory);
}
2012-02-12 17:06:34 +01:00
bool
DatabaseEditor::DeleteNameIn(Directory &parent, const char *name)
2012-02-12 17:06:34 +01:00
{
2015-12-15 23:27:05 +01:00
const ScopeDatabaseLock protect;
2012-02-12 17:06:34 +01:00
bool modified = false;
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) {
DeleteDirectory(directory);
2012-02-12 17:06:34 +01:00
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) {
DeleteSong(parent, song);
2012-02-12 17:06:34 +01:00
modified = true;
}
2013-10-19 18:48:38 +02:00
parent.playlists.erase(name);
2012-02-12 17:06:34 +01:00
return modified;
}