[PATCH 9/9] add has: query prefix to search for specific properties
[notmuch-archives.git] / c0 / a580accd5952e4dfbb9b1bd468be0d0a8ddba9
1 Return-Path: <bremner@tesseract.cs.unb.ca>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id BFF3F429E40\r
6         for <notmuch@notmuchmail.org>; Sun, 28 Dec 2014 09:38:39 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id 2bU3Xt2WYUfc for <notmuch@notmuchmail.org>;\r
16         Sun, 28 Dec 2014 09:38:37 -0800 (PST)\r
17 Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
18         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id A7945429E41\r
21         for <notmuch@notmuchmail.org>; Sun, 28 Dec 2014 09:38:20 -0800 (PST)\r
22 Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
23         (envelope-from <bremner@tesseract.cs.unb.ca>)\r
24         id 1Y5HnI-0002hR-7p; Sun, 28 Dec 2014 13:38:20 -0400\r
25 Received: (nullmailer pid 11498 invoked by uid 1000); Sun, 28 Dec 2014\r
26         17:37:40 -0000\r
27 From: David Bremner <david@tethera.net>\r
28 To: notmuch@notmuchmail.org\r
29 Subject: [Patch v3 3/6] lib: add a log function with output to a string in\r
30         notmuch_database_t\r
31 Date: Sun, 28 Dec 2014 18:33:47 +0100\r
32 Message-Id: <1419788030-10567-4-git-send-email-david@tethera.net>\r
33 X-Mailer: git-send-email 2.1.3\r
34 In-Reply-To: <1419788030-10567-1-git-send-email-david@tethera.net>\r
35 References: <1419788030-10567-1-git-send-email-david@tethera.net>\r
36 X-BeenThere: notmuch@notmuchmail.org\r
37 X-Mailman-Version: 2.1.13\r
38 Precedence: list\r
39 List-Id: "Use and development of the notmuch mail system."\r
40         <notmuch.notmuchmail.org>\r
41 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
43 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
44 List-Post: <mailto:notmuch@notmuchmail.org>\r
45 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
46 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
48 X-List-Received-Date: Sun, 28 Dec 2014 17:38:40 -0000\r
49 \r
50 This is a thin wrapper around the previously implemented string\r
51 logging infrastructure. In the future it could have more configurable\r
52 output options.\r
53 ---\r
54  lib/database.cc       | 14 ++++++++++++++\r
55  lib/notmuch-private.h |  4 ++++\r
56  2 files changed, 18 insertions(+)\r
57 \r
58 diff --git a/lib/database.cc b/lib/database.cc\r
59 index 18db902..9af1a47 100644\r
60 --- a/lib/database.cc\r
61 +++ b/lib/database.cc\r
62 @@ -371,6 +371,20 @@ log_to_string (char **str,\r
63      va_end (va_args);\r
64  }\r
65  \r
66 +void\r
67 +_notmuch_database_log (notmuch_database_t *notmuch,\r
68 +                     const char *format,\r
69 +                     ...)\r
70 +{\r
71 +    va_list va_args;\r
72 +\r
73 +    va_start (va_args, format);\r
74 +\r
75 +    vlog_to_string (notmuch, &notmuch->status_string, format, va_args);\r
76 +\r
77 +    va_end (va_args);\r
78 +}\r
79 +\r
80  static void\r
81  find_doc_ids_for_term (notmuch_database_t *notmuch,\r
82                        const char *term,\r
83 diff --git a/lib/notmuch-private.h b/lib/notmuch-private.h\r
84 index 012ad25..7c6cfc0 100644\r
85 --- a/lib/notmuch-private.h\r
86 +++ b/lib/notmuch-private.h\r
87 @@ -191,6 +191,10 @@ _notmuch_message_id_compressed (void *ctx, const char *message_id);\r
88  notmuch_status_t\r
89  _notmuch_database_ensure_writable (notmuch_database_t *notmuch);\r
90  \r
91 +void\r
92 +_notmuch_database_log (notmuch_database_t *notmuch,\r
93 +                      const char *format, ...);\r
94 +\r
95  const char *\r
96  _notmuch_database_relative_path (notmuch_database_t *notmuch,\r
97                                  const char *path);\r
98 -- \r
99 2.1.3\r
100 \r