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
25 #define _GNU_SOURCE /* for getline */
31 #include <gmime/gmime.h>
35 /* This is separate from notmuch-private.h because we're trying to
36 * keep notmuch.c from looking into any internals, (which helps us
37 * develop notmuch.h into a plausible library interface).
52 #define unused(x) x __attribute__ ((unused))
54 #define STRINGIFY(s) STRINGIFY_(s)
55 #define STRINGIFY_(s) #s
57 typedef struct notmuch_show_format {
58 const char *message_set_start;
59 const char *message_start;
60 void (*message) (const void *ctx,
61 notmuch_message_t *message,
63 const char *header_start;
64 void (*header) (const void *ctx,
65 notmuch_message_t *message);
66 const char *header_end;
67 const char *body_start;
68 void (*part_start) (GMimeObject *part,
70 void (*part_encstatus) (int status);
71 void (*part_sigstatus) (const GMimeSignatureValidity* validity);
72 void (*part_content) (GMimeObject *part);
73 void (*part_end) (GMimeObject *part);
76 const char *message_end;
77 const char *message_set_sep;
78 const char *message_set_end;
79 } notmuch_show_format_t;
81 typedef struct notmuch_show_params {
85 GMimeCipherContext* cryptoctx;
87 } notmuch_show_params_t;
89 /* There's no point in continuing when we've detected that we've done
90 * something wrong internally (as opposed to the user passing in a
93 * Note that __location__ comes from talloc.h.
95 #define INTERNAL_ERROR(format, ...) \
98 "Internal error: " format " (%s)\n", \
99 ##__VA_ARGS__, __location__); \
103 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
105 #define STRNCMP_LITERAL(var, literal) \
106 strncmp ((var), (literal), sizeof (literal) - 1)
109 chomp_newline (char *str)
111 if (str && str[strlen(str)-1] == '\n')
112 str[strlen(str)-1] = '\0';
116 notmuch_count_command (void *ctx, int argc, char *argv[]);
119 notmuch_dump_command (void *ctx, int argc, char *argv[]);
122 notmuch_new_command (void *ctx, int argc, char *argv[]);
125 notmuch_reply_command (void *ctx, int argc, char *argv[]);
128 notmuch_restore_command (void *ctx, int argc, char *argv[]);
131 notmuch_search_command (void *ctx, int argc, char *argv[]);
134 notmuch_setup_command (void *ctx, int argc, char *argv[]);
137 notmuch_show_command (void *ctx, int argc, char *argv[]);
140 notmuch_tag_command (void *ctx, int argc, char *argv[]);
143 notmuch_search_tags_command (void *ctx, int argc, char *argv[]);
146 notmuch_cat_command (void *ctx, int argc, char *argv[]);
149 notmuch_config_command (void *ctx, int argc, char *argv[]);
152 notmuch_time_relative_date (const void *ctx, time_t then);
155 notmuch_time_print_formatted_seconds (double seconds);
158 notmuch_time_elapsed (struct timeval start, struct timeval end);
161 query_string_from_args (void *ctx, int argc, char *argv[]);
164 show_message_body (const char *filename,
165 const notmuch_show_format_t *format,
166 notmuch_show_params_t *params);
169 show_one_part (const char *filename, int part);
172 json_quote_chararray (const void *ctx, const char *str, const size_t len);
175 json_quote_str (const void *ctx, const char *str);
177 /* notmuch-config.c */
179 typedef struct _notmuch_config notmuch_config_t;
182 notmuch_config_open (void *ctx,
183 const char *filename,
184 notmuch_bool_t *is_new_ret);
187 notmuch_config_close (notmuch_config_t *config);
190 notmuch_config_save (notmuch_config_t *config);
193 notmuch_config_get_database_path (notmuch_config_t *config);
196 notmuch_config_set_database_path (notmuch_config_t *config,
197 const char *database_path);
200 notmuch_config_get_user_name (notmuch_config_t *config);
203 notmuch_config_set_user_name (notmuch_config_t *config,
204 const char *user_name);
207 notmuch_config_get_user_primary_email (notmuch_config_t *config);
210 notmuch_config_set_user_primary_email (notmuch_config_t *config,
211 const char *primary_email);
214 notmuch_config_get_user_other_email (notmuch_config_t *config,
218 notmuch_config_set_user_other_email (notmuch_config_t *config,
219 const char *other_email[],
223 notmuch_config_get_new_tags (notmuch_config_t *config,
226 notmuch_config_set_new_tags (notmuch_config_t *config,
227 const char *new_tags[],
231 notmuch_config_get_maildir_synchronize_flags (notmuch_config_t *config);
234 notmuch_config_set_maildir_synchronize_flags (notmuch_config_t *config,
235 notmuch_bool_t synchronize_flags);
238 debugger_is_active (void);