From ce84abcc6be31554da73920280e6bfc5b63b1464 Mon Sep 17 00:00:00 2001 From: Kirill Smelkov Date: Sat, 2 Oct 2010 17:43:46 +0400 Subject: [PATCH] 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(+) diff --git a/lib/tdb/pytdb.c b/lib/tdb/pytdb.c index c2ba6613..402fa5d9 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 b7eb0b5e..92244e3a 100644 --- a/lib/tdb/python/tests/simple.py +++ b/lib/tdb/python/tests/simple.py @@ -137,6 +137,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 -- 2.34.1