2 Unix SMB/CIFS implementation.
3 Database interface wrapper around tdb
4 Copyright (C) Volker Lendecke 2005-2007
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 NTSTATUS (*store
)(struct db_record
*rec
, TDB_DATA data
, int flag
);
26 NTSTATUS (*delete_rec
)(struct db_record
*rec
);
31 struct db_record
*(*fetch_locked
)(struct db_context
*db
,
34 int (*fetch
)(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
35 TDB_DATA key
, TDB_DATA
*data
);
36 int (*traverse
)(struct db_context
*db
,
37 int (*f
)(struct db_record
*rec
,
40 int (*traverse_read
)(struct db_context
*db
,
41 int (*f
)(struct db_record
*rec
,
44 int (*get_seqnum
)(struct db_context
*db
);
45 int (*get_flags
)(struct db_context
*db
);
46 int (*transaction_start
)(struct db_context
*db
);
47 int (*transaction_commit
)(struct db_context
*db
);
48 int (*transaction_cancel
)(struct db_context
*db
);
49 int (*parse_record
)(struct db_context
*db
, TDB_DATA key
,
50 int (*parser
)(TDB_DATA key
, TDB_DATA data
,
57 bool db_is_local(const char *name
);
59 struct db_context
*db_open(TALLOC_CTX
*mem_ctx
,
61 int hash_size
, int tdb_flags
,
62 int open_flags
, mode_t mode
);
64 struct db_context
*db_open_rbt(TALLOC_CTX
*mem_ctx
);
66 struct db_context
*db_open_tdb(TALLOC_CTX
*mem_ctx
,
68 int hash_size
, int tdb_flags
,
69 int open_flags
, mode_t mode
);
71 struct db_context
*db_open_tdb2(TALLOC_CTX
*mem_ctx
,
73 int hash_size
, int tdb_flags
,
74 int open_flags
, mode_t mode
);
76 struct messaging_context
;
78 #ifdef CLUSTER_SUPPORT
79 struct db_context
*db_open_ctdb(TALLOC_CTX
*mem_ctx
,
81 int hash_size
, int tdb_flags
,
82 int open_flags
, mode_t mode
);
85 struct db_context
*db_open_file(TALLOC_CTX
*mem_ctx
,
86 struct messaging_context
*msg_ctx
,
88 int hash_size
, int tdb_flags
,
89 int open_flags
, mode_t mode
);
92 NTSTATUS
dbwrap_delete(struct db_context
*db
, TDB_DATA key
);
93 NTSTATUS
dbwrap_store(struct db_context
*db
, TDB_DATA key
,
94 TDB_DATA data
, int flags
);
95 TDB_DATA
dbwrap_fetch(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
97 NTSTATUS
dbwrap_delete_bystring(struct db_context
*db
, const char *key
);
98 NTSTATUS
dbwrap_store_bystring(struct db_context
*db
, const char *key
,
99 TDB_DATA data
, int flags
);
100 TDB_DATA
dbwrap_fetch_bystring(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
103 /* The following definitions come from lib/dbwrap_util.c */
105 int32_t dbwrap_fetch_int32(struct db_context
*db
, const char *keystr
);
106 int dbwrap_store_int32(struct db_context
*db
, const char *keystr
, int32_t v
);
107 bool dbwrap_fetch_uint32(struct db_context
*db
, const char *keystr
,
109 int dbwrap_store_uint32(struct db_context
*db
, const char *keystr
, uint32_t v
);
110 NTSTATUS
dbwrap_change_uint32_atomic(struct db_context
*db
, const char *keystr
,
111 uint32_t *oldval
, uint32_t change_val
);
112 NTSTATUS
dbwrap_trans_change_uint32_atomic(struct db_context
*db
,
115 uint32_t change_val
);
116 NTSTATUS
dbwrap_change_int32_atomic(struct db_context
*db
, const char *keystr
,
117 int32_t *oldval
, int32_t change_val
);
118 NTSTATUS
dbwrap_trans_change_int32_atomic(struct db_context
*db
,
122 NTSTATUS
dbwrap_trans_store(struct db_context
*db
, TDB_DATA key
, TDB_DATA dbuf
,
124 NTSTATUS
dbwrap_trans_delete(struct db_context
*db
, TDB_DATA key
);
125 NTSTATUS
dbwrap_trans_store_int32(struct db_context
*db
, const char *keystr
,
127 NTSTATUS
dbwrap_trans_store_uint32(struct db_context
*db
, const char *keystr
,
129 NTSTATUS
dbwrap_trans_store_bystring(struct db_context
*db
, const char *key
,
130 TDB_DATA data
, int flags
);
131 NTSTATUS
dbwrap_trans_delete_bystring(struct db_context
*db
, const char *key
);
132 NTSTATUS
dbwrap_trans_do(struct db_context
*db
,
133 NTSTATUS (*action
)(struct db_context
*, void *),
135 NTSTATUS
dbwrap_delete_bystring_upper(struct db_context
*db
, const char *key
);
136 NTSTATUS
dbwrap_store_bystring_upper(struct db_context
*db
, const char *key
,
137 TDB_DATA data
, int flags
);
138 TDB_DATA
dbwrap_fetch_bystring_upper(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
141 #endif /* __DBWRAP_H__ */