From: Jani Nikula Date: Sun, 9 Jun 2013 11:03:07 +0000 (+0300) Subject: [PATCH v2 1/7] cli: add --duplicate=N option to notmuch search X-Git-Url: http://git.tremily.us/?p=notmuch-archives.git;a=commitdiff_plain;h=92d0175634f31c706b8a9f9eeee416f1a4958cc2 [PATCH v2 1/7] cli: add --duplicate=N option to notmuch search --- diff --git a/c2/edcf69b85a0bf648c6e2fff9595fd98790728c b/c2/edcf69b85a0bf648c6e2fff9595fd98790728c new file mode 100644 index 000000000..ed1a40f20 --- /dev/null +++ b/c2/edcf69b85a0bf648c6e2fff9595fd98790728c @@ -0,0 +1,142 @@ +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 88A6A431FCB + for ; Sun, 9 Jun 2013 04:03:33 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" +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 LxUovO-PcEW8 for ; + Sun, 9 Jun 2013 04:03:26 -0700 (PDT) +Received: from mail-lb0-f179.google.com (mail-lb0-f179.google.com + [209.85.217.179]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id B9282431FB6 + for ; Sun, 9 Jun 2013 04:03:25 -0700 (PDT) +Received: by mail-lb0-f179.google.com with SMTP id w20so5376991lbh.24 + for ; Sun, 09 Jun 2013 04:03:23 -0700 (PDT) +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=google.com; s=20120113; + h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references + :in-reply-to:references:x-gm-message-state; + bh=i74P4zrjcaZ+45eCzg0H+uO9iuXELkN4SoBEus58xVQ=; + b=SNh+E/CFk1BTIzxvU3c7hwmcm5Ziu5nSeBNZbesIu/VeZH5lYupX2fczroO2QCW/Pu + ZOcERKy7jcASPRHVsThbSCi66jASvZFnZ4mXZK9SybFkco54bXcMk3LdAj056M0efdFe + s7bPIcZRyS7jyKywVzun8fW0WKP8Un8uHQ9wp/cYn+Pn9mHNAZZ0FzMSdzCEzwHIfGqO + fBM02VhJ+g8Nmh80IW5jDEM9XOREPIB3R46fg4D12hCueJxn5MfzA2IhFsm0yFlmoChj + 47G0wdTIIFH9DJu4adkmKuJq+HNzEQs3/upc+wN43y0gEo3/U3etXTIegFMvOxagGlsX + ddnw== +X-Received: by 10.112.211.167 with SMTP id nd7mr4478522lbc.59.1370775802949; + Sun, 09 Jun 2013 04:03:22 -0700 (PDT) +Received: from localhost (dsl-hkibrasgw2-58c376-211.dhcp.inet.fi. + [88.195.118.211]) + by mx.google.com with ESMTPSA id x3sm2533055lag.6.2013.06.09.04.03.20 + for + (version=TLSv1.2 cipher=RC4-SHA bits=128/128); + Sun, 09 Jun 2013 04:03:22 -0700 (PDT) +From: Jani Nikula +To: notmuch@notmuchmail.org +Subject: [PATCH v2 1/7] cli: add --duplicate=N option to notmuch search +Date: Sun, 9 Jun 2013 14:03:07 +0300 +Message-Id: + <61ed86f221d65b4dba438cbc2b4c5b77a484a534.1370775663.git.jani@nikula.org> +X-Mailer: git-send-email 1.7.10.4 +In-Reply-To: +References: +In-Reply-To: +References: +X-Gm-Message-State: + ALoCoQmjZoTW4LfDqOTSAUZMcG2QAvBvt3tL5/AEIzw4DcrO3W4lRwlLLA742ht5GMupzmahxQGN +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: Sun, 09 Jun 2013 11:03:33 -0000 + +Effective with --output=files, output the Nth filename associated with +each message matching the query (N is 0-based). If N is equal to or +greater than the number of files associated with the message, don't +print anything. +--- + notmuch-search.c | 18 ++++++++++++------ + 1 file changed, 12 insertions(+), 6 deletions(-) + +diff --git a/notmuch-search.c b/notmuch-search.c +index 4323201..196934b 100644 +--- a/notmuch-search.c ++++ b/notmuch-search.c +@@ -177,7 +177,8 @@ do_search_messages (sprinter_t *format, + notmuch_query_t *query, + output_t output, + int offset, +- int limit) ++ int limit, ++ int dupe) + { + notmuch_message_t *message; + notmuch_messages_t *messages; +@@ -206,14 +207,17 @@ do_search_messages (sprinter_t *format, + message = notmuch_messages_get (messages); + + if (output == OUTPUT_FILES) { ++ int j; + filenames = notmuch_message_get_filenames (message); + +- for (; ++ for (j = 1; + notmuch_filenames_valid (filenames); +- notmuch_filenames_move_to_next (filenames)) ++ notmuch_filenames_move_to_next (filenames), j++) + { +- format->string (format, notmuch_filenames_get (filenames)); +- format->separator (format); ++ if (dupe < 0 || dupe == j) { ++ format->string (format, notmuch_filenames_get (filenames)); ++ format->separator (format); ++ } + } + + notmuch_filenames_destroy( filenames ); +@@ -303,6 +307,7 @@ notmuch_search_command (notmuch_config_t *config, int argc, char *argv[]) + int offset = 0; + int limit = -1; /* unlimited */ + int exclude = EXCLUDE_TRUE; ++ int dupe = -1; + unsigned int i; + + enum { +@@ -339,6 +344,7 @@ notmuch_search_command (notmuch_config_t *config, int argc, char *argv[]) + { 0, 0 } } }, + { NOTMUCH_OPT_INT, &offset, "offset", 'O', 0 }, + { NOTMUCH_OPT_INT, &limit, "limit", 'L', 0 }, ++ { NOTMUCH_OPT_INT, &dupe, "duplicate", 'D', 0 }, + { 0, 0, 0, 0, 0 } + }; + +@@ -424,7 +430,7 @@ notmuch_search_command (notmuch_config_t *config, int argc, char *argv[]) + break; + case OUTPUT_MESSAGES: + case OUTPUT_FILES: +- ret = do_search_messages (format, query, output, offset, limit); ++ ret = do_search_messages (format, query, output, offset, limit, dupe); + break; + case OUTPUT_TAGS: + ret = do_search_tags (notmuch, format, query); +-- +1.7.10.4 +