]> git.notmuchmail.org Git - notmuch/blob - bindings/python-cffi/notmuch2/_build.py
bindings/notmuch2: add missing crypto error status codes
[notmuch] / bindings / python-cffi / notmuch2 / _build.py
1 import cffi
2
3
4 ffibuilder = cffi.FFI()
5 ffibuilder.set_source(
6     'notmuch2._capi',
7     r"""
8     #include <stdlib.h>
9     #include <time.h>
10     #include <notmuch.h>
11
12     #if LIBNOTMUCH_MAJOR_VERSION < 5
13         #error libnotmuch version not supported by notmuch2 python bindings
14     #endif
15     #if LIBNOTMUCH_MINOR_VERSION < 1
16         #ERROR libnotmuch  version < 5.1 not supported
17     #endif
18     """,
19     include_dirs=['../../lib'],
20     library_dirs=['../../lib'],
21     libraries=['notmuch'],
22 )
23 ffibuilder.cdef(
24     r"""
25     void free(void *ptr);
26     typedef int... time_t;
27
28     #define LIBNOTMUCH_MAJOR_VERSION ...
29     #define LIBNOTMUCH_MINOR_VERSION ...
30     #define LIBNOTMUCH_MICRO_VERSION ...
31
32     #define NOTMUCH_TAG_MAX ...
33
34     typedef enum _notmuch_status {
35         NOTMUCH_STATUS_SUCCESS = 0,
36         NOTMUCH_STATUS_OUT_OF_MEMORY,
37         NOTMUCH_STATUS_READ_ONLY_DATABASE,
38         NOTMUCH_STATUS_XAPIAN_EXCEPTION,
39         NOTMUCH_STATUS_FILE_ERROR,
40         NOTMUCH_STATUS_FILE_NOT_EMAIL,
41         NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID,
42         NOTMUCH_STATUS_NULL_POINTER,
43         NOTMUCH_STATUS_TAG_TOO_LONG,
44         NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW,
45         NOTMUCH_STATUS_UNBALANCED_ATOMIC,
46         NOTMUCH_STATUS_UNSUPPORTED_OPERATION,
47         NOTMUCH_STATUS_UPGRADE_REQUIRED,
48         NOTMUCH_STATUS_PATH_ERROR,
49         NOTMUCH_STATUS_ILLEGAL_ARGUMENT,
50         NOTMUCH_STATUS_MALFORMED_CRYPTO_PROTOCOL,
51         NOTMUCH_STATUS_FAILED_CRYPTO_CONTEXT_CREATION,
52         NOTMUCH_STATUS_UNKNOWN_CRYPTO_PROTOCOL,
53         NOTMUCH_STATUS_LAST_STATUS
54     } notmuch_status_t;
55     typedef enum {
56         NOTMUCH_DATABASE_MODE_READ_ONLY = 0,
57         NOTMUCH_DATABASE_MODE_READ_WRITE
58     } notmuch_database_mode_t;
59     typedef int notmuch_bool_t;
60     typedef enum _notmuch_message_flag {
61         NOTMUCH_MESSAGE_FLAG_MATCH,
62         NOTMUCH_MESSAGE_FLAG_EXCLUDED,
63         NOTMUCH_MESSAGE_FLAG_GHOST,
64     } notmuch_message_flag_t;
65     typedef enum {
66         NOTMUCH_SORT_OLDEST_FIRST,
67         NOTMUCH_SORT_NEWEST_FIRST,
68         NOTMUCH_SORT_MESSAGE_ID,
69         NOTMUCH_SORT_UNSORTED
70     } notmuch_sort_t;
71     typedef enum {
72         NOTMUCH_EXCLUDE_FLAG,
73         NOTMUCH_EXCLUDE_TRUE,
74         NOTMUCH_EXCLUDE_FALSE,
75         NOTMUCH_EXCLUDE_ALL
76     } notmuch_exclude_t;
77     typedef enum {
78         NOTMUCH_DECRYPT_FALSE,
79         NOTMUCH_DECRYPT_TRUE,
80         NOTMUCH_DECRYPT_AUTO,
81         NOTMUCH_DECRYPT_NOSTASH,
82     } notmuch_decryption_policy_t;
83
84     // These are fully opaque types for us, we only ever use pointers.
85     typedef struct _notmuch_database notmuch_database_t;
86     typedef struct _notmuch_query notmuch_query_t;
87     typedef struct _notmuch_threads notmuch_threads_t;
88     typedef struct _notmuch_thread notmuch_thread_t;
89     typedef struct _notmuch_messages notmuch_messages_t;
90     typedef struct _notmuch_message notmuch_message_t;
91     typedef struct _notmuch_tags notmuch_tags_t;
92     typedef struct _notmuch_string_map_iterator notmuch_message_properties_t;
93     typedef struct _notmuch_directory notmuch_directory_t;
94     typedef struct _notmuch_filenames notmuch_filenames_t;
95     typedef struct _notmuch_config_list notmuch_config_list_t;
96     typedef struct _notmuch_indexopts notmuch_indexopts_t;
97
98     const char *
99     notmuch_status_to_string (notmuch_status_t status);
100
101     notmuch_status_t
102     notmuch_database_create_verbose (const char *path,
103                                      notmuch_database_t **database,
104                                      char **error_message);
105     notmuch_status_t
106     notmuch_database_create (const char *path, notmuch_database_t **database);
107     notmuch_status_t
108     notmuch_database_open_verbose (const char *path,
109                                    notmuch_database_mode_t mode,
110                                    notmuch_database_t **database,
111                                    char **error_message);
112     notmuch_status_t
113     notmuch_database_open (const char *path,
114                            notmuch_database_mode_t mode,
115                            notmuch_database_t **database);
116     notmuch_status_t
117     notmuch_database_close (notmuch_database_t *database);
118     notmuch_status_t
119     notmuch_database_destroy (notmuch_database_t *database);
120     const char *
121     notmuch_database_get_path (notmuch_database_t *database);
122     unsigned int
123     notmuch_database_get_version (notmuch_database_t *database);
124     notmuch_bool_t
125     notmuch_database_needs_upgrade (notmuch_database_t *database);
126     notmuch_status_t
127     notmuch_database_begin_atomic (notmuch_database_t *notmuch);
128     notmuch_status_t
129     notmuch_database_end_atomic (notmuch_database_t *notmuch);
130     unsigned long
131     notmuch_database_get_revision (notmuch_database_t *notmuch,
132                                    const char **uuid);
133     notmuch_status_t
134     notmuch_database_index_file (notmuch_database_t *database,
135                                  const char *filename,
136                                  notmuch_indexopts_t *indexopts,
137                                  notmuch_message_t **message);
138     notmuch_status_t
139     notmuch_database_remove_message (notmuch_database_t *database,
140                                      const char *filename);
141     notmuch_status_t
142     notmuch_database_find_message (notmuch_database_t *database,
143                                    const char *message_id,
144                                    notmuch_message_t **message);
145     notmuch_status_t
146     notmuch_database_find_message_by_filename (notmuch_database_t *notmuch,
147                                                const char *filename,
148                                                notmuch_message_t **message);
149     notmuch_tags_t *
150     notmuch_database_get_all_tags (notmuch_database_t *db);
151
152     notmuch_query_t *
153     notmuch_query_create (notmuch_database_t *database,
154                           const char *query_string);
155     const char *
156     notmuch_query_get_query_string (const notmuch_query_t *query);
157     notmuch_database_t *
158     notmuch_query_get_database (const notmuch_query_t *query);
159     void
160     notmuch_query_set_omit_excluded (notmuch_query_t *query,
161                                      notmuch_exclude_t omit_excluded);
162     void
163     notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort);
164     notmuch_sort_t
165     notmuch_query_get_sort (const notmuch_query_t *query);
166     notmuch_status_t
167     notmuch_query_add_tag_exclude (notmuch_query_t *query, const char *tag);
168     notmuch_status_t
169     notmuch_query_search_threads (notmuch_query_t *query,
170                                   notmuch_threads_t **out);
171     notmuch_status_t
172     notmuch_query_search_messages (notmuch_query_t *query,
173                                    notmuch_messages_t **out);
174     notmuch_status_t
175     notmuch_query_count_messages (notmuch_query_t *query, unsigned int *count);
176     notmuch_status_t
177     notmuch_query_count_threads (notmuch_query_t *query, unsigned *count);
178     void
179     notmuch_query_destroy (notmuch_query_t *query);
180
181     notmuch_bool_t
182     notmuch_threads_valid (notmuch_threads_t *threads);
183     notmuch_thread_t *
184     notmuch_threads_get (notmuch_threads_t *threads);
185     void
186     notmuch_threads_move_to_next (notmuch_threads_t *threads);
187     void
188     notmuch_threads_destroy (notmuch_threads_t *threads);
189
190     const char *
191     notmuch_thread_get_thread_id (notmuch_thread_t *thread);
192     notmuch_messages_t *
193     notmuch_message_get_replies (notmuch_message_t *message);
194     int
195     notmuch_thread_get_total_messages (notmuch_thread_t *thread);
196     notmuch_messages_t *
197     notmuch_thread_get_toplevel_messages (notmuch_thread_t *thread);
198     notmuch_messages_t *
199     notmuch_thread_get_messages (notmuch_thread_t *thread);
200     int
201     notmuch_thread_get_matched_messages (notmuch_thread_t *thread);
202     const char *
203     notmuch_thread_get_authors (notmuch_thread_t *thread);
204     const char *
205     notmuch_thread_get_subject (notmuch_thread_t *thread);
206     time_t
207     notmuch_thread_get_oldest_date (notmuch_thread_t *thread);
208     time_t
209     notmuch_thread_get_newest_date (notmuch_thread_t *thread);
210     notmuch_tags_t *
211     notmuch_thread_get_tags (notmuch_thread_t *thread);
212     void
213     notmuch_thread_destroy (notmuch_thread_t *thread);
214
215     notmuch_bool_t
216     notmuch_messages_valid (notmuch_messages_t *messages);
217     notmuch_message_t *
218     notmuch_messages_get (notmuch_messages_t *messages);
219     void
220     notmuch_messages_move_to_next (notmuch_messages_t *messages);
221     void
222     notmuch_messages_destroy (notmuch_messages_t *messages);
223     notmuch_tags_t *
224     notmuch_messages_collect_tags (notmuch_messages_t *messages);
225
226     const char *
227     notmuch_message_get_message_id (notmuch_message_t *message);
228     const char *
229     notmuch_message_get_thread_id (notmuch_message_t *message);
230     const char *
231     notmuch_message_get_filename (notmuch_message_t *message);
232     notmuch_filenames_t *
233     notmuch_message_get_filenames (notmuch_message_t *message);
234     notmuch_bool_t
235     notmuch_message_get_flag (notmuch_message_t *message,
236                               notmuch_message_flag_t flag);
237     void
238     notmuch_message_set_flag (notmuch_message_t *message,
239                               notmuch_message_flag_t flag,
240                               notmuch_bool_t value);
241     time_t
242     notmuch_message_get_date  (notmuch_message_t *message);
243     const char *
244     notmuch_message_get_header (notmuch_message_t *message,
245                                 const char *header);
246     notmuch_tags_t *
247     notmuch_message_get_tags (notmuch_message_t *message);
248     notmuch_status_t
249     notmuch_message_add_tag (notmuch_message_t *message, const char *tag);
250     notmuch_status_t
251     notmuch_message_remove_tag (notmuch_message_t *message, const char *tag);
252     notmuch_status_t
253     notmuch_message_remove_all_tags (notmuch_message_t *message);
254     notmuch_status_t
255     notmuch_message_maildir_flags_to_tags (notmuch_message_t *message);
256     notmuch_status_t
257     notmuch_message_tags_to_maildir_flags (notmuch_message_t *message);
258     notmuch_status_t
259     notmuch_message_freeze (notmuch_message_t *message);
260     notmuch_status_t
261     notmuch_message_thaw (notmuch_message_t *message);
262     notmuch_status_t
263     notmuch_message_get_property (notmuch_message_t *message,
264                                   const char *key, const char **value);
265     notmuch_status_t
266     notmuch_message_add_property (notmuch_message_t *message,
267                                   const char *key, const char *value);
268     notmuch_status_t
269     notmuch_message_remove_property (notmuch_message_t *message,
270                                      const char *key, const char *value);
271     notmuch_status_t
272     notmuch_message_remove_all_properties (notmuch_message_t *message,
273                                            const char *key);
274     notmuch_message_properties_t *
275     notmuch_message_get_properties (notmuch_message_t *message,
276                                     const char *key, notmuch_bool_t exact);
277     notmuch_bool_t
278     notmuch_message_properties_valid (notmuch_message_properties_t
279                                           *properties);
280     void
281     notmuch_message_properties_move_to_next (notmuch_message_properties_t
282                                                  *properties);
283     const char *
284     notmuch_message_properties_key (notmuch_message_properties_t *properties);
285     const char *
286     notmuch_message_properties_value (notmuch_message_properties_t
287                                           *properties);
288     void
289     notmuch_message_properties_destroy (notmuch_message_properties_t
290                                             *properties);
291     void
292     notmuch_message_destroy (notmuch_message_t *message);
293
294     notmuch_bool_t
295     notmuch_tags_valid (notmuch_tags_t *tags);
296     const char *
297     notmuch_tags_get (notmuch_tags_t *tags);
298     void
299     notmuch_tags_move_to_next (notmuch_tags_t *tags);
300     void
301     notmuch_tags_destroy (notmuch_tags_t *tags);
302
303     notmuch_bool_t
304     notmuch_filenames_valid (notmuch_filenames_t *filenames);
305     const char *
306     notmuch_filenames_get (notmuch_filenames_t *filenames);
307     void
308     notmuch_filenames_move_to_next (notmuch_filenames_t *filenames);
309     void
310     notmuch_filenames_destroy (notmuch_filenames_t *filenames);
311     notmuch_indexopts_t *
312     notmuch_database_get_default_indexopts (notmuch_database_t *db);
313     notmuch_status_t
314     notmuch_indexopts_set_decrypt_policy (notmuch_indexopts_t *indexopts,
315                                           notmuch_decryption_policy_t decrypt_policy);
316     notmuch_decryption_policy_t
317     notmuch_indexopts_get_decrypt_policy (const notmuch_indexopts_t *indexopts);
318     void
319     notmuch_indexopts_destroy (notmuch_indexopts_t *options);
320
321     notmuch_status_t
322     notmuch_database_set_config (notmuch_database_t *db, const char *key, const char *value);
323     notmuch_status_t
324     notmuch_database_get_config (notmuch_database_t *db, const char *key, char **value);
325     notmuch_status_t
326     notmuch_database_get_config_list (notmuch_database_t *db, const char *prefix, notmuch_config_list_t **out);
327     notmuch_bool_t
328     notmuch_config_list_valid (notmuch_config_list_t *config_list);
329     const char *
330     notmuch_config_list_key (notmuch_config_list_t *config_list);
331     const char *
332     notmuch_config_list_value (notmuch_config_list_t *config_list);
333     void
334     notmuch_config_list_move_to_next (notmuch_config_list_t *config_list);
335     void
336     notmuch_config_list_destroy (notmuch_config_list_t *config_list);
337     """
338 )
339
340
341 if __name__ == '__main__':
342     ffibuilder.compile(verbose=True)