Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
ff665b37
Commit
ff665b37
authored
Feb 04, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
db/DatabaseListener: add method OnDatabaseSongRemoved()
Decouples db/update/Remove.cpp from global variables.
parent
ce738430
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
49 additions
and
38 deletions
+49
-38
Instance.cxx
src/Instance.cxx
+22
-7
Instance.hxx
src/Instance.hxx
+2
-3
DatabaseListener.hxx
src/db/DatabaseListener.hxx
+8
-0
Editor.hxx
src/db/update/Editor.hxx
+2
-2
Remove.cxx
src/db/update/Remove.cxx
+2
-20
Remove.hxx
src/db/update/Remove.hxx
+5
-2
UpdateGlue.cxx
src/db/update/UpdateGlue.cxx
+1
-1
Walk.cxx
src/db/update/Walk.cxx
+2
-2
Walk.hxx
src/db/update/Walk.hxx
+1
-1
DumpDatabase.cxx
test/DumpDatabase.cxx
+4
-0
No files found.
src/Instance.cxx
View file @
ff665b37
...
...
@@ -22,9 +22,15 @@
#include "Partition.hxx"
#include "Idle.hxx"
#include "Stats.hxx"
#include "db/DatabaseError.hxx"
#ifdef ENABLE_DATABASE
#include "db/DatabaseError.hxx"
#include "db/LightSong.hxx"
#ifdef ENABLE_SQLITE
#include "sticker/StickerDatabase.hxx"
#include "sticker/SongSticker.hxx"
#endif
Database
*
Instance
::
GetDatabase
(
Error
&
error
)
...
...
@@ -34,12 +40,6 @@ Instance::GetDatabase(Error &error)
return
database
;
}
void
Instance
::
DeleteSong
(
const
char
*
uri
)
{
partition
->
DeleteSong
(
uri
);
}
#endif
void
...
...
@@ -68,6 +68,21 @@ Instance::OnDatabaseModified()
idle_add
(
IDLE_DATABASE
);
}
void
Instance
::
OnDatabaseSongRemoved
(
const
LightSong
&
song
)
{
assert
(
database
!=
nullptr
);
#ifdef ENABLE_SQLITE
/* if the song has a sticker, remove it */
if
(
sticker_enabled
())
sticker_song_delete
(
song
);
#endif
const
auto
uri
=
song
.
GetURI
();
partition
->
DeleteSong
(
uri
.
c_str
());
}
#endif
#ifdef ENABLE_NEIGHBOR_PLUGINS
...
...
src/Instance.hxx
View file @
ff665b37
...
...
@@ -79,8 +79,6 @@ struct Instance final
* music_directory was configured).
*/
Database
*
GetDatabase
(
Error
&
error
);
void
DeleteSong
(
const
char
*
uri
);
#endif
/**
...
...
@@ -96,7 +94,8 @@ struct Instance final
private
:
#ifdef ENABLE_DATABASE
virtual
void
OnDatabaseModified
();
virtual
void
OnDatabaseModified
()
override
;
virtual
void
OnDatabaseSongRemoved
(
const
LightSong
&
song
)
override
;
#endif
#ifdef ENABLE_NEIGHBOR_PLUGINS
...
...
src/db/DatabaseListener.hxx
View file @
ff665b37
...
...
@@ -20,6 +20,8 @@
#ifndef MPD_DATABASE_CLIENT_HXX
#define MPD_DATABASE_CLIENT_HXX
struct
LightSong
;
/**
* An object that listens to events from the #Database.
*
...
...
@@ -33,6 +35,12 @@ public:
* runs the #EventLoop.
*/
virtual
void
OnDatabaseModified
()
=
0
;
/**
* During database update, a song is about to be removed from
* the database because the file has disappeared.
*/
virtual
void
OnDatabaseSongRemoved
(
const
LightSong
&
song
)
=
0
;
};
#endif
src/db/update/Editor.hxx
View file @
ff665b37
...
...
@@ -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.
...
...
src/db/update/Remove.cxx
View file @
ff665b37
...
...
@@ -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 <assert.h>
/**
...
...
@@ -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
();
...
...
src/db/update/Remove.hxx
View file @
ff665b37
...
...
@@ -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
...
...
src/db/update/UpdateGlue.cxx
View file @
ff665b37
...
...
@@ -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
)
{
}
src/db/update/Walk.cxx
View file @
ff665b37
...
...
@@ -46,8 +46,8 @@
#include <stdlib.h>
#include <errno.h>
UpdateWalk
::
UpdateWalk
(
EventLoop
&
_loop
)
:
editor
(
_loop
)
UpdateWalk
::
UpdateWalk
(
EventLoop
&
_loop
,
DatabaseListener
&
_listener
)
:
editor
(
_loop
,
_listener
)
{
#ifndef WIN32
follow_inside_symlinks
=
...
...
src/db/update/Walk.hxx
View file @
ff665b37
...
...
@@ -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.
...
...
test/DumpDatabase.cxx
View file @
ff665b37
...
...
@@ -55,6 +55,10 @@ public:
virtual
void
OnDatabaseModified
()
override
{
cout
<<
"DatabaseModified"
<<
endl
;
}
virtual
void
OnDatabaseSongRemoved
(
const
LightSong
&
song
)
override
{
cout
<<
"SongRemoved "
<<
song
.
GetURI
()
<<
endl
;
}
};
static
bool
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment