]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
Gerneralize for_each_matching_blob().
authorAndre Noll <maan@systemlinux.org>
Thu, 27 Sep 2007 10:25:05 +0000 (12:25 +0200)
committerAndre Noll <maan@systemlinux.org>
Thu, 27 Sep 2007 10:25:05 +0000 (12:25 +0200)
It's not only useful for blobs. For instance the rm and the touch
commands might also want to use something similar. So move it to
afs.c and call it for_each_matching_row().

afs.c
afs.h
blob.c

diff --git a/afs.c b/afs.c
index cafe9b474d11be29ba911c929d43fb9e05b60b8e..bef35425b9fd873bd652ee92ed2462738d1d158c 100644 (file)
--- a/afs.c
+++ b/afs.c
@@ -6,6 +6,7 @@
 
 /** \file afs.c Paraslash's audio file selector. */
 
+#include <fnmatch.h>
 #include "server.cmdline.h"
 #include "para.h"
 #include "afh.h"
@@ -278,6 +279,42 @@ int send_standard_callback_request(int argc,  char * const * const argv,
        return send_option_arg_callback_request(NULL, argc, argv, f, result);
 }
 
+static int action_if_pattern_matches(struct osl_row *row, void *data)
+{
+       struct pattern_match_data *pmd = data;
+       struct osl_object name_obj;
+       const char *p, *name;
+       int ret = osl_get_object(pmd->table, row, pmd->match_col_num, &name_obj);
+       const char *pattern_txt = (const char *)pmd->patterns.data;
+
+       if (ret < 0)
+               return ret;
+       name = (char *)name_obj.data;
+       if ((!name || !*name) && (pmd->pm_flags & PM_SKIP_EMPTY_NAME))
+               return 1;
+       if (!pmd->patterns.size && (pmd->pm_flags & PM_NO_PATTERN_MATCHES_EVERYTHING))
+               return pmd->action(pmd->table, row, name, pmd->data);
+       for (p = pattern_txt; p < pattern_txt + pmd->patterns.size;
+                       p += strlen(p) + 1) {
+               ret = fnmatch(p, name, pmd->fnmatch_flags);
+               if (ret == FNM_NOMATCH)
+                       continue;
+               if (ret)
+                       return -E_FNMATCH;
+               return pmd->action(pmd->table, row, name, pmd->data);
+       }
+       return 1;
+}
+
+int for_each_matching_row(struct pattern_match_data *pmd)
+{
+       if (pmd->pm_flags & PM_REVERSE_LOOP)
+               return osl_rbtree_loop_reverse(pmd->table, pmd->loop_col_num, pmd,
+                       action_if_pattern_matches);
+       return osl_rbtree_loop(pmd->table, pmd->loop_col_num, pmd,
+                       action_if_pattern_matches);
+}
+
 /**
  * Compare two osl objects of string type.
  *
diff --git a/afs.h b/afs.h
index 6b5afcc4630d769b8ed0e182ef7572fd72b9dcb3..f4f022207790254254b2beaebb4af6608a694f3b 100644 (file)
--- a/afs.h
+++ b/afs.h
@@ -42,6 +42,23 @@ struct audio_file_data {
        struct osl_object map;
 };
 
+enum pattern_match_flags {
+       PM_REVERSE_LOOP = 1,
+       PM_NO_PATTERN_MATCHES_EVERYTHING = 2,
+       PM_SKIP_EMPTY_NAME = 4,
+};
+
+struct pattern_match_data {
+       struct osl_table *table;
+       unsigned loop_col_num;
+       unsigned match_col_num;
+       unsigned pm_flags;
+       int fnmatch_flags;
+       struct osl_object patterns;
+       void *data;
+       int (*action)(struct osl_table *table, struct osl_row *row, const char *name, void *data);
+};
+
 /* afs */
 typedef int callback_function(const struct osl_object *, struct osl_object *);
 __noreturn int afs_init(uint32_t cookie, int socket_fd);
@@ -58,6 +75,7 @@ int string_compare(const struct osl_object *obj1, const struct osl_object *obj2)
 int para_atol(const char *str, long *result);
 int open_next_audio_file(struct audio_file_data *afd);
 int close_audio_file(struct audio_file_data *afd);
+int for_each_matching_row(struct pattern_match_data *pmd);
 
 /* score */
 int score_init(struct table_info *ti, const char *db);
diff --git a/blob.c b/blob.c
index 031f6ae3a76c2e29cd429135f3b73e60c8bc38d8..b2e2cd6d9c6f3a596ba7e2029106c413c3bafaeb 100644 (file)
--- a/blob.c
+++ b/blob.c
@@ -77,77 +77,28 @@ static int print_blob(struct osl_table *table, struct osl_row *row, const char *
        return 1;
 }
 
-enum blob_match_loop_flags {
-       BM_NAME_LOOP = 1,
-       BM_REVERSE_LOOP = 2
-};
-
-struct blob_match_data {
-       struct osl_table *table;
-       const char *patterns;
-       size_t patterns_size;
-       int fnmatch_flags;
-       unsigned loop_flags;
-       void *data;
-       int (*action)(struct osl_table *table, struct osl_row *row, const char *name, void *data);
-};
-
-static int action_if_blob_matches(struct osl_row *row, void *data)
-{
-       struct blob_match_data *bmd = data;
-       struct osl_object name_obj;
-       const char *p, *name;
-       int ret = osl_get_object(bmd->table, row, BLOBCOL_NAME, &name_obj);
-
-       if (ret < 0) {
-               PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret));
-               return ret;
-       }
-       name = (char *)name_obj.data;
-       if (!*name) /* ignore dummy row */
-               return 1;
-       if (!bmd->patterns_size) /* match everything if no pattern was given */
-               return bmd->action(bmd->table, row, name, bmd->data);
-       for (p = bmd->patterns; p < bmd->patterns + bmd->patterns_size;
-                       p += strlen(p) + 1) {
-               ret = fnmatch(p, name, bmd->fnmatch_flags);
-               if (ret == FNM_NOMATCH)
-                       continue;
-               if (ret)
-                       return -E_FNMATCH;
-               return bmd->action(bmd->table, row, name, bmd->data);
-       }
-       return 1;
-}
-
-static int for_each_matching_blob(struct blob_match_data *bmd)
-{
-       unsigned col = (bmd->loop_flags & BM_NAME_LOOP)?
-               BLOBCOL_NAME : BLOBCOL_ID;
-
-       if (bmd->loop_flags & BM_REVERSE_LOOP)
-               return osl_rbtree_loop_reverse(bmd->table, col, bmd, action_if_blob_matches);
-       return osl_rbtree_loop(bmd->table, col, bmd, action_if_blob_matches);
-}
-
 int com_lsblob_callback(struct osl_table *table,
                const struct osl_object *query, struct osl_object *ls_output)
 {
        struct lsblob_data lbd = {.flags = *(uint32_t *)query};
-       struct blob_match_data bmd = {
+       struct pattern_match_data pmd = {
                .table = table,
-               .patterns = (char *)query->data + sizeof(uint32_t),
-               .patterns_size = query->size - sizeof(uint32_t),
+               .patterns = {.data = (char *)query->data + sizeof(uint32_t),
+                       .size = query->size - sizeof(uint32_t)},
+               .pm_flags = PM_NO_PATTERN_MATCHES_EVERYTHING | PM_SKIP_EMPTY_NAME,
+               .match_col_num = BLOBCOL_NAME,
                .data = &lbd,
-               .action = print_blob
+               .action = print_blob,
        };
        int ret;
 
        if (lbd.flags & BLOB_LS_FLAG_REVERSE)
-               bmd.loop_flags |= BM_REVERSE_LOOP;
+               pmd.pm_flags |= PM_REVERSE_LOOP;
        if (!(lbd.flags & BLOB_LS_FLAG_SORT_BY_ID))
-               bmd.loop_flags |= BM_NAME_LOOP;
-       ret = for_each_matching_blob(&bmd);
+               pmd.loop_col_num = BLOBCOL_ID;
+       else
+               pmd.loop_col_num = BLOBCOL_NAME;
+       ret = for_each_matching_row(&pmd);
        if (lbd.pb.buf) {
                ls_output->data = lbd.pb.buf;
                ls_output->size = lbd.pb.size;
@@ -219,15 +170,17 @@ static int com_catblob_callback(struct osl_table *table,
                const struct osl_object *query, struct osl_object *result)
 {
        int ret;
-       struct blob_match_data bmd = {
+       struct pattern_match_data pmd = {
                .table = table,
-               .patterns = (char *)query->data,
-               .patterns_size = query->size,
+               .patterns = *query,
+               .loop_col_num = BLOBCOL_NAME,
+               .match_col_num = BLOBCOL_NAME,
+               .pm_flags = PM_SKIP_EMPTY_NAME,
                .data = result,
                .action = cat_blob
        };
        result->data = NULL;
-       ret = for_each_matching_blob(&bmd);
+       ret = for_each_matching_row(&pmd);
        if (result->data)
                return 1;
        return (ret > 0)? 0 : ret;
@@ -273,15 +226,17 @@ static int com_rmblob_callback(struct osl_table *table,
 {
        int ret;
        struct rmblob_data rmbd = {.num_removed = 0};
-       struct blob_match_data bmd = {
+       struct pattern_match_data pmd = {
                .table = table,
-               .patterns = (char *)query->data,
-               .patterns_size = query->size,
+               .patterns = *query,
+               .loop_col_num = BLOBCOL_NAME,
+               .match_col_num = BLOBCOL_NAME,
+               .pm_flags = PM_SKIP_EMPTY_NAME,
                .data = &rmbd,
                .action = remove_blob
        };
        result->data = NULL;
-       ret = for_each_matching_blob(&bmd);
+       ret = for_each_matching_row(&pmd);
        if (ret < 0)
                para_printf(&rmbd.pb, "%s\n", PARA_STRERROR(-ret));
        if (!rmbd.num_removed)