DbEnv::lock_get

APIRef

#include <db_cxx.h>

int DbEnv::lock_get(u_int32_t locker, u_int32_t flags, const Dbt *obj, const db_lockmode_t lock_mode, DB_LOCK *lock);

Description

The DbEnv::lock_get method acquires a lock from the lock table, returning information about it in the lock argument.

The locker argument specified to DbEnv::lock_get is an unsigned 32-bit integer quantity. It represents the entity requesting or releasing the lock.

The flags value must be set to 0 or the following value:

DB_LOCK_NOWAIT
If a lock cannot be granted because the requested lock conflicts with an existing lock, return immediately instead of waiting for the lock to become available.

The obj argument is an untyped byte string that specifies the object to be locked or released.

The mode argument is an index into the environment's lock conflict array. See DbEnv::set_lk_conflicts and Standard Lock Modes for a description of that array.

The DbEnv::lock_get method may return or throw an exception encapsulating one of the following values:

DB_LOCK_NOTGRANTED
A lock was requested that could not be immediately granted and the flags parameter was set to DB_LOCK_NOWAIT.

Otherwise, the DbEnv::lock_get 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

If a fatal error occurs in Berkeley DB, the DbEnv::lock_get method will fail and either return DB_RUNRECOVERY or throw an exception encapsulating DB_RUNRECOVERY, at which point all subsequent database calls will fail in the same way.

In addition, the DbEnv::lock_get method may fail and throw an exception or return a non-zero error for the following conditions:

DB_LOCK_DEADLOCK
The operation was selected to resolve a deadlock.

EINVAL
An invalid flag value or parameter was specified.

In addition, the DbEnv::lock_get 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.

Classes

DbEnv, DbLock

See Also

DbEnv::set_lk_conflicts, DbEnv::set_lk_detect, DbEnv::set_lk_max, DbEnv::lock_detect, DbEnv::lock_get, DbEnv::lock_id, DbLock::put, DbEnv::lock_stat and DbEnv::lock_vec.

APIRef

Copyright Sleepycat Software