1 /* notmuch-private.h - Internal interfaces for notmuch.
3 * Copyright © 2009 Carl Worth
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see http://www.gnu.org/licenses/ .
18 * Author: Carl Worth <cworth@cworth.org>
21 #ifndef NOTMUCH_PRIVATE_H
22 #define NOTMUCH_PRIVATE_H
25 #define _GNU_SOURCE /* For getline and asprintf */
35 #include <sys/types.h>
50 # define DEBUG_DATABASE_SANITY 1
51 # define DEBUG_QUERY 1
54 #define COMPILE_TIME_ASSERT(pred) ((void)sizeof(char[1 - 2*!(pred)]))
56 /* There's no point in continuing when we've detected that we've done
57 * something wrong internally (as opposed to the user passing in a
60 * Note that PRINTF_ATTRIBUTE comes from talloc.h
63 _internal_error (const char *format, ...) PRINTF_ATTRIBUTE (1, 2);
65 /* There's no point in continuing when we've detected that we've done
66 * something wrong internally (as opposed to the user passing in a
69 * Note that __location__ comes from talloc.h.
71 #define INTERNAL_ERROR(format, ...) \
72 _internal_error (format " (%s).\n", \
73 ##__VA_ARGS__, __location__)
75 #define unused(x) x __attribute__ ((unused))
77 /* Thanks to Andrew Tridgell's (SAMBA's) talloc for this definition of
78 * unlikely. The talloc source code comes to us via the GNU LGPL v. 3.
80 /* these macros gain us a few percent of speed on gcc */
82 /* the strange !! is to ensure that __builtin_expect() takes either 0 or 1
83 as its first argument */
85 #define likely(x) __builtin_expect(!!(x), 1)
88 #define unlikely(x) __builtin_expect(!!(x), 0)
95 #define unlikely(x) (x)
100 NOTMUCH_VALUE_TIMESTAMP = 0,
101 NOTMUCH_VALUE_MESSAGE_ID
104 /* Xapian (with flint backend) complains if we provide a term longer
105 * than this, but I haven't yet found a way to query the limit
106 * programmatically. */
107 #define NOTMUCH_TERM_MAX 245
109 typedef enum _notmuch_private_status {
110 /* First, copy all the public status values. */
111 NOTMUCH_PRIVATE_STATUS_SUCCESS = NOTMUCH_STATUS_SUCCESS,
112 NOTMUCH_PRIVATE_STATUS_OUT_OF_MEMORY = NOTMUCH_STATUS_OUT_OF_MEMORY,
113 NOTMUCH_PRIVATE_STATUS_READONLY_DATABASE = NOTMUCH_STATUS_READONLY_DATABASE,
114 NOTMUCH_PRIVATE_STATUS_XAPIAN_EXCEPTION = NOTMUCH_STATUS_XAPIAN_EXCEPTION,
115 NOTMUCH_PRIVATE_STATUS_FILE_NOT_EMAIL = NOTMUCH_STATUS_FILE_NOT_EMAIL,
116 NOTMUCH_PRIVATE_STATUS_NULL_POINTER = NOTMUCH_STATUS_NULL_POINTER,
117 NOTMUCH_PRIVATE_STATUS_TAG_TOO_LONG = NOTMUCH_STATUS_TAG_TOO_LONG,
119 /* Then add our own private values. */
120 NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG,
121 NOTMUCH_PRIVATE_STATUS_NO_DOCUMENT_FOUND,
123 NOTMUCH_PRIVATE_STATUS_LAST_STATUS
124 } notmuch_private_status_t;
126 /* Coerce a notmuch_private_status_t value to a notmuch_status_t
127 * value, generating an internal error if the private value is equal
128 * to or greater than NOTMUCH_STATUS_LAST_STATUS. (The idea here is
129 * that the caller has previously handled any expected
130 * notmuch_private_status_t values.)
132 #define COERCE_STATUS(private_status, format, ...) \
133 ((private_status >= (notmuch_private_status_t) NOTMUCH_STATUS_LAST_STATUS)\
135 (notmuch_status_t) _internal_error (format " (%s).\n", \
139 (notmuch_status_t) private_status)
143 /* Lookup a prefix value by name.
145 * XXX: This should really be static inside of message.cc, and we can
146 * do that once we convert database.cc to use the
147 * _notmuch_message_add/remove_term functions. */
149 _find_prefix (const char *name);
154 _notmuch_thread_create (void *ctx,
155 notmuch_database_t *notmuch,
156 const char *thread_id,
157 const char *query_string);
162 _notmuch_message_create (const void *talloc_owner,
163 notmuch_database_t *notmuch,
165 notmuch_private_status_t *status);
168 _notmuch_message_create_for_message_id (notmuch_database_t *notmuch,
169 const char *message_id,
170 notmuch_private_status_t *status);
173 _notmuch_message_get_in_reply_to (notmuch_message_t *message);
175 notmuch_private_status_t
176 _notmuch_message_add_term (notmuch_message_t *message,
177 const char *prefix_name,
180 notmuch_private_status_t
181 _notmuch_message_remove_term (notmuch_message_t *message,
182 const char *prefix_name,
185 notmuch_private_status_t
186 _notmuch_message_gen_terms (notmuch_message_t *message,
187 const char *prefix_name,
191 _notmuch_message_set_filename (notmuch_message_t *message,
192 const char *filename);
195 _notmuch_message_add_thread_id (notmuch_message_t *message,
196 const char *thread_id);
199 _notmuch_message_ensure_thread_id (notmuch_message_t *message);
202 _notmuch_message_set_date (notmuch_message_t *message,
206 _notmuch_message_sync (notmuch_message_t *message);
209 _notmuch_message_close (notmuch_message_t *message);
214 _notmuch_message_index_file (notmuch_message_t *message,
215 const char *filename);
219 /* XXX: I haven't decided yet whether these will actually get exported
220 * into the public interface in notmuch.h
223 typedef struct _notmuch_message_file notmuch_message_file_t;
225 /* Open a file containing a single email message.
227 * The caller should call notmuch_message_close when done with this.
229 * Returns NULL if any error occurs.
231 notmuch_message_file_t *
232 notmuch_message_file_open (const char *filename);
234 /* Like notmuch_message_file_open but with 'ctx' as the talloc owner. */
235 notmuch_message_file_t *
236 _notmuch_message_file_open_ctx (void *ctx, const char *filename);
238 /* Close a notmuch message previously opened with notmuch_message_open. */
240 notmuch_message_file_close (notmuch_message_file_t *message);
242 /* Restrict 'message' to only save the named headers.
244 * When the caller is only interested in a short list of headers,
245 * known in advance, calling this function can avoid wasted time and
246 * memory parsing/saving header values that will never be needed.
248 * The variable arguments should be a list of const char * with a
249 * final '(const char *) NULL' to terminate the list.
251 * If this function is called, it must be called before any calls to
252 * notmuch_message_get_header for this message.
254 * After calling this function, if notmuch_message_get_header is
255 * called with a header name not in this list, then NULL will be
256 * returned even if that header exists in the actual message.
259 notmuch_message_file_restrict_headers (notmuch_message_file_t *message, ...);
261 /* Identical to notmuch_message_restrict_headers but accepting a va_list. */
263 notmuch_message_file_restrict_headersv (notmuch_message_file_t *message,
266 /* Get the value of the specified header from the message.
268 * The header name is case insensitive.
270 * The returned value is owned by the notmuch message and is valid
271 * only until the message is closed. The caller should copy it if
272 * needing to modify the value or to hold onto it for longer.
274 * Returns NULL if the message does not contain a header line matching
278 notmuch_message_file_get_header (notmuch_message_file_t *message,
283 typedef struct _notmuch_message_node {
284 notmuch_message_t *message;
285 struct _notmuch_message_node *next;
286 } notmuch_message_node_t;
288 typedef struct _notmuch_message_list {
289 notmuch_message_node_t *head;
290 notmuch_message_node_t **tail;
291 } notmuch_message_list_t;
293 notmuch_message_list_t *
294 _notmuch_message_list_create (const void *ctx);
297 _notmuch_message_list_append (notmuch_message_list_t *list,
298 notmuch_message_node_t *node);
301 _notmuch_message_list_add_message (notmuch_message_list_t *list,
302 notmuch_message_t *message);
305 _notmuch_messages_create (notmuch_message_list_t *list);
310 _notmuch_message_add_reply (notmuch_message_t *message,
311 notmuch_message_node_t *reply);
315 /* Parse an RFC 8222 date string to a time_t value.
317 * The tz_offset argument can be used to also obtain the time-zone
318 * offset, (but can be NULL if the call is not interested in that).
320 * Returns 0 on error.
323 notmuch_parse_date (const char *str, int *tz_offset);
328 notmuch_sha1_of_string (const char *str);
331 notmuch_sha1_of_file (const char *filename);
336 _notmuch_tags_create (void *ctx);
339 _notmuch_tags_add_tag (notmuch_tags_t *tags, const char *tag);
342 _notmuch_tags_prepare_iterator (notmuch_tags_t *tags);