]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - blob.c
Implement afs events.
[paraslash.git] / blob.c
diff --git a/blob.c b/blob.c
index 9282b5f58bd83f04d1a9147efd9e8ba08ff20d6d..2abf26283f599327398c0558270e0cb29f4f611a 100644 (file)
--- a/blob.c
+++ b/blob.c
@@ -9,9 +9,9 @@
 #include <fnmatch.h>
 #include "para.h"
 #include "error.h"
+#include "string.h"
 #include "afh.h"
 #include "afs.h"
-#include "string.h"
 #include "net.h"
 
 static struct osl_column_description blob_cols[] = {
@@ -410,6 +410,30 @@ static int blob_get_name_by_id(struct osl_table *table, uint32_t id,
                return blob_get_name_by_id(table_name ## _table, id, name); \
        }
 
+
+static int blob_get_def_by_name(struct osl_table *table, char *name,
+               struct osl_object *def)
+{
+       struct osl_row *row;
+       struct osl_object obj = {.data = name, .size = strlen(name) + 1};
+       int ret;
+
+       def->data = NULL;
+       if (!*name)
+               return 1;
+       ret = osl_get_row(table, BLOBCOL_NAME, &obj, &row);
+       if (ret < 0)
+               return ret;
+       return osl_open_disk_object(table, row, BLOBCOL_DEF, def);
+}
+
+/** Define the \p get_def_by_id function for this blob type. */
+#define DEFINE_GET_DEF_BY_NAME(table_name, cmd_prefix) \
+       int cmd_prefix ## _get_def_by_name(char *name, struct osl_object *def) \
+       { \
+               return blob_get_def_by_name(table_name ## _table, name, def); \
+       }
+
 static int blob_get_def_by_id(struct osl_table *table, uint32_t id,
                struct osl_object *def)
 {
@@ -452,41 +476,63 @@ static int blob_get_name_and_def_by_row(struct osl_table *table,
                        row, name, def); \
        }
 
-/** Define the \p shutdown function for this blob type. */
-#define DEFINE_BLOB_SHUTDOWN(table_name) \
-       void table_name ## _shutdown(enum osl_close_flags flags) \
+/** Define the \p close function for this blob type. */
+#define DEFINE_BLOB_CLOSE(table_name) \
+       void table_name ## _close(void) \
        { \
-               osl_close_table(table_name ## _table, flags); \
+               osl_close_table(table_name ## _table, OSL_MARK_CLEAN); \
                table_name ## _table = NULL; \
        }
 
-static int blob_init(struct osl_table **table,
+/** Define the \p create function for this blob type. */
+#define DEFINE_BLOB_CREATE(table_name) \
+       int table_name ## _create(const char *dir) \
+       { \
+               table_name ## _table_desc.dir = dir; \
+               return osl_create_table(&table_name ## _table_desc); \
+       }
+
+static int blob_open(struct osl_table **table,
                struct osl_table_description *desc,
-               struct table_info *ti, const char *db)
+               const char *dir)
 {
        int ret;
-       desc->dir = db;
-       ti->desc = desc;
-       ret = osl_open_table(ti->desc, table);
+       desc->dir = dir;
+       ret = osl_open_table(desc, table);
        if (ret >= 0)
                return ret;
        *table = NULL;
-       if (ret >= 0 || is_errno(-ret, -ENOENT))
+       if (ret >= 0 || is_errno(-ret, ENOENT))
                return 1;
        return ret;
 }
 
+#define DEFINE_BLOB_OPEN(table_name) \
+       int table_name ## _open(const char *dir) \
+       { \
+               return blob_open(&table_name ## _table, \
+                       &table_name ## _table_desc, dir); \
+       }
+
+
 /** Define the \p init function for this blob type. */
 #define DEFINE_BLOB_INIT(table_name) \
-       int table_name ## _init(struct table_info *ti, const char *db) \
+       void table_name ## _init(struct afs_table *t) \
        { \
-               return blob_init(&table_name ## _table, \
-                       &table_name ## _table_desc, ti, db); \
+               t->name = table_name ## _table_desc.name; \
+               t->open = table_name ## _open; \
+               t->close = table_name ## _close; \
+               t->create = table_name ## _create;\
+               t->event_handler = table_name ##_event_handler; \
        }
 
 
 /** Define all functions for this blob type. */
 #define DEFINE_BLOB_FUNCTIONS(table_name, cmd_prefix) \
+       DEFINE_BLOB_OPEN(table_name) \
+       DEFINE_BLOB_CLOSE(table_name) \
+       DEFINE_BLOB_CREATE(table_name) \
+       DEFINE_BLOB_INIT(table_name) \
        DEFINE_BLOB_COMMAND(ls, table_name, cmd_prefix) \
        DEFINE_BLOB_COMMAND(cat, table_name, cmd_prefix) \
        DEFINE_BLOB_COMMAND(add, table_name, cmd_prefix) \
@@ -494,9 +540,8 @@ static int blob_init(struct osl_table **table,
        DEFINE_BLOB_COMMAND(mv, table_name, cmd_prefix) \
        DEFINE_GET_NAME_BY_ID(table_name, cmd_prefix); \
        DEFINE_GET_DEF_BY_ID(table_name, cmd_prefix); \
+       DEFINE_GET_DEF_BY_NAME(table_name, cmd_prefix); \
        DEFINE_GET_NAME_AND_DEF_BY_ROW(table_name, cmd_prefix); \
-       DEFINE_BLOB_SHUTDOWN(table_name); \
-       DEFINE_BLOB_INIT(table_name);
 
 /** \cond doxygen isn't smart enough to recognize these */
 DEFINE_BLOB_FUNCTIONS(lyrics, lyr);