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