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