]> git.notmuchmail.org Git - notmuch/blob - lib/open.cc
lib: save path of xapian database in notmuch struct.
[notmuch] / lib / open.cc
1 #include <unistd.h>
2 #include "database-private.h"
3 #include "parse-time-vrp.h"
4
5 #if HAVE_XAPIAN_DB_RETRY_LOCK
6 #define DB_ACTION (Xapian::DB_CREATE_OR_OPEN | Xapian::DB_RETRY_LOCK)
7 #else
8 #define DB_ACTION Xapian::DB_CREATE_OR_OPEN
9 #endif
10
11 notmuch_status_t
12 notmuch_database_open (const char *path,
13                        notmuch_database_mode_t mode,
14                        notmuch_database_t **database)
15 {
16     char *status_string = NULL;
17     notmuch_status_t status;
18
19     status = notmuch_database_open_verbose (path, mode, database,
20                                             &status_string);
21
22     if (status_string) {
23         fputs (status_string, stderr);
24         free (status_string);
25     }
26
27     return status;
28 }
29
30 notmuch_status_t
31 notmuch_database_open_verbose (const char *path,
32                                notmuch_database_mode_t mode,
33                                notmuch_database_t **database,
34                                char **status_string)
35 {
36     return notmuch_database_open_with_config (path, mode, "", NULL,
37                                               database, status_string);
38 }
39
40 static const char *
41 _xdg_dir (void *ctx,
42           const char *xdg_root_variable,
43           const char *xdg_prefix,
44           const char *profile_name)
45 {
46     const char *xdg_root = getenv (xdg_root_variable);
47
48     if (! xdg_root) {
49         const char *home = getenv ("HOME");
50
51         if (! home) return NULL;
52
53         xdg_root = talloc_asprintf (ctx,
54                                     "%s/%s",
55                                     home,
56                                     xdg_prefix);
57     }
58
59     if (! profile_name)
60         profile_name = getenv ("NOTMUCH_PROFILE");
61
62     if (! profile_name)
63         profile_name = "default";
64
65     return talloc_asprintf (ctx,
66                             "%s/notmuch/%s",
67                             xdg_root,
68                             profile_name);
69 }
70
71 static notmuch_status_t
72 _choose_hook_dir (notmuch_database_t *notmuch,
73                   const char *profile,
74                   char **message)
75 {
76     const char *config;
77     const char *hook_dir;
78     struct stat st;
79     int err;
80
81     hook_dir = notmuch_config_get (notmuch, NOTMUCH_CONFIG_HOOK_DIR);
82
83     if (hook_dir)
84         return NOTMUCH_STATUS_SUCCESS;
85
86     config = _xdg_dir (notmuch, "XDG_CONFIG_HOME", ".config", profile);
87     if (! config)
88         return NOTMUCH_STATUS_PATH_ERROR;
89
90     hook_dir = talloc_asprintf (notmuch, "%s/hooks", config);
91
92     err = stat (hook_dir, &st);
93     if (err) {
94         if (errno == ENOENT) {
95             const char *database_path = notmuch_database_get_path (notmuch);
96             hook_dir = talloc_asprintf (notmuch, "%s/.notmuch/hooks", database_path);
97         } else {
98             IGNORE_RESULT (asprintf (message, "Error: Cannot stat %s: %s.\n",
99                                      hook_dir, strerror (errno)));
100             return NOTMUCH_STATUS_FILE_ERROR;
101         }
102     }
103
104     _notmuch_config_cache (notmuch, NOTMUCH_CONFIG_HOOK_DIR, hook_dir);
105
106     return NOTMUCH_STATUS_SUCCESS;
107 }
108
109 static notmuch_status_t
110 _load_key_file (const char *path,
111                 const char *profile,
112                 GKeyFile **key_file)
113 {
114     notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
115     void *local = talloc_new (NULL);
116
117     if (path && EMPTY_STRING (path))
118         goto DONE;
119
120     if (! path)
121         path = getenv ("NOTMUCH_CONFIG");
122
123     if (! path) {
124         const char *dir = _xdg_dir (local, "XDG_CONFIG_HOME", ".config", profile);
125
126         if (dir) {
127             path = talloc_asprintf (local, "%s/config", dir);
128             if (access (path, R_OK) != 0)
129                 path = NULL;
130         }
131     }
132
133     if (! path) {
134         const char *home = getenv ("HOME");
135
136         path = talloc_asprintf (local, "%s/.notmuch-config", home);
137
138         if (! profile)
139             profile = getenv ("NOTMUCH_PROFILE");
140
141         if (profile)
142             path = talloc_asprintf (local, "%s.%s", path, profile);
143     }
144
145     *key_file = g_key_file_new ();
146     if (! g_key_file_load_from_file (*key_file, path, G_KEY_FILE_NONE, NULL)) {
147         status = NOTMUCH_STATUS_NO_CONFIG;
148     }
149
150   DONE:
151     talloc_free (local);
152     return status;
153 }
154
155 static notmuch_status_t
156 _choose_database_path (void *ctx,
157                        const char *config_path,
158                        const char *profile,
159                        GKeyFile **key_file,
160                        const char **database_path,
161                        char **message)
162 {
163     notmuch_status_t status;
164
165     status = _load_key_file (config_path, profile, key_file);
166     if (status) {
167         *message = strdup ("Error: cannot load config file.\n");
168         return status;
169     }
170
171     if (! *database_path && *key_file) {
172         char *path = g_key_file_get_value (*key_file, "database", "path", NULL);
173         if (path) {
174             *database_path = talloc_strdup (ctx, path);
175             g_free (path);
176         }
177     }
178
179     if (*database_path == NULL) {
180         *message = strdup ("Error: Cannot open a database for a NULL path.\n");
181         return NOTMUCH_STATUS_NULL_POINTER;
182     }
183
184     if (*database_path[0] != '/') {
185         *message = strdup ("Error: Database path must be absolute.\n");
186         return NOTMUCH_STATUS_PATH_ERROR;
187     }
188     return NOTMUCH_STATUS_SUCCESS;
189 }
190
191 notmuch_status_t
192 notmuch_database_open_with_config (const char *database_path,
193                                    notmuch_database_mode_t mode,
194                                    const char *config_path,
195                                    const char *profile,
196                                    notmuch_database_t **database,
197                                    char **status_string)
198 {
199     notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
200     void *local = talloc_new (NULL);
201     notmuch_database_t *notmuch = NULL;
202     char *notmuch_path, *incompat_features;
203     char *message = NULL;
204     struct stat st;
205     int err;
206     unsigned int version;
207     GKeyFile *key_file = NULL;
208     static int initialized = 0;
209
210     if ((status = _choose_database_path (local, config_path, profile, &key_file, &database_path,
211                                          &message)))
212         goto DONE;
213
214     if (! (notmuch_path = talloc_asprintf (local, "%s/%s", database_path, ".notmuch"))) {
215         message = strdup ("Out of memory\n");
216         status = NOTMUCH_STATUS_OUT_OF_MEMORY;
217         goto DONE;
218     }
219
220     err = stat (notmuch_path, &st);
221     if (err) {
222         IGNORE_RESULT (asprintf (&message, "Error opening database at %s: %s\n",
223                                  notmuch_path, strerror (errno)));
224         status = NOTMUCH_STATUS_FILE_ERROR;
225         goto DONE;
226     }
227
228     /* Initialize the GLib type system and threads */
229 #if ! GLIB_CHECK_VERSION (2, 35, 1)
230     g_type_init ();
231 #endif
232
233     /* Initialize gmime */
234     if (! initialized) {
235         g_mime_init ();
236         initialized = 1;
237     }
238
239     notmuch = talloc_zero (NULL, notmuch_database_t);
240     notmuch->exception_reported = false;
241     notmuch->status_string = NULL;
242     notmuch->path = talloc_strdup (notmuch, database_path);
243
244     strip_trailing (notmuch->path, '/');
245
246     notmuch->writable_xapian_db = NULL;
247     notmuch->atomic_nesting = 0;
248     notmuch->view = 1;
249
250     if (! (notmuch->xapian_path = talloc_asprintf (notmuch, "%s/%s", notmuch_path, "xapian"))) {
251         message = strdup ("Out of memory\n");
252         status = NOTMUCH_STATUS_OUT_OF_MEMORY;
253         goto DONE;
254     }
255
256     try {
257         std::string last_thread_id;
258         std::string last_mod;
259
260         if (mode == NOTMUCH_DATABASE_MODE_READ_WRITE) {
261             notmuch->writable_xapian_db = new Xapian::WritableDatabase (notmuch->xapian_path,
262                                                                         DB_ACTION);
263             notmuch->xapian_db = notmuch->writable_xapian_db;
264         } else {
265             notmuch->xapian_db = new Xapian::Database (notmuch->xapian_path);
266         }
267
268         /* Check version.  As of database version 3, we represent
269          * changes in terms of features, so assume a version bump
270          * means a dramatically incompatible change. */
271         version = notmuch_database_get_version (notmuch);
272         if (version > NOTMUCH_DATABASE_VERSION) {
273             IGNORE_RESULT (asprintf (&message,
274                                      "Error: Notmuch database at %s\n"
275                                      "       has a newer database format version (%u) than supported by this\n"
276                                      "       version of notmuch (%u).\n",
277                                      notmuch_path, version, NOTMUCH_DATABASE_VERSION));
278             notmuch_database_destroy (notmuch);
279             notmuch = NULL;
280             status = NOTMUCH_STATUS_FILE_ERROR;
281             goto DONE;
282         }
283
284         /* Check features. */
285         incompat_features = NULL;
286         notmuch->features = _notmuch_database_parse_features (
287             local, notmuch->xapian_db->get_metadata ("features").c_str (),
288             version, mode == NOTMUCH_DATABASE_MODE_READ_WRITE ? 'w' : 'r',
289             &incompat_features);
290         if (incompat_features) {
291             IGNORE_RESULT (asprintf (&message,
292                                      "Error: Notmuch database at %s\n"
293                                      "       requires features (%s)\n"
294                                      "       not supported by this version of notmuch.\n",
295                                      notmuch_path, incompat_features));
296             notmuch_database_destroy (notmuch);
297             notmuch = NULL;
298             status = NOTMUCH_STATUS_FILE_ERROR;
299             goto DONE;
300         }
301
302         notmuch->last_doc_id = notmuch->xapian_db->get_lastdocid ();
303         last_thread_id = notmuch->xapian_db->get_metadata ("last_thread_id");
304         if (last_thread_id.empty ()) {
305             notmuch->last_thread_id = 0;
306         } else {
307             const char *str;
308             char *end;
309
310             str = last_thread_id.c_str ();
311             notmuch->last_thread_id = strtoull (str, &end, 16);
312             if (*end != '\0')
313                 INTERNAL_ERROR ("Malformed database last_thread_id: %s", str);
314         }
315
316         /* Get current highest revision number. */
317         last_mod = notmuch->xapian_db->get_value_upper_bound (
318             NOTMUCH_VALUE_LAST_MOD);
319         if (last_mod.empty ())
320             notmuch->revision = 0;
321         else
322             notmuch->revision = Xapian::sortable_unserialise (last_mod);
323         notmuch->uuid = talloc_strdup (
324             notmuch, notmuch->xapian_db->get_uuid ().c_str ());
325
326         notmuch->query_parser = new Xapian::QueryParser;
327         notmuch->term_gen = new Xapian::TermGenerator;
328         notmuch->term_gen->set_stemmer (Xapian::Stem ("english"));
329         notmuch->value_range_processor = new Xapian::NumberRangeProcessor (NOTMUCH_VALUE_TIMESTAMP);
330         notmuch->date_range_processor = new ParseTimeRangeProcessor (NOTMUCH_VALUE_TIMESTAMP,
331                                                                      "date:");
332         notmuch->last_mod_range_processor = new Xapian::NumberRangeProcessor (NOTMUCH_VALUE_LAST_MOD,
333                                                                               "lastmod:");
334         notmuch->query_parser->set_default_op (Xapian::Query::OP_AND);
335         notmuch->query_parser->set_database (*notmuch->xapian_db);
336         notmuch->query_parser->set_stemmer (Xapian::Stem ("english"));
337         notmuch->query_parser->set_stemming_strategy (Xapian::QueryParser::STEM_SOME);
338         notmuch->query_parser->add_rangeprocessor (notmuch->value_range_processor);
339         notmuch->query_parser->add_rangeprocessor (notmuch->date_range_processor);
340         notmuch->query_parser->add_rangeprocessor (notmuch->last_mod_range_processor);
341
342         /* Configuration information is needed to set up query parser */
343         status = _notmuch_config_load_from_database (notmuch);
344         if (status)
345             goto DONE;
346
347         if (key_file)
348             status = _notmuch_config_load_from_file (notmuch, key_file);
349         if (status)
350             goto DONE;
351
352         status = _choose_hook_dir (notmuch, profile, &message);
353         if (status)
354             goto DONE;
355
356         status = _notmuch_config_load_defaults (notmuch);
357         if (status)
358             goto DONE;
359
360         status = _notmuch_database_setup_standard_query_fields (notmuch);
361         if (status)
362             goto DONE;
363
364         status = _notmuch_database_setup_user_query_fields (notmuch);
365         if (status)
366             goto DONE;
367
368     } catch (const Xapian::Error &error) {
369         IGNORE_RESULT (asprintf (&message, "A Xapian exception occurred opening database: %s\n",
370                                  error.get_msg ().c_str ()));
371         notmuch_database_destroy (notmuch);
372         notmuch = NULL;
373         status = NOTMUCH_STATUS_XAPIAN_EXCEPTION;
374     }
375
376   DONE:
377     talloc_free (local);
378
379     if (key_file)
380         g_key_file_free (key_file);
381
382     if (message) {
383         if (status_string)
384             *status_string = message;
385         else
386             free (message);
387     }
388
389     if (database)
390         *database = notmuch;
391     else
392         talloc_free (notmuch);
393
394     if (notmuch)
395         notmuch->open = true;
396
397     return status;
398 }
399
400 notmuch_status_t
401 notmuch_database_create (const char *path, notmuch_database_t **database)
402 {
403     char *status_string = NULL;
404     notmuch_status_t status;
405
406     status = notmuch_database_create_verbose (path, database,
407                                               &status_string);
408
409     if (status_string) {
410         fputs (status_string, stderr);
411         free (status_string);
412     }
413
414     return status;
415 }
416
417 notmuch_status_t
418 notmuch_database_create_verbose (const char *path,
419                                  notmuch_database_t **database,
420                                  char **status_string)
421 {
422     return notmuch_database_create_with_config (path, "", NULL, database, status_string);
423 }
424
425 notmuch_status_t
426 notmuch_database_create_with_config (const char *database_path,
427                                      const char *config_path,
428                                      const char *profile,
429                                      notmuch_database_t **database,
430                                      char **status_string)
431 {
432     notmuch_status_t status = NOTMUCH_STATUS_SUCCESS;
433     notmuch_database_t *notmuch = NULL;
434     char *notmuch_path = NULL;
435     char *message = NULL;
436     GKeyFile *key_file = NULL;
437     struct stat st;
438     int err;
439     void *local = talloc_new (NULL);
440
441     if ((status = _choose_database_path (local, config_path, profile, &key_file, &database_path,
442                                          &message)))
443         goto DONE;
444
445     err = stat (database_path, &st);
446     if (err) {
447         IGNORE_RESULT (asprintf (&message, "Error: Cannot create database at %s: %s.\n",
448                                  database_path, strerror (errno)));
449         status = NOTMUCH_STATUS_FILE_ERROR;
450         goto DONE;
451     }
452
453     if (! S_ISDIR (st.st_mode)) {
454         IGNORE_RESULT (asprintf (&message, "Error: Cannot create database at %s: "
455                                  "Not a directory.\n",
456                                  database_path));
457         status = NOTMUCH_STATUS_FILE_ERROR;
458         goto DONE;
459     }
460
461     notmuch_path = talloc_asprintf (local, "%s/%s", database_path, ".notmuch");
462
463     err = mkdir (notmuch_path, 0755);
464     if (err) {
465         if (errno == EEXIST) {
466             status = NOTMUCH_STATUS_DATABASE_EXISTS;
467         } else {
468             IGNORE_RESULT (asprintf (&message, "Error: Cannot create directory %s: %s.\n",
469                                      notmuch_path, strerror (errno)));
470             status = NOTMUCH_STATUS_FILE_ERROR;
471         }
472         goto DONE;
473     }
474
475     /* XXX this reads the config file twice, which is a bit wasteful */
476     status = notmuch_database_open_with_config (database_path,
477                                                 NOTMUCH_DATABASE_MODE_READ_WRITE,
478                                                 config_path,
479                                                 profile,
480                                                 &notmuch, &message);
481     if (status)
482         goto DONE;
483
484     /* Upgrade doesn't add these feature to existing databases, but
485      * new databases have them. */
486     notmuch->features |= NOTMUCH_FEATURE_FROM_SUBJECT_ID_VALUES;
487     notmuch->features |= NOTMUCH_FEATURE_INDEXED_MIMETYPES;
488     notmuch->features |= NOTMUCH_FEATURE_UNPREFIX_BODY_ONLY;
489
490     status = notmuch_database_upgrade (notmuch, NULL, NULL);
491     if (status) {
492         notmuch_database_close (notmuch);
493         notmuch = NULL;
494     }
495
496   DONE:
497     talloc_free (local);
498
499     if (key_file)
500         g_key_file_free (key_file);
501
502     if (message) {
503         if (status_string)
504             *status_string = message;
505         else
506             free (message);
507     }
508     if (database)
509         *database = notmuch;
510     else
511         talloc_free (notmuch);
512     return status;
513 }