From ff665b37cb92e2a1664bbab207030a1eedfbb036 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 4 Feb 2014 19:16:30 +0100 Subject: db/DatabaseListener: add method OnDatabaseSongRemoved() Decouples db/update/Remove.cpp from global variables. --- src/db/update/Editor.hxx | 4 ++-- src/db/update/Remove.cxx | 22 ++-------------------- src/db/update/Remove.hxx | 7 +++++-- src/db/update/UpdateGlue.cxx | 2 +- src/db/update/Walk.cxx | 4 ++-- src/db/update/Walk.hxx | 2 +- 6 files changed, 13 insertions(+), 28 deletions(-) (limited to 'src/db/update') diff --git a/src/db/update/Editor.hxx b/src/db/update/Editor.hxx index b1c99095f..fc08c2659 100644 --- a/src/db/update/Editor.hxx +++ b/src/db/update/Editor.hxx @@ -31,8 +31,8 @@ class DatabaseEditor final { UpdateRemoveService remove; public: - DatabaseEditor(EventLoop &_loop) - :remove(_loop) {} + DatabaseEditor(EventLoop &_loop, DatabaseListener &_listener) + :remove(_loop, _listener) {} /** * Caller must lock the #db_mutex. diff --git a/src/db/update/Remove.cxx b/src/db/update/Remove.cxx index e2c172a4b..102347905 100644 --- a/src/db/update/Remove.cxx +++ b/src/db/update/Remove.cxx @@ -20,20 +20,11 @@ #include "config.h" /* must be first for large file support */ #include "Remove.hxx" #include "UpdateDomain.hxx" -#include "GlobalEvents.hxx" -#include "thread/Mutex.hxx" -#include "thread/Cond.hxx" #include "db/Song.hxx" #include "db/LightSong.hxx" -#include "Main.hxx" -#include "Instance.hxx" +#include "db/DatabaseListener.hxx" #include "Log.hxx" -#ifdef ENABLE_SQLITE -#include "sticker/StickerDatabase.hxx" -#include "sticker/SongSticker.hxx" -#endif - #include /** @@ -50,16 +41,7 @@ UpdateRemoveService::RunDeferred() FormatDefault(update_domain, "removing %s", uri.c_str()); } -#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()); - } + listener.OnDatabaseSongRemoved(removed_song->Export()); /* clear "removed_song" and send signal to update thread */ remove_mutex.lock(); diff --git a/src/db/update/Remove.hxx b/src/db/update/Remove.hxx index 1970c0a07..5c09f55df 100644 --- a/src/db/update/Remove.hxx +++ b/src/db/update/Remove.hxx @@ -26,20 +26,23 @@ #include "thread/Cond.hxx" struct Song; +class DatabaseListener; /** * This class handles #Song removal. It defers the action to the main * thread to ensure that all references to the #Song are gone. */ class UpdateRemoveService final : DeferredMonitor { + DatabaseListener &listener; + Mutex remove_mutex; Cond remove_cond; const Song *removed_song; public: - UpdateRemoveService(EventLoop &_loop) - :DeferredMonitor(_loop) {} + UpdateRemoveService(EventLoop &_loop, DatabaseListener &_listener) + :DeferredMonitor(_loop), listener(_listener) {} /** * Sends a signal to the main thread which will in turn remove diff --git a/src/db/update/UpdateGlue.cxx b/src/db/update/UpdateGlue.cxx index ea1bf6f09..32e817ff1 100644 --- a/src/db/update/UpdateGlue.cxx +++ b/src/db/update/UpdateGlue.cxx @@ -155,6 +155,6 @@ UpdateService::UpdateService(EventLoop &_loop, SimpleDatabase &_db, :DeferredMonitor(_loop), db(_db), listener(_listener), progress(UPDATE_PROGRESS_IDLE), update_task_id(0), - walk(_loop) + walk(_loop, _listener) { } diff --git a/src/db/update/Walk.cxx b/src/db/update/Walk.cxx index ed09c1676..c54d5a8d7 100644 --- a/src/db/update/Walk.cxx +++ b/src/db/update/Walk.cxx @@ -46,8 +46,8 @@ #include #include -UpdateWalk::UpdateWalk(EventLoop &_loop) - :editor(_loop) +UpdateWalk::UpdateWalk(EventLoop &_loop, DatabaseListener &_listener) + :editor(_loop, _listener) { #ifndef WIN32 follow_inside_symlinks = diff --git a/src/db/update/Walk.hxx b/src/db/update/Walk.hxx index ecb04387d..aa4516917 100644 --- a/src/db/update/Walk.hxx +++ b/src/db/update/Walk.hxx @@ -49,7 +49,7 @@ class UpdateWalk final { DatabaseEditor editor; public: - UpdateWalk(EventLoop &_loop); + UpdateWalk(EventLoop &_loop, DatabaseListener &_listener); /** * Returns true if the database was modified. -- cgit v1.2.3