directory: require db lock for _{add,remove}_song()
This commit is contained in:
parent
1a59730782
commit
9f3db5a70b
@ -186,6 +186,7 @@ directory_lookup_directory(struct directory *directory, const char *uri)
|
||||
void
|
||||
directory_add_song(struct directory *directory, struct song *song)
|
||||
{
|
||||
assert(holding_db_lock());
|
||||
assert(directory != NULL);
|
||||
assert(song != NULL);
|
||||
assert(song->parent == directory);
|
||||
@ -197,6 +198,7 @@ void
|
||||
directory_remove_song(G_GNUC_UNUSED struct directory *directory,
|
||||
struct song *song)
|
||||
{
|
||||
assert(holding_db_lock());
|
||||
assert(directory != NULL);
|
||||
assert(song != NULL);
|
||||
assert(song->parent == directory);
|
||||
|
@ -236,7 +236,10 @@ update_archive_tree(struct directory *directory, char *name)
|
||||
if (song == NULL) {
|
||||
song = song_file_load(name, directory);
|
||||
if (song != NULL) {
|
||||
db_lock();
|
||||
directory_add_song(directory, song);
|
||||
db_unlock();
|
||||
|
||||
modified = true;
|
||||
g_message("added %s/%s",
|
||||
directory_get_path(directory), name);
|
||||
@ -374,7 +377,9 @@ update_container_file(struct directory *directory,
|
||||
&add_tag_handler, song->tag);
|
||||
g_free(child_path_fs);
|
||||
|
||||
db_lock();
|
||||
directory_add_song(contdir, song);
|
||||
db_unlock();
|
||||
|
||||
modified = true;
|
||||
|
||||
@ -438,7 +443,10 @@ update_song_file(struct directory *directory,
|
||||
return;
|
||||
}
|
||||
|
||||
db_lock();
|
||||
directory_add_song(directory, song);
|
||||
db_unlock();
|
||||
|
||||
modified = true;
|
||||
g_message("added %s/%s",
|
||||
directory_get_path(directory), name);
|
||||
|
Loading…
Reference in New Issue
Block a user