mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
948986c11e
git-svn-id: file:///svn/tokudb@241 c7de825b-a66e-492c-adef-691d508d4ae1
73 lines
2.8 KiB
C
73 lines
2.8 KiB
C
/* Make a db.h that will be link-time compatible with Sleepycat's Berkeley DB. */
|
|
|
|
#include <db.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
|
|
|
|
DB db_dummy;
|
|
|
|
#define DECL_LIMIT 100
|
|
#define FIELD_LIMIT 100
|
|
struct fieldinfo {
|
|
char decl[DECL_LIMIT];
|
|
unsigned int off;
|
|
unsigned int size;
|
|
} db_fields[FIELD_LIMIT];
|
|
int db_field_counter=0;
|
|
|
|
|
|
int compare_fields (const void *av, const void *bv) {
|
|
const struct fieldinfo *a = av;
|
|
const struct fieldinfo *b = bv;
|
|
if (a->off < b->off) return -1;
|
|
if (a->off > b->off) return 1;
|
|
return 0;
|
|
}
|
|
|
|
#define DB_STRUCT_SETUP(name, fstring) ({ snprintf(db_fields[db_field_counter].decl, DECL_LIMIT, fstring, #name); \
|
|
db_fields[db_field_counter].off = offsetof(DB, name); \
|
|
db_fields[db_field_counter].size = sizeof(db_dummy.name); \
|
|
db_field_counter++; })
|
|
|
|
FILE *outf;
|
|
void open_file (void) {
|
|
char fname[100];
|
|
snprintf(fname, 100, "sample_offsets_%d.h", __WORDSIZE);
|
|
outf = fopen(fname, "w");
|
|
assert(outf);
|
|
|
|
}
|
|
|
|
void sample_offsets (void) {
|
|
int i;
|
|
/* Do these in alphabetical order. */
|
|
DB_STRUCT_SETUP(app_private, "void *%s");
|
|
DB_STRUCT_SETUP(close, "int (*%s) (DB*, u_int32_t)");
|
|
DB_STRUCT_SETUP(cursor, "int (*%s) (DB *, DB_TXN *, DBC **, u_int32_t)");
|
|
DB_STRUCT_SETUP(del, "int (*%s) (DB *, DB_TXN *, DBT *, u_int32_t)");
|
|
DB_STRUCT_SETUP(get, "int (*%s) (DB *, DB_TXN *, DBT *, DBT *, u_int32_t)");
|
|
DB_STRUCT_SETUP(key_range, "int (*%s) (DB *, DB_TXN *, DBT *, DB_KEY_RANGE *, u_int32_t)");
|
|
DB_STRUCT_SETUP(open, "int (*%s) (DB *, DB_TXN *, const char *, const char *, DBTYPE, u_int32_t, int)");
|
|
DB_STRUCT_SETUP(put, "int (*%s) (DB *, DB_TXN *, DBT *, DBT *, u_int32_t)");
|
|
DB_STRUCT_SETUP(remove, "int (*%s) (DB *, const char *, const char *, u_int32_t)");
|
|
DB_STRUCT_SETUP(rename, "int (*%s) (DB *, const char *, const char *, const char *, u_int32_t)");
|
|
DB_STRUCT_SETUP(set_bt_compare, "int (*%s) (DB *, int (*)(DB *, const DBT *, const DBT *))");
|
|
DB_STRUCT_SETUP(set_flags, "int (*%s) (DB *, u_int32_t)");
|
|
DB_STRUCT_SETUP(stat, "int (*%s) (DB *, void *, u_int32_t)");
|
|
qsort(db_fields, db_field_counter, sizeof(db_fields[0]), compare_fields);
|
|
fprintf(outf, "struct fieldinfo fields%d[] = {\n", __WORDSIZE);
|
|
for (i=0; i<db_field_counter; i++) {
|
|
fprintf(outf, " {\"%s\", %d, %d}", db_fields[i].decl, db_fields[i].off, db_fields[i].size);
|
|
if (i+1<db_field_counter) fprintf(outf, ",");
|
|
fprintf(outf, "\n");
|
|
}
|
|
fprintf(outf, "};\n");
|
|
}
|
|
int main (int argc __attribute__((__unused__)), char *argv[] __attribute__((__unused__))) {
|
|
open_file();
|
|
fprintf(outf, "/* BDB offsets on a %d-bit machine */\n", __WORDSIZE);
|
|
sample_offsets();
|
|
return 0;
|
|
}
|