2007-09-06 14:18:08 +00:00
#ifndef _DB_H
#define _DB_H
2008-01-25 16:00:41 +00:00
/* This code generated by make_db_h. Copyright (c) 2007, 2008 Tokutek */
#ident "Copyright (c) 2007, 2008 Tokutek Inc. All rights reserved."
2007-09-06 14:18:08 +00:00
#include <sys/types.h>
2007-10-15 02:08:49 +00:00
/*stdio is needed for the FILE* in db->verify*/
#include <stdio.h>
2007-09-06 14:18:08 +00:00
#if defined(__cplusplus)
extern "C" {
#endif
2007-11-28 20:04:35 +00:00
#define TOKUDB 1
2013-04-16 23:57:48 -04:00
#define TOKUDB_NATIVE_H 0
2007-09-19 18:34:17 +00:00
#define DB_VERSION_MAJOR 4
2007-10-14 13:56:25 +00:00
#define DB_VERSION_MINOR 1
2007-11-26 17:24:43 +00:00
#define DB_VERSION_PATCH 25
2007-09-06 14:18:08 +00:00
#ifndef _TOKUDB_WRAP_H
2007-11-26 17:24:43 +00:00
#define DB_VERSION_STRING "Tokutek: TokuDB 4.1.25"
2007-09-06 14:18:08 +00:00
#else
2007-10-19 17:05:10 +00:00
#define DB_VERSION_STRING_ydb "Tokutek: TokuDB (wrapped bdb)"
2007-09-06 14:18:08 +00:00
#endif
2013-04-16 23:57:43 -04:00
#ifndef TOKU_OFF_T_DEFINED
#define TOKU_OFF_T_DEFINED
typedef int64_t toku_off_t;
#endif
2007-09-06 14:18:08 +00:00
typedef struct __toku_db_env DB_ENV;
typedef struct __toku_db_key_range DB_KEY_RANGE;
typedef struct __toku_db_lsn DB_LSN;
typedef struct __toku_db DB;
typedef struct __toku_db_txn DB_TXN;
typedef struct __toku_db_txn_active DB_TXN_ACTIVE;
typedef struct __toku_db_txn_stat DB_TXN_STAT;
typedef struct __toku_dbc DBC;
typedef struct __toku_dbt DBT;
2008-01-10 16:29:45 +00:00
typedef u_int32_t db_recno_t;
2013-04-16 23:57:41 -04:00
typedef int(*YDB_CALLBACK_FUNCTION)(DBT const*, DBT const*, void*);
typedef int(*YDB_HEAVISIDE_CALLBACK_FUNCTION)(DBT const *key, DBT const *value, void *extra_f, int r_h);
typedef int(*YDB_HEAVISIDE_FUNCTION)(const DBT *key, const DBT *value, void *extra_h);
2013-04-16 23:57:48 -04:00
#include <tdb-internal.h>
2013-04-16 23:57:47 -04:00
typedef struct __toku_db_btree_stat64 {
u_int64_t bt_nkeys; /* how many unique keys (guaranteed only to be an estimate, even when flattened) */
u_int64_t bt_ndata; /* how many key-value pairs (an estimate, but exact when flattened) */
u_int64_t bt_dsize; /* how big are the keys+values (not counting the lengths) (an estimate, unless flattened) */
u_int64_t bt_fsize; /* how big is the underlying file */
} DB_BTREE_STAT64;
2013-04-16 23:58:02 -04:00
typedef struct __toku_engine_status {
2013-04-16 23:58:03 -04:00
u_int32_t ydb_lock_ctr; /* how many times has ydb lock been taken/released */
2013-04-16 23:58:02 -04:00
u_int32_t checkpoint_period; /* delay between automatic checkpoints */
2013-04-16 23:58:03 -04:00
u_int32_t checkpoint_footprint; /* state of checkpoint procedure */
u_int32_t cachetable_lock_ctr; /* how many times has cachetable lock been taken/released */
u_int64_t cachetable_hit; /* how many cache hits */
u_int64_t cachetable_miss; /* how many cache misses */
u_int64_t cachetable_wait_reading; /* how many times get_and_pin waits for a node to be read */
u_int64_t cachetable_wait_writing; /* how many times get_and_pin waits for a node to be written */
2013-04-16 23:58:03 -04:00
u_int64_t puts; /* how many times has a newly created node been put into the cachetable */
u_int64_t prefetches; /* how many times has a block been prefetched into the cachetable */
u_int64_t maybe_get_and_pins; /* how many times has get_and_pin been called */
u_int64_t maybe_get_and_pin_hits; /* how many times has get_and_pin() returned with a node */
int64_t cachetable_size_current; /* sum of the sizes of the nodes represented in the cachetable */
int64_t cachetable_size_limit; /* the limit to the sum of the node sizes */
int64_t cachetable_size_writing; /* the sum of the sizes of the nodes being written */
2013-04-16 23:58:03 -04:00
u_int32_t range_locks_max; /* max total number of range locks */
u_int32_t range_locks_max_per_db; /* max range locks per dictionary */
2013-04-16 23:58:03 -04:00
u_int32_t range_locks_curr; /* total range locks currently in use */
u_int64_t inserts; /* ydb row insert operations */
u_int64_t deletes; /* ydb row delete operations */
u_int64_t commits; /* ydb txn commit operations */
u_int64_t aborts; /* ydb txn abort operations */
u_int64_t point_queries; /* ydb point queries */
u_int64_t sequential_queries; /* ydb sequential queries */
2013-04-16 23:58:02 -04:00
} ENGINE_STATUS;
2007-09-06 14:18:08 +00:00
typedef enum {
2007-12-12 15:33:46 +00:00
DB_BTREE=1,
DB_UNKNOWN=5
2007-09-06 14:18:08 +00:00
} DBTYPE;
2007-10-19 17:05:10 +00:00
#ifndef _TOKUDB_WRAP_H
2007-10-14 13:56:25 +00:00
#define DB_VERB_DEADLOCK 2
#define DB_VERB_RECOVERY 4
#define DB_VERB_REPLICATION 8
#define DB_VERB_WAITSFOR 16
2007-09-06 14:18:08 +00:00
#define DB_DBT_MALLOC 4
#define DB_DBT_REALLOC 16
#define DB_DBT_USERMEM 32
#define DB_DBT_DUPOK 64
#define DB_ARCH_ABS 1
#define DB_ARCH_LOG 4
#define DB_CREATE 1
2007-12-18 18:29:32 +00:00
#define DB_CXX_NO_EXCEPTIONS 2
2007-11-19 16:30:50 +00:00
#define DB_EXCL 2048
2007-10-14 13:56:25 +00:00
#define DB_PRIVATE 262144
2007-09-06 14:18:08 +00:00
#define DB_RDONLY 16
#define DB_RECOVER 32
2013-04-16 23:58:02 -04:00
#define DB_RUNRECOVERY -30982
2007-09-06 14:18:08 +00:00
#define DB_THREAD 64
#define DB_TXN_NOSYNC 256
#define DB_LOCK_DEFAULT 1
2007-10-14 13:56:25 +00:00
#define DB_LOCK_OLDEST 6
#define DB_LOCK_RANDOM 7
2007-09-06 14:18:08 +00:00
#define DB_DUP 2
2007-11-14 17:50:28 +00:00
#define DB_DUPSORT 4
2007-12-13 23:38:15 +00:00
#define DB_KEYFIRST 16
#define DB_KEYLAST 17
2007-12-07 14:57:13 +00:00
#define DB_NODUPDATA 22
2007-10-14 13:56:25 +00:00
#define DB_NOOVERWRITE 23
2007-12-14 14:26:22 +00:00
#define DB_YESOVERWRITE 254
#define DB_OPFLAGS_MASK 255
2008-02-11 19:55:37 +00:00
#define DB_AUTO_COMMIT 8388608
2007-10-14 13:56:25 +00:00
#define DB_INIT_LOCK 4096
#define DB_INIT_LOG 8192
#define DB_INIT_MPOOL 16384
2013-04-16 23:58:02 -04:00
#define DB_CLOSE_DONT_TRIM_LOG 1048576
2007-10-14 13:56:25 +00:00
#define DB_INIT_TXN 32768
2007-11-26 17:24:43 +00:00
#define DB_USE_ENVIRON 512
#define DB_USE_ENVIRON_ROOT 1024
2007-10-14 13:56:25 +00:00
#define DB_KEYEXIST -30997
#define DB_LOCK_DEADLOCK -30996
2008-01-21 23:59:04 +00:00
#define DB_LOCK_NOTGRANTED -30995
2007-10-14 13:56:25 +00:00
#define DB_NOTFOUND -30991
2007-12-03 18:44:41 +00:00
#define DB_SECONDARY_BAD -30981
2007-11-30 05:04:06 +00:00
#define DB_DONOTINDEX -30999
2007-09-06 20:13:56 +00:00
#define DB_BADFORMAT -30500
2007-11-28 20:04:35 +00:00
#define DB_DELETE_ANY 65536
2013-04-16 23:57:55 -04:00
#define DB_TRUNCATE_WITHCURSORS 131072
2007-10-14 13:56:25 +00:00
#define DB_FIRST 10
#define DB_GET_BOTH 11
2007-12-17 13:48:20 +00:00
#define DB_GET_BOTH_RANGE 13
2007-10-14 13:56:25 +00:00
#define DB_LAST 18
2007-12-03 18:44:41 +00:00
#define DB_CURRENT 8
2007-10-14 13:56:25 +00:00
#define DB_NEXT 19
#define DB_NEXT_DUP 20
2008-01-10 12:51:09 +00:00
#define DB_NEXT_NODUP 21
2007-10-14 13:56:25 +00:00
#define DB_PREV 27
2008-01-10 12:51:09 +00:00
#define DB_PREV_NODUP 28
2007-10-14 13:56:25 +00:00
#define DB_SET 30
#define DB_SET_RANGE 32
2008-02-03 18:26:01 +00:00
#define DB_CURRENT_BINDING 253
2013-04-16 23:57:59 -04:00
#define DB_SET_RANGE_REVERSE 252
#define DB_GET_BOTH_RANGE_REVERSE 251
2007-10-14 13:56:25 +00:00
#define DB_RMW 1073741824
2008-06-10 15:39:31 +00:00
#define DB_PRELOCKED 0x00800000
2008-06-10 19:46:00 +00:00
#define DB_PRELOCKED_WRITE 0x00400000
2007-11-30 05:04:06 +00:00
#define DB_DBT_APPMALLOC 1
2008-01-02 15:54:00 +00:00
#define DB_TXN_WRITE_NOSYNC 524288
2008-01-22 15:42:54 +00:00
#define DB_TXN_NOWAIT 2048
#define DB_TXN_SYNC 4096
2007-10-19 17:05:10 +00:00
#endif
2008-03-19 14:39:27 +00:00
/* TOKUDB specific error codes */
#define TOKUDB_OUT_OF_LOCKS -100000
2008-05-16 20:09:13 +00:00
#define TOKUDB_SUCCEEDED_EARLY -100001
2013-04-16 23:57:47 -04:00
#define TOKUDB_DICTIONARY_TOO_OLD -100004
2013-04-16 23:57:49 -04:00
#define TOKUDB_DICTIONARY_TOO_NEW -100005
#define TOKUDB_DICTIONARY_NO_HEADER -100006
2013-04-16 23:57:41 -04:00
#define TOKUDB_FOUND_BUT_REJECTED -100002
#define TOKUDB_USER_CALLBACK_ERROR -100003
2007-09-06 14:18:08 +00:00
/* in wrap mode, top-level function txn_begin is renamed, but the field isn't renamed, so we have to hack it here.*/
#ifdef _TOKUDB_WRAP_H
#undef txn_begin
#endif
2007-10-09 22:03:24 +00:00
struct __toku_db_env {
struct __toku_db_env_internal *i;
2013-04-16 23:57:48 -04:00
#define db_env_struct_i(x) ((x)->i)
2013-04-16 23:57:49 -04:00
int (*checkpointing_set_period) (DB_ENV*, u_int32_t) /* Change the delay between automatic checkpoints. 0 means disabled. */;
int (*checkpointing_get_period) (DB_ENV*, u_int32_t*) /* Retrieve the delay between automatic checkpoints. 0 means disabled. */;
2013-04-16 23:57:47 -04:00
int (*checkpointing_postpone) (DB_ENV*) /* Use for 'rename table' or any other operation that must be disjoint from a checkpoint */;
int (*checkpointing_resume) (DB_ENV*) /* Alert tokudb 'postpone' is no longer necessary */;
int (*checkpointing_begin_atomic_operation) (DB_ENV*) /* Begin a set of operations (that must be atomic as far as checkpoints are concerned). i.e. inserting into every index in one table */;
int (*checkpointing_end_atomic_operation) (DB_ENV*) /* End a set of operations (that must be atomic as far as checkpoints are concerned). */;
int (*set_default_bt_compare) (DB_ENV*,int (*bt_compare) (DB *, const DBT *, const DBT *)) /* Set default (key) comparison function for all DBs in this environment. Required for RECOVERY since you cannot open the DBs manually. */;
int (*set_default_dup_compare) (DB_ENV*,int (*bt_compare) (DB *, const DBT *, const DBT *)) /* Set default (val) comparison function for all DBs in this environment. Required for RECOVERY since you cannot open the DBs manually. */;
2007-11-14 17:50:28 +00:00
void *app_private; /* 32-bit offset=36 size=4, 64=bit offset=72 size=8 */
2013-04-16 23:58:02 -04:00
int (*get_engine_status) (DB_ENV*, ENGINE_STATUS*) /* Fill in status struct */;
void* __toku_dummy0[26];
2013-04-16 23:57:49 -04:00
char __toku_dummy1[64];
2007-12-21 14:20:22 +00:00
void *api1_internal; /* 32-bit offset=212 size=4, 64=bit offset=360 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy2[7];
2007-11-14 17:50:28 +00:00
int (*close) (DB_ENV *, u_int32_t); /* 32-bit offset=244 size=4, 64=bit offset=424 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy3[2];
2007-11-14 17:50:28 +00:00
void (*err) (const DB_ENV *, int, const char *, ...); /* 32-bit offset=256 size=4, 64=bit offset=448 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy4[1];
2007-12-21 14:20:22 +00:00
int (*open) (DB_ENV *, const char *, u_int32_t, int); /* 32-bit offset=264 size=4, 64=bit offset=464 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy5[1];
2007-11-14 17:50:28 +00:00
int (*set_data_dir) (DB_ENV *, const char *); /* 32-bit offset=272 size=4, 64=bit offset=480 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy6[3];
2007-11-14 17:50:28 +00:00
void (*set_errcall) (DB_ENV *, void (*)(const char *, char *)); /* 32-bit offset=288 size=4, 64=bit offset=512 size=8 */
2007-12-21 14:20:22 +00:00
void (*set_errfile) (DB_ENV *, FILE*); /* 32-bit offset=292 size=4, 64=bit offset=520 size=8 */
2007-11-14 17:50:28 +00:00
void (*set_errpfx) (DB_ENV *, const char *); /* 32-bit offset=296 size=4, 64=bit offset=528 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy7[1];
2007-11-14 17:50:28 +00:00
int (*set_flags) (DB_ENV *, u_int32_t, int); /* 32-bit offset=304 size=4, 64=bit offset=544 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy8[4];
2007-11-14 17:50:28 +00:00
int (*set_tmp_dir) (DB_ENV *, const char *); /* 32-bit offset=324 size=4, 64=bit offset=584 size=8 */
int (*set_verbose) (DB_ENV *, u_int32_t, int); /* 32-bit offset=328 size=4, 64=bit offset=592 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy9[1];
2007-11-14 17:50:28 +00:00
int (*set_lg_bsize) (DB_ENV *, u_int32_t); /* 32-bit offset=336 size=4, 64=bit offset=608 size=8 */
int (*set_lg_dir) (DB_ENV *, const char *); /* 32-bit offset=340 size=4, 64=bit offset=616 size=8 */
int (*set_lg_max) (DB_ENV *, u_int32_t); /* 32-bit offset=344 size=4, 64=bit offset=624 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy10[1];
2007-11-14 17:50:28 +00:00
int (*log_archive) (DB_ENV *, char **[], u_int32_t); /* 32-bit offset=352 size=4, 64=bit offset=640 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy11[2];
2007-11-14 17:50:28 +00:00
int (*log_flush) (DB_ENV *, const DB_LSN *); /* 32-bit offset=364 size=4, 64=bit offset=664 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy12[4];
2007-11-14 17:50:28 +00:00
int (*set_lk_detect) (DB_ENV *, u_int32_t); /* 32-bit offset=384 size=4, 64=bit offset=704 size=8 */
int (*set_lk_max) (DB_ENV *, u_int32_t); /* 32-bit offset=388 size=4, 64=bit offset=712 size=8 */
2008-02-06 12:54:17 +00:00
int (*set_lk_max_locks) (DB_ENV *, u_int32_t); /* 32-bit offset=392 size=4, 64=bit offset=720 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy13[14];
2007-11-14 17:50:28 +00:00
int (*set_cachesize) (DB_ENV *, u_int32_t, u_int32_t, int); /* 32-bit offset=452 size=4, 64=bit offset=840 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy14[21];
2007-11-14 17:50:28 +00:00
int (*txn_begin) (DB_ENV *, DB_TXN *, DB_TXN **, u_int32_t); /* 32-bit offset=540 size=4, 64=bit offset=1016 size=8 */
int (*txn_checkpoint) (DB_ENV *, u_int32_t, u_int32_t, u_int32_t); /* 32-bit offset=544 size=4, 64=bit offset=1024 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy15[2];
2007-11-14 17:50:28 +00:00
int (*txn_stat) (DB_ENV *, DB_TXN_STAT **, u_int32_t); /* 32-bit offset=556 size=4, 64=bit offset=1048 size=8 */
2013-04-16 23:57:49 -04:00
void* __toku_dummy16[2]; /* Padding at the end */
char __toku_dummy17[8]; /* Padding at the end */
2007-10-09 22:03:24 +00:00
};
struct __toku_db_key_range {
double less; /* 32-bit offset=0 size=8, 64=bit offset=0 size=8 */
double equal; /* 32-bit offset=8 size=8, 64=bit offset=8 size=8 */
double greater; /* 32-bit offset=16 size=8, 64=bit offset=16 size=8 */
2007-11-14 17:50:28 +00:00
void* __toku_dummy0[126]; /* Padding at the end */
2007-10-14 13:56:25 +00:00
char __toku_dummy1[48]; /* Padding at the end */
2007-10-09 22:03:24 +00:00
};
struct __toku_db_lsn {
char __toku_dummy0[8]; /* Padding at the end */
};
2013-04-16 23:57:47 -04:00
struct __toku_dbt {
void*data; /* 32-bit offset=0 size=4, 64=bit offset=0 size=8 */
u_int32_t size; /* 32-bit offset=4 size=4, 64=bit offset=8 size=4 */
u_int32_t ulen; /* 32-bit offset=8 size=4, 64=bit offset=12 size=4 */
char __toku_dummy0[8];
u_int32_t flags; /* 32-bit offset=20 size=4, 64=bit offset=24 size=4 */
/* 4 more bytes of alignment in the 64-bit case. */
};
2013-04-16 23:57:48 -04:00
typedef int (*toku_dbt_upgradef)(DB*,
u_int32_t old_version, const DBT *old_descriptor, const DBT *old_key, const DBT *old_val,
u_int32_t new_version, const DBT *new_descriptor, const DBT *new_key, const DBT *new_val);
2007-10-09 22:03:24 +00:00
struct __toku_db {
struct __toku_db_internal *i;
2013-04-16 23:57:48 -04:00
#define db_struct_i(x) ((x)->i)
2008-05-13 13:07:25 +00:00
int (*key_range64)(DB*, DB_TXN *, DBT *, u_int64_t *less, u_int64_t *equal, u_int64_t *greater, int *is_exact);
2013-04-16 23:57:47 -04:00
int (*stat64)(DB *, DB_TXN *, DB_BTREE_STAT64 *);
2008-07-09 16:55:59 +00:00
int (*pre_acquire_read_lock)(DB*, DB_TXN*, const DBT*, const DBT*, const DBT*, const DBT*);
2007-10-09 22:03:24 +00:00
void *app_private; /* 32-bit offset=16 size=4, 64=bit offset=32 size=8 */
2007-11-14 17:50:28 +00:00
DB_ENV *dbenv; /* 32-bit offset=20 size=4, 64=bit offset=40 size=8 */
2013-04-16 23:57:47 -04:00
int (*pre_acquire_table_lock)(DB*, DB_TXN*);
2008-07-09 16:55:59 +00:00
const DBT* (*dbt_pos_infty)(void) /* Return the special DBT that refers to positive infinity in the lock table.*/;
const DBT* (*dbt_neg_infty)(void)/* Return the special DBT that refers to negative infinity in the lock table.*/;
2008-08-18 03:27:56 +00:00
int (*delboth) (DB*, DB_TXN*, DBT*, DBT*, u_int32_t) /* Delete the key/value pair. */;
2013-04-16 23:57:42 -04:00
int (*row_size_supported) (DB*, u_int32_t) /* Test whether a row size is supported. */;
2013-04-16 23:57:48 -04:00
const DBT *descriptor /* saved row/dictionary descriptor for aiding in comparisons */;
2013-04-16 23:57:48 -04:00
int (*set_descriptor) (DB*, u_int32_t version, const DBT* descriptor, toku_dbt_upgradef dbt_userformat_upgrade) /* set row/dictionary descriptor for a db. Available only while db is open */;
2013-04-16 23:57:58 -04:00
int (*getf_set)(DB*, DB_TXN*, u_int32_t, DBT*, YDB_CALLBACK_FUNCTION, void*) /* same as DBC->c_getf_set without a persistent cursor) */;
int (*getf_get_both)(DB*, DB_TXN*, u_int32_t, DBT*, DBT*, YDB_CALLBACK_FUNCTION, void*) /* same as DBC->c_getf_get_both without a persistent cursor) */;
2013-04-16 23:57:59 -04:00
int (*flatten)(DB*, DB_TXN*) /* Flatten a dictionary, similar to (but faster than) a table scan */;
void* __toku_dummy0[19];
2008-07-09 16:55:59 +00:00
char __toku_dummy1[96];
2007-12-18 18:29:32 +00:00
void *api_internal; /* 32-bit offset=236 size=4, 64=bit offset=376 size=8 */
2013-04-16 23:57:41 -04:00
void* __toku_dummy2[5];
2007-11-14 17:50:28 +00:00
int (*close) (DB*, u_int32_t); /* 32-bit offset=260 size=4, 64=bit offset=424 size=8 */
int (*cursor) (DB *, DB_TXN *, DBC **, u_int32_t); /* 32-bit offset=264 size=4, 64=bit offset=432 size=8 */
int (*del) (DB *, DB_TXN *, DBT *, u_int32_t); /* 32-bit offset=268 size=4, 64=bit offset=440 size=8 */
2008-07-09 16:55:59 +00:00
void* __toku_dummy3[2];
2008-01-11 14:38:49 +00:00
int (*fd) (DB *, int *); /* 32-bit offset=280 size=4, 64=bit offset=464 size=8 */
2007-11-14 17:50:28 +00:00
int (*get) (DB *, DB_TXN *, DBT *, DBT *, u_int32_t); /* 32-bit offset=284 size=4, 64=bit offset=472 size=8 */
2013-04-16 23:57:41 -04:00
void* __toku_dummy4[4];
2007-11-14 17:50:28 +00:00
int (*key_range) (DB *, DB_TXN *, DBT *, DB_KEY_RANGE *, u_int32_t); /* 32-bit offset=304 size=4, 64=bit offset=512 size=8 */
int (*open) (DB *, DB_TXN *, const char *, const char *, DBTYPE, u_int32_t, int); /* 32-bit offset=308 size=4, 64=bit offset=520 size=8 */
int (*put) (DB *, DB_TXN *, DBT *, DBT *, u_int32_t); /* 32-bit offset=312 size=4, 64=bit offset=528 size=8 */
int (*remove) (DB *, const char *, const char *, u_int32_t); /* 32-bit offset=316 size=4, 64=bit offset=536 size=8 */
int (*rename) (DB *, const char *, const char *, const char *, u_int32_t); /* 32-bit offset=320 size=4, 64=bit offset=544 size=8 */
2008-06-30 20:17:58 +00:00
int (*truncate) (DB *, DB_TXN *, u_int32_t *, u_int32_t); /* 32-bit offset=324 size=4, 64=bit offset=552 size=8 */
2008-07-09 16:55:59 +00:00
void* __toku_dummy5[4];
2007-12-18 18:29:32 +00:00
int (*set_dup_compare) (DB *, int (*)(DB *, const DBT *, const DBT *)); /* 32-bit offset=344 size=4, 64=bit offset=592 size=8 */
2008-07-09 16:55:59 +00:00
void* __toku_dummy6[2];
2007-12-21 14:20:22 +00:00
void (*set_errfile) (DB *, FILE*); /* 32-bit offset=356 size=4, 64=bit offset=616 size=8 */
2008-07-09 16:55:59 +00:00
void* __toku_dummy7[2];
2007-11-14 17:50:28 +00:00
int (*set_flags) (DB *, u_int32_t); /* 32-bit offset=368 size=4, 64=bit offset=640 size=8 */
2008-07-09 16:55:59 +00:00
void* __toku_dummy8[1];
2007-12-21 14:20:22 +00:00
int (*set_pagesize) (DB *, u_int32_t); /* 32-bit offset=376 size=4, 64=bit offset=656 size=8 */
2008-07-09 16:55:59 +00:00
void* __toku_dummy9[1];
2007-11-14 17:50:28 +00:00
int (*stat) (DB *, void *, u_int32_t); /* 32-bit offset=384 size=4, 64=bit offset=672 size=8 */
2008-07-09 16:55:59 +00:00
void* __toku_dummy10[2];
2007-11-14 17:50:28 +00:00
int (*verify) (DB *, const char *, const char *, FILE *, u_int32_t); /* 32-bit offset=396 size=4, 64=bit offset=696 size=8 */
int (*set_bt_compare) (DB *, int (*)(DB *, const DBT *, const DBT *)); /* 32-bit offset=400 size=4, 64=bit offset=704 size=8 */
2008-07-09 16:55:59 +00:00
void* __toku_dummy11[15]; /* Padding at the end */
char __toku_dummy12[8]; /* Padding at the end */
2007-10-09 22:03:24 +00:00
};
struct __toku_db_txn_active {
u_int32_t txnid; /* 32-bit offset=0 size=4, 64=bit offset=0 size=4 */
char __toku_dummy0[4];
DB_LSN lsn; /* 32-bit offset=8 size=8, 64=bit offset=8 size=8 */
};
2013-04-16 23:57:38 -04:00
struct txn_stat {
u_int64_t rolltmp_raw_count;
};
2007-10-09 22:03:24 +00:00
struct __toku_db_txn {
2007-12-21 15:47:42 +00:00
DB_ENV *mgrp /*In TokuDB, mgrp is a DB_ENV not a DB_TXNMGR*/; /* 32-bit offset=0 size=4, 64=bit offset=0 size=8 */
2008-08-12 13:38:04 +00:00
DB_TXN *parent; /* 32-bit offset=4 size=4, 64=bit offset=8 size=8 */
2007-10-09 22:03:24 +00:00
struct __toku_db_txn_internal *i;
2013-04-16 23:57:48 -04:00
#define db_txn_struct_i(x) ((x)->i)
2013-04-16 23:57:38 -04:00
int (*txn_stat)(DB_TXN *, struct txn_stat **);
2013-04-16 23:58:03 -04:00
struct { void *next, *prev; } open_txns;
void* __toku_dummy0[6];
2007-10-09 22:03:24 +00:00
char __toku_dummy1[24];
2007-12-21 14:20:22 +00:00
void *api_internal; /* 32-bit offset=68 size=4, 64=bit offset=112 size=8 */
void* __toku_dummy2[1];
2007-10-14 13:56:25 +00:00
int (*abort) (DB_TXN *); /* 32-bit offset=76 size=4, 64=bit offset=128 size=8 */
int (*commit) (DB_TXN*, u_int32_t); /* 32-bit offset=80 size=4, 64=bit offset=136 size=8 */
2007-12-21 14:20:22 +00:00
void* __toku_dummy3[1];
2007-10-14 13:56:25 +00:00
u_int32_t (*id) (DB_TXN *); /* 32-bit offset=88 size=4, 64=bit offset=152 size=8 */
2007-12-21 14:20:22 +00:00
void* __toku_dummy4[3]; /* Padding at the end */
2007-10-09 22:03:24 +00:00
};
struct __toku_db_txn_stat {
void* __toku_dummy0[1];
char __toku_dummy1[28];
u_int32_t st_nactive; /* 32-bit offset=32 size=4, 64=bit offset=36 size=4 */
char __toku_dummy2[8];
DB_TXN_ACTIVE *st_txnarray; /* 32-bit offset=44 size=4, 64=bit offset=48 size=8 */
void* __toku_dummy3[1]; /* Padding at the end */
char __toku_dummy4[8]; /* Padding at the end */
};
struct __toku_dbc {
2007-12-21 15:47:42 +00:00
DB *dbp; /* 32-bit offset=0 size=4, 64=bit offset=0 size=8 */
2007-10-09 22:03:24 +00:00
struct __toku_dbc_internal *i;
2013-04-16 23:57:48 -04:00
#define dbc_struct_i(x) ((x)->i)
2013-04-16 23:57:41 -04:00
int (*c_getf_first)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_last)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_next)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_next_dup)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_next_nodup)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_prev)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_prev_dup)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_prev_nodup)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_current)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_current_binding)(DBC *, u_int32_t, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_heaviside)(DBC *, u_int32_t, YDB_HEAVISIDE_CALLBACK_FUNCTION f, void *extra_f, YDB_HEAVISIDE_FUNCTION h, void *extra_h, int direction);
int (*c_getf_set)(DBC *, u_int32_t, DBT *, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_set_range)(DBC *, u_int32_t, DBT *, YDB_CALLBACK_FUNCTION, void *);
2013-04-16 23:57:59 -04:00
int (*c_getf_set_range_reverse)(DBC *, u_int32_t, DBT *, YDB_CALLBACK_FUNCTION, void *);
2013-04-16 23:57:41 -04:00
int (*c_getf_get_both)(DBC *, u_int32_t, DBT *, DBT *, YDB_CALLBACK_FUNCTION, void *);
int (*c_getf_get_both_range)(DBC *, u_int32_t, DBT *, DBT *, YDB_CALLBACK_FUNCTION, void *);
2013-04-16 23:57:59 -04:00
int (*c_getf_get_both_range_reverse)(DBC *, u_int32_t, DBT *, DBT *, YDB_CALLBACK_FUNCTION, void *);
void* __toku_dummy0[2];
2007-10-14 13:56:25 +00:00
char __toku_dummy1[104];
2007-11-14 17:50:28 +00:00
int (*c_close) (DBC *); /* 32-bit offset=188 size=4, 64=bit offset=272 size=8 */
2008-01-10 16:29:45 +00:00
int (*c_count) (DBC *, db_recno_t *, u_int32_t); /* 32-bit offset=192 size=4, 64=bit offset=280 size=8 */
2007-11-14 17:50:28 +00:00
int (*c_del) (DBC *, u_int32_t); /* 32-bit offset=196 size=4, 64=bit offset=288 size=8 */
2008-07-09 16:55:59 +00:00
void* __toku_dummy2[1];
2007-11-14 17:50:28 +00:00
int (*c_get) (DBC *, DBT *, DBT *, u_int32_t); /* 32-bit offset=204 size=4, 64=bit offset=304 size=8 */
2013-04-16 23:57:41 -04:00
void* __toku_dummy3[11]; /* Padding at the end */
2007-10-09 22:03:24 +00:00
};
#ifdef _TOKUDB_WRAP_H
#define txn_begin txn_begin_tokudb
#endif
2008-03-05 11:54:58 +00:00
int db_env_create(DB_ENV **, u_int32_t) __attribute__((__visibility__("default")));
int db_create(DB **, DB_ENV *, u_int32_t) __attribute__((__visibility__("default")));
char *db_strerror(int) __attribute__((__visibility__("default")));
const char *db_version(int*,int *,int *) __attribute__((__visibility__("default")));
int log_compare (const DB_LSN*, const DB_LSN *) __attribute__((__visibility__("default")));
2008-03-08 21:29:27 +00:00
int db_env_set_func_fsync (int (*)(int)) __attribute__((__visibility__("default")));
2008-04-12 09:12:22 +00:00
int toku_set_trace_file (char *fname) __attribute__((__visibility__("default")));
int toku_close_trace_file (void) __attribute__((__visibility__("default")));
2013-04-16 23:57:38 -04:00
int db_env_set_func_free (void (*)(void*)) __attribute__((__visibility__("default")));
2013-04-16 23:57:34 -04:00
int db_env_set_func_malloc (void *(*)(size_t)) __attribute__((__visibility__("default")));
2013-04-16 23:57:43 -04:00
int db_env_set_func_pwrite (ssize_t (*)(int, const void *, size_t, toku_off_t)) __attribute__((__visibility__("default")));
2013-04-16 23:57:38 -04:00
int db_env_set_func_write (ssize_t (*)(int, const void *, size_t)) __attribute__((__visibility__("default")));
2013-04-16 23:57:34 -04:00
int db_env_set_func_realloc (void *(*)(void*, size_t)) __attribute__((__visibility__("default")));
2013-04-16 23:57:49 -04:00
void db_env_set_checkpoint_callback (void (*)(void*), void*) __attribute__((__visibility__("default")));
2013-04-16 23:58:02 -04:00
void db_env_set_checkpoint_callback2 (void (*)(void*), void*) __attribute__((__visibility__("default")));
2007-10-09 22:03:24 +00:00
#if defined(__cplusplus)
}
#endif
#endif