mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
9d70992a1d
git-svn-id: file:///svn/tokudb@1320 c7de825b-a66e-492c-adef-691d508d4ae1
96 lines
2.7 KiB
C++
96 lines
2.7 KiB
C++
#include <assert.h>
|
|
#include <db.h>
|
|
#include <errno.h>
|
|
#include <db_cxx.h>
|
|
|
|
#define do_maybe_error(errno)
|
|
|
|
Db::Db(DbEnv *env, u_int32_t flags)
|
|
: the_Env(env)
|
|
{
|
|
the_db = 0;
|
|
|
|
is_private_env = (the_Env == 0);
|
|
|
|
DB *tmp_db;
|
|
int ret = db_create(&tmp_db, the_Env->get_DB_ENV(), flags & !(DB_CXX_NO_EXCEPTIONS));
|
|
if (ret!=0) {
|
|
the_Env->maybe_throw_error(ret);
|
|
// Otherwise cannot do much
|
|
return;
|
|
}
|
|
the_db = tmp_db;
|
|
tmp_db->api_internal = this;
|
|
if (is_private_env) {
|
|
the_Env = new DbEnv(tmp_db->dbenv, flags & DB_CXX_NO_EXCEPTIONS);
|
|
}
|
|
}
|
|
|
|
Db::~Db() {
|
|
if (is_private_env && the_Env) {
|
|
the_Env->close(0);
|
|
delete the_Env;
|
|
}
|
|
if (the_db) {
|
|
close(0); // the user should have called close, but we do it here if not done.
|
|
assert(the_db==0);
|
|
}
|
|
}
|
|
|
|
int Db::close (u_int32_t flags) {
|
|
if (!the_db) {
|
|
return the_Env->maybe_throw_error(EINVAL);
|
|
}
|
|
the_db->api_internal = 0;
|
|
|
|
|
|
int ret = the_db->close(the_db, flags);
|
|
|
|
the_db = 0;
|
|
|
|
int no_exceptions = the_Env->do_no_exceptions; // Get this out before possibly deleting the env
|
|
|
|
if (is_private_env) {
|
|
// The env was closed by the_db->close, we have to tell the DbEnv that the DB_ENV is gone, and delete it.
|
|
the_Env->the_env = 0;
|
|
delete the_Env;
|
|
the_Env=0;
|
|
}
|
|
|
|
// Do we need to clean up "private environments"?
|
|
// What about cursors? They should be cleaned up already, but who did it?
|
|
|
|
// This maybe_throw must be the static one because the env is gone.
|
|
return DbEnv::maybe_throw_error(ret, NULL, no_exceptions);
|
|
}
|
|
|
|
int Db::open(DbTxn *txn, const char *filename, const char *subname, DBTYPE typ, u_int32_t flags, int mode) {
|
|
int ret = the_db->open(the_db, txn->get_DB_TXN(), filename, subname, typ, flags, mode);
|
|
return the_Env->maybe_throw_error(ret);
|
|
}
|
|
|
|
int Db::put(DbTxn *txn, Dbt *key, Dbt *data, u_int32_t flags) {
|
|
int ret = the_db->put(the_db, txn->get_DB_TXN(), key->get_DBT(), data->get_DBT(), flags);
|
|
return the_Env->maybe_throw_error(ret);
|
|
}
|
|
|
|
int Db::cursor(DbTxn *txn, Dbc **cursorp, u_int32_t flags) {
|
|
int ret = the_db->cursor(the_db, txn->get_DB_TXN(), (DBC**)cursorp, flags);
|
|
return the_Env->maybe_throw_error(ret);
|
|
}
|
|
|
|
int Db::set_pagesize(u_int32_t size) {
|
|
int ret = the_db->set_pagesize(the_db, size);
|
|
return the_Env->maybe_throw_error(ret);
|
|
}
|
|
|
|
int Db::remove(const char *file, const char *database, u_int32_t flags) {
|
|
int ret = the_db->remove(the_db, file, database, flags);
|
|
the_db = 0;
|
|
return the_Env->maybe_throw_error(ret);
|
|
}
|
|
|
|
int Db::set_bt_compare(bt_compare_fcn_type bt_compare_fcn) {
|
|
int ret = the_db->set_bt_compare(the_db, bt_compare_fcn);
|
|
return the_Env->maybe_throw_error(ret);
|
|
}
|