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