From 91d3b3871c1ae8ffd29257a0f106da9a5f92f83c Mon Sep 17 00:00:00 2001 From: David Bremner Date: Mon, 13 Jun 2016 22:05:48 +2100 Subject: [PATCH] [PATCH 1/8] lib: read "property" terms from messages. --- d7/af400b30a4f1cdd62c6d1935536f741473c945 | 157 ++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 d7/af400b30a4f1cdd62c6d1935536f741473c945 diff --git a/d7/af400b30a4f1cdd62c6d1935536f741473c945 b/d7/af400b30a4f1cdd62c6d1935536f741473c945 new file mode 100644 index 000000000..6db4c60a3 --- /dev/null +++ b/d7/af400b30a4f1cdd62c6d1935536f741473c945 @@ -0,0 +1,157 @@ +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 4E4A16DE092A + for ; Sun, 12 Jun 2016 18:06:32 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at cworth.org +X-Spam-Flag: NO +X-Spam-Score: -0.011 +X-Spam-Level: +X-Spam-Status: No, score=-0.011 tagged_above=-999 required=5 + tests=[AWL=-0.000, 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 InKerBzpu0n3 for ; + Sun, 12 Jun 2016 18:06:24 -0700 (PDT) +Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) + by arlo.cworth.org (Postfix) with ESMTPS id 6FBEE6DE02A6 + for ; Sun, 12 Jun 2016 18:06:10 -0700 (PDT) +Received: from remotemail by fethera.tethera.net with local (Exim 4.84) + (envelope-from ) + id 1bCGKC-0003x8-Bn; Sun, 12 Jun 2016 21:05:56 -0400 +Received: (nullmailer pid 5666 invoked by uid 1000); + Mon, 13 Jun 2016 01:06:04 -0000 +From: David Bremner +To: notmuch@notmuchmail.org +Subject: [PATCH 1/8] lib: read "property" terms from messages. +Date: Sun, 12 Jun 2016 22:05:48 -0300 +Message-Id: <1465779955-5539-2-git-send-email-david@tethera.net> +X-Mailer: git-send-email 2.8.1 +In-Reply-To: <1465779955-5539-1-git-send-email-david@tethera.net> +References: <1465779955-5539-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: Mon, 13 Jun 2016 01:06:32 -0000 + +This is a first step towards providing an API to attach +arbitrary (key,value) pairs to messages and retrieve all of the values +for a given key. +--- + lib/database.cc | 1 + + lib/message.cc | 29 ++++++++++++++++++++++++++++- + lib/notmuch-private.h | 3 +++ + 3 files changed, 32 insertions(+), 1 deletion(-) + +diff --git a/lib/database.cc b/lib/database.cc +index afafe88..74f31f5 100644 +--- a/lib/database.cc ++++ b/lib/database.cc +@@ -245,6 +245,7 @@ static prefix_t BOOLEAN_PREFIX_INTERNAL[] = { + { "directory", "XDIRECTORY" }, + { "file-direntry", "XFDIRENTRY" }, + { "directory-direntry", "XDDIRENTRY" }, ++ { "property", "XPROPERTY" }, + }; + + static prefix_t BOOLEAN_PREFIX_EXTERNAL[] = { +diff --git a/lib/message.cc b/lib/message.cc +index 24e698a..63a8da5 100644 +--- a/lib/message.cc ++++ b/lib/message.cc +@@ -37,6 +37,8 @@ struct visible _notmuch_message { + notmuch_string_list_t *filename_list; + char *author; + notmuch_message_file_t *message_file; ++ notmuch_string_list_t *property_term_list; ++ notmuch_string_map_t *property_map; + notmuch_message_list_t *replies; + unsigned long flags; + /* For flags that are initialized on-demand, lazy_flags indicates +@@ -116,6 +118,8 @@ _notmuch_message_create_for_document (const void *talloc_owner, + message->filename_list = NULL; + message->message_file = NULL; + message->author = NULL; ++ message->property_term_list = NULL; ++ message->property_map = NULL; + + message->replies = _notmuch_message_list_create (message); + if (unlikely (message->replies == NULL)) { +@@ -314,6 +318,7 @@ _notmuch_message_ensure_metadata (notmuch_message_t *message) + *id_prefix = _find_prefix ("id"), + *type_prefix = _find_prefix ("type"), + *filename_prefix = _find_prefix ("file-direntry"), ++ *property_prefix = _find_prefix ("property"), + *replyto_prefix = _find_prefix ("replyto"); + + /* We do this all in a single pass because Xapian decompresses the +@@ -369,11 +374,21 @@ _notmuch_message_ensure_metadata (notmuch_message_t *message) + _notmuch_database_get_terms_with_prefix (message, i, end, + filename_prefix); + ++ ++ /* Get property terms. Mimic the setup with filenames above */ ++ assert (strcmp (filename_prefix, property_prefix) < 0); ++ if (!message->property_map && !message->property_term_list) ++ message->property_term_list = ++ _notmuch_database_get_terms_with_prefix (message, i, end, ++ property_prefix); ++ + /* Get reply to */ +- assert (strcmp (filename_prefix, replyto_prefix) < 0); ++ assert (strcmp (property_prefix, replyto_prefix) < 0); + if (!message->in_reply_to) + message->in_reply_to = + _notmuch_message_get_term (message, i, end, replyto_prefix); ++ ++ + /* It's perfectly valid for a message to have no In-Reply-To + * header. For these cases, we return an empty string. */ + if (!message->in_reply_to) +@@ -405,6 +420,18 @@ _notmuch_message_invalidate_metadata (notmuch_message_t *message, + message->filename_term_list = message->filename_list = NULL; + } + ++ if (strcmp ("property", prefix_name) == 0) { ++ ++ if (message->property_term_list) ++ talloc_free (message->property_term_list); ++ message->property_term_list = NULL; ++ ++ if (message->property_map) ++ talloc_unlink (message, message->property_map); ++ ++ message->property_map = NULL; ++ } ++ + if (strcmp ("replyto", prefix_name) == 0) { + talloc_free (message->in_reply_to); + message->in_reply_to = NULL; +diff --git a/lib/notmuch-private.h b/lib/notmuch-private.h +index 3721431..df63905 100644 +--- a/lib/notmuch-private.h ++++ b/lib/notmuch-private.h +@@ -537,6 +537,9 @@ _notmuch_string_list_append (notmuch_string_list_t *list, + void + _notmuch_string_list_sort (notmuch_string_list_t *list); + ++/* string-map.c */ ++typedef struct _notmuch_string_map notmuch_string_map_t; ++ + /* tags.c */ + + notmuch_tags_t * +-- +2.8.1 + -- 2.26.2