X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftdb2%2Ftdb2.h;h=4be15e98861823f82e39d6bc5b7188c5ad0c5843;hb=4dc29a338fadeac805b369b4b0851c02f1b152c7;hp=01413f206c8b99aa85cd2cc611d21f72982e2d32;hpb=baa17ee2d5e01a32030f19e566007417d72b4b6e;p=ccan diff --git a/ccan/tdb2/tdb2.h b/ccan/tdb2/tdb2.h index 01413f20..4be15e98 100644 --- a/ccan/tdb2/tdb2.h +++ b/ccan/tdb2/tdb2.h @@ -85,6 +85,8 @@ struct tdb_context *tdb_open(const char *name, int tdb_flags, #define TDB_NOSYNC 64 /* don't use synchronous transactions */ #define TDB_SEQNUM 128 /* maintain a sequence number */ #define TDB_ALLOW_NESTING 256 /* fake nested transactions */ +#define TDB_RDONLY 512 /* implied by O_RDONLY */ +#define TDB_VERSION1 1024 /* create/open an old style TDB */ /** * tdb_close - close and free a tdb. @@ -616,8 +618,6 @@ enum tdb_attribute_type { * This gets an attribute from a TDB which has previously been set (or * may return the default values). Set @attr.base.attr to the * attribute type you want get. - * - * Currently this does not work for TDB_ATTRIBUTE_OPENHOOK. */ enum TDB_ERROR tdb_get_attribute(struct tdb_context *tdb, union tdb_attribute *attr); @@ -671,6 +671,20 @@ const char *tdb_name(const struct tdb_context *tdb); */ int tdb_fd(const struct tdb_context *tdb); +/** + * tdb_foreach - iterate through every open TDB. + * @fn: the function to call for every TDB + * @p: the pointer to hand to @fn + * + * TDB internally keeps track of all open TDBs; this function allows you to + * iterate through them. If @fn returns non-zero, traversal stops. + */ +#define tdb_foreach(fn, p) \ + tdb_foreach_(typesafe_cb_preargs(int, void *, (fn), (p), \ + struct tdb_context *), (p)) + +void tdb_foreach_(int (*fn)(struct tdb_context *, void *), void *p); + /** * struct tdb_attribute_base - common fields for all tdb attributes. */ @@ -704,6 +718,7 @@ struct tdb_attribute_log { struct tdb_attribute_base base; /* .attr = TDB_ATTRIBUTE_LOG */ void (*fn)(struct tdb_context *tdb, enum tdb_log_level level, + enum TDB_ERROR ecode, const char *message, void *data); void *data;