2 * @brief Lightning memory-mapped database library
4 * @mainpage Lightning Memory-Mapped Database Manager (LMDB)
6 * @section intro_sec Introduction
7 * LMDB is a Btree-based database management library modeled loosely on the
8 * BerkeleyDB API, but much simplified. The entire database is exposed
9 * in a memory map, and all data fetches return data directly
10 * from the mapped memory, so no malloc's or memcpy's occur during
11 * data fetches. As such, the library is extremely simple because it
12 * requires no page caching layer of its own, and it is extremely high
13 * performance and memory-efficient. It is also fully transactional with
14 * full ACID semantics, and when the memory map is read-only, the
15 * database integrity cannot be corrupted by stray pointer writes from
18 * The library is fully thread-aware and supports concurrent read/write
19 * access from multiple processes and threads. Data pages use a copy-on-
20 * write strategy so no active data pages are ever overwritten, which
21 * also provides resistance to corruption and eliminates the need of any
22 * special recovery procedures after a system crash. Writes are fully
23 * serialized; only one write transaction may be active at a time, which
24 * guarantees that writers can never deadlock. The database structure is
25 * multi-versioned so readers run with no locks; writers cannot block
26 * readers, and readers don't block writers.
28 * Unlike other well-known database mechanisms which use either write-ahead
29 * transaction logs or append-only data writes, LMDB requires no maintenance
30 * during operation. Both write-ahead loggers and append-only databases
31 * require periodic checkpointing and/or compaction of their log or database
32 * files otherwise they grow without bound. LMDB tracks free pages within
33 * the database and re-uses them for new write operations, so the database
34 * size does not grow without bound in normal use.
36 * The memory map can be used as a read-only or read-write map. It is
37 * read-only by default as this provides total immunity to corruption.
38 * Using read-write mode offers much higher write performance, but adds
39 * the possibility for stray application writes thru pointers to silently
40 * corrupt the database. Of course if your application code is known to
41 * be bug-free (...) then this is not an issue.
43 * @section caveats_sec Caveats
44 * Troubleshooting the lock file, plus semaphores on BSD systems:
46 * - A broken lockfile can cause sync issues.
47 * Stale reader transactions left behind by an aborted program
48 * cause further writes to grow the database quickly, and
49 * stale locks can block further operation.
51 * Fix: Check for stale readers periodically, using the
52 * #mdb_reader_check function or the \ref mdb_stat_1 "mdb_stat" tool.
53 * Stale writers will be cleared automatically on most systems:
54 * - Windows - automatic
55 * - BSD, systems using SysV semaphores - automatic
56 * - Linux, systems using POSIX mutexes with Robust option - automatic
57 * Otherwise just make all programs using the database close it;
58 * the lockfile is always reset on first open of the environment.
60 * - On BSD systems or others configured with MDB_USE_SYSV_SEM,
61 * startup can fail due to semaphores owned by another userid.
63 * Fix: Open and close the database as the user which owns the
64 * semaphores (likely last user) or as root, while no other
65 * process is using the database.
67 * Restrictions/caveats (in addition to those listed for some functions):
69 * - Only the database owner should normally use the database on
70 * BSD systems or when otherwise configured with MDB_USE_POSIX_SEM.
71 * Multiple users can cause startup to fail later, as noted above.
73 * - There is normally no pure read-only mode, since readers need write
74 * access to locks and lock file. Exceptions: On read-only filesystems
75 * or with the #MDB_NOLOCK flag described under #mdb_env_open().
77 * - By default, in versions before 0.9.10, unused portions of the data
78 * file might receive garbage data from memory freed by other code.
79 * (This does not happen when using the #MDB_WRITEMAP flag.) As of
80 * 0.9.10 the default behavior is to initialize such memory before
81 * writing to the data file. Since there may be a slight performance
82 * cost due to this initialization, applications may disable it using
83 * the #MDB_NOMEMINIT flag. Applications handling sensitive data
84 * which must not be written should not use this flag. This flag is
85 * irrelevant when using #MDB_WRITEMAP.
87 * - A thread can only use one transaction at a time, plus any child
88 * transactions. Each transaction belongs to one thread. See below.
89 * The #MDB_NOTLS flag changes this for read-only transactions.
91 * - Use an MDB_env* in the process which opened it, without fork()ing.
93 * - Do not have open an LMDB database twice in the same process at
94 * the same time. Not even from a plain open() call - close()ing it
95 * breaks flock() advisory locking.
97 * - Avoid long-lived transactions. Read transactions prevent
98 * reuse of pages freed by newer write transactions, thus the
99 * database can grow quickly. Write transactions prevent
100 * other write transactions, since writes are serialized.
102 * - Avoid suspending a process with active transactions. These
103 * would then be "long-lived" as above. Also read transactions
104 * suspended when writers commit could sometimes see wrong data.
106 * ...when several processes can use a database concurrently:
108 * - Avoid aborting a process with an active transaction.
109 * The transaction becomes "long-lived" as above until a check
110 * for stale readers is performed or the lockfile is reset,
111 * since the process may not remove it from the lockfile.
112 * Except write-transactions on Unix with MDB_ROBUST or on Windows.
114 * - If you do that anyway, do a periodic check for stale readers. Or
115 * close the environment once in a while, so the lockfile can get reset.
117 * - Do not use LMDB databases on remote filesystems, even between
118 * processes on the same host. This breaks flock() on some OSes,
119 * possibly memory map sync, and certainly sync between programs
120 * on different hosts.
122 * - Opening a database can fail if another process is opening or
123 * closing it at exactly the same time.
125 * @author Howard Chu, Symas Corporation.
127 * @copyright Copyright 2011-2014 Howard Chu, Symas Corp. All rights reserved.
129 * Redistribution and use in source and binary forms, with or without
130 * modification, are permitted only as authorized by the OpenLDAP
133 * A copy of this license is available in the file LICENSE in the
134 * top-level directory of the distribution or, alternatively, at
135 * <http://www.OpenLDAP.org/license.html>.
138 * This code is derived from btree.c written by Martin Hedenfalk.
140 * Copyright (c) 2009, 2010 Martin Hedenfalk <martin@bzero.se>
142 * Permission to use, copy, modify, and distribute this software for any
143 * purpose with or without fee is hereby granted, provided that the above
144 * copyright notice and this permission notice appear in all copies.
146 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
147 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
148 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
149 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
150 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
151 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
152 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
157 #include <sys/types.h>
163 /** Unix permissions for creating files, or dummy definition for Windows */
165 typedef int mdb_mode_t;
167 typedef mode_t mdb_mode_t;
170 /** An abstraction for a file handle.
171 * On POSIX systems file handles are small integers. On Windows
172 * they're opaque pointers.
175 typedef void *mdb_filehandle_t;
177 typedef int mdb_filehandle_t;
180 /** @defgroup mdb LMDB API
182 * @brief OpenLDAP Lightning Memory-Mapped Database Manager
184 /** @defgroup Version Version Macros
187 /** Library major version */
188 #define MDB_VERSION_MAJOR 0
189 /** Library minor version */
190 #define MDB_VERSION_MINOR 9
191 /** Library patch version */
192 #define MDB_VERSION_PATCH 14
194 /** Combine args a,b,c into a single integer for easy version comparisons */
195 #define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c))
197 /** The full library version as a single integer */
198 #define MDB_VERSION_FULL \
199 MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
201 /** The release date of this library version */
202 #define MDB_VERSION_DATE "September 20, 2014"
204 /** A stringifier for the version info */
205 #define MDB_VERSTR(a,b,c,d) "LMDB " #a "." #b "." #c ": (" d ")"
207 /** A helper for the stringifier macro */
208 #define MDB_VERFOO(a,b,c,d) MDB_VERSTR(a,b,c,d)
210 /** The full library version as a C string */
211 #define MDB_VERSION_STRING \
212 MDB_VERFOO(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH,MDB_VERSION_DATE)
215 /** @brief Opaque structure for a database environment.
217 * A DB environment supports multiple databases, all residing in the same
220 typedef struct MDB_env MDB_env;
222 /** @brief Opaque structure for a transaction handle.
224 * All database operations require a transaction handle. Transactions may be
225 * read-only or read-write.
227 typedef struct MDB_txn MDB_txn;
229 /** @brief Unique identifier for an active or recent transaction. */
230 typedef size_t MDB_txnid_t;
232 /** @brief A handle for an individual database in the DB environment. */
233 typedef unsigned int MDB_dbi;
235 /** @brief Opaque structure for navigating through a database */
236 typedef struct MDB_cursor MDB_cursor;
238 /** @brief Generic structure used for passing keys and data in and out
241 * Values returned from the database are valid only until a subsequent
242 * update operation, or the end of the transaction. Do not modify or
243 * free them, they commonly point into the database itself.
245 * Key sizes must be between 1 and #mdb_env_get_maxkeysize() inclusive.
246 * The same applies to data sizes in databases with the #MDB_DUPSORT flag.
247 * Other data items can in theory be from 0 to 0xffffffff bytes long.
249 typedef struct MDB_val {
250 size_t mv_size; /**< size of the data item */
251 void *mv_data; /**< address of the data item */
254 /** @brief A callback function used to compare two keys in a database */
255 typedef int (MDB_cmp_func)(const MDB_val *a, const MDB_val *b);
257 /** @brief A callback function used to relocate a position-dependent data item
258 * in a fixed-address database.
260 * The \b newptr gives the item's desired address in
261 * the memory map, and \b oldptr gives its previous address. The item's actual
262 * data resides at the address in \b item. This callback is expected to walk
263 * through the fields of the record in \b item and modify any
264 * values based at the \b oldptr address to be relative to the \b newptr address.
265 * @param[in,out] item The item that is to be relocated.
266 * @param[in] oldptr The previous address.
267 * @param[in] newptr The new address to relocate to.
268 * @param[in] relctx An application-provided context, set by #mdb_set_relctx().
269 * @todo This feature is currently unimplemented.
271 typedef void (MDB_rel_func)(MDB_val *item, void *oldptr, void *newptr, void *relctx);
273 /** @defgroup mdb_env Environment Flags
276 /** mmap at a fixed address (experimental) */
277 #define MDB_FIXEDMAP 0x01
278 /** no environment directory */
279 #define MDB_NOSUBDIR 0x4000
280 /** don't fsync after commit */
281 #define MDB_NOSYNC 0x10000
283 #define MDB_RDONLY 0x20000
284 /** don't fsync metapage after commit */
285 #define MDB_NOMETASYNC 0x40000
286 /** use writable mmap */
287 #define MDB_WRITEMAP 0x80000
288 /** use asynchronous msync when #MDB_WRITEMAP is used */
289 #define MDB_MAPASYNC 0x100000
290 /** tie reader locktable slots to #MDB_txn objects instead of to threads */
291 #define MDB_NOTLS 0x200000
292 /** don't do any locking, caller must manage their own locks */
293 #define MDB_NOLOCK 0x400000
294 /** don't do readahead (no effect on Windows) */
295 #define MDB_NORDAHEAD 0x800000
296 /** don't initialize malloc'd memory before writing to datafile */
297 #define MDB_NOMEMINIT 0x1000000
300 /** @defgroup mdb_dbi_open Database Flags
303 /** use reverse string keys */
304 #define MDB_REVERSEKEY 0x02
305 /** use sorted duplicates */
306 #define MDB_DUPSORT 0x04
307 /** numeric keys in native byte order.
308 * The keys must all be of the same size. */
309 #define MDB_INTEGERKEY 0x08
310 /** with #MDB_DUPSORT, sorted dup items have fixed size */
311 #define MDB_DUPFIXED 0x10
312 /** with #MDB_DUPSORT, dups are numeric in native byte order */
313 #define MDB_INTEGERDUP 0x20
314 /** with #MDB_DUPSORT, use reverse string dups */
315 #define MDB_REVERSEDUP 0x40
316 /** create DB if not already existing */
317 #define MDB_CREATE 0x40000
320 /** @defgroup mdb_put Write Flags
323 /** For put: Don't write if the key already exists. */
324 #define MDB_NOOVERWRITE 0x10
325 /** Only for #MDB_DUPSORT<br>
326 * For put: don't write if the key and data pair already exist.<br>
327 * For mdb_cursor_del: remove all duplicate data items.
329 #define MDB_NODUPDATA 0x20
330 /** For mdb_cursor_put: overwrite the current key/data pair */
331 #define MDB_CURRENT 0x40
332 /** For put: Just reserve space for data, don't copy it. Return a
333 * pointer to the reserved space.
335 #define MDB_RESERVE 0x10000
336 /** Data is being appended, don't split full pages. */
337 #define MDB_APPEND 0x20000
338 /** Duplicate data is being appended, don't split full pages. */
339 #define MDB_APPENDDUP 0x40000
340 /** Store multiple data items in one call. Only for #MDB_DUPFIXED. */
341 #define MDB_MULTIPLE 0x80000
344 /** @defgroup mdb_copy Copy Flags
347 /** Compacting copy: Omit free space from copy, and renumber all
348 * pages sequentially.
350 #define MDB_CP_COMPACT 0x01
353 /** @brief Cursor Get operations.
355 * This is the set of all operations for retrieving data
358 typedef enum MDB_cursor_op {
359 MDB_FIRST, /**< Position at first key/data item */
360 MDB_FIRST_DUP, /**< Position at first data item of current key.
361 Only for #MDB_DUPSORT */
362 MDB_GET_BOTH, /**< Position at key/data pair. Only for #MDB_DUPSORT */
363 MDB_GET_BOTH_RANGE, /**< position at key, nearest data. Only for #MDB_DUPSORT */
364 MDB_GET_CURRENT, /**< Return key/data at current cursor position */
365 MDB_GET_MULTIPLE, /**< Return key and up to a page of duplicate data items
366 from current cursor position. Move cursor to prepare
367 for #MDB_NEXT_MULTIPLE. Only for #MDB_DUPFIXED */
368 MDB_LAST, /**< Position at last key/data item */
369 MDB_LAST_DUP, /**< Position at last data item of current key.
370 Only for #MDB_DUPSORT */
371 MDB_NEXT, /**< Position at next data item */
372 MDB_NEXT_DUP, /**< Position at next data item of current key.
373 Only for #MDB_DUPSORT */
374 MDB_NEXT_MULTIPLE, /**< Return key and up to a page of duplicate data items
375 from next cursor position. Move cursor to prepare
376 for #MDB_NEXT_MULTIPLE. Only for #MDB_DUPFIXED */
377 MDB_NEXT_NODUP, /**< Position at first data item of next key */
378 MDB_PREV, /**< Position at previous data item */
379 MDB_PREV_DUP, /**< Position at previous data item of current key.
380 Only for #MDB_DUPSORT */
381 MDB_PREV_NODUP, /**< Position at last data item of previous key */
382 MDB_SET, /**< Position at specified key */
383 MDB_SET_KEY, /**< Position at specified key, return key + data */
384 MDB_SET_RANGE /**< Position at first key greater than or equal to specified key. */
387 /** @defgroup errors Return Codes
389 * BerkeleyDB uses -30800 to -30999, we'll go under them
392 /** Successful result */
393 #define MDB_SUCCESS 0
394 /** key/data pair already exists */
395 #define MDB_KEYEXIST (-30799)
396 /** key/data pair not found (EOF) */
397 #define MDB_NOTFOUND (-30798)
398 /** Requested page not found - this usually indicates corruption */
399 #define MDB_PAGE_NOTFOUND (-30797)
400 /** Located page was wrong type */
401 #define MDB_CORRUPTED (-30796)
402 /** Update of meta page failed or environment had fatal error */
403 #define MDB_PANIC (-30795)
404 /** Environment version mismatch */
405 #define MDB_VERSION_MISMATCH (-30794)
406 /** File is not a valid LMDB file */
407 #define MDB_INVALID (-30793)
408 /** Environment mapsize reached */
409 #define MDB_MAP_FULL (-30792)
410 /** Environment maxdbs reached */
411 #define MDB_DBS_FULL (-30791)
412 /** Environment maxreaders reached */
413 #define MDB_READERS_FULL (-30790)
414 /** Too many TLS keys in use - Windows only */
415 #define MDB_TLS_FULL (-30789)
416 /** Txn has too many dirty pages */
417 #define MDB_TXN_FULL (-30788)
418 /** Cursor stack too deep - internal error */
419 #define MDB_CURSOR_FULL (-30787)
420 /** Page has not enough space - internal error */
421 #define MDB_PAGE_FULL (-30786)
422 /** Database contents grew beyond environment mapsize */
423 #define MDB_MAP_RESIZED (-30785)
424 /** MDB_INCOMPATIBLE: Operation and DB incompatible, or DB flags changed */
425 #define MDB_INCOMPATIBLE (-30784)
426 /** Invalid reuse of reader locktable slot */
427 #define MDB_BAD_RSLOT (-30783)
428 /** Transaction cannot recover - it must be aborted */
429 #define MDB_BAD_TXN (-30782)
430 /** Unsupported size of key/DB name/data, or wrong DUPFIXED size */
431 #define MDB_BAD_VALSIZE (-30781)
432 /** The specified DBI was changed unexpectedly */
433 #define MDB_BAD_DBI (-30780)
434 /** The last defined error code */
435 #define MDB_LAST_ERRCODE MDB_BAD_DBI
438 /** @brief Statistics for a database in the environment */
439 typedef struct MDB_stat {
440 unsigned int ms_psize; /**< Size of a database page.
441 This is currently the same for all databases. */
442 unsigned int ms_depth; /**< Depth (height) of the B-tree */
443 size_t ms_branch_pages; /**< Number of internal (non-leaf) pages */
444 size_t ms_leaf_pages; /**< Number of leaf pages */
445 size_t ms_overflow_pages; /**< Number of overflow pages */
446 size_t ms_entries; /**< Number of data items */
449 /** @brief Information about the environment */
450 typedef struct MDB_envinfo {
451 void *me_mapaddr; /**< Address of map, if fixed */
452 size_t me_mapsize; /**< Size of the data memory map */
453 size_t me_last_pgno; /**< ID of the last used page */
454 MDB_txnid_t me_last_txnid; /**< ID of the last committed transaction */
455 unsigned int me_maxreaders; /**< max reader slots in the environment */
456 unsigned int me_numreaders; /**< max reader slots used in the environment */
459 /** @brief Return the LMDB library version information.
461 * @param[out] major if non-NULL, the library major version number is copied here
462 * @param[out] minor if non-NULL, the library minor version number is copied here
463 * @param[out] patch if non-NULL, the library patch version number is copied here
464 * @retval "version string" The library version as a string
466 char *mdb_version(int *major, int *minor, int *patch);
468 /** @brief Return a string describing a given error code.
470 * This function is a superset of the ANSI C X3.159-1989 (ANSI C) strerror(3)
471 * function. If the error code is greater than or equal to 0, then the string
472 * returned by the system function strerror(3) is returned. If the error code
473 * is less than 0, an error string corresponding to the LMDB library error is
474 * returned. See @ref errors for a list of LMDB-specific error codes.
475 * @param[in] err The error code
476 * @retval "error message" The description of the error
478 char *mdb_strerror(int err);
480 /** @brief Create an LMDB environment handle.
482 * This function allocates memory for a #MDB_env structure. To release
483 * the allocated memory and discard the handle, call #mdb_env_close().
484 * Before the handle may be used, it must be opened using #mdb_env_open().
485 * Various other options may also need to be set before opening the handle,
486 * e.g. #mdb_env_set_mapsize(), #mdb_env_set_maxreaders(), #mdb_env_set_maxdbs(),
487 * depending on usage requirements.
488 * @param[out] env The address where the new handle will be stored
489 * @return A non-zero error value on failure and 0 on success.
491 int mdb_env_create(MDB_env **env);
493 /** @brief Open an environment handle.
495 * If this function fails, #mdb_env_close() must be called to discard the #MDB_env handle.
496 * @param[in] env An environment handle returned by #mdb_env_create()
497 * @param[in] path The directory in which the database files reside. This
498 * directory must already exist and be writable.
499 * @param[in] flags Special options for this environment. This parameter
500 * must be set to 0 or by bitwise OR'ing together one or more of the
501 * values described here.
502 * Flags set by mdb_env_set_flags() are also used.
505 * use a fixed address for the mmap region. This flag must be specified
506 * when creating the environment, and is stored persistently in the environment.
507 * If successful, the memory map will always reside at the same virtual address
508 * and pointers used to reference data items in the database will be constant
509 * across multiple invocations. This option may not always work, depending on
510 * how the operating system has allocated memory to shared libraries and other uses.
511 * The feature is highly experimental.
513 * By default, LMDB creates its environment in a directory whose
514 * pathname is given in \b path, and creates its data and lock files
515 * under that directory. With this option, \b path is used as-is for
516 * the database main data file. The database lock file is the \b path
517 * with "-lock" appended.
519 * Open the environment in read-only mode. No write operations will be
520 * allowed. LMDB will still modify the lock file - except on read-only
521 * filesystems, where LMDB does not use locks.
523 * Use a writeable memory map unless MDB_RDONLY is set. This is faster
524 * and uses fewer mallocs, but loses protection from application bugs
525 * like wild pointer writes and other bad updates into the database.
526 * Incompatible with nested transactions.
527 * Processes with and without MDB_WRITEMAP on the same environment do
528 * not cooperate well.
529 * <li>#MDB_NOMETASYNC
530 * Flush system buffers to disk only once per transaction, omit the
531 * metadata flush. Defer that until the system flushes files to disk,
532 * or next non-MDB_RDONLY commit or #mdb_env_sync(). This optimization
533 * maintains database integrity, but a system crash may undo the last
534 * committed transaction. I.e. it preserves the ACI (atomicity,
535 * consistency, isolation) but not D (durability) database property.
536 * This flag may be changed at any time using #mdb_env_set_flags().
538 * Don't flush system buffers to disk when committing a transaction.
539 * This optimization means a system crash can corrupt the database or
540 * lose the last transactions if buffers are not yet flushed to disk.
541 * The risk is governed by how often the system flushes dirty buffers
542 * to disk and how often #mdb_env_sync() is called. However, if the
543 * filesystem preserves write order and the #MDB_WRITEMAP flag is not
544 * used, transactions exhibit ACI (atomicity, consistency, isolation)
545 * properties and only lose D (durability). I.e. database integrity
546 * is maintained, but a system crash may undo the final transactions.
547 * Note that (#MDB_NOSYNC | #MDB_WRITEMAP) leaves the system with no
548 * hint for when to write transactions to disk, unless #mdb_env_sync()
549 * is called. (#MDB_MAPASYNC | #MDB_WRITEMAP) may be preferable.
550 * This flag may be changed at any time using #mdb_env_set_flags().
552 * When using #MDB_WRITEMAP, use asynchronous flushes to disk.
553 * As with #MDB_NOSYNC, a system crash can then corrupt the
554 * database or lose the last transactions. Calling #mdb_env_sync()
555 * ensures on-disk database integrity until next commit.
556 * This flag may be changed at any time using #mdb_env_set_flags().
558 * Don't use Thread-Local Storage. Tie reader locktable slots to
559 * #MDB_txn objects instead of to threads. I.e. #mdb_txn_reset() keeps
560 * the slot reseved for the #MDB_txn object. A thread may use parallel
561 * read-only transactions. A read-only transaction may span threads if
562 * the user synchronizes its use. Applications that multiplex many
563 * user threads over individual OS threads need this option. Such an
564 * application must also serialize the write transactions in an OS
565 * thread, since LMDB's write locking is unaware of the user threads.
567 * Don't do any locking. If concurrent access is anticipated, the
568 * caller must manage all concurrency itself. For proper operation
569 * the caller must enforce single-writer semantics, and must ensure
570 * that no readers are using old transactions while a writer is
571 * active. The simplest approach is to use an exclusive lock so that
572 * no readers may be active at all when a writer begins.
574 * Turn off readahead. Most operating systems perform readahead on
575 * read requests by default. This option turns it off if the OS
576 * supports it. Turning it off may help random read performance
577 * when the DB is larger than RAM and system RAM is full.
578 * The option is not implemented on Windows.
580 * Don't initialize malloc'd memory before writing to unused spaces
581 * in the data file. By default, memory for pages written to the data
582 * file is obtained using malloc. While these pages may be reused in
583 * subsequent transactions, freshly malloc'd pages will be initialized
584 * to zeroes before use. This avoids persisting leftover data from other
585 * code (that used the heap and subsequently freed the memory) into the
586 * data file. Note that many other system libraries may allocate
587 * and free memory from the heap for arbitrary uses. E.g., stdio may
588 * use the heap for file I/O buffers. This initialization step has a
589 * modest performance cost so some applications may want to disable
590 * it using this flag. This option can be a problem for applications
591 * which handle sensitive data like passwords, and it makes memory
592 * checkers like Valgrind noisy. This flag is not needed with #MDB_WRITEMAP,
593 * which writes directly to the mmap instead of using malloc for pages. The
594 * initialization is also skipped if #MDB_RESERVE is used; the
595 * caller is expected to overwrite all of the memory that was
596 * reserved in that case.
597 * This flag may be changed at any time using #mdb_env_set_flags().
599 * @param[in] mode The UNIX permissions to set on created files. This parameter
600 * is ignored on Windows.
601 * @return A non-zero error value on failure and 0 on success. Some possible
604 * <li>#MDB_VERSION_MISMATCH - the version of the LMDB library doesn't match the
605 * version that created the database environment.
606 * <li>#MDB_INVALID - the environment file headers are corrupted.
607 * <li>ENOENT - the directory specified by the path parameter doesn't exist.
608 * <li>EACCES - the user didn't have permission to access the environment files.
609 * <li>EAGAIN - the environment was locked by another process.
612 int mdb_env_open(MDB_env *env, const char *path, unsigned int flags, mdb_mode_t mode);
614 /** @brief Copy an LMDB environment to the specified path.
616 * This function may be used to make a backup of an existing environment.
617 * No lockfile is created, since it gets recreated at need.
618 * @note This call can trigger significant file size growth if run in
619 * parallel with write transactions, because it employs a read-only
620 * transaction. See long-lived transactions under @ref caveats_sec.
621 * @param[in] env An environment handle returned by #mdb_env_create(). It
622 * must have already been opened successfully.
623 * @param[in] path The directory in which the copy will reside. This
624 * directory must already exist and be writable but must otherwise be
626 * @return A non-zero error value on failure and 0 on success.
628 int mdb_env_copy(MDB_env *env, const char *path);
630 /** @brief Copy an LMDB environment to the specified file descriptor.
632 * This function may be used to make a backup of an existing environment.
633 * No lockfile is created, since it gets recreated at need.
634 * @note This call can trigger significant file size growth if run in
635 * parallel with write transactions, because it employs a read-only
636 * transaction. See long-lived transactions under @ref caveats_sec.
637 * @param[in] env An environment handle returned by #mdb_env_create(). It
638 * must have already been opened successfully.
639 * @param[in] fd The filedescriptor to write the copy to. It must
640 * have already been opened for Write access.
641 * @return A non-zero error value on failure and 0 on success.
643 int mdb_env_copyfd(MDB_env *env, mdb_filehandle_t fd);
645 /** @brief Copy an LMDB environment to the specified path, with options.
647 * This function may be used to make a backup of an existing environment.
648 * No lockfile is created, since it gets recreated at need.
649 * @note This call can trigger significant file size growth if run in
650 * parallel with write transactions, because it employs a read-only
651 * transaction. See long-lived transactions under @ref caveats_sec.
652 * @param[in] env An environment handle returned by #mdb_env_create(). It
653 * must have already been opened successfully.
654 * @param[in] path The directory in which the copy will reside. This
655 * directory must already exist and be writable but must otherwise be
657 * @param[in] flags Special options for this operation. This parameter
658 * must be set to 0 or by bitwise OR'ing together one or more of the
659 * values described here.
661 * <li>#MDB_CP_COMPACT - Perform compaction while copying: omit free
662 * pages and sequentially renumber all pages in output. This option
663 * consumes more CPU and runs more slowly than the default.
665 * @return A non-zero error value on failure and 0 on success.
667 int mdb_env_copy2(MDB_env *env, const char *path, unsigned int flags);
669 /** @brief Copy an LMDB environment to the specified file descriptor,
672 * This function may be used to make a backup of an existing environment.
673 * No lockfile is created, since it gets recreated at need. See
674 * #mdb_env_copy2() for further details.
675 * @note This call can trigger significant file size growth if run in
676 * parallel with write transactions, because it employs a read-only
677 * transaction. See long-lived transactions under @ref caveats_sec.
678 * @param[in] env An environment handle returned by #mdb_env_create(). It
679 * must have already been opened successfully.
680 * @param[in] fd The filedescriptor to write the copy to. It must
681 * have already been opened for Write access.
682 * @param[in] flags Special options for this operation.
683 * See #mdb_env_copy2() for options.
684 * @return A non-zero error value on failure and 0 on success.
686 int mdb_env_copyfd2(MDB_env *env, mdb_filehandle_t fd, unsigned int flags);
688 /** @brief Return statistics about the LMDB environment.
690 * @param[in] env An environment handle returned by #mdb_env_create()
691 * @param[out] stat The address of an #MDB_stat structure
692 * where the statistics will be copied
694 int mdb_env_stat(MDB_env *env, MDB_stat *stat);
696 /** @brief Return information about the LMDB environment.
698 * @param[in] env An environment handle returned by #mdb_env_create()
699 * @param[out] stat The address of an #MDB_envinfo structure
700 * where the information will be copied
702 int mdb_env_info(MDB_env *env, MDB_envinfo *stat);
704 /** @brief Flush the data buffers to disk.
706 * Data is always written to disk when #mdb_txn_commit() is called,
707 * but the operating system may keep it buffered. LMDB always flushes
708 * the OS buffers upon commit as well, unless the environment was
709 * opened with #MDB_NOSYNC or in part #MDB_NOMETASYNC.
710 * @param[in] env An environment handle returned by #mdb_env_create()
711 * @param[in] force If non-zero, force a synchronous flush. Otherwise
712 * if the environment has the #MDB_NOSYNC flag set the flushes
713 * will be omitted, and with #MDB_MAPASYNC they will be asynchronous.
714 * @return A non-zero error value on failure and 0 on success. Some possible
717 * <li>EINVAL - an invalid parameter was specified.
718 * <li>EIO - an error occurred during synchronization.
721 int mdb_env_sync(MDB_env *env, int force);
723 /** @brief Close the environment and release the memory map.
725 * Only a single thread may call this function. All transactions, databases,
726 * and cursors must already be closed before calling this function. Attempts to
727 * use any such handles after calling this function will cause a SIGSEGV.
728 * The environment handle will be freed and must not be used again after this call.
729 * @param[in] env An environment handle returned by #mdb_env_create()
731 void mdb_env_close(MDB_env *env);
733 /** @brief Set environment flags.
735 * This may be used to set some flags in addition to those from
736 * #mdb_env_open(), or to unset these flags. If several threads
737 * change the flags at the same time, the result is undefined.
738 * Most flags cannot be changed after #mdb_env_open().
739 * @param[in] env An environment handle returned by #mdb_env_create()
740 * @param[in] flags The flags to change, bitwise OR'ed together
741 * @param[in] onoff A non-zero value sets the flags, zero clears them.
742 * @return A non-zero error value on failure and 0 on success. Some possible
745 * <li>EINVAL - an invalid parameter was specified.
748 int mdb_env_set_flags(MDB_env *env, unsigned int flags, int onoff);
750 /** @brief Get environment flags.
752 * @param[in] env An environment handle returned by #mdb_env_create()
753 * @param[out] flags The address of an integer to store the flags
754 * @return A non-zero error value on failure and 0 on success. Some possible
757 * <li>EINVAL - an invalid parameter was specified.
760 int mdb_env_get_flags(MDB_env *env, unsigned int *flags);
762 /** @brief Return the path that was used in #mdb_env_open().
764 * @param[in] env An environment handle returned by #mdb_env_create()
765 * @param[out] path Address of a string pointer to contain the path. This
766 * is the actual string in the environment, not a copy. It should not be
767 * altered in any way.
768 * @return A non-zero error value on failure and 0 on success. Some possible
771 * <li>EINVAL - an invalid parameter was specified.
774 int mdb_env_get_path(MDB_env *env, const char **path);
776 /** @brief Return the filedescriptor for the given environment.
778 * @param[in] env An environment handle returned by #mdb_env_create()
779 * @param[out] fd Address of a mdb_filehandle_t to contain the descriptor.
780 * @return A non-zero error value on failure and 0 on success. Some possible
783 * <li>EINVAL - an invalid parameter was specified.
786 int mdb_env_get_fd(MDB_env *env, mdb_filehandle_t *fd);
788 /** @brief Set the size of the memory map to use for this environment.
790 * The size should be a multiple of the OS page size. The default is
791 * 10485760 bytes. The size of the memory map is also the maximum size
792 * of the database. The value should be chosen as large as possible,
793 * to accommodate future growth of the database.
794 * This function should be called after #mdb_env_create() and before #mdb_env_open().
795 * It may be called at later times if no transactions are active in
796 * this process. Note that the library does not check for this condition,
797 * the caller must ensure it explicitly.
799 * The new size takes effect immediately for the current process but
800 * will not be persisted to any others until a write transaction has been
801 * committed by the current process. Also, only mapsize increases are
802 * persisted into the environment.
804 * If the mapsize is increased by another process, and data has grown
805 * beyond the range of the current mapsize, #mdb_txn_begin() will
806 * return #MDB_MAP_RESIZED. This function may be called with a size
807 * of zero to adopt the new size.
809 * Any attempt to set a size smaller than the space already consumed
810 * by the environment will be silently changed to the current size of the used space.
811 * @param[in] env An environment handle returned by #mdb_env_create()
812 * @param[in] size The size in bytes
813 * @return A non-zero error value on failure and 0 on success. Some possible
816 * <li>EINVAL - an invalid parameter was specified, or the environment has
817 * an active write transaction.
820 int mdb_env_set_mapsize(MDB_env *env, size_t size);
822 /** @brief Set the maximum number of threads/reader slots for the environment.
824 * This defines the number of slots in the lock table that is used to track readers in the
825 * the environment. The default is 126.
826 * Starting a read-only transaction normally ties a lock table slot to the
827 * current thread until the environment closes or the thread exits. If
828 * MDB_NOTLS is in use, #mdb_txn_begin() instead ties the slot to the
829 * MDB_txn object until it or the #MDB_env object is destroyed.
830 * This function may only be called after #mdb_env_create() and before #mdb_env_open().
831 * @param[in] env An environment handle returned by #mdb_env_create()
832 * @param[in] readers The maximum number of reader lock table slots
833 * @return A non-zero error value on failure and 0 on success. Some possible
836 * <li>EINVAL - an invalid parameter was specified, or the environment is already open.
839 int mdb_env_set_maxreaders(MDB_env *env, unsigned int readers);
841 /** @brief Get the maximum number of threads/reader slots for the environment.
843 * @param[in] env An environment handle returned by #mdb_env_create()
844 * @param[out] readers Address of an integer to store the number of readers
845 * @return A non-zero error value on failure and 0 on success. Some possible
848 * <li>EINVAL - an invalid parameter was specified.
851 int mdb_env_get_maxreaders(MDB_env *env, unsigned int *readers);
853 /** @brief Set the maximum number of named databases for the environment.
855 * This function is only needed if multiple databases will be used in the
856 * environment. Simpler applications that use the environment as a single
857 * unnamed database can ignore this option.
858 * This function may only be called after #mdb_env_create() and before #mdb_env_open().
860 * Currently a moderate number of slots are cheap but a huge number gets
861 * expensive: 7-120 words per transaction, and every #mdb_dbi_open()
862 * does a linear search of the opened slots.
863 * @param[in] env An environment handle returned by #mdb_env_create()
864 * @param[in] dbs The maximum number of databases
865 * @return A non-zero error value on failure and 0 on success. Some possible
868 * <li>EINVAL - an invalid parameter was specified, or the environment is already open.
871 int mdb_env_set_maxdbs(MDB_env *env, MDB_dbi dbs);
873 /** @brief Get the maximum size of keys and #MDB_DUPSORT data we can write.
875 * Depends on the compile-time constant #MDB_MAXKEYSIZE. Default 511.
877 * @param[in] env An environment handle returned by #mdb_env_create()
878 * @return The maximum size of a key we can write
880 int mdb_env_get_maxkeysize(MDB_env *env);
882 /** @brief Set application information associated with the #MDB_env.
884 * @param[in] env An environment handle returned by #mdb_env_create()
885 * @param[in] ctx An arbitrary pointer for whatever the application needs.
886 * @return A non-zero error value on failure and 0 on success.
888 int mdb_env_set_userctx(MDB_env *env, void *ctx);
890 /** @brief Get the application information associated with the #MDB_env.
892 * @param[in] env An environment handle returned by #mdb_env_create()
893 * @return The pointer set by #mdb_env_set_userctx().
895 void *mdb_env_get_userctx(MDB_env *env);
897 /** @brief A callback function for most LMDB assert() failures,
898 * called before printing the message and aborting.
900 * @param[in] env An environment handle returned by #mdb_env_create().
901 * @param[in] msg The assertion message, not including newline.
903 typedef void MDB_assert_func(MDB_env *env, const char *msg);
905 /** Set or reset the assert() callback of the environment.
906 * Disabled if liblmdb is buillt with NDEBUG.
907 * @note This hack should become obsolete as lmdb's error handling matures.
908 * @param[in] env An environment handle returned by #mdb_env_create().
909 * @param[in] func An #MDB_assert_func function, or 0.
910 * @return A non-zero error value on failure and 0 on success.
912 int mdb_env_set_assert(MDB_env *env, MDB_assert_func *func);
914 /** @brief Create a transaction for use with the environment.
916 * The transaction handle may be discarded using #mdb_txn_abort() or #mdb_txn_commit().
917 * @note A transaction and its cursors must only be used by a single
918 * thread, and a thread may only have a single transaction at a time.
919 * If #MDB_NOTLS is in use, this does not apply to read-only transactions.
920 * @note Cursors may not span transactions.
921 * @param[in] env An environment handle returned by #mdb_env_create()
922 * @param[in] parent If this parameter is non-NULL, the new transaction
923 * will be a nested transaction, with the transaction indicated by \b parent
924 * as its parent. Transactions may be nested to any level. A parent
925 * transaction and its cursors may not issue any other operations than
926 * mdb_txn_commit and mdb_txn_abort while it has active child transactions.
927 * @param[in] flags Special options for this transaction. This parameter
928 * must be set to 0 or by bitwise OR'ing together one or more of the
929 * values described here.
932 * This transaction will not perform any write operations.
934 * @param[out] txn Address where the new #MDB_txn handle will be stored
935 * @return A non-zero error value on failure and 0 on success. Some possible
938 * <li>#MDB_PANIC - a fatal error occurred earlier and the environment
940 * <li>#MDB_MAP_RESIZED - another process wrote data beyond this MDB_env's
941 * mapsize and this environment's map must be resized as well.
942 * See #mdb_env_set_mapsize().
943 * <li>#MDB_READERS_FULL - a read-only transaction was requested and
944 * the reader lock table is full. See #mdb_env_set_maxreaders().
945 * <li>ENOMEM - out of memory.
948 int mdb_txn_begin(MDB_env *env, MDB_txn *parent, unsigned int flags, MDB_txn **txn);
950 /** @brief Returns the transaction's #MDB_env
952 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
954 MDB_env *mdb_txn_env(MDB_txn *txn);
956 /** @brief Return the transaction's #MDB_txnid_t
958 * This returns the identifier associated with this transaction. For a
959 * read-only transaction, this corresponds to the snapshot being read;
960 * concurrent readers will frequently have the same transaction ID. For
961 * a write transaction, this is always the snapshot read plus one. When
962 * a write transaction aborts, the next transaction ID will be reused.
964 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
965 * @return A transaction ID, valid if input is an active transaction.
967 MDB_txnid_t mdb_txn_id(MDB_txn *txn);
969 /** @brief Commit all the operations of a transaction into the database.
971 * The transaction handle is freed. It and its cursors must not be used
972 * again after this call, except with #mdb_cursor_renew().
973 * @note Earlier documentation incorrectly said all cursors would be freed.
974 * Only write-transactions free cursors.
975 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
976 * @return A non-zero error value on failure and 0 on success. Some possible
979 * <li>EINVAL - an invalid parameter was specified.
980 * <li>ENOSPC - no more disk space.
981 * <li>EIO - a low-level I/O error occurred while writing.
982 * <li>ENOMEM - out of memory.
985 int mdb_txn_commit(MDB_txn *txn);
987 /** @brief Abandon all the operations of the transaction instead of saving them.
989 * The transaction handle is freed. It and its cursors must not be used
990 * again after this call, except with #mdb_cursor_renew().
991 * @note Earlier documentation incorrectly said all cursors would be freed.
992 * Only write-transactions free cursors.
993 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
995 void mdb_txn_abort(MDB_txn *txn);
997 /** @brief Reset a read-only transaction.
999 * Abort the transaction like #mdb_txn_abort(), but keep the transaction
1000 * handle. #mdb_txn_renew() may reuse the handle. This saves allocation
1001 * overhead if the process will start a new read-only transaction soon,
1002 * and also locking overhead if #MDB_NOTLS is in use. The reader table
1003 * lock is released, but the table slot stays tied to its thread or
1004 * #MDB_txn. Use mdb_txn_abort() to discard a reset handle, and to free
1005 * its lock table slot if MDB_NOTLS is in use.
1006 * Cursors opened within the transaction must not be used
1007 * again after this call, except with #mdb_cursor_renew().
1008 * Reader locks generally don't interfere with writers, but they keep old
1009 * versions of database pages allocated. Thus they prevent the old pages
1010 * from being reused when writers commit new data, and so under heavy load
1011 * the database size may grow much more rapidly than otherwise.
1012 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1014 void mdb_txn_reset(MDB_txn *txn);
1016 /** @brief Renew a read-only transaction.
1018 * This acquires a new reader lock for a transaction handle that had been
1019 * released by #mdb_txn_reset(). It must be called before a reset transaction
1020 * may be used again.
1021 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1022 * @return A non-zero error value on failure and 0 on success. Some possible
1025 * <li>#MDB_PANIC - a fatal error occurred earlier and the environment
1026 * must be shut down.
1027 * <li>EINVAL - an invalid parameter was specified.
1030 int mdb_txn_renew(MDB_txn *txn);
1032 /** Compat with version <= 0.9.4, avoid clash with libmdb from MDB Tools project */
1033 #define mdb_open(txn,name,flags,dbi) mdb_dbi_open(txn,name,flags,dbi)
1034 /** Compat with version <= 0.9.4, avoid clash with libmdb from MDB Tools project */
1035 #define mdb_close(env,dbi) mdb_dbi_close(env,dbi)
1037 /** @brief Open a database in the environment.
1039 * A database handle denotes the name and parameters of a database,
1040 * independently of whether such a database exists.
1041 * The database handle may be discarded by calling #mdb_dbi_close().
1042 * The old database handle is returned if the database was already open.
1043 * The handle may only be closed once.
1044 * The database handle will be private to the current transaction until
1045 * the transaction is successfully committed. If the transaction is
1046 * aborted the handle will be closed automatically.
1047 * After a successful commit the
1048 * handle will reside in the shared environment, and may be used
1049 * by other transactions. This function must not be called from
1050 * multiple concurrent transactions. A transaction that uses this function
1051 * must finish (either commit or abort) before any other transaction may
1052 * use this function.
1054 * To use named databases (with name != NULL), #mdb_env_set_maxdbs()
1055 * must be called before opening the environment. Database names
1056 * are kept as keys in the unnamed database.
1057 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1058 * @param[in] name The name of the database to open. If only a single
1059 * database is needed in the environment, this value may be NULL.
1060 * @param[in] flags Special options for this database. This parameter
1061 * must be set to 0 or by bitwise OR'ing together one or more of the
1062 * values described here.
1064 * <li>#MDB_REVERSEKEY
1065 * Keys are strings to be compared in reverse order, from the end
1066 * of the strings to the beginning. By default, Keys are treated as strings and
1067 * compared from beginning to end.
1069 * Duplicate keys may be used in the database. (Or, from another perspective,
1070 * keys may have multiple data items, stored in sorted order.) By default
1071 * keys must be unique and may have only a single data item.
1072 * <li>#MDB_INTEGERKEY
1073 * Keys are binary integers in native byte order. Setting this option
1074 * requires all keys to be the same size, typically sizeof(int)
1075 * or sizeof(size_t).
1077 * This flag may only be used in combination with #MDB_DUPSORT. This option
1078 * tells the library that the data items for this database are all the same
1079 * size, which allows further optimizations in storage and retrieval. When
1080 * all data items are the same size, the #MDB_GET_MULTIPLE and #MDB_NEXT_MULTIPLE
1081 * cursor operations may be used to retrieve multiple items at once.
1082 * <li>#MDB_INTEGERDUP
1083 * This option specifies that duplicate data items are also integers, and
1084 * should be sorted as such.
1085 * <li>#MDB_REVERSEDUP
1086 * This option specifies that duplicate data items should be compared as
1087 * strings in reverse order.
1089 * Create the named database if it doesn't exist. This option is not
1090 * allowed in a read-only transaction or a read-only environment.
1092 * @param[out] dbi Address where the new #MDB_dbi handle will be stored
1093 * @return A non-zero error value on failure and 0 on success. Some possible
1096 * <li>#MDB_NOTFOUND - the specified database doesn't exist in the environment
1097 * and #MDB_CREATE was not specified.
1098 * <li>#MDB_DBS_FULL - too many databases have been opened. See #mdb_env_set_maxdbs().
1101 int mdb_dbi_open(MDB_txn *txn, const char *name, unsigned int flags, MDB_dbi *dbi);
1103 /** @brief Retrieve statistics for a database.
1105 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1106 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1107 * @param[out] stat The address of an #MDB_stat structure
1108 * where the statistics will be copied
1109 * @return A non-zero error value on failure and 0 on success. Some possible
1112 * <li>EINVAL - an invalid parameter was specified.
1115 int mdb_stat(MDB_txn *txn, MDB_dbi dbi, MDB_stat *stat);
1117 /** @brief Retrieve the DB flags for a database handle.
1119 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1120 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1121 * @param[out] flags Address where the flags will be returned.
1122 * @return A non-zero error value on failure and 0 on success.
1124 int mdb_dbi_flags(MDB_txn *txn, MDB_dbi dbi, unsigned int *flags);
1126 /** @brief Close a database handle. Normally unnecessary. Use with care:
1128 * This call is not mutex protected. Handles should only be closed by
1129 * a single thread, and only if no other threads are going to reference
1130 * the database handle or one of its cursors any further. Do not close
1131 * a handle if an existing transaction has modified its database.
1132 * Doing so can cause misbehavior from database corruption to errors
1133 * like MDB_BAD_VALSIZE (since the DB name is gone).
1135 * Closing a database handle is not necessary, but lets #mdb_dbi_open()
1136 * reuse the handle value. Usually it's better to set a bigger
1137 * #mdb_env_set_maxdbs(), unless that value would be large.
1139 * @param[in] env An environment handle returned by #mdb_env_create()
1140 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1142 void mdb_dbi_close(MDB_env *env, MDB_dbi dbi);
1144 /** @brief Empty or delete+close a database.
1146 * See #mdb_dbi_close() for restrictions about closing the DB handle.
1147 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1148 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1149 * @param[in] del 0 to empty the DB, 1 to delete it from the
1150 * environment and close the DB handle.
1151 * @return A non-zero error value on failure and 0 on success.
1153 int mdb_drop(MDB_txn *txn, MDB_dbi dbi, int del);
1155 /** @brief Set a custom key comparison function for a database.
1157 * The comparison function is called whenever it is necessary to compare a
1158 * key specified by the application with a key currently stored in the database.
1159 * If no comparison function is specified, and no special key flags were specified
1160 * with #mdb_dbi_open(), the keys are compared lexically, with shorter keys collating
1161 * before longer keys.
1162 * @warning This function must be called before any data access functions are used,
1163 * otherwise data corruption may occur. The same comparison function must be used by every
1164 * program accessing the database, every time the database is used.
1165 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1166 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1167 * @param[in] cmp A #MDB_cmp_func function
1168 * @return A non-zero error value on failure and 0 on success. Some possible
1171 * <li>EINVAL - an invalid parameter was specified.
1174 int mdb_set_compare(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp);
1176 /** @brief Set a custom data comparison function for a #MDB_DUPSORT database.
1178 * This comparison function is called whenever it is necessary to compare a data
1179 * item specified by the application with a data item currently stored in the database.
1180 * This function only takes effect if the database was opened with the #MDB_DUPSORT
1182 * If no comparison function is specified, and no special key flags were specified
1183 * with #mdb_dbi_open(), the data items are compared lexically, with shorter items collating
1184 * before longer items.
1185 * @warning This function must be called before any data access functions are used,
1186 * otherwise data corruption may occur. The same comparison function must be used by every
1187 * program accessing the database, every time the database is used.
1188 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1189 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1190 * @param[in] cmp A #MDB_cmp_func function
1191 * @return A non-zero error value on failure and 0 on success. Some possible
1194 * <li>EINVAL - an invalid parameter was specified.
1197 int mdb_set_dupsort(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp);
1199 /** @brief Set a relocation function for a #MDB_FIXEDMAP database.
1201 * @todo The relocation function is called whenever it is necessary to move the data
1202 * of an item to a different position in the database (e.g. through tree
1203 * balancing operations, shifts as a result of adds or deletes, etc.). It is
1204 * intended to allow address/position-dependent data items to be stored in
1205 * a database in an environment opened with the #MDB_FIXEDMAP option.
1206 * Currently the relocation feature is unimplemented and setting
1207 * this function has no effect.
1208 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1209 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1210 * @param[in] rel A #MDB_rel_func function
1211 * @return A non-zero error value on failure and 0 on success. Some possible
1214 * <li>EINVAL - an invalid parameter was specified.
1217 int mdb_set_relfunc(MDB_txn *txn, MDB_dbi dbi, MDB_rel_func *rel);
1219 /** @brief Set a context pointer for a #MDB_FIXEDMAP database's relocation function.
1221 * See #mdb_set_relfunc and #MDB_rel_func for more details.
1222 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1223 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1224 * @param[in] ctx An arbitrary pointer for whatever the application needs.
1225 * It will be passed to the callback function set by #mdb_set_relfunc
1226 * as its \b relctx parameter whenever the callback is invoked.
1227 * @return A non-zero error value on failure and 0 on success. Some possible
1230 * <li>EINVAL - an invalid parameter was specified.
1233 int mdb_set_relctx(MDB_txn *txn, MDB_dbi dbi, void *ctx);
1235 /** @brief Get items from a database.
1237 * This function retrieves key/data pairs from the database. The address
1238 * and length of the data associated with the specified \b key are returned
1239 * in the structure to which \b data refers.
1240 * If the database supports duplicate keys (#MDB_DUPSORT) then the
1241 * first data item for the key will be returned. Retrieval of other
1242 * items requires the use of #mdb_cursor_get().
1244 * @note The memory pointed to by the returned values is owned by the
1245 * database. The caller need not dispose of the memory, and may not
1246 * modify it in any way. For values returned in a read-only transaction
1247 * any modification attempts will cause a SIGSEGV.
1248 * @note Values returned from the database are valid only until a
1249 * subsequent update operation, or the end of the transaction.
1250 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1251 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1252 * @param[in] key The key to search for in the database
1253 * @param[out] data The data corresponding to the key
1254 * @return A non-zero error value on failure and 0 on success. Some possible
1257 * <li>#MDB_NOTFOUND - the key was not in the database.
1258 * <li>EINVAL - an invalid parameter was specified.
1261 int mdb_get(MDB_txn *txn, MDB_dbi dbi, MDB_val *key, MDB_val *data);
1263 /** @brief Store items into a database.
1265 * This function stores key/data pairs in the database. The default behavior
1266 * is to enter the new key/data pair, replacing any previously existing key
1267 * if duplicates are disallowed, or adding a duplicate data item if
1268 * duplicates are allowed (#MDB_DUPSORT).
1269 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1270 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1271 * @param[in] key The key to store in the database
1272 * @param[in,out] data The data to store
1273 * @param[in] flags Special options for this operation. This parameter
1274 * must be set to 0 or by bitwise OR'ing together one or more of the
1275 * values described here.
1277 * <li>#MDB_NODUPDATA - enter the new key/data pair only if it does not
1278 * already appear in the database. This flag may only be specified
1279 * if the database was opened with #MDB_DUPSORT. The function will
1280 * return #MDB_KEYEXIST if the key/data pair already appears in the
1282 * <li>#MDB_NOOVERWRITE - enter the new key/data pair only if the key
1283 * does not already appear in the database. The function will return
1284 * #MDB_KEYEXIST if the key already appears in the database, even if
1285 * the database supports duplicates (#MDB_DUPSORT). The \b data
1286 * parameter will be set to point to the existing item.
1287 * <li>#MDB_RESERVE - reserve space for data of the given size, but
1288 * don't copy the given data. Instead, return a pointer to the
1289 * reserved space, which the caller can fill in later - before
1290 * the next update operation or the transaction ends. This saves
1291 * an extra memcpy if the data is being generated later.
1292 * LMDB does nothing else with this memory, the caller is expected
1293 * to modify all of the space requested.
1294 * <li>#MDB_APPEND - append the given key/data pair to the end of the
1295 * database. No key comparisons are performed. This option allows
1296 * fast bulk loading when keys are already known to be in the
1297 * correct order. Loading unsorted keys with this flag will cause
1299 * <li>#MDB_APPENDDUP - as above, but for sorted dup data.
1301 * @return A non-zero error value on failure and 0 on success. Some possible
1304 * <li>#MDB_MAP_FULL - the database is full, see #mdb_env_set_mapsize().
1305 * <li>#MDB_TXN_FULL - the transaction has too many dirty pages.
1306 * <li>EACCES - an attempt was made to write in a read-only transaction.
1307 * <li>EINVAL - an invalid parameter was specified.
1310 int mdb_put(MDB_txn *txn, MDB_dbi dbi, MDB_val *key, MDB_val *data,
1311 unsigned int flags);
1313 /** @brief Delete items from a database.
1315 * This function removes key/data pairs from the database.
1316 * If the database does not support sorted duplicate data items
1317 * (#MDB_DUPSORT) the data parameter is ignored.
1318 * If the database supports sorted duplicates and the data parameter
1319 * is NULL, all of the duplicate data items for the key will be
1320 * deleted. Otherwise, if the data parameter is non-NULL
1321 * only the matching data item will be deleted.
1322 * This function will return #MDB_NOTFOUND if the specified key/data
1323 * pair is not in the database.
1324 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1325 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1326 * @param[in] key The key to delete from the database
1327 * @param[in] data The data to delete
1328 * @return A non-zero error value on failure and 0 on success. Some possible
1331 * <li>EACCES - an attempt was made to write in a read-only transaction.
1332 * <li>EINVAL - an invalid parameter was specified.
1335 int mdb_del(MDB_txn *txn, MDB_dbi dbi, MDB_val *key, MDB_val *data);
1337 /** @brief Create a cursor handle.
1339 * A cursor is associated with a specific transaction and database.
1340 * A cursor cannot be used when its database handle is closed. Nor
1341 * when its transaction has ended, except with #mdb_cursor_renew().
1342 * It can be discarded with #mdb_cursor_close().
1343 * A cursor in a write-transaction can be closed before its transaction
1344 * ends, and will otherwise be closed when its transaction ends.
1345 * A cursor in a read-only transaction must be closed explicitly, before
1346 * or after its transaction ends. It can be reused with
1347 * #mdb_cursor_renew() before finally closing it.
1348 * @note Earlier documentation said that cursors in every transaction
1349 * were closed when the transaction committed or aborted.
1350 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1351 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1352 * @param[out] cursor Address where the new #MDB_cursor handle will be stored
1353 * @return A non-zero error value on failure and 0 on success. Some possible
1356 * <li>EINVAL - an invalid parameter was specified.
1359 int mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **cursor);
1361 /** @brief Close a cursor handle.
1363 * The cursor handle will be freed and must not be used again after this call.
1364 * Its transaction must still be live if it is a write-transaction.
1365 * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1367 void mdb_cursor_close(MDB_cursor *cursor);
1369 /** @brief Renew a cursor handle.
1371 * A cursor is associated with a specific transaction and database.
1372 * Cursors that are only used in read-only
1373 * transactions may be re-used, to avoid unnecessary malloc/free overhead.
1374 * The cursor may be associated with a new read-only transaction, and
1375 * referencing the same database handle as it was created with.
1376 * This may be done whether the previous transaction is live or dead.
1377 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1378 * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1379 * @return A non-zero error value on failure and 0 on success. Some possible
1382 * <li>EINVAL - an invalid parameter was specified.
1385 int mdb_cursor_renew(MDB_txn *txn, MDB_cursor *cursor);
1387 /** @brief Return the cursor's transaction handle.
1389 * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1391 MDB_txn *mdb_cursor_txn(MDB_cursor *cursor);
1393 /** @brief Return the cursor's database handle.
1395 * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1397 MDB_dbi mdb_cursor_dbi(MDB_cursor *cursor);
1399 /** @brief Retrieve by cursor.
1401 * This function retrieves key/data pairs from the database. The address and length
1402 * of the key are returned in the object to which \b key refers (except for the
1403 * case of the #MDB_SET option, in which the \b key object is unchanged), and
1404 * the address and length of the data are returned in the object to which \b data
1406 * See #mdb_get() for restrictions on using the output values.
1407 * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1408 * @param[in,out] key The key for a retrieved item
1409 * @param[in,out] data The data of a retrieved item
1410 * @param[in] op A cursor operation #MDB_cursor_op
1411 * @return A non-zero error value on failure and 0 on success. Some possible
1414 * <li>#MDB_NOTFOUND - no matching key found.
1415 * <li>EINVAL - an invalid parameter was specified.
1418 int mdb_cursor_get(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
1421 /** @brief Store by cursor.
1423 * This function stores key/data pairs into the database.
1424 * The cursor is positioned at the new item, or on failure usually near it.
1425 * @note Earlier documentation incorrectly said errors would leave the
1426 * state of the cursor unchanged.
1427 * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1428 * @param[in] key The key operated on.
1429 * @param[in] data The data operated on.
1430 * @param[in] flags Options for this operation. This parameter
1431 * must be set to 0 or one of the values described here.
1433 * <li>#MDB_CURRENT - replace the item at the current cursor position.
1434 * The \b key parameter must still be provided, and must match it.
1435 * If using sorted duplicates (#MDB_DUPSORT) the data item must still
1436 * sort into the same place. This is intended to be used when the
1437 * new data is the same size as the old. Otherwise it will simply
1438 * perform a delete of the old record followed by an insert.
1439 * <li>#MDB_NODUPDATA - enter the new key/data pair only if it does not
1440 * already appear in the database. This flag may only be specified
1441 * if the database was opened with #MDB_DUPSORT. The function will
1442 * return #MDB_KEYEXIST if the key/data pair already appears in the
1444 * <li>#MDB_NOOVERWRITE - enter the new key/data pair only if the key
1445 * does not already appear in the database. The function will return
1446 * #MDB_KEYEXIST if the key already appears in the database, even if
1447 * the database supports duplicates (#MDB_DUPSORT).
1448 * <li>#MDB_RESERVE - reserve space for data of the given size, but
1449 * don't copy the given data. Instead, return a pointer to the
1450 * reserved space, which the caller can fill in later. This saves
1451 * an extra memcpy if the data is being generated later.
1452 * <li>#MDB_APPEND - append the given key/data pair to the end of the
1453 * database. No key comparisons are performed. This option allows
1454 * fast bulk loading when keys are already known to be in the
1455 * correct order. Loading unsorted keys with this flag will cause
1457 * <li>#MDB_APPENDDUP - as above, but for sorted dup data.
1458 * <li>#MDB_MULTIPLE - store multiple contiguous data elements in a
1459 * single request. This flag may only be specified if the database
1460 * was opened with #MDB_DUPFIXED. The \b data argument must be an
1461 * array of two MDB_vals. The mv_size of the first MDB_val must be
1462 * the size of a single data element. The mv_data of the first MDB_val
1463 * must point to the beginning of the array of contiguous data elements.
1464 * The mv_size of the second MDB_val must be the count of the number
1465 * of data elements to store. On return this field will be set to
1466 * the count of the number of elements actually written. The mv_data
1467 * of the second MDB_val is unused.
1469 * @return A non-zero error value on failure and 0 on success. Some possible
1472 * <li>#MDB_MAP_FULL - the database is full, see #mdb_env_set_mapsize().
1473 * <li>#MDB_TXN_FULL - the transaction has too many dirty pages.
1474 * <li>EACCES - an attempt was made to modify a read-only database.
1475 * <li>EINVAL - an invalid parameter was specified.
1478 int mdb_cursor_put(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
1479 unsigned int flags);
1481 /** @brief Delete current key/data pair
1483 * This function deletes the key/data pair to which the cursor refers.
1484 * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1485 * @param[in] flags Options for this operation. This parameter
1486 * must be set to 0 or one of the values described here.
1488 * <li>#MDB_NODUPDATA - delete all of the data items for the current key.
1489 * This flag may only be specified if the database was opened with #MDB_DUPSORT.
1491 * @return A non-zero error value on failure and 0 on success. Some possible
1494 * <li>EACCES - an attempt was made to modify a read-only database.
1495 * <li>EINVAL - an invalid parameter was specified.
1498 int mdb_cursor_del(MDB_cursor *cursor, unsigned int flags);
1500 /** @brief Return count of duplicates for current key.
1502 * This call is only valid on databases that support sorted duplicate
1503 * data items #MDB_DUPSORT.
1504 * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1505 * @param[out] countp Address where the count will be stored
1506 * @return A non-zero error value on failure and 0 on success. Some possible
1509 * <li>EINVAL - cursor is not initialized, or an invalid parameter was specified.
1512 int mdb_cursor_count(MDB_cursor *cursor, size_t *countp);
1514 /** @brief Compare two data items according to a particular database.
1516 * This returns a comparison as if the two data items were keys in the
1517 * specified database.
1518 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1519 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1520 * @param[in] a The first item to compare
1521 * @param[in] b The second item to compare
1522 * @return < 0 if a < b, 0 if a == b, > 0 if a > b
1524 int mdb_cmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *a, const MDB_val *b);
1526 /** @brief Compare two data items according to a particular database.
1528 * This returns a comparison as if the two items were data items of
1529 * the specified database. The database must have the #MDB_DUPSORT flag.
1530 * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1531 * @param[in] dbi A database handle returned by #mdb_dbi_open()
1532 * @param[in] a The first item to compare
1533 * @param[in] b The second item to compare
1534 * @return < 0 if a < b, 0 if a == b, > 0 if a > b
1536 int mdb_dcmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *a, const MDB_val *b);
1538 /** @brief A callback function used to print a message from the library.
1540 * @param[in] msg The string to be printed.
1541 * @param[in] ctx An arbitrary context pointer for the callback.
1542 * @return < 0 on failure, >= 0 on success.
1544 typedef int (MDB_msg_func)(const char *msg, void *ctx);
1546 /** @brief Dump the entries in the reader lock table.
1548 * @param[in] env An environment handle returned by #mdb_env_create()
1549 * @param[in] func A #MDB_msg_func function
1550 * @param[in] ctx Anything the message function needs
1551 * @return < 0 on failure, >= 0 on success.
1553 int mdb_reader_list(MDB_env *env, MDB_msg_func *func, void *ctx);
1555 /** @brief Check for stale entries in the reader lock table.
1557 * @param[in] env An environment handle returned by #mdb_env_create()
1558 * @param[out] dead Number of stale slots that were cleared
1559 * @return 0 on success, non-zero on failure.
1561 int mdb_reader_check(MDB_env *env, int *dead);
1567 /** @page tools LMDB Command Line Tools
1568 The following describes the command line tools that are available for LMDB.
1575 #endif /* _LMDB_H_ */