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