123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- #ifndef _LSUP_STORE_H
- #define _LSUP_STORE_H
- #include "store_htable.h"
- #include "store_mdb.h"
- #define BACKEND_TBL \
- \
- ENTRY( HTABLE, htstore_int ) \
- ENTRY( MDB, mdbstore_int ) \
- typedef enum {
- #define ENTRY(a, b) \
- LSUP_STORE_##a,
- BACKEND_TBL
- #undef ENTRY
- } LSUP_StoreType;
- typedef struct store_t {
- LSUP_StoreType type;
- char * id;
- const LSUP_StoreInt * sif;
- void * data;
- } LSUP_Store;
- const LSUP_StoreInt *LSUP_store_int (LSUP_StoreType type);
- LSUP_Store *
- LSUP_store_new (
- const LSUP_StoreType store_type, const char *store_id, size_t size);
- void
- LSUP_store_free (LSUP_Store *store);
- LSUP_rc
- LSUP_store_begin (LSUP_Store *store, int flags, void **txn);
- LSUP_rc
- LSUP_store_commit (LSUP_Store *store, void *txn);
- void
- LSUP_store_abort (LSUP_Store *store, void *txn);
- #endif
|