aboutsummaryrefslogtreecommitdiffstats
path: root/src/update.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-04 17:26:18 +0100
committerMax Kellermann <max@duempel.org>2009-01-04 17:26:18 +0100
commitd6b229e35c87cb246fcb77b2b04ac65adccc2b31 (patch)
tree4500f97d9fad55676b1fdd8c4b681aea826fd02f /src/update.c
parent8a562c9c7132aef079bcc97f5d7a91d5ba7ab88c (diff)
downloadmpd-d6b229e35c87cb246fcb77b2b04ac65adccc2b31.tar.gz
mpd-d6b229e35c87cb246fcb77b2b04ac65adccc2b31.tar.xz
mpd-d6b229e35c87cb246fcb77b2b04ac65adccc2b31.zip
update: moved code to update_regular_file()
Diffstat (limited to 'src/update.c')
-rw-r--r--src/update.c61
1 files changed, 35 insertions, 26 deletions
diff --git a/src/update.c b/src/update.c
index eaffebb10..826a17dc7 100644
--- a/src/update.c
+++ b/src/update.c
@@ -347,20 +347,11 @@ update_archive_tree(struct directory *directory, char *name)
}
#endif
-static bool
-updateDirectory(struct directory *directory, const struct stat *st);
-
static void
-updateInDirectory(struct directory *directory,
- const char *name, const struct stat *st)
+update_regular_file(struct directory *directory,
+ const char *name, const struct stat *st)
{
-#ifdef ENABLE_ARCHIVE
- const struct archive_plugin *archive;
-#endif
-
- assert(strchr(name, '/') == NULL);
-
- if (S_ISREG(st->st_mode) && hasMusicSuffix(name, 0)) {
+ if (hasMusicSuffix(name, 0)) {
struct song *song = songvec_find(&directory->songs, name);
if (song == NULL) {
@@ -379,21 +370,8 @@ updateInDirectory(struct directory *directory,
delete_song(directory, song);
modified = true;
}
- } else if (S_ISDIR(st->st_mode)) {
- struct directory *subdir;
- bool ret;
-
- if (inodeFoundInParent(directory, st->st_ino, st->st_dev))
- return;
-
- subdir = make_subdir(directory, name);
- assert(directory == subdir->parent);
-
- ret = updateDirectory(subdir, st);
- if (!ret)
- delete_directory(subdir);
#ifdef ENABLE_ARCHIVE
- } else if (S_ISREG(st->st_mode) && (archive = get_archive_by_suffix(name))) {
+ } else if ((archive = get_archive_by_suffix(name))) {
struct archive_file *archfile;
char pathname[MPD_PATH_MAX];
@@ -424,6 +402,37 @@ updateInDirectory(struct directory *directory,
g_warning("unable to open archive %s", pathname);
}
#endif
+ }
+}
+
+static bool
+updateDirectory(struct directory *directory, const struct stat *st);
+
+static void
+updateInDirectory(struct directory *directory,
+ const char *name, const struct stat *st)
+{
+#ifdef ENABLE_ARCHIVE
+ const struct archive_plugin *archive;
+#endif
+
+ assert(strchr(name, '/') == NULL);
+
+ if (S_ISREG(st->st_mode)) {
+ update_regular_file(directory, name, st);
+ } else if (S_ISDIR(st->st_mode)) {
+ struct directory *subdir;
+ bool ret;
+
+ if (inodeFoundInParent(directory, st->st_ino, st->st_dev))
+ return;
+
+ subdir = make_subdir(directory, name);
+ assert(directory == subdir->parent);
+
+ ret = updateDirectory(subdir, st);
+ if (!ret)
+ delete_directory(subdir);
} else {
g_debug("update: %s is not a directory, archive or music", name);
}