aboutsummaryrefslogtreecommitdiff
path: root/bindings/ruby/database.c
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2021-07-06 22:45:32 -0500
committerDavid Bremner <david@tethera.net>2021-08-02 13:49:29 -0300
commit7415b53fa568a3156ae3e3a47544a4784e024653 (patch)
treed0531ec3d465efb2a3c625fa794e498ad4ef4dc3 /bindings/ruby/database.c
parente8fa42a97a2e98fecb5cabdbeac6c7ad0b936b7d (diff)
ruby: split database close and destroy
Mirrors the C API: 7864350c (Split notmuch_database_close into two functions, 2012-04-25). Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'bindings/ruby/database.c')
-rw-r--r--bindings/ruby/database.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/bindings/ruby/database.c b/bindings/ruby/database.c
index 1cf4e4e2..9c3dbd96 100644
--- a/bindings/ruby/database.c
+++ b/bindings/ruby/database.c
@@ -27,6 +27,19 @@ notmuch_rb_database_alloc (VALUE klass)
}
/*
+ * call-seq: DB.destroy => nil
+ *
+ * Destroys the database, freeing all resources allocated for it.
+ */
+VALUE
+notmuch_rb_database_destroy (VALUE self)
+{
+ notmuch_rb_object_destroy (self, &notmuch_rb_database_type);
+
+ return Qnil;
+}
+
+/*
* call-seq: Notmuch::Database.new(path [, {:create => false, :mode => Notmuch::MODE_READ_ONLY}]) => DB
*
* Create or open a notmuch database using the given path.
@@ -113,8 +126,12 @@ notmuch_rb_database_open (int argc, VALUE *argv, VALUE klass)
VALUE
notmuch_rb_database_close (VALUE self)
{
+ notmuch_database_t *db;
notmuch_status_t ret;
- ret = notmuch_rb_object_destroy (self, &notmuch_rb_database_type);
+
+ Data_Get_Notmuch_Database (self, db);
+
+ ret = notmuch_database_close (db);
notmuch_rb_status_raise (ret);
return Qnil;