• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/netatalk-3.0.5/include/atalk/
1#ifndef __TDB_H__
2#define __TDB_H__
3
4/*
5   Unix SMB/CIFS implementation.
6
7   trivial database library
8
9   Copyright (C) Andrew Tridgell 1999-2004
10
11     ** NOTE! The following LGPL license applies to the tdb
12     ** library. This does NOT imply that all of Samba is released
13     ** under the LGPL
14
15   This library is free software; you can redistribute it and/or
16   modify it under the terms of the GNU Lesser General Public
17   License as published by the Free Software Foundation; either
18   version 3 of the License, or (at your option) any later version.
19
20   This library is distributed in the hope that it will be useful,
21   but WITHOUT ANY WARRANTY; without even the implied warranty of
22   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23   Lesser General Public License for more details.
24
25   You should have received a copy of the GNU Lesser General Public
26   License along with this library; if not, see <http://www.gnu.org/licenses/>.
27*/
28
29#ifdef  __cplusplus
30extern "C" {
31#endif
32
33#include <sys/types.h>
34#include <signal.h>
35
36/* flags to tdb_store() */
37#define TDB_REPLACE 1		/* Unused */
38#define TDB_INSERT 2 		/* Don't overwrite an existing entry */
39#define TDB_MODIFY 3		/* Don't create an existing entry    */
40
41/* flags for tdb_open() */
42#define TDB_DEFAULT 0 /* just a readability place holder */
43#define TDB_CLEAR_IF_FIRST 1
44#define TDB_INTERNAL 2 /* don't store on disk */
45#define TDB_NOLOCK   4 /* don't do any locking */
46#define TDB_NOMMAP   8 /* don't use mmap */
47#define TDB_CONVERT 16 /* convert endian (internal use) */
48#define TDB_BIGENDIAN 32 /* header is big-endian (internal use) */
49#define TDB_NOSYNC   64 /* don't use synchronous transactions */
50#define TDB_SEQNUM   128 /* maintain a sequence number */
51#define TDB_VOLATILE   256 /* Activate the per-hashchain freelist, default 5 */
52#define TDB_ALLOW_NESTING 512 /* Allow transactions to nest */
53#define TDB_DISALLOW_NESTING 1024 /* Disallow transactions to nest */
54
55/* error codes */
56enum TDB_ERROR {TDB_SUCCESS=0, TDB_ERR_CORRUPT, TDB_ERR_IO, TDB_ERR_LOCK,
57		TDB_ERR_OOM, TDB_ERR_EXISTS, TDB_ERR_NOLOCK, TDB_ERR_LOCK_TIMEOUT,
58		TDB_ERR_NOEXIST, TDB_ERR_EINVAL, TDB_ERR_RDONLY,
59		TDB_ERR_NESTING};
60
61/* debugging uses one of the following levels */
62enum tdb_debug_level {TDB_DEBUG_FATAL = 0, TDB_DEBUG_ERROR,
63		      TDB_DEBUG_WARNING, TDB_DEBUG_TRACE};
64
65typedef struct TDB_DATA {
66	unsigned char *dptr;
67	size_t dsize;
68} TDB_DATA;
69
70#ifndef PRINTF_ATTRIBUTE
71#if (__GNUC__ >= 3)
72/** Use gcc attribute to check printf fns.  a1 is the 1-based index of
73 * the parameter containing the format, and a2 the index of the first
74 * argument. Note that some gcc 2.x versions don't handle this
75 * properly **/
76#define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
77#else
78#define PRINTF_ATTRIBUTE(a1, a2)
79#endif
80#endif
81
82/* this is the context structure that is returned from a db open */
83typedef struct tdb_context TDB_CONTEXT;
84
85typedef int (*tdb_traverse_func)(struct tdb_context *, TDB_DATA, TDB_DATA, void *);
86typedef void (*tdb_log_func)(struct tdb_context *, enum tdb_debug_level, const char *, ...) PRINTF_ATTRIBUTE(3, 4);
87typedef unsigned int (*tdb_hash_func)(TDB_DATA *key);
88
89struct tdb_logging_context {
90        tdb_log_func log_fn;
91        void *log_private;
92};
93
94struct tdb_context *tdb_open(const char *name, int hash_size, int tdb_flags,
95		      int open_flags, mode_t mode);
96struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags,
97			 int open_flags, mode_t mode,
98			 const struct tdb_logging_context *log_ctx,
99			 tdb_hash_func hash_fn);
100void tdb_set_max_dead(struct tdb_context *tdb, int max_dead);
101
102int tdb_reopen(struct tdb_context *tdb);
103int tdb_reopen_all(int parent_longlived);
104void tdb_set_logging_function(struct tdb_context *tdb, const struct tdb_logging_context *log_ctx);
105enum TDB_ERROR tdb_error(struct tdb_context *tdb);
106const char *tdb_errorstr(struct tdb_context *tdb);
107TDB_DATA tdb_fetch(struct tdb_context *tdb, TDB_DATA key);
108int tdb_parse_record(struct tdb_context *tdb, TDB_DATA key,
109		     int (*parser)(TDB_DATA key, TDB_DATA data,
110				   void *private_data),
111		     void *private_data);
112int tdb_delete(struct tdb_context *tdb, TDB_DATA key);
113int tdb_store(struct tdb_context *tdb, TDB_DATA key, TDB_DATA dbuf, int flag);
114int tdb_append(struct tdb_context *tdb, TDB_DATA key, TDB_DATA new_dbuf);
115int tdb_close(struct tdb_context *tdb);
116TDB_DATA tdb_firstkey(struct tdb_context *tdb);
117TDB_DATA tdb_nextkey(struct tdb_context *tdb, TDB_DATA key);
118int tdb_traverse(struct tdb_context *tdb, tdb_traverse_func fn, void *);
119int tdb_traverse_read(struct tdb_context *tdb, tdb_traverse_func fn, void *);
120int tdb_exists(struct tdb_context *tdb, TDB_DATA key);
121int tdb_lockall(struct tdb_context *tdb);
122int tdb_lockall_nonblock(struct tdb_context *tdb);
123int tdb_unlockall(struct tdb_context *tdb);
124int tdb_lockall_read(struct tdb_context *tdb);
125int tdb_lockall_read_nonblock(struct tdb_context *tdb);
126int tdb_unlockall_read(struct tdb_context *tdb);
127int tdb_lockall_mark(struct tdb_context *tdb);
128int tdb_lockall_unmark(struct tdb_context *tdb);
129const char *tdb_name(struct tdb_context *tdb);
130int tdb_fd(struct tdb_context *tdb);
131tdb_log_func tdb_log_fn(struct tdb_context *tdb);
132void *tdb_get_logging_private(struct tdb_context *tdb);
133int tdb_transaction_start(struct tdb_context *tdb);
134int tdb_transaction_prepare_commit(struct tdb_context *tdb);
135int tdb_transaction_commit(struct tdb_context *tdb);
136int tdb_transaction_cancel(struct tdb_context *tdb);
137int tdb_transaction_recover(struct tdb_context *tdb);
138int tdb_get_seqnum(struct tdb_context *tdb);
139int tdb_hash_size(struct tdb_context *tdb);
140size_t tdb_map_size(struct tdb_context *tdb);
141int tdb_get_flags(struct tdb_context *tdb);
142void tdb_add_flags(struct tdb_context *tdb, unsigned flag);
143void tdb_remove_flags(struct tdb_context *tdb, unsigned flag);
144void tdb_enable_seqnum(struct tdb_context *tdb);
145void tdb_increment_seqnum_nonblock(struct tdb_context *tdb);
146int tdb_check(struct tdb_context *tdb,
147	      int (*check) (TDB_DATA key, TDB_DATA data, void *private_data),
148	      void *private_data);
149
150/* Low level locking functions: use with care */
151int tdb_chainlock(struct tdb_context *tdb, TDB_DATA key);
152int tdb_chainlock_nonblock(struct tdb_context *tdb, TDB_DATA key);
153int tdb_chainunlock(struct tdb_context *tdb, TDB_DATA key);
154int tdb_chainlock_read(struct tdb_context *tdb, TDB_DATA key);
155int tdb_chainunlock_read(struct tdb_context *tdb, TDB_DATA key);
156int tdb_chainlock_mark(struct tdb_context *tdb, TDB_DATA key);
157int tdb_chainlock_unmark(struct tdb_context *tdb, TDB_DATA key);
158
159void tdb_setalarm_sigptr(struct tdb_context *tdb, volatile sig_atomic_t *sigptr);
160
161/* wipe and repack */
162int tdb_wipe_all(struct tdb_context *tdb);
163int tdb_repack(struct tdb_context *tdb);
164
165/* Debug functions. Not used in production. */
166void tdb_dump_all(struct tdb_context *tdb);
167int tdb_printfreelist(struct tdb_context *tdb);
168int tdb_validate_freelist(struct tdb_context *tdb, int *pnum_entries);
169int tdb_freelist_size(struct tdb_context *tdb);
170
171extern TDB_DATA tdb_null;
172
173#ifdef  __cplusplus
174}
175#endif
176
177#endif /* tdb.h */
178