]> git.notmuchmail.org Git - notmuch/blob - notmuch-client.h
dc4ed7aafd03bcdbff1178937e02772789a06188
[notmuch] / notmuch-client.h
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2009 Carl Worth
4  *
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.
9  *
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.
14  *
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/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 #ifndef NOTMUCH_CLIENT_H
22 #define NOTMUCH_CLIENT_H
23
24 #ifndef _GNU_SOURCE
25 #define _GNU_SOURCE /* for getline */
26 #endif
27 #include <stdio.h>
28
29 #include "compat.h"
30
31 #include <gmime/gmime.h>
32
33 #include "notmuch.h"
34
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).
38  */
39 #include "xutil.h"
40
41 #include <stddef.h>
42 #include <string.h>
43 #include <sys/stat.h>
44 #include <sys/time.h>
45 #include <unistd.h>
46 #include <dirent.h>
47 #include <errno.h>
48 #include <signal.h>
49
50 #include <talloc.h>
51
52 #define unused(x) x __attribute__ ((unused))
53
54 #define STRINGIFY(s) STRINGIFY_(s)
55 #define STRINGIFY_(s) #s
56
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,
62                      int indent);
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,
69                         int *part_count);
70     void (*part_sigstatus) (const GMimeSignatureValidity* validity);
71     void (*part_content) (GMimeObject *part);
72     void (*part_end) (GMimeObject *part);
73     const char *part_sep;
74     const char *body_end;
75     const char *message_end;
76     const char *message_set_sep;
77     const char *message_set_end;
78 } notmuch_show_format_t;
79
80 typedef struct notmuch_show_params {
81     int entire_thread;
82     int raw;
83     int part;
84     GMimeCipherContext* cryptoctx;
85 } notmuch_show_params_t;
86
87 /* There's no point in continuing when we've detected that we've done
88  * something wrong internally (as opposed to the user passing in a
89  * bogus value).
90  *
91  * Note that __location__ comes from talloc.h.
92  */
93 #define INTERNAL_ERROR(format, ...)                     \
94     do {                                                \
95         fprintf(stderr,                                 \
96                 "Internal error: " format " (%s)\n",    \
97                 ##__VA_ARGS__, __location__);           \
98         exit (1);                                       \
99     } while (0)
100
101 #define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
102
103 #define STRNCMP_LITERAL(var, literal) \
104     strncmp ((var), (literal), sizeof (literal) - 1)
105
106 static inline void
107 chomp_newline (char *str)
108 {
109     if (str && str[strlen(str)-1] == '\n')
110         str[strlen(str)-1] = '\0';
111 }
112
113 int
114 notmuch_count_command (void *ctx, int argc, char *argv[]);
115
116 int
117 notmuch_dump_command (void *ctx, int argc, char *argv[]);
118
119 int
120 notmuch_new_command (void *ctx, int argc, char *argv[]);
121
122 int
123 notmuch_reply_command (void *ctx, int argc, char *argv[]);
124
125 int
126 notmuch_restore_command (void *ctx, int argc, char *argv[]);
127
128 int
129 notmuch_search_command (void *ctx, int argc, char *argv[]);
130
131 int
132 notmuch_setup_command (void *ctx, int argc, char *argv[]);
133
134 int
135 notmuch_show_command (void *ctx, int argc, char *argv[]);
136
137 int
138 notmuch_tag_command (void *ctx, int argc, char *argv[]);
139
140 int
141 notmuch_search_tags_command (void *ctx, int argc, char *argv[]);
142
143 int
144 notmuch_cat_command (void *ctx, int argc, char *argv[]);
145
146 int
147 notmuch_config_command (void *ctx, int argc, char *argv[]);
148
149 const char *
150 notmuch_time_relative_date (const void *ctx, time_t then);
151
152 void
153 notmuch_time_print_formatted_seconds (double seconds);
154
155 double
156 notmuch_time_elapsed (struct timeval start, struct timeval end);
157
158 char *
159 query_string_from_args (void *ctx, int argc, char *argv[]);
160
161 notmuch_status_t
162 show_message_body (const char *filename,
163                    const notmuch_show_format_t *format,
164                    notmuch_show_params_t *params);
165
166 notmuch_status_t
167 show_one_part (const char *filename, int part);
168
169 char *
170 json_quote_chararray (const void *ctx, const char *str, const size_t len);
171
172 char *
173 json_quote_str (const void *ctx, const char *str);
174
175 /* notmuch-config.c */
176
177 typedef struct _notmuch_config notmuch_config_t;
178
179 notmuch_config_t *
180 notmuch_config_open (void *ctx,
181                      const char *filename,
182                      notmuch_bool_t *is_new_ret);
183
184 void
185 notmuch_config_close (notmuch_config_t *config);
186
187 int
188 notmuch_config_save (notmuch_config_t *config);
189
190 const char *
191 notmuch_config_get_database_path (notmuch_config_t *config);
192
193 void
194 notmuch_config_set_database_path (notmuch_config_t *config,
195                                   const char *database_path);
196
197 const char *
198 notmuch_config_get_user_name (notmuch_config_t *config);
199
200 void
201 notmuch_config_set_user_name (notmuch_config_t *config,
202                               const char *user_name);
203
204 const char *
205 notmuch_config_get_user_primary_email (notmuch_config_t *config);
206
207 void
208 notmuch_config_set_user_primary_email (notmuch_config_t *config,
209                                        const char *primary_email);
210
211 const char **
212 notmuch_config_get_user_other_email (notmuch_config_t *config,
213                                      size_t *length);
214
215 void
216 notmuch_config_set_user_other_email (notmuch_config_t *config,
217                                      const char *other_email[],
218                                      size_t length);
219
220 const char **
221 notmuch_config_get_new_tags (notmuch_config_t *config,
222                              size_t *length);
223 void
224 notmuch_config_set_new_tags (notmuch_config_t *config,
225                              const char *new_tags[],
226                              size_t length);
227
228 notmuch_bool_t
229 notmuch_config_get_maildir_synchronize_flags (notmuch_config_t *config);
230
231 void
232 notmuch_config_set_maildir_synchronize_flags (notmuch_config_t *config,
233                                               notmuch_bool_t synchronize_flags);
234
235 notmuch_bool_t
236 debugger_is_active (void);
237
238 GType
239 notmuch_gmime_session_get_type (void);
240
241 #endif