Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id F259A42119E for ; Thu, 30 Jun 2011 09:08:45 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id R0nER-1lWA9g for ; Thu, 30 Jun 2011 09:08:45 -0700 (PDT) Received: from mail-wy0-f181.google.com (mail-wy0-f181.google.com [74.125.82.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 3A58B42119B for ; Thu, 30 Jun 2011 09:08:45 -0700 (PDT) Received: by mail-wy0-f181.google.com with SMTP id 22so1843157wyh.26 for ; Thu, 30 Jun 2011 09:08:45 -0700 (PDT) Received: by 10.216.160.78 with SMTP id t56mr1020705wek.14.1309450124822; Thu, 30 Jun 2011 09:08:44 -0700 (PDT) Received: from localhost ([109.131.21.173]) by mx.google.com with ESMTPS id m46sm47142weq.15.2011.06.30.09.08.43 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 30 Jun 2011 09:08:44 -0700 (PDT) From: Pieter Praet To: Carl Worth , Mark Anderson , Robin Green Subject: [PATCH 2/2] [RFC] possible solution for "Race condition for '*' command" Date: Thu, 30 Jun 2011 18:08:28 +0200 Message-Id: <1309450108-2793-2-git-send-email-pieter@praet.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1309450108-2793-1-git-send-email-pieter@praet.org> References: <8739itagad.fsf@yoom.home.cworth.org> <1309450108-2793-1-git-send-email-pieter@praet.org> Cc: notmuch@notmuchmail.org X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jun 2011 16:08:46 -0000 `notmuch-search-operate-all' may cause a race condition because repeatedly running `notmuch-tag' with the *original* query string makes the result list a moving target. One approach to resolving this, is to feed `notmuch-tag' a static result list based on the original query string, instead of the latter itself. See discussion @ id:"86d3i1d06r.fsf@dragonfly.greenrd.org" Signed-off-by: Pieter Praet --- Carl, I've gone along a different route which assures only matched messages are touched, but it does come with quite a performance hit. Since there isn't a test for the actual race condition(s), I can't be sure, but theoretically, at least one of them should be fixed now. Peace emacs/notmuch.el | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/emacs/notmuch.el b/emacs/notmuch.el index f11ec24..84c3ee6 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -845,7 +845,8 @@ Each character of the tag name may consist of alphanumeric characters as well as `_.+-'. " (interactive "sOperation (+add -drop): notmuch tag ") - (let ((action-split (split-string action " +"))) + (let ((action-split (split-string action " +")) + (query notmuch-search-query-string)) ;; Perform some validation (let ((words action-split)) (when (null words) (error "No operation given")) @@ -853,7 +854,13 @@ characters as well as `_.+-'. (unless (string-match-p "^[-+][-+_.[:word:]]+$" (car words)) (error "Action must be of the form `+thistag -that_tag'")) (setq words (cdr words)))) - (apply 'notmuch-tag notmuch-search-query-string action-split))) + (dolist (msgid + (split-string + (with-output-to-string + (with-current-buffer standard-output + (apply 'call-process notmuch-command nil t nil "search" "--output=messages" (list query)))) + "\n+" t)) + (apply 'notmuch-tag msgid action-split)))) (defun notmuch-search-buffer-title (query) "Returns the title for a buffer with notmuch search results." -- 1.7.4.1