From bdd6bef5dd839ca6fb2d610b84098d2026bb6db1 Mon Sep 17 00:00:00 2001 From: Kirill Smelkov Date: Sat, 2 Oct 2010 17:43:46 +0400 Subject: pytdb: Add support for tdb_repack() Cc: 597386@bugs.debian.org Signed-off-by: Kirill Smelkov Signed-off-by: Jelmer Vernooij --- lib/tdb/pytdb.c | 9 +++++++++ lib/tdb/python/tests/simple.py | 6 ++++++ 2 files changed, 15 insertions(+) (limited to 'lib') diff --git a/lib/tdb/pytdb.c b/lib/tdb/pytdb.c index c2ba661369..402fa5d9d3 100644 --- a/lib/tdb/pytdb.c +++ b/lib/tdb/pytdb.c @@ -343,6 +343,13 @@ static PyObject *obj_clear(PyTdbObject *self) Py_RETURN_NONE; } +static PyObject *obj_repack(PyTdbObject *self) +{ + int ret = tdb_repack(self->ctx); + PyErr_TDB_ERROR_IS_ERR_RAISE(ret, self->ctx); + Py_RETURN_NONE; +} + static PyObject *obj_enable_seqnum(PyTdbObject *self) { tdb_enable_seqnum(self->ctx); @@ -393,6 +400,8 @@ static PyMethodDef tdb_object_methods[] = { { "iterkeys", (PyCFunction)tdb_object_iter, METH_NOARGS, "S.iterkeys() -> iterator" }, { "clear", (PyCFunction)obj_clear, METH_NOARGS, "S.clear() -> None\n" "Wipe the entire database." }, + { "repack", (PyCFunction)obj_repack, METH_NOARGS, "S.repack() -> None\n" + "Repack the entire database." }, { "enable_seqnum", (PyCFunction)obj_enable_seqnum, METH_NOARGS, "S.enable_seqnum() -> None" }, { "increment_seqnum_nonblock", (PyCFunction)obj_increment_seqnum_nonblock, METH_NOARGS, diff --git a/lib/tdb/python/tests/simple.py b/lib/tdb/python/tests/simple.py index 18180e16bd..6386a2871f 100644 --- a/lib/tdb/python/tests/simple.py +++ b/lib/tdb/python/tests/simple.py @@ -142,6 +142,12 @@ class SimpleTdbTests(TestCase): self.tdb.clear() self.assertEquals(0, len(list(self.tdb))) + def test_repack(self): + self.tdb["foo"] = "abc" + self.tdb["bar"] = "def" + del self.tdb["foo"] + self.tdb.repack() + def test_seqnum(self): self.tdb.enable_seqnum() seq1 = self.tdb.seqnum -- cgit