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