/usr/include/cyrus/cyrusdb.h is in cyrus-dev 2.4.17+nocaldav-0+deb8u2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | /*
* Copyright (c) 1994-2008 Carnegie Mellon University. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name "Carnegie Mellon University" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For permission or any legal
* details, please contact
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
* innovation@andrew.cmu.edu
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* $Id: cyrusdb.h,v 1.34 2010/01/06 17:01:44 murch Exp $
*/
#ifndef INCLUDED_CYRUSDB_H
#define INCLUDED_CYRUSDB_H
struct db;
struct txn;
enum cyrusdb_ret {
CYRUSDB_OK = 0,
CYRUSDB_DONE = 1,
CYRUSDB_IOERROR = -1,
CYRUSDB_AGAIN = -2,
CYRUSDB_EXISTS = -3,
CYRUSDB_INTERNAL = -4,
CYRUSDB_NOTFOUND = -5
};
#define cyrusdb_strerror(c) ("cyrusdb error")
enum cyrusdb_initflags {
CYRUSDB_RECOVER = 0x01
};
enum cyrusdb_dbflags {
CYRUSDB_NOSYNC = 0x01 /* durability not a concern */
};
enum cyrusdb_openflags {
CYRUSDB_CREATE = 0x01, /* Create the database if not existant */
CYRUSDB_MBOXSORT = 0x02 /* Use mailbox sort order ('.' sorts 1st) */
};
typedef int foreach_p(void *rock,
const char *key, int keylen,
const char *data, int datalen);
typedef int foreach_cb(void *rock,
const char *key, int keylen,
const char *data, int datalen);
struct cyrusdb_backend {
const char *name;
/* init() should be called once per process; no calls are legal
* until init() returns */
int (*init)(const char *dbdir, int myflags);
/* done() should be called once per process; no calls are legal
* once done() starts. it is legal to call init() after done() returns
* to reset state */
int (*done)(void);
/* checkpoints this database environment */
int (*sync)(void);
/* archives this database environment, and specified databases
* into the specified directory */
int (*archive)(const char **fnames, const char *dirname);
/* open the specified database in the global environment */
int (*open)(const char *fname, int flags, struct db **ret);
/* close the specified database */
int (*close)(struct db *db);
/* what are the overall specifications? */
/* 'mydb': the database to act on
'key': the key to fetch. cyrusdb currently requires this to not have
any of [\t\n\0] in keys
'keylen': length of the key
'data': where to put the data (generally won't have [\n\0])
'datalen': how big is the data?
'mytid': may be NULL, in which case the fetch is not txn protected.
if mytid != NULL && *mytid == NULL, begins a new txn
if mytid != NULL && *mytid != NULL, continues an old txn
transactions may lock the entire database on some backends.
beware
fetchlock() is identical to fetch() except gives a hint to the
underlying database that the key/data being fetched will be modified
soon. it is useless to use fetchlock() without a non-NULL mytid
*/
int (*fetch)(struct db *mydb,
const char *key, int keylen,
const char **data, int *datalen,
struct txn **mytid);
int (*fetchlock)(struct db *mydb,
const char *key, int keylen,
const char **data, int *datalen,
struct txn **mytid);
/* foreach: iterate through entries that start with 'prefix'
if 'p' is NULL (always true) or returns true, call 'cb'
if 'cb' changes the database, these changes will only be visible
if they are after the current database cursor. If other processes
change the database (i.e. outside of a transaction) these changes
may or may not be visible to the foreach()
'p' should be fast and should avoid blocking it should be safe
to call other db routines inside of 'cb'. however, the "flat"
backend is currently are not reentrant in this way
unless you're using transactions and pass the same transaction
to all db calls during the life of foreach() */
int (*foreach)(struct db *mydb,
char *prefix, int prefixlen,
foreach_p *p,
foreach_cb *cb, void *rock,
struct txn **tid);
/* Place entries in database create will not overwrite existing
* entries */
int (*create)(struct db *db,
const char *key, int keylen,
const char *data, int datalen,
struct txn **tid);
int (*store)(struct db *db,
const char *key, int keylen,
const char *data, int datalen,
struct txn **tid);
/* Remove entrys from the database */
int (*delete)(struct db *db,
const char *key, int keylen,
struct txn **tid,
int force); /* 1 = ignore not found errors */
/* Commit the transaction. When commit() returns, the tid will no longer
* be valid, regardless of if the commit succeeded or failed */
int (*commit)(struct db *db, struct txn *tid);
/* Abort the transaction and invalidate the tid */
int (*abort)(struct db *db, struct txn *tid);
int (*dump)(struct db *db, int detail);
int (*consistent)(struct db *db);
};
extern struct cyrusdb_backend *cyrusdb_backends[];
/* Note that some of these may be undefined symbols
* if libcyrus was not built with support for them */
extern struct cyrusdb_backend cyrusdb_berkeley;
extern struct cyrusdb_backend cyrusdb_berkeley_nosync;
extern struct cyrusdb_backend cyrusdb_berkeley_hash;
extern struct cyrusdb_backend cyrusdb_berkeley_hash_nosync;
extern struct cyrusdb_backend cyrusdb_flat;
extern struct cyrusdb_backend cyrusdb_skiplist;
extern struct cyrusdb_backend cyrusdb_quotalegacy;
extern struct cyrusdb_backend cyrusdb_sql;
extern int cyrusdb_copyfile(const char *srcname, const char *dstname);
extern void cyrusdb_convert(const char *fromfname, const char *tofname,
struct cyrusdb_backend *frombackend,
struct cyrusdb_backend *tobackend);
extern const char *cyrusdb_detect(const char *fname);
/* Start/Stop the backends */
void cyrusdb_init();
void cyrusdb_done();
/* Configuration */
struct cyrusdb_backend *cyrusdb_fromname(const char *name);
#endif /* INCLUDED_CYRUSDB_H */
|