]> git.sur5r.net Git - openldap/blob - libraries/liblmdb/lmdb.h
Clarify mdb_dbi_open doc
[openldap] / libraries / liblmdb / lmdb.h
1 /** @file lmdb.h
2  *      @brief Lightning memory-mapped database library
3  *
4  *      @mainpage       Lightning Memory-Mapped Database Manager (LMDB)
5  *
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
16  *      application code.
17  *
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.
27  *
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.
35  *
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.
42  *
43  *      @section caveats_sec Caveats
44  *      Troubleshooting the lock file, plus semaphores on BSD systems:
45  *
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.
50  *
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.
59  *
60  *      - On BSD systems or others configured with MDB_USE_SYSV_SEM,
61  *        startup can fail due to semaphores owned by another userid.
62  *
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.
66  *
67  *      Restrictions/caveats (in addition to those listed for some functions):
68  *
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.
72  *
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().
76  *
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.
86  *
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.
90  *
91  *      - Use an MDB_env* in the process which opened it, without fork()ing.
92  *
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.
96  *
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.
101  *
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.
105  *
106  *      ...when several processes can use a database concurrently:
107  *
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.
113  *
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.
116  *
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.
121  *
122  *      - Opening a database can fail if another process is opening or
123  *        closing it at exactly the same time.
124  *
125  *      @author Howard Chu, Symas Corporation.
126  *
127  *      @copyright Copyright 2011-2014 Howard Chu, Symas Corp. All rights reserved.
128  *
129  * Redistribution and use in source and binary forms, with or without
130  * modification, are permitted only as authorized by the OpenLDAP
131  * Public License.
132  *
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>.
136  *
137  *      @par Derived From:
138  * This code is derived from btree.c written by Martin Hedenfalk.
139  *
140  * Copyright (c) 2009, 2010 Martin Hedenfalk <martin@bzero.se>
141  *
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.
145  *
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.
153  */
154 #ifndef _LMDB_H_
155 #define _LMDB_H_
156
157 #include <sys/types.h>
158
159 #ifdef __cplusplus
160 extern "C" {
161 #endif
162
163 /** Unix permissions for creating files, or dummy definition for Windows */
164 #ifdef _MSC_VER
165 typedef int     mdb_mode_t;
166 #else
167 typedef mode_t  mdb_mode_t;
168 #endif
169
170 /** An abstraction for a file handle.
171  *      On POSIX systems file handles are small integers. On Windows
172  *      they're opaque pointers.
173  */
174 #ifdef _WIN32
175 typedef void *mdb_filehandle_t;
176 #else
177 typedef int mdb_filehandle_t;
178 #endif
179
180 /** @defgroup mdb LMDB API
181  *      @{
182  *      @brief OpenLDAP Lightning Memory-Mapped Database Manager
183  */
184 /** @defgroup Version Version Macros
185  *      @{
186  */
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
193
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))
196
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)
200
201 /** The release date of this library version */
202 #define MDB_VERSION_DATE        "September 20, 2014"
203
204 /** A stringifier for the version info */
205 #define MDB_VERSTR(a,b,c,d)     "LMDB " #a "." #b "." #c ": (" d ")"
206
207 /** A helper for the stringifier macro */
208 #define MDB_VERFOO(a,b,c,d)     MDB_VERSTR(a,b,c,d)
209
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)
213 /**     @} */
214
215 /** @brief Opaque structure for a database environment.
216  *
217  * A DB environment supports multiple databases, all residing in the same
218  * shared-memory map.
219  */
220 typedef struct MDB_env MDB_env;
221
222 /** @brief Opaque structure for a transaction handle.
223  *
224  * All database operations require a transaction handle. Transactions may be
225  * read-only or read-write.
226  */
227 typedef struct MDB_txn MDB_txn;
228
229 /** @brief A handle for an individual database in the DB environment. */
230 typedef unsigned int    MDB_dbi;
231
232 /** @brief Opaque structure for navigating through a database */
233 typedef struct MDB_cursor MDB_cursor;
234
235 /** @brief Generic structure used for passing keys and data in and out
236  * of the database.
237  *
238  * Values returned from the database are valid only until a subsequent
239  * update operation, or the end of the transaction. Do not modify or
240  * free them, they commonly point into the database itself.
241  *
242  * Key sizes must be between 1 and #mdb_env_get_maxkeysize() inclusive.
243  * The same applies to data sizes in databases with the #MDB_DUPSORT flag.
244  * Other data items can in theory be from 0 to 0xffffffff bytes long.
245  */
246 typedef struct MDB_val {
247         size_t           mv_size;       /**< size of the data item */
248         void            *mv_data;       /**< address of the data item */
249 } MDB_val;
250
251 /** @brief A callback function used to compare two keys in a database */
252 typedef int  (MDB_cmp_func)(const MDB_val *a, const MDB_val *b);
253
254 /** @brief A callback function used to relocate a position-dependent data item
255  * in a fixed-address database.
256  *
257  * The \b newptr gives the item's desired address in
258  * the memory map, and \b oldptr gives its previous address. The item's actual
259  * data resides at the address in \b item.  This callback is expected to walk
260  * through the fields of the record in \b item and modify any
261  * values based at the \b oldptr address to be relative to the \b newptr address.
262  * @param[in,out] item The item that is to be relocated.
263  * @param[in] oldptr The previous address.
264  * @param[in] newptr The new address to relocate to.
265  * @param[in] relctx An application-provided context, set by #mdb_set_relctx().
266  * @todo This feature is currently unimplemented.
267  */
268 typedef void (MDB_rel_func)(MDB_val *item, void *oldptr, void *newptr, void *relctx);
269
270 /** @defgroup   mdb_env Environment Flags
271  *      @{
272  */
273         /** mmap at a fixed address (experimental) */
274 #define MDB_FIXEDMAP    0x01
275         /** no environment directory */
276 #define MDB_NOSUBDIR    0x4000
277         /** don't fsync after commit */
278 #define MDB_NOSYNC              0x10000
279         /** read only */
280 #define MDB_RDONLY              0x20000
281         /** don't fsync metapage after commit */
282 #define MDB_NOMETASYNC          0x40000
283         /** use writable mmap */
284 #define MDB_WRITEMAP            0x80000
285         /** use asynchronous msync when #MDB_WRITEMAP is used */
286 #define MDB_MAPASYNC            0x100000
287         /** tie reader locktable slots to #MDB_txn objects instead of to threads */
288 #define MDB_NOTLS               0x200000
289         /** don't do any locking, caller must manage their own locks */
290 #define MDB_NOLOCK              0x400000
291         /** don't do readahead (no effect on Windows) */
292 #define MDB_NORDAHEAD   0x800000
293         /** don't initialize malloc'd memory before writing to datafile */
294 #define MDB_NOMEMINIT   0x1000000
295 /** @} */
296
297 /**     @defgroup       mdb_dbi_open    Database Flags
298  *      @{
299  */
300         /** use reverse string keys */
301 #define MDB_REVERSEKEY  0x02
302         /** use sorted duplicates */
303 #define MDB_DUPSORT             0x04
304         /** numeric keys in native byte order.
305          *  The keys must all be of the same size. */
306 #define MDB_INTEGERKEY  0x08
307         /** with #MDB_DUPSORT, sorted dup items have fixed size */
308 #define MDB_DUPFIXED    0x10
309         /** with #MDB_DUPSORT, dups are numeric in native byte order */
310 #define MDB_INTEGERDUP  0x20
311         /** with #MDB_DUPSORT, use reverse string dups */
312 #define MDB_REVERSEDUP  0x40
313         /** create DB if not already existing */
314 #define MDB_CREATE              0x40000
315 /** @} */
316
317 /**     @defgroup mdb_put       Write Flags
318  *      @{
319  */
320 /** For put: Don't write if the key already exists. */
321 #define MDB_NOOVERWRITE 0x10
322 /** Only for #MDB_DUPSORT<br>
323  * For put: don't write if the key and data pair already exist.<br>
324  * For mdb_cursor_del: remove all duplicate data items.
325  */
326 #define MDB_NODUPDATA   0x20
327 /** For mdb_cursor_put: overwrite the current key/data pair */
328 #define MDB_CURRENT     0x40
329 /** For put: Just reserve space for data, don't copy it. Return a
330  * pointer to the reserved space.
331  */
332 #define MDB_RESERVE     0x10000
333 /** Data is being appended, don't split full pages. */
334 #define MDB_APPEND      0x20000
335 /** Duplicate data is being appended, don't split full pages. */
336 #define MDB_APPENDDUP   0x40000
337 /** Store multiple data items in one call. Only for #MDB_DUPFIXED. */
338 #define MDB_MULTIPLE    0x80000
339 /*      @} */
340
341 /**     @defgroup mdb_copy      Copy Flags
342  *      @{
343  */
344 /** Compacting copy: Omit free space from copy, and renumber all
345  * pages sequentially.
346  */
347 #define MDB_CP_COMPACT  0x01
348 /*      @} */
349
350 /** @brief Cursor Get operations.
351  *
352  *      This is the set of all operations for retrieving data
353  *      using a cursor.
354  */
355 typedef enum MDB_cursor_op {
356         MDB_FIRST,                              /**< Position at first key/data item */
357         MDB_FIRST_DUP,                  /**< Position at first data item of current key.
358                                                                 Only for #MDB_DUPSORT */
359         MDB_GET_BOTH,                   /**< Position at key/data pair. Only for #MDB_DUPSORT */
360         MDB_GET_BOTH_RANGE,             /**< position at key, nearest data. Only for #MDB_DUPSORT */
361         MDB_GET_CURRENT,                /**< Return key/data at current cursor position */
362         MDB_GET_MULTIPLE,               /**< Return key and up to a page of duplicate data items
363                                                                 from current cursor position. Move cursor to prepare
364                                                                 for #MDB_NEXT_MULTIPLE. Only for #MDB_DUPFIXED */
365         MDB_LAST,                               /**< Position at last key/data item */
366         MDB_LAST_DUP,                   /**< Position at last data item of current key.
367                                                                 Only for #MDB_DUPSORT */
368         MDB_NEXT,                               /**< Position at next data item */
369         MDB_NEXT_DUP,                   /**< Position at next data item of current key.
370                                                                 Only for #MDB_DUPSORT */
371         MDB_NEXT_MULTIPLE,              /**< Return key and up to a page of duplicate data items
372                                                                 from next cursor position. Move cursor to prepare
373                                                                 for #MDB_NEXT_MULTIPLE. Only for #MDB_DUPFIXED */
374         MDB_NEXT_NODUP,                 /**< Position at first data item of next key */
375         MDB_PREV,                               /**< Position at previous data item */
376         MDB_PREV_DUP,                   /**< Position at previous data item of current key.
377                                                                 Only for #MDB_DUPSORT */
378         MDB_PREV_NODUP,                 /**< Position at last data item of previous key */
379         MDB_SET,                                /**< Position at specified key */
380         MDB_SET_KEY,                    /**< Position at specified key, return key + data */
381         MDB_SET_RANGE                   /**< Position at first key greater than or equal to specified key. */
382 } MDB_cursor_op;
383
384 /** @defgroup  errors   Return Codes
385  *
386  *      BerkeleyDB uses -30800 to -30999, we'll go under them
387  *      @{
388  */
389         /**     Successful result */
390 #define MDB_SUCCESS      0
391         /** key/data pair already exists */
392 #define MDB_KEYEXIST    (-30799)
393         /** key/data pair not found (EOF) */
394 #define MDB_NOTFOUND    (-30798)
395         /** Requested page not found - this usually indicates corruption */
396 #define MDB_PAGE_NOTFOUND       (-30797)
397         /** Located page was wrong type */
398 #define MDB_CORRUPTED   (-30796)
399         /** Update of meta page failed or environment had fatal error */
400 #define MDB_PANIC               (-30795)
401         /** Environment version mismatch */
402 #define MDB_VERSION_MISMATCH    (-30794)
403         /** File is not a valid LMDB file */
404 #define MDB_INVALID     (-30793)
405         /** Environment mapsize reached */
406 #define MDB_MAP_FULL    (-30792)
407         /** Environment maxdbs reached */
408 #define MDB_DBS_FULL    (-30791)
409         /** Environment maxreaders reached */
410 #define MDB_READERS_FULL        (-30790)
411         /** Too many TLS keys in use - Windows only */
412 #define MDB_TLS_FULL    (-30789)
413         /** Txn has too many dirty pages */
414 #define MDB_TXN_FULL    (-30788)
415         /** Cursor stack too deep - internal error */
416 #define MDB_CURSOR_FULL (-30787)
417         /** Page has not enough space - internal error */
418 #define MDB_PAGE_FULL   (-30786)
419         /** Database contents grew beyond environment mapsize */
420 #define MDB_MAP_RESIZED (-30785)
421         /** MDB_INCOMPATIBLE: Operation and DB incompatible, or DB flags changed */
422 #define MDB_INCOMPATIBLE        (-30784)
423         /** Invalid reuse of reader locktable slot */
424 #define MDB_BAD_RSLOT           (-30783)
425         /** Transaction cannot recover - it must be aborted */
426 #define MDB_BAD_TXN                     (-30782)
427         /** Unsupported size of key/DB name/data, or wrong DUPFIXED size */
428 #define MDB_BAD_VALSIZE         (-30781)
429         /** The specified DBI was changed unexpectedly */
430 #define MDB_BAD_DBI             (-30780)
431         /** The last defined error code */
432 #define MDB_LAST_ERRCODE        MDB_BAD_DBI
433 /** @} */
434
435 /** @brief Statistics for a database in the environment */
436 typedef struct MDB_stat {
437         unsigned int    ms_psize;                       /**< Size of a database page.
438                                                                                         This is currently the same for all databases. */
439         unsigned int    ms_depth;                       /**< Depth (height) of the B-tree */
440         size_t          ms_branch_pages;        /**< Number of internal (non-leaf) pages */
441         size_t          ms_leaf_pages;          /**< Number of leaf pages */
442         size_t          ms_overflow_pages;      /**< Number of overflow pages */
443         size_t          ms_entries;                     /**< Number of data items */
444 } MDB_stat;
445
446 /** @brief Information about the environment */
447 typedef struct MDB_envinfo {
448         void    *me_mapaddr;                    /**< Address of map, if fixed */
449         size_t  me_mapsize;                             /**< Size of the data memory map */
450         size_t  me_last_pgno;                   /**< ID of the last used page */
451         size_t  me_last_txnid;          /**< ID of the last committed transaction */
452         unsigned int me_maxreaders;             /**< max reader slots in the environment */
453         unsigned int me_numreaders;             /**< max reader slots used in the environment */
454 } MDB_envinfo;
455
456         /** @brief Return the LMDB library version information.
457          *
458          * @param[out] major if non-NULL, the library major version number is copied here
459          * @param[out] minor if non-NULL, the library minor version number is copied here
460          * @param[out] patch if non-NULL, the library patch version number is copied here
461          * @retval "version string" The library version as a string
462          */
463 char *mdb_version(int *major, int *minor, int *patch);
464
465         /** @brief Return a string describing a given error code.
466          *
467          * This function is a superset of the ANSI C X3.159-1989 (ANSI C) strerror(3)
468          * function. If the error code is greater than or equal to 0, then the string
469          * returned by the system function strerror(3) is returned. If the error code
470          * is less than 0, an error string corresponding to the LMDB library error is
471          * returned. See @ref errors for a list of LMDB-specific error codes.
472          * @param[in] err The error code
473          * @retval "error message" The description of the error
474          */
475 char *mdb_strerror(int err);
476
477         /** @brief Create an LMDB environment handle.
478          *
479          * This function allocates memory for a #MDB_env structure. To release
480          * the allocated memory and discard the handle, call #mdb_env_close().
481          * Before the handle may be used, it must be opened using #mdb_env_open().
482          * Various other options may also need to be set before opening the handle,
483          * e.g. #mdb_env_set_mapsize(), #mdb_env_set_maxreaders(), #mdb_env_set_maxdbs(),
484          * depending on usage requirements.
485          * @param[out] env The address where the new handle will be stored
486          * @return A non-zero error value on failure and 0 on success.
487          */
488 int  mdb_env_create(MDB_env **env);
489
490         /** @brief Open an environment handle.
491          *
492          * If this function fails, #mdb_env_close() must be called to discard the #MDB_env handle.
493          * @param[in] env An environment handle returned by #mdb_env_create()
494          * @param[in] path The directory in which the database files reside. This
495          * directory must already exist and be writable.
496          * @param[in] flags Special options for this environment. This parameter
497          * must be set to 0 or by bitwise OR'ing together one or more of the
498          * values described here.
499          * Flags set by mdb_env_set_flags() are also used.
500          * <ul>
501          *      <li>#MDB_FIXEDMAP
502          *      use a fixed address for the mmap region. This flag must be specified
503          *      when creating the environment, and is stored persistently in the environment.
504          *              If successful, the memory map will always reside at the same virtual address
505          *              and pointers used to reference data items in the database will be constant
506          *              across multiple invocations. This option may not always work, depending on
507          *              how the operating system has allocated memory to shared libraries and other uses.
508          *              The feature is highly experimental.
509          *      <li>#MDB_NOSUBDIR
510          *              By default, LMDB creates its environment in a directory whose
511          *              pathname is given in \b path, and creates its data and lock files
512          *              under that directory. With this option, \b path is used as-is for
513          *              the database main data file. The database lock file is the \b path
514          *              with "-lock" appended.
515          *      <li>#MDB_RDONLY
516          *              Open the environment in read-only mode. No write operations will be
517          *              allowed. LMDB will still modify the lock file - except on read-only
518          *              filesystems, where LMDB does not use locks.
519          *      <li>#MDB_WRITEMAP
520          *              Use a writeable memory map unless MDB_RDONLY is set. This is faster
521          *              and uses fewer mallocs, but loses protection from application bugs
522          *              like wild pointer writes and other bad updates into the database.
523          *              Incompatible with nested transactions.
524          *              Processes with and without MDB_WRITEMAP on the same environment do
525          *              not cooperate well.
526          *      <li>#MDB_NOMETASYNC
527          *              Flush system buffers to disk only once per transaction, omit the
528          *              metadata flush. Defer that until the system flushes files to disk,
529          *              or next non-MDB_RDONLY commit or #mdb_env_sync(). This optimization
530          *              maintains database integrity, but a system crash may undo the last
531          *              committed transaction. I.e. it preserves the ACI (atomicity,
532          *              consistency, isolation) but not D (durability) database property.
533          *              This flag may be changed at any time using #mdb_env_set_flags().
534          *      <li>#MDB_NOSYNC
535          *              Don't flush system buffers to disk when committing a transaction.
536          *              This optimization means a system crash can corrupt the database or
537          *              lose the last transactions if buffers are not yet flushed to disk.
538          *              The risk is governed by how often the system flushes dirty buffers
539          *              to disk and how often #mdb_env_sync() is called.  However, if the
540          *              filesystem preserves write order and the #MDB_WRITEMAP flag is not
541          *              used, transactions exhibit ACI (atomicity, consistency, isolation)
542          *              properties and only lose D (durability).  I.e. database integrity
543          *              is maintained, but a system crash may undo the final transactions.
544          *              Note that (#MDB_NOSYNC | #MDB_WRITEMAP) leaves the system with no
545          *              hint for when to write transactions to disk, unless #mdb_env_sync()
546          *              is called. (#MDB_MAPASYNC | #MDB_WRITEMAP) may be preferable.
547          *              This flag may be changed at any time using #mdb_env_set_flags().
548          *      <li>#MDB_MAPASYNC
549          *              When using #MDB_WRITEMAP, use asynchronous flushes to disk.
550          *              As with #MDB_NOSYNC, a system crash can then corrupt the
551          *              database or lose the last transactions. Calling #mdb_env_sync()
552          *              ensures on-disk database integrity until next commit.
553          *              This flag may be changed at any time using #mdb_env_set_flags().
554          *      <li>#MDB_NOTLS
555          *              Don't use Thread-Local Storage. Tie reader locktable slots to
556          *              #MDB_txn objects instead of to threads. I.e. #mdb_txn_reset() keeps
557          *              the slot reseved for the #MDB_txn object. A thread may use parallel
558          *              read-only transactions. A read-only transaction may span threads if
559          *              the user synchronizes its use. Applications that multiplex many
560          *              user threads over individual OS threads need this option. Such an
561          *              application must also serialize the write transactions in an OS
562          *              thread, since LMDB's write locking is unaware of the user threads.
563          *      <li>#MDB_NOLOCK
564          *              Don't do any locking. If concurrent access is anticipated, the
565          *              caller must manage all concurrency itself. For proper operation
566          *              the caller must enforce single-writer semantics, and must ensure
567          *              that no readers are using old transactions while a writer is
568          *              active. The simplest approach is to use an exclusive lock so that
569          *              no readers may be active at all when a writer begins.
570          *      <li>#MDB_NORDAHEAD
571          *              Turn off readahead. Most operating systems perform readahead on
572          *              read requests by default. This option turns it off if the OS
573          *              supports it. Turning it off may help random read performance
574          *              when the DB is larger than RAM and system RAM is full.
575          *              The option is not implemented on Windows.
576          *      <li>#MDB_NOMEMINIT
577          *              Don't initialize malloc'd memory before writing to unused spaces
578          *              in the data file. By default, memory for pages written to the data
579          *              file is obtained using malloc. While these pages may be reused in
580          *              subsequent transactions, freshly malloc'd pages will be initialized
581          *              to zeroes before use. This avoids persisting leftover data from other
582          *              code (that used the heap and subsequently freed the memory) into the
583          *              data file. Note that many other system libraries may allocate
584          *              and free memory from the heap for arbitrary uses. E.g., stdio may
585          *              use the heap for file I/O buffers. This initialization step has a
586          *              modest performance cost so some applications may want to disable
587          *              it using this flag. This option can be a problem for applications
588          *              which handle sensitive data like passwords, and it makes memory
589          *              checkers like Valgrind noisy. This flag is not needed with #MDB_WRITEMAP,
590          *              which writes directly to the mmap instead of using malloc for pages. The
591          *              initialization is also skipped if #MDB_RESERVE is used; the
592          *              caller is expected to overwrite all of the memory that was
593          *              reserved in that case.
594          *              This flag may be changed at any time using #mdb_env_set_flags().
595          * </ul>
596          * @param[in] mode The UNIX permissions to set on created files. This parameter
597          * is ignored on Windows.
598          * @return A non-zero error value on failure and 0 on success. Some possible
599          * errors are:
600          * <ul>
601          *      <li>#MDB_VERSION_MISMATCH - the version of the LMDB library doesn't match the
602          *      version that created the database environment.
603          *      <li>#MDB_INVALID - the environment file headers are corrupted.
604          *      <li>ENOENT - the directory specified by the path parameter doesn't exist.
605          *      <li>EACCES - the user didn't have permission to access the environment files.
606          *      <li>EAGAIN - the environment was locked by another process.
607          * </ul>
608          */
609 int  mdb_env_open(MDB_env *env, const char *path, unsigned int flags, mdb_mode_t mode);
610
611         /** @brief Copy an LMDB environment to the specified path.
612          *
613          * This function may be used to make a backup of an existing environment.
614          * No lockfile is created, since it gets recreated at need.
615          * @note This call can trigger significant file size growth if run in
616          * parallel with write transactions, because it employs a read-only
617          * transaction. See long-lived transactions under @ref caveats_sec.
618          * @param[in] env An environment handle returned by #mdb_env_create(). It
619          * must have already been opened successfully.
620          * @param[in] path The directory in which the copy will reside. This
621          * directory must already exist and be writable but must otherwise be
622          * empty.
623          * @return A non-zero error value on failure and 0 on success.
624          */
625 int  mdb_env_copy(MDB_env *env, const char *path);
626
627         /** @brief Copy an LMDB environment to the specified file descriptor.
628          *
629          * This function may be used to make a backup of an existing environment.
630          * No lockfile is created, since it gets recreated at need.
631          * @note This call can trigger significant file size growth if run in
632          * parallel with write transactions, because it employs a read-only
633          * transaction. See long-lived transactions under @ref caveats_sec.
634          * @param[in] env An environment handle returned by #mdb_env_create(). It
635          * must have already been opened successfully.
636          * @param[in] fd The filedescriptor to write the copy to. It must
637          * have already been opened for Write access.
638          * @return A non-zero error value on failure and 0 on success.
639          */
640 int  mdb_env_copyfd(MDB_env *env, mdb_filehandle_t fd);
641
642         /** @brief Copy an LMDB environment to the specified path, with options.
643          *
644          * This function may be used to make a backup of an existing environment.
645          * No lockfile is created, since it gets recreated at need.
646          * @note This call can trigger significant file size growth if run in
647          * parallel with write transactions, because it employs a read-only
648          * transaction. See long-lived transactions under @ref caveats_sec.
649          * @param[in] env An environment handle returned by #mdb_env_create(). It
650          * must have already been opened successfully.
651          * @param[in] path The directory in which the copy will reside. This
652          * directory must already exist and be writable but must otherwise be
653          * empty.
654          * @param[in] flags Special options for this operation. This parameter
655          * must be set to 0 or by bitwise OR'ing together one or more of the
656          * values described here.
657          * <ul>
658          *      <li>#MDB_CP_COMPACT - Perform compaction while copying: omit free
659          *              pages and sequentially renumber all pages in output. This option
660          *              consumes more CPU and runs more slowly than the default.
661          * </ul>
662          * @return A non-zero error value on failure and 0 on success.
663          */
664 int  mdb_env_copy2(MDB_env *env, const char *path, unsigned int flags);
665
666         /** @brief Copy an LMDB environment to the specified file descriptor,
667          *      with options.
668          *
669          * This function may be used to make a backup of an existing environment.
670          * No lockfile is created, since it gets recreated at need. See
671          * #mdb_env_copy2() for further details.
672          * @note This call can trigger significant file size growth if run in
673          * parallel with write transactions, because it employs a read-only
674          * transaction. See long-lived transactions under @ref caveats_sec.
675          * @param[in] env An environment handle returned by #mdb_env_create(). It
676          * must have already been opened successfully.
677          * @param[in] fd The filedescriptor to write the copy to. It must
678          * have already been opened for Write access.
679          * @param[in] flags Special options for this operation.
680          * See #mdb_env_copy2() for options.
681          * @return A non-zero error value on failure and 0 on success.
682          */
683 int  mdb_env_copyfd2(MDB_env *env, mdb_filehandle_t fd, unsigned int flags);
684
685         /** @brief Return statistics about the LMDB environment.
686          *
687          * @param[in] env An environment handle returned by #mdb_env_create()
688          * @param[out] stat The address of an #MDB_stat structure
689          *      where the statistics will be copied
690          */
691 int  mdb_env_stat(MDB_env *env, MDB_stat *stat);
692
693         /** @brief Return information about the LMDB environment.
694          *
695          * @param[in] env An environment handle returned by #mdb_env_create()
696          * @param[out] stat The address of an #MDB_envinfo structure
697          *      where the information will be copied
698          */
699 int  mdb_env_info(MDB_env *env, MDB_envinfo *stat);
700
701         /** @brief Flush the data buffers to disk.
702          *
703          * Data is always written to disk when #mdb_txn_commit() is called,
704          * but the operating system may keep it buffered. LMDB always flushes
705          * the OS buffers upon commit as well, unless the environment was
706          * opened with #MDB_NOSYNC or in part #MDB_NOMETASYNC.
707          * @param[in] env An environment handle returned by #mdb_env_create()
708          * @param[in] force If non-zero, force a synchronous flush.  Otherwise
709          *  if the environment has the #MDB_NOSYNC flag set the flushes
710          *      will be omitted, and with #MDB_MAPASYNC they will be asynchronous.
711          * @return A non-zero error value on failure and 0 on success. Some possible
712          * errors are:
713          * <ul>
714          *      <li>EINVAL - an invalid parameter was specified.
715          *      <li>EIO - an error occurred during synchronization.
716          * </ul>
717          */
718 int  mdb_env_sync(MDB_env *env, int force);
719
720         /** @brief Close the environment and release the memory map.
721          *
722          * Only a single thread may call this function. All transactions, databases,
723          * and cursors must already be closed before calling this function. Attempts to
724          * use any such handles after calling this function will cause a SIGSEGV.
725          * The environment handle will be freed and must not be used again after this call.
726          * @param[in] env An environment handle returned by #mdb_env_create()
727          */
728 void mdb_env_close(MDB_env *env);
729
730         /** @brief Set environment flags.
731          *
732          * This may be used to set some flags in addition to those from
733          * #mdb_env_open(), or to unset these flags.  If several threads
734          * change the flags at the same time, the result is undefined.
735          * Most flags cannot be changed after #mdb_env_open().
736          * @param[in] env An environment handle returned by #mdb_env_create()
737          * @param[in] flags The flags to change, bitwise OR'ed together
738          * @param[in] onoff A non-zero value sets the flags, zero clears them.
739          * @return A non-zero error value on failure and 0 on success. Some possible
740          * errors are:
741          * <ul>
742          *      <li>EINVAL - an invalid parameter was specified.
743          * </ul>
744          */
745 int  mdb_env_set_flags(MDB_env *env, unsigned int flags, int onoff);
746
747         /** @brief Get environment flags.
748          *
749          * @param[in] env An environment handle returned by #mdb_env_create()
750          * @param[out] flags The address of an integer to store the flags
751          * @return A non-zero error value on failure and 0 on success. Some possible
752          * errors are:
753          * <ul>
754          *      <li>EINVAL - an invalid parameter was specified.
755          * </ul>
756          */
757 int  mdb_env_get_flags(MDB_env *env, unsigned int *flags);
758
759         /** @brief Return the path that was used in #mdb_env_open().
760          *
761          * @param[in] env An environment handle returned by #mdb_env_create()
762          * @param[out] path Address of a string pointer to contain the path. This
763          * is the actual string in the environment, not a copy. It should not be
764          * altered in any way.
765          * @return A non-zero error value on failure and 0 on success. Some possible
766          * errors are:
767          * <ul>
768          *      <li>EINVAL - an invalid parameter was specified.
769          * </ul>
770          */
771 int  mdb_env_get_path(MDB_env *env, const char **path);
772
773         /** @brief Return the filedescriptor for the given environment.
774          *
775          * @param[in] env An environment handle returned by #mdb_env_create()
776          * @param[out] fd Address of a mdb_filehandle_t to contain the descriptor.
777          * @return A non-zero error value on failure and 0 on success. Some possible
778          * errors are:
779          * <ul>
780          *      <li>EINVAL - an invalid parameter was specified.
781          * </ul>
782          */
783 int  mdb_env_get_fd(MDB_env *env, mdb_filehandle_t *fd);
784
785         /** @brief Set the size of the memory map to use for this environment.
786          *
787          * The size should be a multiple of the OS page size. The default is
788          * 10485760 bytes. The size of the memory map is also the maximum size
789          * of the database. The value should be chosen as large as possible,
790          * to accommodate future growth of the database.
791          * This function should be called after #mdb_env_create() and before #mdb_env_open().
792          * It may be called at later times if no transactions are active in
793          * this process. Note that the library does not check for this condition,
794          * the caller must ensure it explicitly.
795          *
796          * The new size takes effect immediately for the current process but
797          * will not be persisted to any others until a write transaction has been
798          * committed by the current process. Also, only mapsize increases are
799          * persisted into the environment.
800          *
801          * If the mapsize is increased by another process, and data has grown
802          * beyond the range of the current mapsize, #mdb_txn_begin() will
803          * return #MDB_MAP_RESIZED. This function may be called with a size
804          * of zero to adopt the new size.
805          *
806          * Any attempt to set a size smaller than the space already consumed
807          * by the environment will be silently changed to the current size of the used space.
808          * @param[in] env An environment handle returned by #mdb_env_create()
809          * @param[in] size The size in bytes
810          * @return A non-zero error value on failure and 0 on success. Some possible
811          * errors are:
812          * <ul>
813          *      <li>EINVAL - an invalid parameter was specified, or the environment has
814          *      an active write transaction.
815          * </ul>
816          */
817 int  mdb_env_set_mapsize(MDB_env *env, size_t size);
818
819         /** @brief Set the maximum number of threads/reader slots for the environment.
820          *
821          * This defines the number of slots in the lock table that is used to track readers in the
822          * the environment. The default is 126.
823          * Starting a read-only transaction normally ties a lock table slot to the
824          * current thread until the environment closes or the thread exits. If
825          * MDB_NOTLS is in use, #mdb_txn_begin() instead ties the slot to the
826          * MDB_txn object until it or the #MDB_env object is destroyed.
827          * This function may only be called after #mdb_env_create() and before #mdb_env_open().
828          * @param[in] env An environment handle returned by #mdb_env_create()
829          * @param[in] readers The maximum number of reader lock table slots
830          * @return A non-zero error value on failure and 0 on success. Some possible
831          * errors are:
832          * <ul>
833          *      <li>EINVAL - an invalid parameter was specified, or the environment is already open.
834          * </ul>
835          */
836 int  mdb_env_set_maxreaders(MDB_env *env, unsigned int readers);
837
838         /** @brief Get the maximum number of threads/reader slots for the environment.
839          *
840          * @param[in] env An environment handle returned by #mdb_env_create()
841          * @param[out] readers Address of an integer to store the number of readers
842          * @return A non-zero error value on failure and 0 on success. Some possible
843          * errors are:
844          * <ul>
845          *      <li>EINVAL - an invalid parameter was specified.
846          * </ul>
847          */
848 int  mdb_env_get_maxreaders(MDB_env *env, unsigned int *readers);
849
850         /** @brief Set the maximum number of named databases for the environment.
851          *
852          * This function is only needed if multiple databases will be used in the
853          * environment. Simpler applications that use the environment as a single
854          * unnamed database can ignore this option.
855          * This function may only be called after #mdb_env_create() and before #mdb_env_open().
856          *
857          * Currently a moderate number of slots are cheap but a huge number gets
858          * expensive: 7-120 words per transaction, and every #mdb_dbi_open()
859          * does a linear search of the opened slots.
860          * @param[in] env An environment handle returned by #mdb_env_create()
861          * @param[in] dbs The maximum number of databases
862          * @return A non-zero error value on failure and 0 on success. Some possible
863          * errors are:
864          * <ul>
865          *      <li>EINVAL - an invalid parameter was specified, or the environment is already open.
866          * </ul>
867          */
868 int  mdb_env_set_maxdbs(MDB_env *env, MDB_dbi dbs);
869
870         /** @brief Get the maximum size of keys and #MDB_DUPSORT data we can write.
871          *
872          * Depends on the compile-time constant #MDB_MAXKEYSIZE. Default 511.
873          * See @ref MDB_val.
874          * @param[in] env An environment handle returned by #mdb_env_create()
875          * @return The maximum size of a key we can write
876          */
877 int  mdb_env_get_maxkeysize(MDB_env *env);
878
879         /** @brief Set application information associated with the #MDB_env.
880          *
881          * @param[in] env An environment handle returned by #mdb_env_create()
882          * @param[in] ctx An arbitrary pointer for whatever the application needs.
883          * @return A non-zero error value on failure and 0 on success.
884          */
885 int  mdb_env_set_userctx(MDB_env *env, void *ctx);
886
887         /** @brief Get the application information associated with the #MDB_env.
888          *
889          * @param[in] env An environment handle returned by #mdb_env_create()
890          * @return The pointer set by #mdb_env_set_userctx().
891          */
892 void *mdb_env_get_userctx(MDB_env *env);
893
894         /** @brief A callback function for most LMDB assert() failures,
895          * called before printing the message and aborting.
896          *
897          * @param[in] env An environment handle returned by #mdb_env_create().
898          * @param[in] msg The assertion message, not including newline.
899          */
900 typedef void MDB_assert_func(MDB_env *env, const char *msg);
901
902         /** Set or reset the assert() callback of the environment.
903          * Disabled if liblmdb is buillt with NDEBUG.
904          * @note This hack should become obsolete as lmdb's error handling matures.
905          * @param[in] env An environment handle returned by #mdb_env_create().
906          * @param[in] func An #MDB_assert_func function, or 0.
907          * @return A non-zero error value on failure and 0 on success.
908          */
909 int  mdb_env_set_assert(MDB_env *env, MDB_assert_func *func);
910
911         /** @brief Create a transaction for use with the environment.
912          *
913          * The transaction handle may be discarded using #mdb_txn_abort() or #mdb_txn_commit().
914          * @note A transaction and its cursors must only be used by a single
915          * thread, and a thread may only have a single transaction at a time.
916          * If #MDB_NOTLS is in use, this does not apply to read-only transactions.
917          * @note Cursors may not span transactions.
918          * @param[in] env An environment handle returned by #mdb_env_create()
919          * @param[in] parent If this parameter is non-NULL, the new transaction
920          * will be a nested transaction, with the transaction indicated by \b parent
921          * as its parent. Transactions may be nested to any level. A parent
922          * transaction and its cursors may not issue any other operations than
923          * mdb_txn_commit and mdb_txn_abort while it has active child transactions.
924          * @param[in] flags Special options for this transaction. This parameter
925          * must be set to 0 or by bitwise OR'ing together one or more of the
926          * values described here.
927          * <ul>
928          *      <li>#MDB_RDONLY
929          *              This transaction will not perform any write operations.
930          * </ul>
931          * @param[out] txn Address where the new #MDB_txn handle will be stored
932          * @return A non-zero error value on failure and 0 on success. Some possible
933          * errors are:
934          * <ul>
935          *      <li>#MDB_PANIC - a fatal error occurred earlier and the environment
936          *              must be shut down.
937          *      <li>#MDB_MAP_RESIZED - another process wrote data beyond this MDB_env's
938          *              mapsize and this environment's map must be resized as well.
939          *              See #mdb_env_set_mapsize().
940          *      <li>#MDB_READERS_FULL - a read-only transaction was requested and
941          *              the reader lock table is full. See #mdb_env_set_maxreaders().
942          *      <li>ENOMEM - out of memory.
943          * </ul>
944          */
945 int  mdb_txn_begin(MDB_env *env, MDB_txn *parent, unsigned int flags, MDB_txn **txn);
946
947         /** @brief Returns the transaction's #MDB_env
948          *
949          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
950          */
951 MDB_env *mdb_txn_env(MDB_txn *txn);
952
953         /** @brief Return the transaction's ID.
954          *
955          * This returns the identifier associated with this transaction. For a
956          * read-only transaction, this corresponds to the snapshot being read;
957          * concurrent readers will frequently have the same transaction ID.
958          *
959          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
960          * @return A transaction ID, valid if input is an active transaction.
961          */
962 size_t mdb_txn_id(MDB_txn *txn);
963
964         /** @brief Commit all the operations of a transaction into the database.
965          *
966          * The transaction handle is freed. It and its cursors must not be used
967          * again after this call, except with #mdb_cursor_renew().
968          * @note Earlier documentation incorrectly said all cursors would be freed.
969          * Only write-transactions free cursors.
970          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
971          * @return A non-zero error value on failure and 0 on success. Some possible
972          * errors are:
973          * <ul>
974          *      <li>EINVAL - an invalid parameter was specified.
975          *      <li>ENOSPC - no more disk space.
976          *      <li>EIO - a low-level I/O error occurred while writing.
977          *      <li>ENOMEM - out of memory.
978          * </ul>
979          */
980 int  mdb_txn_commit(MDB_txn *txn);
981
982         /** @brief Abandon all the operations of the transaction instead of saving them.
983          *
984          * The transaction handle is freed. It and its cursors must not be used
985          * again after this call, except with #mdb_cursor_renew().
986          * @note Earlier documentation incorrectly said all cursors would be freed.
987          * Only write-transactions free cursors.
988          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
989          */
990 void mdb_txn_abort(MDB_txn *txn);
991
992         /** @brief Reset a read-only transaction.
993          *
994          * Abort the transaction like #mdb_txn_abort(), but keep the transaction
995          * handle. #mdb_txn_renew() may reuse the handle. This saves allocation
996          * overhead if the process will start a new read-only transaction soon,
997          * and also locking overhead if #MDB_NOTLS is in use. The reader table
998          * lock is released, but the table slot stays tied to its thread or
999          * #MDB_txn. Use mdb_txn_abort() to discard a reset handle, and to free
1000          * its lock table slot if MDB_NOTLS is in use.
1001          * Cursors opened within the transaction must not be used
1002          * again after this call, except with #mdb_cursor_renew().
1003          * Reader locks generally don't interfere with writers, but they keep old
1004          * versions of database pages allocated. Thus they prevent the old pages
1005          * from being reused when writers commit new data, and so under heavy load
1006          * the database size may grow much more rapidly than otherwise.
1007          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1008          */
1009 void mdb_txn_reset(MDB_txn *txn);
1010
1011         /** @brief Renew a read-only transaction.
1012          *
1013          * This acquires a new reader lock for a transaction handle that had been
1014          * released by #mdb_txn_reset(). It must be called before a reset transaction
1015          * may be used again.
1016          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1017          * @return A non-zero error value on failure and 0 on success. Some possible
1018          * errors are:
1019          * <ul>
1020          *      <li>#MDB_PANIC - a fatal error occurred earlier and the environment
1021          *              must be shut down.
1022          *      <li>EINVAL - an invalid parameter was specified.
1023          * </ul>
1024          */
1025 int  mdb_txn_renew(MDB_txn *txn);
1026
1027 /** Compat with version <= 0.9.4, avoid clash with libmdb from MDB Tools project */
1028 #define mdb_open(txn,name,flags,dbi)    mdb_dbi_open(txn,name,flags,dbi)
1029 /** Compat with version <= 0.9.4, avoid clash with libmdb from MDB Tools project */
1030 #define mdb_close(env,dbi)                              mdb_dbi_close(env,dbi)
1031
1032         /** @brief Open a database in the environment.
1033          *
1034          * A database handle denotes the name and parameters of a database,
1035          * independently of whether such a database exists.
1036          * The database handle may be discarded by calling #mdb_dbi_close().
1037          * The old database handle is returned if the database was already open.
1038          * The handle may only be closed once.
1039          * The database handle will be private to the current transaction until
1040          * the transaction is successfully committed. If the transaction is
1041          * aborted the handle will be closed automatically.
1042          * After a successful commit the
1043          * handle will reside in the shared environment, and may be used
1044          * by other transactions. This function must not be called from
1045          * multiple concurrent transactions in the same process. A transaction
1046          * that uses this function must finish (either commit or abort) before
1047          * any other transaction in the process may use this function.
1048          *
1049          * To use named databases (with name != NULL), #mdb_env_set_maxdbs()
1050          * must be called before opening the environment.  Database names
1051          * are kept as keys in the unnamed database.
1052          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1053          * @param[in] name The name of the database to open. If only a single
1054          *      database is needed in the environment, this value may be NULL.
1055          * @param[in] flags Special options for this database. This parameter
1056          * must be set to 0 or by bitwise OR'ing together one or more of the
1057          * values described here.
1058          * <ul>
1059          *      <li>#MDB_REVERSEKEY
1060          *              Keys are strings to be compared in reverse order, from the end
1061          *              of the strings to the beginning. By default, Keys are treated as strings and
1062          *              compared from beginning to end.
1063          *      <li>#MDB_DUPSORT
1064          *              Duplicate keys may be used in the database. (Or, from another perspective,
1065          *              keys may have multiple data items, stored in sorted order.) By default
1066          *              keys must be unique and may have only a single data item.
1067          *      <li>#MDB_INTEGERKEY
1068          *              Keys are binary integers in native byte order. Setting this option
1069          *              requires all keys to be the same size, typically sizeof(int)
1070          *              or sizeof(size_t).
1071          *      <li>#MDB_DUPFIXED
1072          *              This flag may only be used in combination with #MDB_DUPSORT. This option
1073          *              tells the library that the data items for this database are all the same
1074          *              size, which allows further optimizations in storage and retrieval. When
1075          *              all data items are the same size, the #MDB_GET_MULTIPLE and #MDB_NEXT_MULTIPLE
1076          *              cursor operations may be used to retrieve multiple items at once.
1077          *      <li>#MDB_INTEGERDUP
1078          *              This option specifies that duplicate data items are also integers, and
1079          *              should be sorted as such.
1080          *      <li>#MDB_REVERSEDUP
1081          *              This option specifies that duplicate data items should be compared as
1082          *              strings in reverse order.
1083          *      <li>#MDB_CREATE
1084          *              Create the named database if it doesn't exist. This option is not
1085          *              allowed in a read-only transaction or a read-only environment.
1086          * </ul>
1087          * @param[out] dbi Address where the new #MDB_dbi handle will be stored
1088          * @return A non-zero error value on failure and 0 on success. Some possible
1089          * errors are:
1090          * <ul>
1091          *      <li>#MDB_NOTFOUND - the specified database doesn't exist in the environment
1092          *              and #MDB_CREATE was not specified.
1093          *      <li>#MDB_DBS_FULL - too many databases have been opened. See #mdb_env_set_maxdbs().
1094          * </ul>
1095          */
1096 int  mdb_dbi_open(MDB_txn *txn, const char *name, unsigned int flags, MDB_dbi *dbi);
1097
1098         /** @brief Retrieve statistics for a database.
1099          *
1100          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1101          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1102          * @param[out] stat The address of an #MDB_stat structure
1103          *      where the statistics will be copied
1104          * @return A non-zero error value on failure and 0 on success. Some possible
1105          * errors are:
1106          * <ul>
1107          *      <li>EINVAL - an invalid parameter was specified.
1108          * </ul>
1109          */
1110 int  mdb_stat(MDB_txn *txn, MDB_dbi dbi, MDB_stat *stat);
1111
1112         /** @brief Retrieve the DB flags for a database handle.
1113          *
1114          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1115          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1116          * @param[out] flags Address where the flags will be returned.
1117          * @return A non-zero error value on failure and 0 on success.
1118          */
1119 int mdb_dbi_flags(MDB_txn *txn, MDB_dbi dbi, unsigned int *flags);
1120
1121         /** @brief Close a database handle. Normally unnecessary. Use with care:
1122          *
1123          * This call is not mutex protected. Handles should only be closed by
1124          * a single thread, and only if no other threads are going to reference
1125          * the database handle or one of its cursors any further. Do not close
1126          * a handle if an existing transaction has modified its database.
1127          * Doing so can cause misbehavior from database corruption to errors
1128          * like MDB_BAD_VALSIZE (since the DB name is gone).
1129          *
1130          * Closing a database handle is not necessary, but lets #mdb_dbi_open()
1131          * reuse the handle value.  Usually it's better to set a bigger
1132          * #mdb_env_set_maxdbs(), unless that value would be large.
1133          *
1134          * @param[in] env An environment handle returned by #mdb_env_create()
1135          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1136          */
1137 void mdb_dbi_close(MDB_env *env, MDB_dbi dbi);
1138
1139         /** @brief Empty or delete+close a database.
1140          *
1141          * See #mdb_dbi_close() for restrictions about closing the DB handle.
1142          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1143          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1144          * @param[in] del 0 to empty the DB, 1 to delete it from the
1145          * environment and close the DB handle.
1146          * @return A non-zero error value on failure and 0 on success.
1147          */
1148 int  mdb_drop(MDB_txn *txn, MDB_dbi dbi, int del);
1149
1150         /** @brief Set a custom key comparison function for a database.
1151          *
1152          * The comparison function is called whenever it is necessary to compare a
1153          * key specified by the application with a key currently stored in the database.
1154          * If no comparison function is specified, and no special key flags were specified
1155          * with #mdb_dbi_open(), the keys are compared lexically, with shorter keys collating
1156          * before longer keys.
1157          * @warning This function must be called before any data access functions are used,
1158          * otherwise data corruption may occur. The same comparison function must be used by every
1159          * program accessing the database, every time the database is used.
1160          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1161          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1162          * @param[in] cmp A #MDB_cmp_func function
1163          * @return A non-zero error value on failure and 0 on success. Some possible
1164          * errors are:
1165          * <ul>
1166          *      <li>EINVAL - an invalid parameter was specified.
1167          * </ul>
1168          */
1169 int  mdb_set_compare(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp);
1170
1171         /** @brief Set a custom data comparison function for a #MDB_DUPSORT database.
1172          *
1173          * This comparison function is called whenever it is necessary to compare a data
1174          * item specified by the application with a data item currently stored in the database.
1175          * This function only takes effect if the database was opened with the #MDB_DUPSORT
1176          * flag.
1177          * If no comparison function is specified, and no special key flags were specified
1178          * with #mdb_dbi_open(), the data items are compared lexically, with shorter items collating
1179          * before longer items.
1180          * @warning This function must be called before any data access functions are used,
1181          * otherwise data corruption may occur. The same comparison function must be used by every
1182          * program accessing the database, every time the database is used.
1183          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1184          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1185          * @param[in] cmp A #MDB_cmp_func function
1186          * @return A non-zero error value on failure and 0 on success. Some possible
1187          * errors are:
1188          * <ul>
1189          *      <li>EINVAL - an invalid parameter was specified.
1190          * </ul>
1191          */
1192 int  mdb_set_dupsort(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp);
1193
1194         /** @brief Set a relocation function for a #MDB_FIXEDMAP database.
1195          *
1196          * @todo The relocation function is called whenever it is necessary to move the data
1197          * of an item to a different position in the database (e.g. through tree
1198          * balancing operations, shifts as a result of adds or deletes, etc.). It is
1199          * intended to allow address/position-dependent data items to be stored in
1200          * a database in an environment opened with the #MDB_FIXEDMAP option.
1201          * Currently the relocation feature is unimplemented and setting
1202          * this function has no effect.
1203          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1204          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1205          * @param[in] rel A #MDB_rel_func function
1206          * @return A non-zero error value on failure and 0 on success. Some possible
1207          * errors are:
1208          * <ul>
1209          *      <li>EINVAL - an invalid parameter was specified.
1210          * </ul>
1211          */
1212 int  mdb_set_relfunc(MDB_txn *txn, MDB_dbi dbi, MDB_rel_func *rel);
1213
1214         /** @brief Set a context pointer for a #MDB_FIXEDMAP database's relocation function.
1215          *
1216          * See #mdb_set_relfunc and #MDB_rel_func for more details.
1217          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1218          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1219          * @param[in] ctx An arbitrary pointer for whatever the application needs.
1220          * It will be passed to the callback function set by #mdb_set_relfunc
1221          * as its \b relctx parameter whenever the callback is invoked.
1222          * @return A non-zero error value on failure and 0 on success. Some possible
1223          * errors are:
1224          * <ul>
1225          *      <li>EINVAL - an invalid parameter was specified.
1226          * </ul>
1227          */
1228 int  mdb_set_relctx(MDB_txn *txn, MDB_dbi dbi, void *ctx);
1229
1230         /** @brief Get items from a database.
1231          *
1232          * This function retrieves key/data pairs from the database. The address
1233          * and length of the data associated with the specified \b key are returned
1234          * in the structure to which \b data refers.
1235          * If the database supports duplicate keys (#MDB_DUPSORT) then the
1236          * first data item for the key will be returned. Retrieval of other
1237          * items requires the use of #mdb_cursor_get().
1238          *
1239          * @note The memory pointed to by the returned values is owned by the
1240          * database. The caller need not dispose of the memory, and may not
1241          * modify it in any way. For values returned in a read-only transaction
1242          * any modification attempts will cause a SIGSEGV.
1243          * @note Values returned from the database are valid only until a
1244          * subsequent update operation, or the end of the transaction.
1245          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1246          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1247          * @param[in] key The key to search for in the database
1248          * @param[out] data The data corresponding to the key
1249          * @return A non-zero error value on failure and 0 on success. Some possible
1250          * errors are:
1251          * <ul>
1252          *      <li>#MDB_NOTFOUND - the key was not in the database.
1253          *      <li>EINVAL - an invalid parameter was specified.
1254          * </ul>
1255          */
1256 int  mdb_get(MDB_txn *txn, MDB_dbi dbi, MDB_val *key, MDB_val *data);
1257
1258         /** @brief Store items into a database.
1259          *
1260          * This function stores key/data pairs in the database. The default behavior
1261          * is to enter the new key/data pair, replacing any previously existing key
1262          * if duplicates are disallowed, or adding a duplicate data item if
1263          * duplicates are allowed (#MDB_DUPSORT).
1264          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1265          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1266          * @param[in] key The key to store in the database
1267          * @param[in,out] data The data to store
1268          * @param[in] flags Special options for this operation. This parameter
1269          * must be set to 0 or by bitwise OR'ing together one or more of the
1270          * values described here.
1271          * <ul>
1272          *      <li>#MDB_NODUPDATA - enter the new key/data pair only if it does not
1273          *              already appear in the database. This flag may only be specified
1274          *              if the database was opened with #MDB_DUPSORT. The function will
1275          *              return #MDB_KEYEXIST if the key/data pair already appears in the
1276          *              database.
1277          *      <li>#MDB_NOOVERWRITE - enter the new key/data pair only if the key
1278          *              does not already appear in the database. The function will return
1279          *              #MDB_KEYEXIST if the key already appears in the database, even if
1280          *              the database supports duplicates (#MDB_DUPSORT). The \b data
1281          *              parameter will be set to point to the existing item.
1282          *      <li>#MDB_RESERVE - reserve space for data of the given size, but
1283          *              don't copy the given data. Instead, return a pointer to the
1284          *              reserved space, which the caller can fill in later - before
1285          *              the next update operation or the transaction ends. This saves
1286          *              an extra memcpy if the data is being generated later.
1287          *              LMDB does nothing else with this memory, the caller is expected
1288          *              to modify all of the space requested.
1289          *      <li>#MDB_APPEND - append the given key/data pair to the end of the
1290          *              database. No key comparisons are performed. This option allows
1291          *              fast bulk loading when keys are already known to be in the
1292          *              correct order. Loading unsorted keys with this flag will cause
1293          *              data corruption.
1294          *      <li>#MDB_APPENDDUP - as above, but for sorted dup data.
1295          * </ul>
1296          * @return A non-zero error value on failure and 0 on success. Some possible
1297          * errors are:
1298          * <ul>
1299          *      <li>#MDB_MAP_FULL - the database is full, see #mdb_env_set_mapsize().
1300          *      <li>#MDB_TXN_FULL - the transaction has too many dirty pages.
1301          *      <li>EACCES - an attempt was made to write in a read-only transaction.
1302          *      <li>EINVAL - an invalid parameter was specified.
1303          * </ul>
1304          */
1305 int  mdb_put(MDB_txn *txn, MDB_dbi dbi, MDB_val *key, MDB_val *data,
1306                             unsigned int flags);
1307
1308         /** @brief Delete items from a database.
1309          *
1310          * This function removes key/data pairs from the database.
1311          * If the database does not support sorted duplicate data items
1312          * (#MDB_DUPSORT) the data parameter is ignored.
1313          * If the database supports sorted duplicates and the data parameter
1314          * is NULL, all of the duplicate data items for the key will be
1315          * deleted. Otherwise, if the data parameter is non-NULL
1316          * only the matching data item will be deleted.
1317          * This function will return #MDB_NOTFOUND if the specified key/data
1318          * pair is not in the database.
1319          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1320          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1321          * @param[in] key The key to delete from the database
1322          * @param[in] data The data to delete
1323          * @return A non-zero error value on failure and 0 on success. Some possible
1324          * errors are:
1325          * <ul>
1326          *      <li>EACCES - an attempt was made to write in a read-only transaction.
1327          *      <li>EINVAL - an invalid parameter was specified.
1328          * </ul>
1329          */
1330 int  mdb_del(MDB_txn *txn, MDB_dbi dbi, MDB_val *key, MDB_val *data);
1331
1332         /** @brief Create a cursor handle.
1333          *
1334          * A cursor is associated with a specific transaction and database.
1335          * A cursor cannot be used when its database handle is closed.  Nor
1336          * when its transaction has ended, except with #mdb_cursor_renew().
1337          * It can be discarded with #mdb_cursor_close().
1338          * A cursor in a write-transaction can be closed before its transaction
1339          * ends, and will otherwise be closed when its transaction ends.
1340          * A cursor in a read-only transaction must be closed explicitly, before
1341          * or after its transaction ends. It can be reused with
1342          * #mdb_cursor_renew() before finally closing it.
1343          * @note Earlier documentation said that cursors in every transaction
1344          * were closed when the transaction committed or aborted.
1345          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1346          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1347          * @param[out] cursor Address where the new #MDB_cursor handle will be stored
1348          * @return A non-zero error value on failure and 0 on success. Some possible
1349          * errors are:
1350          * <ul>
1351          *      <li>EINVAL - an invalid parameter was specified.
1352          * </ul>
1353          */
1354 int  mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **cursor);
1355
1356         /** @brief Close a cursor handle.
1357          *
1358          * The cursor handle will be freed and must not be used again after this call.
1359          * Its transaction must still be live if it is a write-transaction.
1360          * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1361          */
1362 void mdb_cursor_close(MDB_cursor *cursor);
1363
1364         /** @brief Renew a cursor handle.
1365          *
1366          * A cursor is associated with a specific transaction and database.
1367          * Cursors that are only used in read-only
1368          * transactions may be re-used, to avoid unnecessary malloc/free overhead.
1369          * The cursor may be associated with a new read-only transaction, and
1370          * referencing the same database handle as it was created with.
1371          * This may be done whether the previous transaction is live or dead.
1372          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1373          * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1374          * @return A non-zero error value on failure and 0 on success. Some possible
1375          * errors are:
1376          * <ul>
1377          *      <li>EINVAL - an invalid parameter was specified.
1378          * </ul>
1379          */
1380 int  mdb_cursor_renew(MDB_txn *txn, MDB_cursor *cursor);
1381
1382         /** @brief Return the cursor's transaction handle.
1383          *
1384          * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1385          */
1386 MDB_txn *mdb_cursor_txn(MDB_cursor *cursor);
1387
1388         /** @brief Return the cursor's database handle.
1389          *
1390          * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1391          */
1392 MDB_dbi mdb_cursor_dbi(MDB_cursor *cursor);
1393
1394         /** @brief Retrieve by cursor.
1395          *
1396          * This function retrieves key/data pairs from the database. The address and length
1397          * of the key are returned in the object to which \b key refers (except for the
1398          * case of the #MDB_SET option, in which the \b key object is unchanged), and
1399          * the address and length of the data are returned in the object to which \b data
1400          * refers.
1401          * See #mdb_get() for restrictions on using the output values.
1402          * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1403          * @param[in,out] key The key for a retrieved item
1404          * @param[in,out] data The data of a retrieved item
1405          * @param[in] op A cursor operation #MDB_cursor_op
1406          * @return A non-zero error value on failure and 0 on success. Some possible
1407          * errors are:
1408          * <ul>
1409          *      <li>#MDB_NOTFOUND - no matching key found.
1410          *      <li>EINVAL - an invalid parameter was specified.
1411          * </ul>
1412          */
1413 int  mdb_cursor_get(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
1414                             MDB_cursor_op op);
1415
1416         /** @brief Store by cursor.
1417          *
1418          * This function stores key/data pairs into the database.
1419          * The cursor is positioned at the new item, or on failure usually near it.
1420          * @note Earlier documentation incorrectly said errors would leave the
1421          * state of the cursor unchanged.
1422          * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1423          * @param[in] key The key operated on.
1424          * @param[in] data The data operated on.
1425          * @param[in] flags Options for this operation. This parameter
1426          * must be set to 0 or one of the values described here.
1427          * <ul>
1428          *      <li>#MDB_CURRENT - replace the item at the current cursor position.
1429          *              The \b key parameter must still be provided, and must match it.
1430          *              If using sorted duplicates (#MDB_DUPSORT) the data item must still
1431          *              sort into the same place. This is intended to be used when the
1432          *              new data is the same size as the old. Otherwise it will simply
1433          *              perform a delete of the old record followed by an insert.
1434          *      <li>#MDB_NODUPDATA - enter the new key/data pair only if it does not
1435          *              already appear in the database. This flag may only be specified
1436          *              if the database was opened with #MDB_DUPSORT. The function will
1437          *              return #MDB_KEYEXIST if the key/data pair already appears in the
1438          *              database.
1439          *      <li>#MDB_NOOVERWRITE - enter the new key/data pair only if the key
1440          *              does not already appear in the database. The function will return
1441          *              #MDB_KEYEXIST if the key already appears in the database, even if
1442          *              the database supports duplicates (#MDB_DUPSORT).
1443          *      <li>#MDB_RESERVE - reserve space for data of the given size, but
1444          *              don't copy the given data. Instead, return a pointer to the
1445          *              reserved space, which the caller can fill in later. This saves
1446          *              an extra memcpy if the data is being generated later.
1447          *      <li>#MDB_APPEND - append the given key/data pair to the end of the
1448          *              database. No key comparisons are performed. This option allows
1449          *              fast bulk loading when keys are already known to be in the
1450          *              correct order. Loading unsorted keys with this flag will cause
1451          *              data corruption.
1452          *      <li>#MDB_APPENDDUP - as above, but for sorted dup data.
1453          *      <li>#MDB_MULTIPLE - store multiple contiguous data elements in a
1454          *              single request. This flag may only be specified if the database
1455          *              was opened with #MDB_DUPFIXED. The \b data argument must be an
1456          *              array of two MDB_vals. The mv_size of the first MDB_val must be
1457          *              the size of a single data element. The mv_data of the first MDB_val
1458          *              must point to the beginning of the array of contiguous data elements.
1459          *              The mv_size of the second MDB_val must be the count of the number
1460          *              of data elements to store. On return this field will be set to
1461          *              the count of the number of elements actually written. The mv_data
1462          *              of the second MDB_val is unused.
1463          * </ul>
1464          * @return A non-zero error value on failure and 0 on success. Some possible
1465          * errors are:
1466          * <ul>
1467          *      <li>#MDB_MAP_FULL - the database is full, see #mdb_env_set_mapsize().
1468          *      <li>#MDB_TXN_FULL - the transaction has too many dirty pages.
1469          *      <li>EACCES - an attempt was made to modify a read-only database.
1470          *      <li>EINVAL - an invalid parameter was specified.
1471          * </ul>
1472          */
1473 int  mdb_cursor_put(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
1474                                 unsigned int flags);
1475
1476         /** @brief Delete current key/data pair
1477          *
1478          * This function deletes the key/data pair to which the cursor refers.
1479          * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1480          * @param[in] flags Options for this operation. This parameter
1481          * must be set to 0 or one of the values described here.
1482          * <ul>
1483          *      <li>#MDB_NODUPDATA - delete all of the data items for the current key.
1484          *              This flag may only be specified if the database was opened with #MDB_DUPSORT.
1485          * </ul>
1486          * @return A non-zero error value on failure and 0 on success. Some possible
1487          * errors are:
1488          * <ul>
1489          *      <li>EACCES - an attempt was made to modify a read-only database.
1490          *      <li>EINVAL - an invalid parameter was specified.
1491          * </ul>
1492          */
1493 int  mdb_cursor_del(MDB_cursor *cursor, unsigned int flags);
1494
1495         /** @brief Return count of duplicates for current key.
1496          *
1497          * This call is only valid on databases that support sorted duplicate
1498          * data items #MDB_DUPSORT.
1499          * @param[in] cursor A cursor handle returned by #mdb_cursor_open()
1500          * @param[out] countp Address where the count will be stored
1501          * @return A non-zero error value on failure and 0 on success. Some possible
1502          * errors are:
1503          * <ul>
1504          *      <li>EINVAL - cursor is not initialized, or an invalid parameter was specified.
1505          * </ul>
1506          */
1507 int  mdb_cursor_count(MDB_cursor *cursor, size_t *countp);
1508
1509         /** @brief Compare two data items according to a particular database.
1510          *
1511          * This returns a comparison as if the two data items were keys in the
1512          * specified database.
1513          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1514          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1515          * @param[in] a The first item to compare
1516          * @param[in] b The second item to compare
1517          * @return < 0 if a < b, 0 if a == b, > 0 if a > b
1518          */
1519 int  mdb_cmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *a, const MDB_val *b);
1520
1521         /** @brief Compare two data items according to a particular database.
1522          *
1523          * This returns a comparison as if the two items were data items of
1524          * the specified database. The database must have the #MDB_DUPSORT flag.
1525          * @param[in] txn A transaction handle returned by #mdb_txn_begin()
1526          * @param[in] dbi A database handle returned by #mdb_dbi_open()
1527          * @param[in] a The first item to compare
1528          * @param[in] b The second item to compare
1529          * @return < 0 if a < b, 0 if a == b, > 0 if a > b
1530          */
1531 int  mdb_dcmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *a, const MDB_val *b);
1532
1533         /** @brief A callback function used to print a message from the library.
1534          *
1535          * @param[in] msg The string to be printed.
1536          * @param[in] ctx An arbitrary context pointer for the callback.
1537          * @return < 0 on failure, >= 0 on success.
1538          */
1539 typedef int (MDB_msg_func)(const char *msg, void *ctx);
1540
1541         /** @brief Dump the entries in the reader lock table.
1542          *
1543          * @param[in] env An environment handle returned by #mdb_env_create()
1544          * @param[in] func A #MDB_msg_func function
1545          * @param[in] ctx Anything the message function needs
1546          * @return < 0 on failure, >= 0 on success.
1547          */
1548 int     mdb_reader_list(MDB_env *env, MDB_msg_func *func, void *ctx);
1549
1550         /** @brief Check for stale entries in the reader lock table.
1551          *
1552          * @param[in] env An environment handle returned by #mdb_env_create()
1553          * @param[out] dead Number of stale slots that were cleared
1554          * @return 0 on success, non-zero on failure.
1555          */
1556 int     mdb_reader_check(MDB_env *env, int *dead);
1557 /**     @} */
1558
1559 #ifdef __cplusplus
1560 }
1561 #endif
1562 /** @page tools LMDB Command Line Tools
1563         The following describes the command line tools that are available for LMDB.
1564         \li \ref mdb_copy_1
1565         \li \ref mdb_dump_1
1566         \li \ref mdb_load_1
1567         \li \ref mdb_stat_1
1568 */
1569
1570 #endif /* _LMDB_H_ */