1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1998, 1999
* Sleepycat Software. All rights reserved.
*/
#include "db_config.h"
#ifndef lint
static const char sccsid[] = "@(#)xa_db.c 11.4 (Sleepycat) 9/15/99";
#endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES
#include <sys/types.h>
#endif
#include "db_int.h"
#include "xa.h"
#include "xa_ext.h"
static int CDB___xa_close __P((DB *, u_int32_t));
static int CDB___xa_cursor __P((DB *, DB_TXN *, DBC **, u_int32_t));
static int CDB___xa_del __P((DB *, DB_TXN *, DBT *, u_int32_t));
static int CDB___xa_get __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
static int CDB___xa_put __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
typedef struct __xa_methods {
int (*close) __P((DB *, u_int32_t));
int (*cursor) __P((DB *, DB_TXN *, DBC **, u_int32_t));
int (*del) __P((DB *, DB_TXN *, DBT *, u_int32_t));
int (*get) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
int (*put) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
} XA_METHODS;
/*
* CDB___db_xa_create --
* DB XA constructor.
*
* PUBLIC: int CDB___db_xa_create __P((DB *));
*/
int
CDB___db_xa_create(dbp)
DB *dbp;
{
XA_METHODS *xam;
int ret;
/*
* Interpose XA routines in front of any method that takes a TXN
* ID as an argument.
*/
if ((ret = CDB___os_calloc(1, sizeof(XA_METHODS), &xam)) != 0)
return (ret);
dbp->xa_internal = xam;
xam->close = dbp->close;
xam->cursor = dbp->cursor;
xam->del = dbp->del;
xam->get = dbp->get;
xam->put = dbp->put;
dbp->close = CDB___xa_close;
dbp->cursor = CDB___xa_cursor;
dbp->del = CDB___xa_del;
dbp->get = CDB___xa_get;
dbp->put = CDB___xa_put;
return (0);
}
static int
CDB___xa_cursor(dbp, txn, dbcp, flags)
DB *dbp;
DB_TXN *txn;
DBC **dbcp;
u_int32_t flags;
{
DB_TXN *t;
t = txn != NULL && txn == dbp->open_txn ? txn : dbp->dbenv->xa_txn;
return (((XA_METHODS *)dbp->xa_internal)->cursor (dbp, t, dbcp, flags));
}
static int
CDB___xa_del(dbp, txn, key, flags)
DB *dbp;
DB_TXN *txn;
DBT *key;
u_int32_t flags;
{
DB_TXN *t;
t = txn != NULL && txn == dbp->open_txn ? txn : dbp->dbenv->xa_txn;
return (((XA_METHODS *)dbp->xa_internal)->del(dbp, t, key, flags));
}
static int
CDB___xa_close(dbp, flags)
DB *dbp;
u_int32_t flags;
{
int (*real_close) __P((DB *, u_int32_t));
real_close = ((XA_METHODS *)dbp->xa_internal)->close;
CDB___os_free(dbp->xa_internal, sizeof(XA_METHODS));
dbp->xa_internal = NULL;
return (real_close(dbp, flags));
}
static int
CDB___xa_get(dbp, txn, key, data, flags)
DB *dbp;
DB_TXN *txn;
DBT *key, *data;
u_int32_t flags;
{
DB_TXN *t;
t = txn != NULL && txn == dbp->open_txn ? txn : dbp->dbenv->xa_txn;
return (((XA_METHODS *)dbp->xa_internal)->get
(dbp, t, key, data, flags));
}
static int
CDB___xa_put(dbp, txn, key, data, flags)
DB *dbp;
DB_TXN *txn;
DBT *key, *data;
u_int32_t flags;
{
DB_TXN *t;
t = txn != NULL && txn == dbp->open_txn ? txn : dbp->dbenv->xa_txn;
return (((XA_METHODS *)dbp->xa_internal)->put
(dbp, t, key, data, flags));
}
|