summaryrefslogtreecommitdiffstats
path: root/source3/lib/dbwrap
Commit message (Collapse)AuthorAgeFilesLines
...
* s3:dbwrap: add dbwrap_fetch_locked(), a wrapper for db->fetch_lockedMichael Adam2011-10-112-0/+10
|
* s3:dbwrap: add dbwrap_record_delete(), a wrapper for record->delete_recMichael Adam2011-10-112-0/+6
|
* s3:dbwrap: add dbwrap_record_store(), a wrapper for record->storeMichael Adam2011-10-112-0/+6
|
* s3:dbwrap: add get-functions for db_record key, value and private_dataMichael Adam2011-10-112-0/+19
|
* s3:dbwrap: add wrapper function dbwrap_get_seqnum()Michael Adam2011-10-112-0/+6
|
* s3:dbwrap: add wrappers for transactions start/cancel/commitMichael Adam2011-10-112-0/+18
|
* s3:dbwrap: add wrapper dbwrap_get_flags()Michael Adam2011-10-112-0/+6
|
* s3:dbwrap: fix db_rbt_traverse() to return the record count on successGregor Beck2011-10-111-5/+14
| | | | | | this makes it consistent with documented behaviour of tdb_traverse() Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_wipe() implementation to dbwrap_rbtGregor Beck2011-10-111-0/+14
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_wipe() implementation to dbwrap_tdbGregor Beck2011-10-111-0/+8
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add a commentMichael Adam2011-10-111-0/+4
|
* s3:dbwrap: add function dbwrap_wipe()Gregor Beck2011-10-114-0/+29
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_parse_record() implementation to dbwrap_rbtGregor Beck2011-10-111-0/+15
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: implement dbwrap_fallback_exists() with dbwrap_parse_record()Gregor Beck2011-10-111-10/+2
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: allow NULL parser for dbwrap_parse_record()Gregor Beck2011-10-111-0/+9
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: dbwrap_parse_record() should always return -1 on "not found"Gregor Beck2011-10-111-1/+1
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add function dbwrap_parse_record()Gregor Beck2011-10-112-0/+16
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_exists() implementation to dbwrap_rbtGregor Beck2011-10-111-0/+6
|
* s3:dbwrap: factor out db_rpt_search_internal()Gregor Beck2011-10-111-46/+43
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_exists() implementation to dbwrap_tdbGregor Beck2011-10-111-0/+8
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add function dbwrap_exists()Gregor Beck2011-10-112-0/+31
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add a wrapper dbwrap_traverse_read()Michael Adam2011-10-112-0/+22
|
* s3:dbwrap: change the dbwrap_traverse() wrapper to return the count in an ↵Michael Adam2011-10-112-3/+14
| | | | additional parameter
* s3:dbwrap: reorganize dbwrap.h someMichael Adam2011-10-111-5/+8
|
* s3:dbwrap: move dbwrap_traverse() to dbwrap.c, the core of the dbrwap subsystemMichael Adam2011-10-112-9/+8
|
* s3:dbwrap: move dbwrap_store() back to dbwrap.c, the core of the dbwrap ↵Michael Adam2011-10-112-16/+16
| | | | subsystem
* s3:dbwrap: move dbwrap_delete() back to dbwrap.c, the core of the dbwrap ↵Michael Adam2011-10-112-15/+14
| | | | subsystem
* s3:dbwrap: move dbwrap_fetch() back to dbwrap.c, the core of the dbwrap ↵Michael Adam2011-10-112-12/+14
| | | | subsystem
* s3:dbwrap: move the db_open_rbt() prototype to a new header dbwrap_rbt.hMichael Adam2011-10-113-2/+30
|
* s3:dbwrap: move the db_open_file() prototype to a new header dbwrap_file.hMichael Adam2011-10-113-8/+37
|
* s3:dbwrap: move the db_open_tdb() prototype to a new header dbwrap_tdb.hMichael Adam2011-10-114-5/+35
|
* s3:dbwrap: move the db_open_ctdb() prototype to a new header dbwrap_ctdb.hMichael Adam2011-10-114-7/+38
|
* s3:dbwrap_ctdb: improve the check for skipping the __db_sequence_number__ ↵Michael Adam2011-09-281-2/+1
| | | | | | | | | record in traverse It did not compare the last charcter (usually '\0') Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Wed Sep 28 16:54:59 CEST 2011 on sn-devel-104
* s3:dbwrap_ctdb: skip the internal __db_sequence_number__ key from ↵Michael Adam2011-09-201-0/+26
| | | | | | | | | (persistent) traverse and traverse_read This is is used internally in the persistent transactions and should not surface. Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Tue Sep 20 07:59:20 CEST 2011 on sn-devel-104
* dbwrap_tdb: handle tdb2 return values properly.Rusty Russell2011-09-141-4/+4
| | | | | | | | | TDB2 versions of tdb_parse_record etc return an error code, not -1. Turn those into -1/0 in dbwrap_tdb to insulate the rest of the code from that change. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
* s3:dbwrap_ctdb: improve error message in transaction destructorGregor Beck2011-09-071-1/+2
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3: Silence some warningsVolker Lendecke2011-08-301-0/+19
| | | | | | | | | | | Rusty, please suggest a proper fix for this. Thanks, Volker Lendecke Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue Aug 30 19:16:14 CEST 2011 on sn-devel-104
* s3:dbwrap_tdb: correctly catch the error from the return code of tdb_parse ↵Michael Adam2011-08-251-1/+6
| | | | in db_tdb_fetch()
* s3:dbwrap_ctdb: improve transaction start/commit/cancel debuggingMichael Adam2011-08-151-2/+8
| | | | | * also log nesting transaction start/commit/cancel * unify transaction log messages slightly
* s3:dbwrap: move all .c and .h files of dbwrap to lib/dbwrap/Michael Adam2011-07-298-1/+3423
| | | | | Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Fri Jul 29 13:34:22 CEST 2011 on sn-devel-104
* s3:dbwrap: move db_is_local() from dbwrap.c to dbwrap_open.cMichael Adam2011-07-292-0/+33
|
* s3:dbwrap: move db_open() to a file dbwrap_open.c of its own.Michael Adam2011-07-293-0/+167
Also start new folder lib/dbwrap/ where dbwrap_open.c is stored and make the fallbacke implementation functoins non-static and create a dbwrap_private.h header file that contains their prototypes.