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
*db
,
40 int (*traverse_read
)(struct db_context
*db
,
41 int (*f
)(struct db_record
*db
,
44 int (*get_seqnum
)(struct db_context
*db
);
45 int (*transaction_start
)(struct db_context
*db
);
46 int (*transaction_commit
)(struct db_context
*db
);
47 int (*transaction_cancel
)(struct db_context
*db
);
52 struct db_context
*db_open(TALLOC_CTX
*mem_ctx
,
54 int hash_size
, int tdb_flags
,
55 int open_flags
, mode_t mode
);
57 NTSTATUS
dbwrap_delete_bystring(struct db_context
*db
, const char *key
);
58 NTSTATUS
dbwrap_store_bystring(struct db_context
*db
, const char *key
,
59 TDB_DATA data
, int flags
);
60 TDB_DATA
dbwrap_fetch_bystring(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
63 #endif /* __DBWRAP_H__ */