diff options
author | Max Kellermann <max@duempel.org> | 2012-06-13 21:33:23 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-06-13 21:33:23 +0200 |
commit | 660e40d07e368ef4737a30fd146c64c8fb44d770 (patch) | |
tree | 5b2d664261033983937f0e4361f03b7e3e22691b /src | |
parent | 9f3db5a70b4181fef6a70ef84b70fdd5b3c3e451 (diff) | |
download | mpd-660e40d07e368ef4737a30fd146c64c8fb44d770.tar.gz mpd-660e40d07e368ef4737a30fd146c64c8fb44d770.tar.xz mpd-660e40d07e368ef4737a30fd146c64c8fb44d770.zip |
update_walk: split update_regular_file()
Diffstat (limited to 'src')
-rw-r--r-- | src/update_walk.c | 79 |
1 files changed, 58 insertions, 21 deletions
diff --git a/src/update_walk.c b/src/update_walk.c index 6a953f522..c9d6d81c6 100644 --- a/src/update_walk.c +++ b/src/update_walk.c @@ -465,33 +465,70 @@ update_song_file(struct directory *directory, } } -static void +static bool +update_song_file2(struct directory *directory, + const char *name, const char *suffix, + const struct stat *st) +{ + const struct decoder_plugin *plugin = + decoder_plugin_from_suffix(suffix, false); + if (plugin == NULL) + return false; + + update_song_file(directory, name, st, plugin); + return true; +} + +static bool +update_archive_file2(struct directory *directory, + const char *name, const char *suffix, + const struct stat *st) +{ +#ifdef ENABLE_ARCHIVE + const struct archive_plugin *plugin = + archive_plugin_from_suffix(suffix); + if (plugin == NULL) + return false; + + update_archive_file(directory, name, st, plugin); + return true; +#else + (void)directory; + (void)name; + (void)suffix; + (void)st; + + return false; +#endif +} + +static bool +update_playlist_file2(struct directory *directory, + const char *name, const char *suffix, + const struct stat *st) +{ + if (!playlist_suffix_supported(suffix)) + return false; + + db_lock(); + if (playlist_vector_update_or_add(&directory->playlists, name, + st->st_mtime)) + modified = true; + db_unlock(); + return true; +} + +static bool update_regular_file(struct directory *directory, const char *name, const struct stat *st) { const char *suffix = uri_get_suffix(name); - const struct decoder_plugin *plugin; -#ifdef ENABLE_ARCHIVE - const struct archive_plugin *archive; -#endif if (suffix == NULL) - return; - - if ((plugin = decoder_plugin_from_suffix(suffix, false)) != NULL) - { - update_song_file(directory, name, st, plugin); -#ifdef ENABLE_ARCHIVE - } else if ((archive = archive_plugin_from_suffix(suffix))) { - update_archive_file(directory, name, st, archive); -#endif + return false; - } else if (playlist_suffix_supported(suffix)) { - db_lock(); - if (playlist_vector_update_or_add(&directory->playlists, name, - st->st_mtime)) - modified = true; - db_unlock(); - } + return update_song_file2(directory, name, suffix, st) || + update_archive_file2(directory, name, suffix, st) || + update_playlist_file2(directory, name, suffix, st); } static bool |