Viewing file: db_set_alloc.html (7.9 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
Berkeley DB: Db::set_alloc
Db::set_alloc
|

|
#include <db_cxx.h>
extern "C" {
typedef void *(*db_malloc_fcn_type)(void *, size_t);
typedef void *(*db_realloc_fcn_type)(size_t);
typedef void *(*db_free_fcn_type)(void *);
};
int
Db::set_alloc(db_malloc_fcn_type app_malloc,
db_realloc_fcn_type app_realloc,
db_free_fcn_type app_free);
Description
Set the allocation functions used by the DbEnv and Db
methods to allocate or free memory owned by the application. The
DbEnv::set_alloc interface sets the allocation functions for a
database environment; the Db::set_alloc interface sets the
allocation functions for a single database. If both are specified,
functions specified for a database will be used in preference to
functions specified for environment.
There are a number of interfaces in Berkeley DB where memory is allocated by
the library and then given to the application. For example, the
DB_DBT_MALLOC flag, when specified in the Dbt object,
will cause the Db methods to allocate and reallocate memory
which then becomes the responsibility of the calling application. (See
Dbt for more information.) Other examples are the Berkeley DB
interfaces which return statistical information to the application:
Db::stat, DbEnv::lock_stat, DbEnv::log_archive,
DbEnv::log_stat, DbEnv::memp_stat, and DbEnv::txn_stat. There is
one interface in the Berkeley DB where memory is allocated by the application
and then given to the library: Db::associate.
On systems in which there may be multiple library versions of the
standard allocation routines (notably Windows NT), transferring memory
between the library and the application will fail because the Berkeley DB
library allocates memory from a different heap than the application uses
to free it. To avoid this problem, the DbEnv::set_alloc and
Db::set_alloc methods can be used to pass Berkeley DB references to the
application's allocation routines.
It is not an error to not specify all three arguments to these
interfaces; however, in that case the specified interfaces must be
compatible with the standard library interfaces, as they will be used
together. The methods specified must match the calling
conventions of the ANSI C X3.159-1989 (ANSI C) library routines of the same name.
For Db handles opened inside of Berkeley DB environments, calling the
Db::set_alloc method affects the entire environment and is equivalent to calling
the DbEnv::set_alloc method.
The Db::set_alloc interface may be used only to configure Berkeley DB before
the Db::open interface is called.
The Db::set_alloc method either returns a non-zero error value or throws an exception that
encapsulates a non-zero error value on failure, and returns 0 on success.
Errors
The Db::set_alloc method may fail and throw an exception or return a non-zero error for the following conditions:
- EINVAL
- An invalid flag value or parameter was specified.
The Db::set_alloc method may fail and throw an exception or return a non-zero error for errors specified for other Berkeley DB and C library or system methods.
If a catastrophic error has occurred, the Db::set_alloc method may fail and either
return DB_RUNRECOVERY or throw an exception encapsulating
DB_RUNRECOVERY, in which case all subsequent Berkeley DB calls will fail
in the same way.
Class
Db
See Also
Db::associate,
Db::close,
Db::cursor,
Db::del,
Db::err, Db::errx
Db::fd,
Db::get,
Db::pget,
Db::get_byteswapped,
Db::get_type,
Db::join,
Db::key_range,
Db::open,
Db::put,
Db::remove,
Db::rename,
Db::set_alloc,
Db::set_append_recno,
Db::set_bt_compare,
Db::set_bt_minkey,
Db::set_bt_prefix,
Db::set_cachesize,
Db::set_dup_compare,
Db::set_errcall,
Db::set_errfile,
Db::set_errpfx,
Db::set_feedback,
Db::set_flags,
Db::set_h_ffactor,
Db::set_h_hash,
Db::set_h_nelem,
Db::set_lorder,
Db::set_pagesize,
Db::set_paniccall,
Db::set_q_extentsize,
Db::set_re_delim,
Db::set_re_len,
Db::set_re_pad,
Db::set_re_source,
Db::stat,
Db::sync,
Db::truncate,
Db::upgrade,
and
Db::verify.
Copyright Sleepycat Software
|