unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
From: Mark Walters <markwalters1009@gmail.com>
To: notmuch@notmuchmail.org
Subject: [WIP 1/2] lib: multithread
Date: Tue, 20 Mar 2012 20:11:59 +0000	[thread overview]
Message-ID: <1332274320-17487-2-git-send-email-markwalters1009@gmail.com> (raw)
In-Reply-To: <1332274320-17487-1-git-send-email-markwalters1009@gmail.com>

---
 lib/notmuch.h |   12 ++++++++++++
 lib/query.cc  |   46 +++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 57 insertions(+), 1 deletions(-)

diff --git a/lib/notmuch.h b/lib/notmuch.h
index babd208..22dd69e 100644
--- a/lib/notmuch.h
+++ b/lib/notmuch.h
@@ -445,6 +445,18 @@ typedef enum {
     NOTMUCH_SORT_UNSORTED
 } notmuch_sort_t;
 
+/* Values for notmuch_query_secondary_search_conjunction */
+typedef enum {
+    NOTMUCH_SECONDARY_SEARCH_NONE,
+    NOTMUCH_SECONDARY_SEARCH_AND,
+    NOTMUCH_SECONDARY_SEARCH_AND_NOT
+} notmuch_ss_conjunction_t;
+
+void
+notmuch_query_set_secondary_search (notmuch_query_t *query,
+				    const char *secondary_search_terms,
+				    notmuch_ss_conjunction_t conjunction);
+
 /* Return the query_string of this query. See notmuch_query_create. */
 const char *
 notmuch_query_get_query_string (notmuch_query_t *query);
diff --git a/lib/query.cc b/lib/query.cc
index 68ac1e4..0faef51 100644
--- a/lib/query.cc
+++ b/lib/query.cc
@@ -26,6 +26,8 @@
 struct _notmuch_query {
     notmuch_database_t *notmuch;
     const char *query_string;
+    const char *secondary_search_terms;
+    notmuch_ss_conjunction_t ss_conjunction;
     notmuch_sort_t sort;
     notmuch_string_list_t *exclude_terms;
     notmuch_bool_t omit_excluded_messages;
@@ -92,6 +94,8 @@ notmuch_query_create (notmuch_database_t *notmuch,
 
     query->exclude_terms = _notmuch_string_list_create (query);
 
+    query->secondary_search_terms = NULL;
+
     query->omit_excluded_messages = FALSE;
 
     return query;
@@ -122,6 +126,15 @@ notmuch_query_get_sort (notmuch_query_t *query)
 }
 
 void
+notmuch_query_set_secondary_search (notmuch_query_t *query,
+				    const char *secondary_search_terms,
+				    notmuch_ss_conjunction_t conjunction)
+{
+    query->secondary_search_terms = talloc_strdup (query, secondary_search_terms);
+    query->ss_conjunction = conjunction;
+}
+
+void
 notmuch_query_add_tag_exclude (notmuch_query_t *query, const char *tag)
 {
     char *term = talloc_asprintf (query, "%s%s", _find_prefix ("tag"), tag);
@@ -454,6 +467,36 @@ notmuch_query_destroy (notmuch_query_t *query)
     talloc_free (query);
 }
 
+/* This function tests whether the thread containing document with id
+ * seed_doc_id satisfies the secondary search terms of query.*/
+notmuch_bool_t
+notmuch_thread_test_secondary_search (notmuch_query_t *query, unsigned int seed_doc_id)
+{
+    int count;
+    notmuch_message_t *seed_message;
+    const char *thread_id;
+    char *thread_id_query_string;
+    notmuch_query_t *thread_id_query;
+
+    if (!query->secondary_search_terms) return TRUE;
+    seed_message = _notmuch_message_create (query, query->notmuch, seed_doc_id, NULL);
+
+    thread_id = notmuch_message_get_thread_id (seed_message);
+    thread_id_query_string = talloc_asprintf (query, "thread:%s and %s",
+					      thread_id,
+					      query->secondary_search_terms);
+    thread_id_query = notmuch_query_create (query->notmuch, thread_id_query_string);
+    count = notmuch_query_count_messages (thread_id_query);
+    switch (query->ss_conjunction) {
+    case NOTMUCH_SECONDARY_SEARCH_AND:
+	return (count > 0);
+    case NOTMUCH_SECONDARY_SEARCH_AND_NOT:
+	return (count == 0);
+    default:
+	return TRUE;
+    }
+}
+
 notmuch_bool_t
 notmuch_threads_valid (notmuch_threads_t *threads)
 {
@@ -462,7 +505,8 @@ notmuch_threads_valid (notmuch_threads_t *threads)
     while (threads->doc_id_pos < threads->doc_ids->len) {
 	doc_id = g_array_index (threads->doc_ids, unsigned int,
 				threads->doc_id_pos);
-	if (_notmuch_doc_id_set_contains (&threads->match_set, doc_id))
+	if (_notmuch_doc_id_set_contains (&threads->match_set, doc_id) &&
+	    notmuch_thread_test_secondary_search (threads->query, doc_id))
 	    break;
 
 	threads->doc_id_pos++;
-- 
1.7.9.1

  reply	other threads:[~2012-03-20 20:12 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-20 20:11 [WIP 0/2] Thread based searching Mark Walters
2012-03-20 20:11 ` Mark Walters [this message]
2012-03-20 20:12 ` [WIP 2/2] cli: search: multithread Mark Walters
2012-04-14 19:15 ` [WIP 0/2] Thread based searching Jameson Graef Rollins

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://notmuchmail.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1332274320-17487-2-git-send-email-markwalters1009@gmail.com \
    --to=markwalters1009@gmail.com \
    --cc=notmuch@notmuchmail.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).