1 /* notmuch - Not much of an email program, (just index and search)
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_CLIENT_H
22 #define NOTMUCH_CLIENT_H
26 #define _GNU_SOURCE /* for getline */
30 #include <gmime/gmime.h>
34 /* This is separate from notmuch-private.h because we're trying to
35 * keep notmuch.c from looking into any internals, (which helps us
36 * develop notmuch.h into a plausible library interface).
51 #define unused(x) x __attribute__ ((unused))
53 /* There's no point in continuing when we've detected that we've done
54 * something wrong internally (as opposed to the user passing in a
57 * Note that __location__ comes from talloc.h.
59 #define INTERNAL_ERROR(format, ...) \
62 "Internal error: " format " (%s)\n", \
63 ##__VA_ARGS__, __location__); \
67 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
69 #define STRNCMP_LITERAL(var, literal) \
70 strncmp ((var), (literal), sizeof (literal) - 1)
72 typedef void (*add_files_callback_t) (notmuch_message_t *message);
75 int ignore_read_only_directories;
76 int saw_read_only_directory;
82 struct timeval tv_start;
84 add_files_callback_t callback;
88 chomp_newline (char *str)
90 if (str && str[strlen(str)-1] == '\n')
91 str[strlen(str)-1] = '\0';
95 notmuch_dump_command (void *ctx, int argc, char *argv[]);
98 notmuch_new_command (void *ctx, int argc, char *argv[]);
101 notmuch_reply_command (void *ctx, int argc, char *argv[]);
104 notmuch_restore_command (void *ctx, int argc, char *argv[]);
107 notmuch_search_command (void *ctx, int argc, char *argv[]);
110 notmuch_setup_command (void *ctx, int argc, char *argv[]);
113 notmuch_show_command (void *ctx, int argc, char *argv[]);
116 notmuch_tag_command (void *ctx, int argc, char *argv[]);
119 notmuch_time_relative_date (const void *ctx, time_t then);
122 notmuch_time_print_formatted_seconds (double seconds);
125 notmuch_time_elapsed (struct timeval start, struct timeval end);
128 add_files (notmuch_database_t *notmuch, const char *path,
129 add_files_state_t *state);
132 query_string_from_args (void *ctx, int argc, char *argv[]);
135 show_message_body (const char *filename,
136 void (*show_part) (GMimeObject *part, int *part_count));
138 /* notmuch-config.c */
140 typedef struct _notmuch_config notmuch_config_t;
143 notmuch_config_open (void *ctx,
144 const char *filename,
145 notmuch_bool_t *is_new_ret);
148 notmuch_config_close (notmuch_config_t *config);
151 notmuch_config_save (notmuch_config_t *config);
154 notmuch_config_get_database_path (notmuch_config_t *config);
157 notmuch_config_set_database_path (notmuch_config_t *config,
158 const char *database_path);
161 notmuch_config_get_user_name (notmuch_config_t *config);
164 notmuch_config_set_user_name (notmuch_config_t *config,
165 const char *user_name);
168 notmuch_config_get_user_primary_email (notmuch_config_t *config);
171 notmuch_config_set_user_primary_email (notmuch_config_t *config,
172 const char *primary_email);
175 notmuch_config_get_user_other_email (notmuch_config_t *config,
179 notmuch_config_set_user_other_email (notmuch_config_t *config,
180 const char *other_email[],
184 debugger_is_active (void);