[PATCH v3 4/5] compact: unconditionally remove old wip database compact directory
authorTomi Ollila <tomi.ollila@iki.fi>
Thu, 14 Nov 2013 22:03:26 +0000 (00:03 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:58:19 +0000 (09:58 -0800)
be/4ccf4cd7e02a36372cbbb94eaa6b95f0399795 [new file with mode: 0644]

diff --git a/be/4ccf4cd7e02a36372cbbb94eaa6b95f0399795 b/be/4ccf4cd7e02a36372cbbb94eaa6b95f0399795
new file mode 100644 (file)
index 0000000..5e2cbd5
--- /dev/null
@@ -0,0 +1,73 @@
+Return-Path: <too@guru-group.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 6A6DD431E64\r
+       for <notmuch@notmuchmail.org>; Thu, 14 Nov 2013 14:03:43 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id v9l1cqdpuLe7 for <notmuch@notmuchmail.org>;\r
+       Thu, 14 Nov 2013 14:03:35 -0800 (PST)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+       by olra.theworths.org (Postfix) with ESMTP id F3E55431FBD\r
+       for <notmuch@notmuchmail.org>; Thu, 14 Nov 2013 14:03:34 -0800 (PST)\r
+Received: by guru.guru-group.fi (Postfix, from userid 501)\r
+       id 5DDEC1000E5; Fri, 15 Nov 2013 00:03:30 +0200 (EET)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH v3 4/5] compact: unconditionally remove old wip database\r
+       compact directory\r
+Date: Fri, 15 Nov 2013 00:03:26 +0200\r
+Message-Id: <1384466607-28298-2-git-send-email-tomi.ollila@iki.fi>\r
+X-Mailer: git-send-email 1.8.0\r
+In-Reply-To: <1384466607-28298-1-git-send-email-tomi.ollila@iki.fi>\r
+References: <id:1384362167-12740-1-git-send-email-tomi.ollila@iki.fi>\r
+       <1384466607-28298-1-git-send-email-tomi.ollila@iki.fi>\r
+Cc: tomi.ollila@iki.fi\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Thu, 14 Nov 2013 22:03:43 -0000\r
+\r
+In case previous notmuch compact has been interrupted there is old\r
+work-in-progress database compact directory partially filled. Remove\r
+it just before starting to fill the directory with new files.\r
+---\r
+ lib/database.cc | 6 ++++++\r
+ 1 file changed, 6 insertions(+)\r
+\r
+diff --git a/lib/database.cc b/lib/database.cc\r
+index d79cc30..d09ad99 100644\r
+--- a/lib/database.cc\r
++++ b/lib/database.cc\r
+@@ -922,6 +922,12 @@ notmuch_database_compact (const char *path,\r
+       goto DONE;\r
+     }\r
\r
++    /* Unconditionally attempt to remove old work-in-progress database (if\r
++     * any). This is "protected" by database lock. If this fails due to write\r
++     * errors (etc), the following code will fail and provide error message.\r
++     */\r
++    (void) rmtree (compact_xapian_path);\r
++\r
+     try {\r
+       NotmuchCompactor compactor (status_cb, closure);\r
\r
+-- \r
+1.8.0\r
+\r