From 79306cd732725a0d2bd0f5ecb97d2ab9f0cb38bf Mon Sep 17 00:00:00 2001 From: David Bremner Date: Sun, 1 May 2016 22:24:38 +2100 Subject: [PATCH] [Patch v3 10/11] lib: make a global constant for query parser flags --- 30/d689b60a9ad6de8220f671829ed5e5740dc92d | 121 ++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 30/d689b60a9ad6de8220f671829ed5e5740dc92d diff --git a/30/d689b60a9ad6de8220f671829ed5e5740dc92d b/30/d689b60a9ad6de8220f671829ed5e5740dc92d new file mode 100644 index 000000000..da61d81c8 --- /dev/null +++ b/30/d689b60a9ad6de8220f671829ed5e5740dc92d @@ -0,0 +1,121 @@ +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 4C80F6DE094A + for ; Sat, 30 Apr 2016 18:25:27 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at cworth.org +X-Spam-Flag: NO +X-Spam-Score: -0.015 +X-Spam-Level: +X-Spam-Status: No, score=-0.015 tagged_above=-999 required=5 + tests=[AWL=-0.004, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-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 KXhKCW3fgbUG for ; + Sat, 30 Apr 2016 18:25:19 -0700 (PDT) +Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) + by arlo.cworth.org (Postfix) with ESMTPS id 482546DE0360 + for ; Sat, 30 Apr 2016 18:24:54 -0700 (PDT) +Received: from remotemail by fethera.tethera.net with local (Exim 4.84) + (envelope-from ) + id 1awg7t-0006cd-9W; Sat, 30 Apr 2016 21:24:49 -0400 +Received: (nullmailer pid 29959 invoked by uid 1000); + Sun, 01 May 2016 01:24:43 -0000 +From: David Bremner +To: notmuch@notmuchmail.org +Subject: [Patch v3 10/11] lib: make a global constant for query parser flags +Date: Sat, 30 Apr 2016 22:24:38 -0300 +Message-Id: <1462065879-29860-11-git-send-email-david@tethera.net> +X-Mailer: git-send-email 2.8.0.rc3 +In-Reply-To: <1462065879-29860-1-git-send-email-david@tethera.net> +References: <1462065879-29860-1-git-send-email-david@tethera.net> +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.20 +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, 01 May 2016 01:25:27 -0000 + +It's already kindof gross that this is hardcoded in two different +places. We will also need these later in field processors calling back +into the query parser. +--- + lib/database-private.h | 4 ++++ + lib/query.cc | 16 ++-------------- + 2 files changed, 6 insertions(+), 14 deletions(-) + +diff --git a/lib/database-private.h b/lib/database-private.h +index e1962f4..b5c1f90 100644 +--- a/lib/database-private.h ++++ b/lib/database-private.h +@@ -144,6 +144,10 @@ operator&=(_notmuch_features &a, _notmuch_features b) + return a; + } + ++#define NOTMUCH_QUERY_PARSER_FLAGS (Xapian::QueryParser::FLAG_BOOLEAN | Xapian::QueryParser::FLAG_PHRASE | \ ++ Xapian::QueryParser::FLAG_LOVEHATE | Xapian::QueryParser::FLAG_BOOLEAN_ANY_CASE | \ ++ Xapian::QueryParser::FLAG_WILDCARD | Xapian::QueryParser::FLAG_PURE_NOT) ++ + struct _notmuch_database { + notmuch_bool_t exception_reported; + +diff --git a/lib/query.cc b/lib/query.cc +index 77a7926..0875b0e 100644 +--- a/lib/query.cc ++++ b/lib/query.cc +@@ -220,12 +220,6 @@ _notmuch_query_search_documents (notmuch_query_t *query, + Xapian::Query string_query, final_query, exclude_query; + Xapian::MSet mset; + Xapian::MSetIterator iterator; +- unsigned int flags = (Xapian::QueryParser::FLAG_BOOLEAN | +- Xapian::QueryParser::FLAG_PHRASE | +- Xapian::QueryParser::FLAG_LOVEHATE | +- Xapian::QueryParser::FLAG_BOOLEAN_ANY_CASE | +- Xapian::QueryParser::FLAG_WILDCARD | +- Xapian::QueryParser::FLAG_PURE_NOT); + + if (strcmp (query_string, "") == 0 || + strcmp (query_string, "*") == 0) +@@ -233,7 +227,7 @@ _notmuch_query_search_documents (notmuch_query_t *query, + final_query = mail_query; + } else { + string_query = notmuch->query_parser-> +- parse_query (query_string, flags); ++ parse_query (query_string, NOTMUCH_QUERY_PARSER_FLAGS); + final_query = Xapian::Query (Xapian::Query::OP_AND, + mail_query, string_query); + } +@@ -579,12 +573,6 @@ _notmuch_query_count_documents (notmuch_query_t *query, const char *type, unsign + type)); + Xapian::Query string_query, final_query, exclude_query; + Xapian::MSet mset; +- unsigned int flags = (Xapian::QueryParser::FLAG_BOOLEAN | +- Xapian::QueryParser::FLAG_PHRASE | +- Xapian::QueryParser::FLAG_LOVEHATE | +- Xapian::QueryParser::FLAG_BOOLEAN_ANY_CASE | +- Xapian::QueryParser::FLAG_WILDCARD | +- Xapian::QueryParser::FLAG_PURE_NOT); + + if (strcmp (query_string, "") == 0 || + strcmp (query_string, "*") == 0) +@@ -592,7 +580,7 @@ _notmuch_query_count_documents (notmuch_query_t *query, const char *type, unsign + final_query = mail_query; + } else { + string_query = notmuch->query_parser-> +- parse_query (query_string, flags); ++ parse_query (query_string, NOTMUCH_QUERY_PARSER_FLAGS); + final_query = Xapian::Query (Xapian::Query::OP_AND, + mail_query, string_query); + } +-- +2.8.0.rc3 + -- 2.26.2