[PATCH 3/4] Add documentation for user.other_name
[notmuch-archives.git] / ab / c9517e2242f57c93ca8ac35e1385b7a2a2bdfe
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 C59FA431FD6\r
6         for <notmuch@notmuchmail.org>; Sat, 14 Mar 2015 10:04:19 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 2.438\r
10 X-Spam-Level: **\r
11 X-Spam-Status: No, score=2.438 tagged_above=-999 required=5\r
12         tests=[DNS_FROM_AHBL_RHSBL=2.438] 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 SOdswf5HBszG for <notmuch@notmuchmail.org>;\r
16         Sat, 14 Mar 2015 10:04:17 -0700 (PDT)\r
17 Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
18         [87.98.215.224])\r
19         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
20         (No client certificate requested)\r
21         by olra.theworths.org (Postfix) with ESMTPS id 9105B431FD7\r
22         for <notmuch@notmuchmail.org>; Sat, 14 Mar 2015 10:04:16 -0700 (PDT)\r
23 Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
24         4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
25         id 1YWpTL-00026i-2v; Sat, 14 Mar 2015 17:03:35 +0000\r
26 Received: (nullmailer pid 4991 invoked by uid 1000); Sat, 14 Mar 2015\r
27         17:02:41 -0000\r
28 From: David Bremner <david@tethera.net>\r
29 To: notmuch@notmuchmail.org\r
30 Subject: [Patch v4 6/9] lib: add a log function with output to a string in\r
31         notmuch_database_t\r
32 Date: Sat, 14 Mar 2015 18:02:31 +0100\r
33 Message-Id: <1426352554-4383-7-git-send-email-david@tethera.net>\r
34 X-Mailer: git-send-email 2.1.4\r
35 In-Reply-To: <1426352554-4383-1-git-send-email-david@tethera.net>\r
36 References: <1426352554-4383-1-git-send-email-david@tethera.net>\r
37 X-BeenThere: notmuch@notmuchmail.org\r
38 X-Mailman-Version: 2.1.13\r
39 Precedence: list\r
40 List-Id: "Use and development of the notmuch mail system."\r
41         <notmuch.notmuchmail.org>\r
42 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
43         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
44 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
45 List-Post: <mailto:notmuch@notmuchmail.org>\r
46 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
47 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
49 X-List-Received-Date: Sat, 14 Mar 2015 17:04:20 -0000\r
50 \r
51 This is a thin wrapper around the previously implemented string\r
52 logging infrastructure. In the future it could have more configurable\r
53 output options.\r
54 ---\r
55  lib/database.cc       | 14 ++++++++++++++\r
56  lib/notmuch-private.h |  4 ++++\r
57  2 files changed, 18 insertions(+)\r
58 \r
59 diff --git a/lib/database.cc b/lib/database.cc\r
60 index 48a830f..0409128 100644\r
61 --- a/lib/database.cc\r
62 +++ b/lib/database.cc\r
63 @@ -377,6 +377,20 @@ log_to_string (char **str,\r
64      va_end (va_args);\r
65  }\r
66  \r
67 +void\r
68 +_notmuch_database_log (notmuch_database_t *notmuch,\r
69 +                     const char *format,\r
70 +                     ...)\r
71 +{\r
72 +    va_list va_args;\r
73 +\r
74 +    va_start (va_args, format);\r
75 +\r
76 +    vlog_to_string (notmuch, &notmuch->status_string, format, va_args);\r
77 +\r
78 +    va_end (va_args);\r
79 +}\r
80 +\r
81  static void\r
82  find_doc_ids_for_term (notmuch_database_t *notmuch,\r
83                        const char *term,\r
84 diff --git a/lib/notmuch-private.h b/lib/notmuch-private.h\r
85 index 8a1f2fa..7cb6fd4 100644\r
86 --- a/lib/notmuch-private.h\r
87 +++ b/lib/notmuch-private.h\r
88 @@ -190,6 +190,10 @@ _notmuch_message_id_compressed (void *ctx, const char *message_id);\r
89  notmuch_status_t\r
90  _notmuch_database_ensure_writable (notmuch_database_t *notmuch);\r
91  \r
92 +void\r
93 +_notmuch_database_log (notmuch_database_t *notmuch,\r
94 +                      const char *format, ...);\r
95 +\r
96  const char *\r
97  _notmuch_database_relative_path (notmuch_database_t *notmuch,\r
98                                  const char *path);\r
99 -- \r
100 2.1.4\r
101 \r