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