db.h_4_5 19.5 KB
Newer Older
Rich Prohaska's avatar
Rich Prohaska committed
1 2
#ifndef _DB_H
#define _DB_H
3 4
/* This code generated by make_db_h.   Copyright (c) 2007, 2008 Tokutek */
#ident "Copyright (c) 2007, 2008 Tokutek Inc.  All rights reserved."
Rich Prohaska's avatar
Rich Prohaska committed
5 6 7 8 9 10 11
#include <sys/types.h>
/*stdio is needed for the FILE* in db->verify*/
#include <stdio.h>
#if defined(__cplusplus)
extern "C" {
#endif
#define TOKUDB 1
12
#define TOKUDB_NATIVE_H 0
Rich Prohaska's avatar
Rich Prohaska committed
13 14 15 16 17 18 19 20
#define DB_VERSION_MAJOR 4
#define DB_VERSION_MINOR 5
#define DB_VERSION_PATCH 20
#ifndef _TOKUDB_WRAP_H
#define DB_VERSION_STRING "Tokutek: TokuDB 4.5.20"
#else
#define DB_VERSION_STRING_ydb "Tokutek: TokuDB (wrapped bdb)"
#endif
21 22 23 24
#ifndef TOKU_OFF_T_DEFINED
#define TOKU_OFF_T_DEFINED
typedef int64_t toku_off_t;
#endif
Rich Prohaska's avatar
Rich Prohaska committed
25 26 27 28 29 30 31 32 33
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;
34
typedef u_int32_t db_recno_t;
35 36 37
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);
38
#include <tdb-internal.h>
39 40 41 42 43 44
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;
Rich Prohaska's avatar
Rich Prohaska committed
45
typedef enum {
46 47
 DB_BTREE=1,
 DB_UNKNOWN=5
Rich Prohaska's avatar
Rich Prohaska committed
48 49 50 51 52 53 54 55 56 57 58 59 60
} DBTYPE;
#ifndef _TOKUDB_WRAP_H
#define DB_VERB_DEADLOCK 1
#define DB_VERB_RECOVERY 2
#define DB_VERB_REPLICATION 8
#define DB_VERB_WAITSFOR 16
#define DB_DBT_MALLOC 4
#define DB_DBT_REALLOC 16
#define DB_DBT_USERMEM 64
#define DB_DBT_DUPOK 128
#define DB_ARCH_ABS 1
#define DB_ARCH_LOG 4
#define DB_CREATE 1
61
#define DB_CXX_NO_EXCEPTIONS 1
Rich Prohaska's avatar
Rich Prohaska committed
62 63 64 65 66 67 68 69 70 71 72
#define DB_EXCL 16384
#define DB_PRIVATE 2097152
#define DB_RDONLY 32
#define DB_RECOVER 64
#define DB_THREAD 128
#define DB_TXN_NOSYNC 512
#define DB_LOCK_DEFAULT 1
#define DB_LOCK_OLDEST 7
#define DB_LOCK_RANDOM 8
#define DB_DUP 32768
#define DB_DUPSORT 65536
73 74
#define DB_KEYFIRST 13
#define DB_KEYLAST 14
75
#define DB_NODUPDATA 19
Rich Prohaska's avatar
Rich Prohaska committed
76
#define DB_NOOVERWRITE 20
77 78
#define DB_YESOVERWRITE 254
#define DB_OPFLAGS_MASK 255
Yoni Fogel's avatar
Yoni Fogel committed
79
#define DB_AUTO_COMMIT 33554432
Rich Prohaska's avatar
Rich Prohaska committed
80 81 82 83 84 85
#define DB_INIT_LOCK 32768
#define DB_INIT_LOG 65536
#define DB_INIT_MPOOL 131072
#define DB_INIT_TXN 524288
#define DB_USE_ENVIRON 4096
#define DB_USE_ENVIRON_ROOT 8192
86
#define DB_READ_UNCOMMITTED 134217728
Rich Prohaska's avatar
Rich Prohaska committed
87 88
#define DB_KEYEXIST -30996
#define DB_LOCK_DEADLOCK -30995
Yoni Fogel's avatar
Yoni Fogel committed
89
#define DB_LOCK_NOTGRANTED -30994
Rich Prohaska's avatar
Rich Prohaska committed
90 91 92
#define DB_NOTFOUND -30989
#define DB_SECONDARY_BAD -30974
#define DB_DONOTINDEX -30998
93
#define DB_BUFFER_SMALL -30999
Rich Prohaska's avatar
Rich Prohaska committed
94 95
#define DB_BADFORMAT -30500
#define DB_DELETE_ANY 65536
96
#define DB_TRUNCATE_WITHCURSORS 131072
Rich Prohaska's avatar
Rich Prohaska committed
97 98
#define DB_FIRST 7
#define DB_GET_BOTH 8
99
#define DB_GET_BOTH_RANGE 10
Rich Prohaska's avatar
Rich Prohaska committed
100 101 102 103
#define DB_LAST 15
#define DB_CURRENT 6
#define DB_NEXT 16
#define DB_NEXT_DUP 17
104
#define DB_NEXT_NODUP 18
Rich Prohaska's avatar
Rich Prohaska committed
105
#define DB_PREV 23
106
#define DB_PREV_NODUP 24
Rich Prohaska's avatar
Rich Prohaska committed
107 108
#define DB_SET 25
#define DB_SET_RANGE 27
109
#define DB_CURRENT_BINDING 253
110 111
#define DB_SET_RANGE_REVERSE 252
#define DB_GET_BOTH_RANGE_REVERSE 251
Rich Prohaska's avatar
Rich Prohaska committed
112
#define DB_RMW 1073741824
113
#define DB_PRELOCKED 0x00800000
Yoni Fogel's avatar
Yoni Fogel committed
114
#define DB_PRELOCKED_WRITE 0x00400000
Rich Prohaska's avatar
Rich Prohaska committed
115
#define DB_DBT_APPMALLOC 1
116 117
#define DB_LOG_AUTOREMOVE 524288
#define DB_TXN_WRITE_NOSYNC 2048
118 119
#define DB_TXN_NOWAIT 16384
#define DB_TXN_SYNC 32768
Rich Prohaska's avatar
Rich Prohaska committed
120
#endif
121 122
/* TOKUDB specific error codes */
#define TOKUDB_OUT_OF_LOCKS -100000
Yoni Fogel's avatar
Yoni Fogel committed
123
#define TOKUDB_SUCCEEDED_EARLY -100001
124
#define TOKUDB_DICTIONARY_TOO_OLD -100004
125 126
#define TOKUDB_DICTIONARY_TOO_NEW -100005
#define TOKUDB_DICTIONARY_NO_HEADER -100006
127 128
#define TOKUDB_FOUND_BUT_REJECTED -100002
#define TOKUDB_USER_CALLBACK_ERROR -100003
Rich Prohaska's avatar
Rich Prohaska committed
129 130 131 132 133 134
/* 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
struct __toku_db_env {
  struct __toku_db_env_internal *i;
135
#define db_env_struct_i(x) ((x)->i)
136 137
  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. */;
138 139 140 141 142 143
  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. */;
144
  void* __toku_dummy0[4];
Rich Prohaska's avatar
Rich Prohaska committed
145
  void *app_private; /* 32-bit offset=52 size=4, 64=bit offset=104 size=8 */
146
  void* __toku_dummy1[38];
Rich Prohaska's avatar
Rich Prohaska committed
147
  char __toku_dummy2[128];
148 149
  void *api1_internal; /* 32-bit offset=336 size=4, 64=bit offset=544 size=8 */
  void* __toku_dummy3[8];
Rich Prohaska's avatar
Rich Prohaska committed
150
  int  (*close) (DB_ENV *, u_int32_t); /* 32-bit offset=372 size=4, 64=bit offset=616 size=8 */
151
  void* __toku_dummy4[2];
Rich Prohaska's avatar
Rich Prohaska committed
152
  void (*err) (const DB_ENV *, int, const char *, ...); /* 32-bit offset=384 size=4, 64=bit offset=640 size=8 */
153
  void* __toku_dummy5[3];
154
  int (*get_cachesize) (DB_ENV *, u_int32_t *, u_int32_t *, int *); /* 32-bit offset=400 size=4, 64=bit offset=672 size=8 */
155
  void* __toku_dummy6[4];
156
  int (*get_flags) (DB_ENV *, u_int32_t *); /* 32-bit offset=420 size=4, 64=bit offset=712 size=8 */
157 158 159
  void* __toku_dummy7[4];
  int  (*get_lg_max) (DB_ENV *, u_int32_t*); /* 32-bit offset=440 size=4, 64=bit offset=752 size=8 */
  void* __toku_dummy8[4];
160
  int  (*get_lk_max_locks) (DB_ENV *, u_int32_t *); /* 32-bit offset=460 size=4, 64=bit offset=792 size=8 */
161
  void* __toku_dummy9[21];
Rich Prohaska's avatar
Rich Prohaska committed
162
  int  (*log_archive) (DB_ENV *, char **[], u_int32_t); /* 32-bit offset=548 size=4, 64=bit offset=968 size=8 */
163
  void* __toku_dummy10[2];
Rich Prohaska's avatar
Rich Prohaska committed
164
  int  (*log_flush) (DB_ENV *, const DB_LSN *); /* 32-bit offset=560 size=4, 64=bit offset=992 size=8 */
165
  void* __toku_dummy11[25];
Rich Prohaska's avatar
Rich Prohaska committed
166
  int  (*open) (DB_ENV *, const char *, u_int32_t, int); /* 32-bit offset=664 size=4, 64=bit offset=1200 size=8 */
167
  void* __toku_dummy12[27];
Rich Prohaska's avatar
Rich Prohaska committed
168 169
  int  (*set_cachesize) (DB_ENV *, u_int32_t, u_int32_t, int); /* 32-bit offset=776 size=4, 64=bit offset=1424 size=8 */
  int  (*set_data_dir) (DB_ENV *, const char *); /* 32-bit offset=780 size=4, 64=bit offset=1432 size=8 */
170
  void* __toku_dummy13[1];
171
  void (*set_errcall) (DB_ENV *, void (*)(const DB_ENV *, const char *, const char *)); /* 32-bit offset=788 size=4, 64=bit offset=1448 size=8 */
172
  void (*set_errfile) (DB_ENV *, FILE*); /* 32-bit offset=792 size=4, 64=bit offset=1456 size=8 */
Rich Prohaska's avatar
Rich Prohaska committed
173
  void (*set_errpfx) (DB_ENV *, const char *); /* 32-bit offset=796 size=4, 64=bit offset=1464 size=8 */
174
  void* __toku_dummy14[2];
175 176
  int  (*set_flags) (DB_ENV *, u_int32_t, int); /* 32-bit offset=808 size=4, 64=bit offset=1488 size=8 */
  void* __toku_dummy15[2];
Rich Prohaska's avatar
Rich Prohaska committed
177 178
  int  (*set_lg_bsize) (DB_ENV *, u_int32_t); /* 32-bit offset=820 size=4, 64=bit offset=1512 size=8 */
  int  (*set_lg_dir) (DB_ENV *, const char *); /* 32-bit offset=824 size=4, 64=bit offset=1520 size=8 */
179
  void* __toku_dummy16[1];
Rich Prohaska's avatar
Rich Prohaska committed
180
  int  (*set_lg_max) (DB_ENV *, u_int32_t); /* 32-bit offset=832 size=4, 64=bit offset=1536 size=8 */
181
  void* __toku_dummy17[2];
Rich Prohaska's avatar
Rich Prohaska committed
182
  int  (*set_lk_detect) (DB_ENV *, u_int32_t); /* 32-bit offset=844 size=4, 64=bit offset=1560 size=8 */
183
  void* __toku_dummy18[1];
184
  int  (*set_lk_max_locks) (DB_ENV *, u_int32_t); /* 32-bit offset=852 size=4, 64=bit offset=1576 size=8 */
185
  void* __toku_dummy19[14];
Rich Prohaska's avatar
Rich Prohaska committed
186
  int  (*set_tmp_dir) (DB_ENV *, const char *); /* 32-bit offset=912 size=4, 64=bit offset=1696 size=8 */
187
  void* __toku_dummy20[2];
Rich Prohaska's avatar
Rich Prohaska committed
188
  int  (*set_verbose) (DB_ENV *, u_int32_t, int); /* 32-bit offset=924 size=4, 64=bit offset=1720 size=8 */
189
  void* __toku_dummy21[1];
Rich Prohaska's avatar
Rich Prohaska committed
190 191
  int  (*txn_begin) (DB_ENV *, DB_TXN *, DB_TXN **, u_int32_t); /* 32-bit offset=932 size=4, 64=bit offset=1736 size=8 */
  int  (*txn_checkpoint) (DB_ENV *, u_int32_t, u_int32_t, u_int32_t); /* 32-bit offset=936 size=4, 64=bit offset=1744 size=8 */
192
  void* __toku_dummy22[1];
Rich Prohaska's avatar
Rich Prohaska committed
193
  int  (*txn_stat) (DB_ENV *, DB_TXN_STAT **, u_int32_t); /* 32-bit offset=944 size=4, 64=bit offset=1760 size=8 */
194 195
  void* __toku_dummy23[2]; /* Padding at the end */ 
  char __toku_dummy24[16];  /* Padding at the end */ 
Rich Prohaska's avatar
Rich Prohaska committed
196 197 198 199 200 201 202 203 204 205 206
};
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 */
  void* __toku_dummy0[207]; /* Padding at the end */ 
  char __toku_dummy1[120];  /* Padding at the end */ 
};
struct __toku_db_lsn {
  char __toku_dummy0[8];  /* Padding at the end */ 
};
207 208 209 210 211 212 213 214 215
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 */
  void* __toku_dummy0[1];
  char __toku_dummy1[8];
  u_int32_t flags; /* 32-bit offset=24 size=4, 64=bit offset=32 size=4 */
  /* 4 more bytes of alignment in the 64-bit case. */
};
216 217 218
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);
Rich Prohaska's avatar
Rich Prohaska committed
219 220
struct __toku_db {
  struct __toku_db_internal *i;
221
#define db_struct_i(x) ((x)->i)
222
  int (*key_range64)(DB*, DB_TXN *, DBT *, u_int64_t *less, u_int64_t *equal, u_int64_t *greater, int *is_exact);
223
  int (*stat64)(DB *, DB_TXN *, DB_BTREE_STAT64 *);
224
  int (*pre_acquire_read_lock)(DB*, DB_TXN*, const DBT*, const DBT*, const DBT*, const DBT*);
Rich Prohaska's avatar
Rich Prohaska committed
225 226
  void *app_private; /* 32-bit offset=16 size=4, 64=bit offset=32 size=8 */
  DB_ENV *dbenv; /* 32-bit offset=20 size=4, 64=bit offset=40 size=8 */
227
  int (*pre_acquire_table_lock)(DB*, DB_TXN*);
228 229
  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.*/;
Yoni Fogel's avatar
Yoni Fogel committed
230
  int (*delboth) (DB*, DB_TXN*, DBT*, DBT*, u_int32_t) /* Delete the key/value pair. */;
231
  int (*row_size_supported) (DB*, u_int32_t) /* Test whether a row size is supported. */;
232
  const DBT *descriptor /* saved row/dictionary descriptor for aiding in comparisons */;
233
  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 */;
234 235 236
  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) */;
  void* __toku_dummy0[28];
237
  char __toku_dummy1[96];
238
  void *api_internal; /* 32-bit offset=268 size=4, 64=bit offset=440 size=8 */
239
  void* __toku_dummy2[5];
Rich Prohaska's avatar
Rich Prohaska committed
240
  int (*close) (DB*, u_int32_t); /* 32-bit offset=292 size=4, 64=bit offset=488 size=8 */
241
  void* __toku_dummy3[1];
Rich Prohaska's avatar
Rich Prohaska committed
242 243
  int (*cursor) (DB *, DB_TXN *, DBC **, u_int32_t); /* 32-bit offset=300 size=4, 64=bit offset=504 size=8 */
  int (*del) (DB *, DB_TXN *, DBT *, u_int32_t); /* 32-bit offset=304 size=4, 64=bit offset=512 size=8 */
244
  void* __toku_dummy4[2];
Rich Prohaska's avatar
Rich Prohaska committed
245
  int (*fd) (DB *, int *); /* 32-bit offset=316 size=4, 64=bit offset=536 size=8 */
Rich Prohaska's avatar
Rich Prohaska committed
246
  int (*get) (DB *, DB_TXN *, DBT *, DBT *, u_int32_t); /* 32-bit offset=320 size=4, 64=bit offset=544 size=8 */
Yoni Fogel's avatar
Yoni Fogel committed
247
  void* __toku_dummy5[8];
248
  int (*get_flags) (DB *, u_int32_t *); /* 32-bit offset=356 size=4, 64=bit offset=616 size=8 */
Yoni Fogel's avatar
Yoni Fogel committed
249
  void* __toku_dummy6[6];
250
  int (*get_pagesize) (DB *, u_int32_t *); /* 32-bit offset=384 size=4, 64=bit offset=672 size=8 */
Yoni Fogel's avatar
Yoni Fogel committed
251
  void* __toku_dummy7[8];
Rich Prohaska's avatar
Rich Prohaska committed
252 253
  int (*key_range) (DB *, DB_TXN *, DBT *, DB_KEY_RANGE *, u_int32_t); /* 32-bit offset=420 size=4, 64=bit offset=744 size=8 */
  int (*open) (DB *, DB_TXN *, const char *, const char *, DBTYPE, u_int32_t, int); /* 32-bit offset=424 size=4, 64=bit offset=752 size=8 */
254
  void* __toku_dummy8[1];
Rich Prohaska's avatar
Rich Prohaska committed
255 256 257
  int (*put) (DB *, DB_TXN *, DBT *, DBT *, u_int32_t); /* 32-bit offset=432 size=4, 64=bit offset=768 size=8 */
  int (*remove) (DB *, const char *, const char *, u_int32_t); /* 32-bit offset=436 size=4, 64=bit offset=776 size=8 */
  int (*rename) (DB *, const char *, const char *, const char *, u_int32_t); /* 32-bit offset=440 size=4, 64=bit offset=784 size=8 */
258
  void* __toku_dummy9[2];
Rich Prohaska's avatar
Rich Prohaska committed
259
  int (*set_bt_compare) (DB *, int (*)(DB *, const DBT *, const DBT *)); /* 32-bit offset=452 size=4, 64=bit offset=808 size=8 */
260
  void* __toku_dummy10[3];
Rich Prohaska's avatar
Rich Prohaska committed
261
  int (*set_dup_compare) (DB *, int (*)(DB *, const DBT *, const DBT *)); /* 32-bit offset=468 size=4, 64=bit offset=840 size=8 */
Yoni Fogel's avatar
Yoni Fogel committed
262
  void* __toku_dummy11[2];
263 264
  void (*set_errfile) (DB *, FILE*); /* 32-bit offset=480 size=4, 64=bit offset=864 size=8 */
  void* __toku_dummy12[2];
Rich Prohaska's avatar
Rich Prohaska committed
265
  int (*set_flags) (DB *, u_int32_t); /* 32-bit offset=492 size=4, 64=bit offset=888 size=8 */
Yoni Fogel's avatar
Yoni Fogel committed
266
  void* __toku_dummy13[6];
267 268
  int (*set_pagesize) (DB *, u_int32_t); /* 32-bit offset=520 size=4, 64=bit offset=944 size=8 */
  void* __toku_dummy14[6];
Rich Prohaska's avatar
Rich Prohaska committed
269
  int (*stat) (DB *, void *, u_int32_t); /* 32-bit offset=548 size=4, 64=bit offset=1000 size=8 */
270
  void* __toku_dummy15[2];
271
  int (*truncate) (DB *, DB_TXN *, u_int32_t *, u_int32_t); /* 32-bit offset=560 size=4, 64=bit offset=1024 size=8 */
272
  void* __toku_dummy16[1];
Rich Prohaska's avatar
Rich Prohaska committed
273
  int (*verify) (DB *, const char *, const char *, FILE *, u_int32_t); /* 32-bit offset=568 size=4, 64=bit offset=1040 size=8 */
274 275
  void* __toku_dummy17[5]; /* Padding at the end */ 
  char __toku_dummy18[16];  /* Padding at the end */ 
Rich Prohaska's avatar
Rich Prohaska committed
276 277 278 279 280 281 282 283
};
struct __toku_db_txn_active {
  u_int32_t txnid; /* 32-bit offset=0 size=4, 64=bit offset=0 size=4 */
  void* __toku_dummy0[2];
  char __toku_dummy1[4];
  DB_LSN lsn; /* 32-bit offset=16 size=8, 64=bit offset=24 size=8 */
  char __toku_dummy2[200];  /* Padding at the end */ 
};
284 285 286
struct txn_stat {
  u_int64_t rolltmp_raw_count;
};
Rich Prohaska's avatar
Rich Prohaska committed
287
struct __toku_db_txn {
288
  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 */
Yoni Fogel's avatar
Yoni Fogel committed
289
  DB_TXN *parent; /* 32-bit offset=4 size=4, 64=bit offset=8 size=8 */
Rich Prohaska's avatar
Rich Prohaska committed
290
  struct __toku_db_txn_internal *i;
291
#define db_txn_struct_i(x) ((x)->i)
292 293
  int (*txn_stat)(DB_TXN *, struct txn_stat **);
  void* __toku_dummy0[15];
Rich Prohaska's avatar
Rich Prohaska committed
294
  char __toku_dummy1[8];
295 296
  void *api_internal; /* 32-bit offset=84 size=4, 64=bit offset=160 size=8 */
  void* __toku_dummy2[2];
Rich Prohaska's avatar
Rich Prohaska committed
297 298
  int (*abort) (DB_TXN *); /* 32-bit offset=96 size=4, 64=bit offset=184 size=8 */
  int (*commit) (DB_TXN*, u_int32_t); /* 32-bit offset=100 size=4, 64=bit offset=192 size=8 */
299
  void* __toku_dummy3[2];
Rich Prohaska's avatar
Rich Prohaska committed
300
  u_int32_t (*id) (DB_TXN *); /* 32-bit offset=112 size=4, 64=bit offset=216 size=8 */
301
  void* __toku_dummy4[5]; /* Padding at the end */ 
Rich Prohaska's avatar
Rich Prohaska committed
302 303 304 305 306 307 308 309 310 311 312
};
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[16];
  DB_TXN_ACTIVE *st_txnarray; /* 32-bit offset=52 size=4, 64=bit offset=56 size=8 */
  void* __toku_dummy3[1]; /* Padding at the end */ 
  char __toku_dummy4[8];  /* Padding at the end */ 
};
struct __toku_dbc {
313
  DB *dbp; /* 32-bit offset=0 size=4, 64=bit offset=0 size=8 */
Rich Prohaska's avatar
Rich Prohaska committed
314
  struct __toku_dbc_internal *i;
315
#define dbc_struct_i(x) ((x)->i)
316 317 318 319 320 321 322 323 324 325 326 327 328
  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 *);
329
  int (*c_getf_set_range_reverse)(DBC *, u_int32_t, DBT *, YDB_CALLBACK_FUNCTION, void *);
330 331
  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 *);
332 333
  int (*c_getf_get_both_range_reverse)(DBC *, u_int32_t, DBT *, DBT *, YDB_CALLBACK_FUNCTION, void *);
  void* __toku_dummy0[6];
Rich Prohaska's avatar
Rich Prohaska committed
334 335
  char __toku_dummy1[104];
  int (*c_close) (DBC *); /* 32-bit offset=204 size=4, 64=bit offset=304 size=8 */
336
  int (*c_count) (DBC *, db_recno_t *, u_int32_t); /* 32-bit offset=208 size=4, 64=bit offset=312 size=8 */
Rich Prohaska's avatar
Rich Prohaska committed
337
  int (*c_del) (DBC *, u_int32_t); /* 32-bit offset=212 size=4, 64=bit offset=320 size=8 */
338
  void* __toku_dummy2[1];
Rich Prohaska's avatar
Rich Prohaska committed
339
  int (*c_get) (DBC *, DBT *, DBT *, u_int32_t); /* 32-bit offset=220 size=4, 64=bit offset=336 size=8 */
340
  void* __toku_dummy3[10]; /* Padding at the end */ 
Rich Prohaska's avatar
Rich Prohaska committed
341 342 343 344
};
#ifdef _TOKUDB_WRAP_H
#define txn_begin txn_begin_tokudb
#endif
345 346 347 348 349
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")));
350
int db_env_set_func_fsync (int (*)(int)) __attribute__((__visibility__("default")));
351 352
int toku_set_trace_file (char *fname) __attribute__((__visibility__("default")));
int toku_close_trace_file (void) __attribute__((__visibility__("default")));
353
int db_env_set_func_free (void (*)(void*)) __attribute__((__visibility__("default")));
354
int db_env_set_func_malloc (void *(*)(size_t)) __attribute__((__visibility__("default")));
355
int db_env_set_func_pwrite (ssize_t (*)(int, const void *, size_t, toku_off_t)) __attribute__((__visibility__("default")));
356
int db_env_set_func_write (ssize_t (*)(int, const void *, size_t)) __attribute__((__visibility__("default")));
357
int db_env_set_func_realloc (void *(*)(void*, size_t)) __attribute__((__visibility__("default")));
358
void db_env_set_checkpoint_callback (void (*)(void*), void*) __attribute__((__visibility__("default")));
Rich Prohaska's avatar
Rich Prohaska committed
359 360 361 362
#if defined(__cplusplus)
}
#endif
#endif