From 434dfdc9038d381a9cd54eed717856b35903463b Mon Sep 17 00:00:00 2001 From: David Bremner Date: Mon, 6 Apr 2015 07:59:09 +0900 Subject: [PATCH] [WIP2 07/12] lib: Add "lastmod:" queries for filtering by last modification --- 59/ac4eb8e26740733d351d225f27e6140fa9945c | 128 ++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 59/ac4eb8e26740733d351d225f27e6140fa9945c diff --git a/59/ac4eb8e26740733d351d225f27e6140fa9945c b/59/ac4eb8e26740733d351d225f27e6140fa9945c new file mode 100644 index 000000000..f6e214931 --- /dev/null +++ b/59/ac4eb8e26740733d351d225f27e6140fa9945c @@ -0,0 +1,128 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by arlo.cworth.org (Postfix) with ESMTP id 964C56DE1B7C + for ; Sun, 5 Apr 2015 16:03:33 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at cworth.org +X-Spam-Flag: NO +X-Spam-Score: 0.503 +X-Spam-Level: +X-Spam-Status: No, score=0.503 tagged_above=-999 required=5 tests=[AWL=0.493, + T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] autolearn=disabled +Received: from arlo.cworth.org ([127.0.0.1]) + by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id RR2H6y1SffnT for ; + Sun, 5 Apr 2015 16:03:32 -0700 (PDT) +Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net + [87.98.215.224]) + by arlo.cworth.org (Postfix) with ESMTPS id AC7FB6DE1BC7 + for ; Sun, 5 Apr 2015 16:03:26 -0700 (PDT) +Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim + 4.80) (envelope-from ) + id 1YetY1-0002pM-1d; Sun, 05 Apr 2015 23:01:45 +0000 +Received: (nullmailer pid 2249 invoked by uid 1000); Sun, 05 Apr 2015 + 22:59:25 -0000 +From: David Bremner +To: notmuch@notmuchmail.org +Subject: [WIP2 07/12] lib: Add "lastmod:" queries for filtering by last + modification +Date: Mon, 6 Apr 2015 07:59:09 +0900 +Message-Id: <1428274754-1698-8-git-send-email-david@tethera.net> +X-Mailer: git-send-email 2.1.4 +In-Reply-To: <1428274754-1698-1-git-send-email-david@tethera.net> +References: <1428274754-1698-1-git-send-email-david@tethera.net> +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.18 +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, 05 Apr 2015 23:03:33 -0000 + +From: Austin Clements + +XXX Includes reference to notmuch search --db-revision, which doesn't +exist. +--- + doc/man7/notmuch-search-terms.rst | 8 ++++++++ + lib/database-private.h | 1 + + lib/database.cc | 4 ++++ + 3 files changed, 13 insertions(+) + +diff --git a/doc/man7/notmuch-search-terms.rst b/doc/man7/notmuch-search-terms.rst +index 1d27ac1..d9f213e 100644 +--- a/doc/man7/notmuch-search-terms.rst ++++ b/doc/man7/notmuch-search-terms.rst +@@ -54,6 +54,8 @@ indicate user-supplied values): + + - date:.. + ++- lastmod:.. ++ + The **from:** prefix is used to match the name or address of the sender + of an email message. + +@@ -124,6 +126,12 @@ The time range can also be specified using timestamps with a syntax of: + Each timestamp is a number representing the number of seconds since + 1970-01-01 00:00:00 UTC. + ++The **lastmod:** prefix can be used to restrict the result by the ++database revision number of when messages were last modified (tags ++were added/removed or filenames changed). This is usually used in ++conjunction with the **--db-revision** argument to **notmuch search** ++to find messages that have changed since an earlier query. ++ + Operators + --------- + +diff --git a/lib/database-private.h b/lib/database-private.h +index 4e93257..3fb10f7 100644 +--- a/lib/database-private.h ++++ b/lib/database-private.h +@@ -176,6 +176,7 @@ struct _notmuch_database { + Xapian::TermGenerator *term_gen; + Xapian::ValueRangeProcessor *value_range_processor; + Xapian::ValueRangeProcessor *date_range_processor; ++ Xapian::ValueRangeProcessor *last_mod_range_processor; + }; + + /* Prior to database version 3, features were implied by the database +diff --git a/lib/database.cc b/lib/database.cc +index f88bdb3..afa34d6 100644 +--- a/lib/database.cc ++++ b/lib/database.cc +@@ -986,6 +986,7 @@ notmuch_database_open_verbose (const char *path, + notmuch->term_gen->set_stemmer (Xapian::Stem ("english")); + notmuch->value_range_processor = new Xapian::NumberValueRangeProcessor (NOTMUCH_VALUE_TIMESTAMP); + notmuch->date_range_processor = new ParseTimeValueRangeProcessor (NOTMUCH_VALUE_TIMESTAMP); ++ notmuch->last_mod_range_processor = new Xapian::NumberValueRangeProcessor (NOTMUCH_VALUE_LAST_MOD, "lastmod:"); + + notmuch->query_parser->set_default_op (Xapian::Query::OP_AND); + notmuch->query_parser->set_database (*notmuch->xapian_db); +@@ -993,6 +994,7 @@ notmuch_database_open_verbose (const char *path, + notmuch->query_parser->set_stemming_strategy (Xapian::QueryParser::STEM_SOME); + notmuch->query_parser->add_valuerangeprocessor (notmuch->value_range_processor); + notmuch->query_parser->add_valuerangeprocessor (notmuch->date_range_processor); ++ notmuch->query_parser->add_valuerangeprocessor (notmuch->last_mod_range_processor); + + for (i = 0; i < ARRAY_SIZE (BOOLEAN_PREFIX_EXTERNAL); i++) { + prefix_t *prefix = &BOOLEAN_PREFIX_EXTERNAL[i]; +@@ -1071,6 +1073,8 @@ notmuch_database_close (notmuch_database_t *notmuch) + notmuch->value_range_processor = NULL; + delete notmuch->date_range_processor; + notmuch->date_range_processor = NULL; ++ delete notmuch->last_mod_range_processor; ++ notmuch->last_mod_range_processor = NULL; + + return status; + } +-- +2.1.4 + -- 2.26.2