]> git.notmuchmail.org Git - notmuch/blob - notmuch-new.c
Do not defer maildir flag synchronization for new messages
[notmuch] / notmuch-new.c
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 #include "notmuch-client.h"
22
23 #include <unistd.h>
24
25 typedef struct _filename_node {
26     char *filename;
27     struct _filename_node *next;
28 } _filename_node_t;
29
30 typedef struct _filename_list {
31     _filename_node_t *head;
32     _filename_node_t **tail;
33 } _filename_list_t;
34
35 typedef struct {
36     int output_is_a_tty;
37     int verbose;
38     const char **new_tags;
39     size_t new_tags_length;
40
41     int total_files;
42     int processed_files;
43     int added_messages;
44     struct timeval tv_start;
45
46     _filename_list_t *removed_files;
47     _filename_list_t *removed_directories;
48
49     notmuch_bool_t synchronize_flags;
50     _filename_list_t *message_ids_to_sync;
51 } add_files_state_t;
52
53 static volatile sig_atomic_t do_add_files_print_progress = 0;
54
55 static void
56 handle_sigalrm (unused (int signal))
57 {
58     do_add_files_print_progress = 1;
59 }
60
61 static volatile sig_atomic_t interrupted;
62
63 static void
64 handle_sigint (unused (int sig))
65 {
66     ssize_t ignored;
67     static char msg[] = "Stopping...         \n";
68
69     ignored = write(2, msg, sizeof(msg)-1);
70     interrupted = 1;
71 }
72
73 static _filename_list_t *
74 _filename_list_create (const void *ctx)
75 {
76     _filename_list_t *list;
77
78     list = talloc (ctx, _filename_list_t);
79     if (list == NULL)
80         return NULL;
81
82     list->head = NULL;
83     list->tail = &list->head;
84
85     return list;
86 }
87
88 static void
89 _filename_list_add (_filename_list_t *list,
90                     const char *filename)
91 {
92     _filename_node_t *node = talloc (list, _filename_node_t);
93
94     node->filename = talloc_strdup (list, filename);
95     node->next = NULL;
96
97     *(list->tail) = node;
98     list->tail = &node->next;
99 }
100
101 static void
102 add_files_print_progress (add_files_state_t *state)
103 {
104     struct timeval tv_now;
105     double elapsed_overall, rate_overall;
106
107     gettimeofday (&tv_now, NULL);
108
109     elapsed_overall = notmuch_time_elapsed (state->tv_start, tv_now);
110     rate_overall = (state->processed_files) / elapsed_overall;
111
112     printf ("Processed %d", state->processed_files);
113
114     if (state->total_files) {
115         double time_remaining;
116
117         time_remaining = ((state->total_files - state->processed_files) /
118                           rate_overall);
119         printf (" of %d files (", state->total_files);
120         notmuch_time_print_formatted_seconds (time_remaining);
121         printf (" remaining).      \r");
122     } else {
123         printf (" files (%d files/sec.)    \r", (int) rate_overall);
124     }
125
126     fflush (stdout);
127 }
128
129 static int
130 dirent_sort_inode (const struct dirent **a, const struct dirent **b)
131 {
132     return ((*a)->d_ino < (*b)->d_ino) ? -1 : 1;
133 }
134
135 static int
136 dirent_sort_strcmp_name (const struct dirent **a, const struct dirent **b)
137 {
138     return strcmp ((*a)->d_name, (*b)->d_name);
139 }
140
141 /* Test if the directory looks like a Maildir directory.
142  *
143  * Search through the array of directory entries to see if we can find all
144  * three subdirectories typical for Maildir, that is "new", "cur", and "tmp".
145  *
146  * Return 1 if the directory looks like a Maildir and 0 otherwise.
147  */
148 static int
149 _entries_resemble_maildir (struct dirent **entries, int count)
150 {
151     int i, found = 0;
152
153     for (i = 0; i < count; i++) {
154         if (entries[i]->d_type != DT_DIR && entries[i]->d_type != DT_UNKNOWN)
155             continue;
156
157         if (strcmp(entries[i]->d_name, "new") == 0 ||
158             strcmp(entries[i]->d_name, "cur") == 0 ||
159             strcmp(entries[i]->d_name, "tmp") == 0)
160         {
161             found++;
162             if (found == 3)
163                 return 1;
164         }
165     }
166
167     return 0;
168 }
169
170 /* Examine 'path' recursively as follows:
171  *
172  *   o Ask the filesystem for the mtime of 'path' (fs_mtime)
173  *   o Ask the database for its timestamp of 'path' (db_mtime)
174  *
175  *   o Ask the filesystem for files and directories within 'path'
176  *     (via scandir and stored in fs_entries)
177  *   o Ask the database for files and directories within 'path'
178  *     (db_files and db_subdirs)
179  *
180  *   o Pass 1: For each directory in fs_entries, recursively call into
181  *     this same function.
182  *
183  *   o Pass 2: If 'fs_mtime' > 'db_mtime', then walk fs_entries
184  *     simultaneously with db_files and db_subdirs. Look for one of
185  *     three interesting cases:
186  *
187  *         1. Regular file in fs_entries and not in db_files
188  *            This is a new file to add_message into the database.
189  *
190  *         2. Filename in db_files not in fs_entries.
191  *            This is a file that has been removed from the mail store.
192  *
193  *         3. Directory in db_subdirs not in fs_entries
194  *            This is a directory that has been removed from the mail store.
195  *
196  *     Note that the addition of a directory is not interesting here,
197  *     since that will have been taken care of in pass 1. Also, we
198  *     don't immediately act on file/directory removal since we must
199  *     ensure that in the case of a rename that the new filename is
200  *     added before the old filename is removed, (so that no
201  *     information is lost from the database).
202  *
203  *   o Tell the database to update its time of 'path' to 'fs_mtime'
204  */
205 static notmuch_status_t
206 add_files_recursive (notmuch_database_t *notmuch,
207                      const char *path,
208                      add_files_state_t *state)
209 {
210     DIR *dir = NULL;
211     struct dirent *entry = NULL;
212     char *next = NULL;
213     time_t fs_mtime, db_mtime;
214     notmuch_status_t status, ret = NOTMUCH_STATUS_SUCCESS;
215     notmuch_message_t *message = NULL;
216     struct dirent **fs_entries = NULL;
217     int i, num_fs_entries;
218     notmuch_directory_t *directory;
219     notmuch_filenames_t *db_files = NULL;
220     notmuch_filenames_t *db_subdirs = NULL;
221     struct stat st;
222     notmuch_bool_t is_maildir, new_directory;
223     const char **tag;
224
225     if (stat (path, &st)) {
226         fprintf (stderr, "Error reading directory %s: %s\n",
227                  path, strerror (errno));
228         return NOTMUCH_STATUS_FILE_ERROR;
229     }
230
231     /* This is not an error since we may have recursed based on a
232      * symlink to a regular file, not a directory, and we don't know
233      * that until this stat. */
234     if (! S_ISDIR (st.st_mode))
235         return NOTMUCH_STATUS_SUCCESS;
236
237     fs_mtime = st.st_mtime;
238
239     directory = notmuch_database_get_directory (notmuch, path);
240     db_mtime = notmuch_directory_get_mtime (directory);
241
242     if (db_mtime == 0) {
243         new_directory = TRUE;
244         db_files = NULL;
245         db_subdirs = NULL;
246     } else {
247         new_directory = FALSE;
248         db_files = notmuch_directory_get_child_files (directory);
249         db_subdirs = notmuch_directory_get_child_directories (directory);
250     }
251
252     /* If the database knows about this directory, then we sort based
253      * on strcmp to match the database sorting. Otherwise, we can do
254      * inode-based sorting for faster filesystem operation. */
255     num_fs_entries = scandir (path, &fs_entries, 0,
256                               new_directory ?
257                               dirent_sort_inode : dirent_sort_strcmp_name);
258
259     if (num_fs_entries == -1) {
260         fprintf (stderr, "Error opening directory %s: %s\n",
261                  path, strerror (errno));
262         ret = NOTMUCH_STATUS_FILE_ERROR;
263         goto DONE;
264     }
265
266     /* Pass 1: Recurse into all sub-directories. */
267     is_maildir = _entries_resemble_maildir (fs_entries, num_fs_entries);
268
269     for (i = 0; i < num_fs_entries; i++) {
270         if (interrupted)
271             break;
272
273         entry = fs_entries[i];
274
275         /* We only want to descend into directories.
276          * But symlinks can be to directories too, of course.
277          *
278          * And if the filesystem doesn't tell us the file type in the
279          * scandir results, then it might be a directory (and if not,
280          * then we'll stat and return immediately in the next level of
281          * recursion). */
282         if (entry->d_type != DT_DIR &&
283             entry->d_type != DT_LNK &&
284             entry->d_type != DT_UNKNOWN)
285         {
286             continue;
287         }
288
289         /* Ignore special directories to avoid infinite recursion.
290          * Also ignore the .notmuch directory and any "tmp" directory
291          * that appears within a maildir.
292          */
293         /* XXX: Eventually we'll want more sophistication to let the
294          * user specify files to be ignored. */
295         if (strcmp (entry->d_name, ".") == 0 ||
296             strcmp (entry->d_name, "..") == 0 ||
297             (is_maildir && strcmp (entry->d_name, "tmp") == 0) ||
298             strcmp (entry->d_name, ".notmuch") ==0)
299         {
300             continue;
301         }
302
303         next = talloc_asprintf (notmuch, "%s/%s", path, entry->d_name);
304         status = add_files_recursive (notmuch, next, state);
305         if (status && ret == NOTMUCH_STATUS_SUCCESS)
306             ret = status;
307         talloc_free (next);
308         next = NULL;
309     }
310
311     /* If the directory's modification time in the filesystem is the
312      * same as what we recorded in the database the last time we
313      * scanned it, then we can skip the second pass entirely.
314      *
315      * We test for strict equality here to avoid a bug that can happen
316      * if the system clock jumps backward, (preventing new mail from
317      * being discovered until the clock catches up and the directory
318      * is modified again).
319      */
320     if (fs_mtime == db_mtime)
321         goto DONE;
322
323     /* Pass 2: Scan for new files, removed files, and removed directories. */
324     for (i = 0; i < num_fs_entries; i++)
325     {
326         if (interrupted)
327             break;
328
329         entry = fs_entries[i];
330
331         /* Check if we've walked past any names in db_files or
332          * db_subdirs. If so, these have been deleted. */
333         while (notmuch_filenames_valid (db_files) &&
334                strcmp (notmuch_filenames_get (db_files), entry->d_name) < 0)
335         {
336             char *absolute = talloc_asprintf (state->removed_files,
337                                               "%s/%s", path,
338                                               notmuch_filenames_get (db_files));
339
340             _filename_list_add (state->removed_files, absolute);
341
342             notmuch_filenames_move_to_next (db_files);
343         }
344
345         while (notmuch_filenames_valid (db_subdirs) &&
346                strcmp (notmuch_filenames_get (db_subdirs), entry->d_name) <= 0)
347         {
348             const char *filename = notmuch_filenames_get (db_subdirs);
349
350             if (strcmp (filename, entry->d_name) < 0)
351             {
352                 char *absolute = talloc_asprintf (state->removed_directories,
353                                                   "%s/%s", path, filename);
354
355                 _filename_list_add (state->removed_directories, absolute);
356             }
357
358             notmuch_filenames_move_to_next (db_subdirs);
359         }
360
361         /* If we're looking at a symlink, we only want to add it if it
362          * links to a regular file, (and not to a directory, say).
363          *
364          * Similarly, if the file is of unknown type (due to filesytem
365          * limitations), then we also need to look closer.
366          *
367          * In either case, a stat does the trick.
368          */
369         if (entry->d_type == DT_LNK || entry->d_type == DT_UNKNOWN) {
370             int err;
371
372             next = talloc_asprintf (notmuch, "%s/%s", path, entry->d_name);
373             err = stat (next, &st);
374             talloc_free (next);
375             next = NULL;
376
377             /* Don't emit an error for a link pointing nowhere, since
378              * the directory-traversal pass will have already done
379              * that. */
380             if (err)
381                 continue;
382
383             if (! S_ISREG (st.st_mode))
384                 continue;
385         } else if (entry->d_type != DT_REG) {
386             continue;
387         }
388
389         /* Don't add a file that we've added before. */
390         if (notmuch_filenames_valid (db_files) &&
391             strcmp (notmuch_filenames_get (db_files), entry->d_name) == 0)
392         {
393             notmuch_filenames_move_to_next (db_files);
394             continue;
395         }
396
397         /* We're now looking at a regular file that doesn't yet exist
398          * in the database, so add it. */
399         next = talloc_asprintf (notmuch, "%s/%s", path, entry->d_name);
400
401         state->processed_files++;
402
403         if (state->verbose) {
404             if (state->output_is_a_tty)
405                 printf("\r\033[K");
406
407             printf ("%i/%i: %s",
408                     state->processed_files,
409                     state->total_files,
410                     next);
411
412             putchar((state->output_is_a_tty) ? '\r' : '\n');
413             fflush (stdout);
414         }
415
416         status = notmuch_database_add_message (notmuch, next, &message);
417         switch (status) {
418         /* success */
419         case NOTMUCH_STATUS_SUCCESS:
420             state->added_messages++;
421             for (tag=state->new_tags; *tag != NULL; tag++)
422                 notmuch_message_add_tag (message, *tag);
423             if (state->synchronize_flags == TRUE)
424                 notmuch_message_maildir_flags_to_tags (message);
425             break;
426         /* Non-fatal issues (go on to next file) */
427         case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID:
428             /* Defer sync of maildir flags until after old filenames
429              * are removed in the case of a rename. */
430             if (state->synchronize_flags == TRUE)
431                 _filename_list_add (state->message_ids_to_sync,
432                                     notmuch_message_get_message_id (message));
433             break;
434         case NOTMUCH_STATUS_FILE_NOT_EMAIL:
435             fprintf (stderr, "Note: Ignoring non-mail file: %s\n",
436                      next);
437             break;
438         /* Fatal issues. Don't process anymore. */
439         case NOTMUCH_STATUS_READ_ONLY_DATABASE:
440         case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
441         case NOTMUCH_STATUS_OUT_OF_MEMORY:
442             fprintf (stderr, "Error: %s. Halting processing.\n",
443                      notmuch_status_to_string (status));
444             ret = status;
445             goto DONE;
446         default:
447         case NOTMUCH_STATUS_FILE_ERROR:
448         case NOTMUCH_STATUS_NULL_POINTER:
449         case NOTMUCH_STATUS_TAG_TOO_LONG:
450         case NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW:
451         case NOTMUCH_STATUS_LAST_STATUS:
452             INTERNAL_ERROR ("add_message returned unexpected value: %d",  status);
453             goto DONE;
454         }
455
456         if (message) {
457             notmuch_message_destroy (message);
458             message = NULL;
459         }
460
461         if (do_add_files_print_progress) {
462             do_add_files_print_progress = 0;
463             add_files_print_progress (state);
464         }
465
466         talloc_free (next);
467         next = NULL;
468     }
469
470     if (interrupted)
471         goto DONE;
472
473     /* Now that we've walked the whole filesystem list, anything left
474      * over in the database lists has been deleted. */
475     while (notmuch_filenames_valid (db_files))
476     {
477         char *absolute = talloc_asprintf (state->removed_files,
478                                           "%s/%s", path,
479                                           notmuch_filenames_get (db_files));
480
481         _filename_list_add (state->removed_files, absolute);
482
483         notmuch_filenames_move_to_next (db_files);
484     }
485
486     while (notmuch_filenames_valid (db_subdirs))
487     {
488         char *absolute = talloc_asprintf (state->removed_directories,
489                                           "%s/%s", path,
490                                           notmuch_filenames_get (db_subdirs));
491
492         _filename_list_add (state->removed_directories, absolute);
493
494         notmuch_filenames_move_to_next (db_subdirs);
495     }
496
497     if (! interrupted) {
498         status = notmuch_directory_set_mtime (directory, fs_mtime);
499         if (status && ret == NOTMUCH_STATUS_SUCCESS)
500             ret = status;
501     }
502
503   DONE:
504     if (next)
505         talloc_free (next);
506     if (entry)
507         free (entry);
508     if (dir)
509         closedir (dir);
510     if (fs_entries)
511         free (fs_entries);
512     if (db_subdirs)
513         notmuch_filenames_destroy (db_subdirs);
514     if (db_files)
515         notmuch_filenames_destroy (db_files);
516     if (directory)
517         notmuch_directory_destroy (directory);
518
519     return ret;
520 }
521
522 /* This is the top-level entry point for add_files. It does a couple
523  * of error checks, sets up the progress-printing timer and then calls
524  * into the recursive function. */
525 static notmuch_status_t
526 add_files (notmuch_database_t *notmuch,
527            const char *path,
528            add_files_state_t *state)
529 {
530     notmuch_status_t status;
531     struct sigaction action;
532     struct itimerval timerval;
533     notmuch_bool_t timer_is_active = FALSE;
534     struct stat st;
535
536     if (state->output_is_a_tty && ! debugger_is_active () && ! state->verbose) {
537         /* Setup our handler for SIGALRM */
538         memset (&action, 0, sizeof (struct sigaction));
539         action.sa_handler = handle_sigalrm;
540         sigemptyset (&action.sa_mask);
541         action.sa_flags = SA_RESTART;
542         sigaction (SIGALRM, &action, NULL);
543
544         /* Then start a timer to send SIGALRM once per second. */
545         timerval.it_interval.tv_sec = 1;
546         timerval.it_interval.tv_usec = 0;
547         timerval.it_value.tv_sec = 1;
548         timerval.it_value.tv_usec = 0;
549         setitimer (ITIMER_REAL, &timerval, NULL);
550
551         timer_is_active = TRUE;
552     }
553
554     if (stat (path, &st)) {
555         fprintf (stderr, "Error reading directory %s: %s\n",
556                  path, strerror (errno));
557         return NOTMUCH_STATUS_FILE_ERROR;
558     }
559
560     if (! S_ISDIR (st.st_mode)) {
561         fprintf (stderr, "Error: %s is not a directory.\n", path);
562         return NOTMUCH_STATUS_FILE_ERROR;
563     }
564
565     status = add_files_recursive (notmuch, path, state);
566
567     if (timer_is_active) {
568         /* Now stop the timer. */
569         timerval.it_interval.tv_sec = 0;
570         timerval.it_interval.tv_usec = 0;
571         timerval.it_value.tv_sec = 0;
572         timerval.it_value.tv_usec = 0;
573         setitimer (ITIMER_REAL, &timerval, NULL);
574
575         /* And disable the signal handler. */
576         action.sa_handler = SIG_IGN;
577         sigaction (SIGALRM, &action, NULL);
578     }
579
580     return status;
581 }
582
583 /* XXX: This should be merged with the add_files function since it
584  * shares a lot of logic with it. */
585 /* Recursively count all regular files in path and all sub-directories
586  * of path.  The result is added to *count (which should be
587  * initialized to zero by the top-level caller before calling
588  * count_files). */
589 static void
590 count_files (const char *path, int *count)
591 {
592     struct dirent *entry = NULL;
593     char *next;
594     struct stat st;
595     struct dirent **fs_entries = NULL;
596     int num_fs_entries = scandir (path, &fs_entries, 0, dirent_sort_inode);
597     int i = 0;
598
599     if (num_fs_entries == -1) {
600         fprintf (stderr, "Warning: failed to open directory %s: %s\n",
601                  path, strerror (errno));
602         goto DONE;
603     }
604
605     while (!interrupted) {
606         if (i == num_fs_entries)
607             break;
608
609         entry = fs_entries[i++];
610
611         /* Ignore special directories to avoid infinite recursion.
612          * Also ignore the .notmuch directory.
613          */
614         /* XXX: Eventually we'll want more sophistication to let the
615          * user specify files to be ignored. */
616         if (strcmp (entry->d_name, ".") == 0 ||
617             strcmp (entry->d_name, "..") == 0 ||
618             strcmp (entry->d_name, ".notmuch") == 0)
619         {
620             continue;
621         }
622
623         if (asprintf (&next, "%s/%s", path, entry->d_name) == -1) {
624             next = NULL;
625             fprintf (stderr, "Error descending from %s to %s: Out of memory\n",
626                      path, entry->d_name);
627             continue;
628         }
629
630         stat (next, &st);
631
632         if (S_ISREG (st.st_mode)) {
633             *count = *count + 1;
634             if (*count % 1000 == 0) {
635                 printf ("Found %d files so far.\r", *count);
636                 fflush (stdout);
637             }
638         } else if (S_ISDIR (st.st_mode)) {
639             count_files (next, count);
640         }
641
642         free (next);
643     }
644
645   DONE:
646     if (entry)
647         free (entry);
648     if (fs_entries)
649         free (fs_entries);
650 }
651
652 static void
653 upgrade_print_progress (void *closure,
654                         double progress)
655 {
656     add_files_state_t *state = closure;
657
658     printf ("Upgrading database: %.2f%% complete", progress * 100.0);
659
660     if (progress > 0) {
661         struct timeval tv_now;
662         double elapsed, time_remaining;
663
664         gettimeofday (&tv_now, NULL);
665
666         elapsed = notmuch_time_elapsed (state->tv_start, tv_now);
667         time_remaining = (elapsed / progress) * (1.0 - progress);
668         printf (" (");
669         notmuch_time_print_formatted_seconds (time_remaining);
670         printf (" remaining)");
671     }
672
673     printf (".      \r");
674
675     fflush (stdout);
676 }
677
678 /* Recursively remove all filenames from the database referring to
679  * 'path' (or to any of its children). */
680 static void
681 _remove_directory (void *ctx,
682                    notmuch_database_t *notmuch,
683                    const char *path,
684                    int *renamed_files,
685                    int *removed_files)
686 {
687     notmuch_directory_t *directory;
688     notmuch_filenames_t *files, *subdirs;
689     notmuch_status_t status;
690     char *absolute;
691
692     directory = notmuch_database_get_directory (notmuch, path);
693
694     for (files = notmuch_directory_get_child_files (directory);
695          notmuch_filenames_valid (files);
696          notmuch_filenames_move_to_next (files))
697     {
698         absolute = talloc_asprintf (ctx, "%s/%s", path,
699                                     notmuch_filenames_get (files));
700         status = notmuch_database_remove_message (notmuch, absolute);
701         if (status == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID)
702             *renamed_files = *renamed_files + 1;
703         else
704             *removed_files = *removed_files + 1;
705         talloc_free (absolute);
706     }
707
708     for (subdirs = notmuch_directory_get_child_directories (directory);
709          notmuch_filenames_valid (subdirs);
710          notmuch_filenames_move_to_next (subdirs))
711     {
712         absolute = talloc_asprintf (ctx, "%s/%s", path,
713                                     notmuch_filenames_get (subdirs));
714         _remove_directory (ctx, notmuch, absolute, renamed_files, removed_files);
715         talloc_free (absolute);
716     }
717
718     notmuch_directory_destroy (directory);
719 }
720
721 int
722 notmuch_new_command (void *ctx, int argc, char *argv[])
723 {
724     notmuch_config_t *config;
725     notmuch_database_t *notmuch;
726     add_files_state_t add_files_state;
727     double elapsed;
728     struct timeval tv_now;
729     int ret = 0;
730     struct stat st;
731     const char *db_path;
732     char *dot_notmuch_path;
733     struct sigaction action;
734     _filename_node_t *f;
735     int renamed_files, removed_files;
736     notmuch_status_t status;
737     int i;
738
739     add_files_state.verbose = 0;
740     add_files_state.output_is_a_tty = isatty (fileno (stdout));
741
742     for (i = 0; i < argc && argv[i][0] == '-'; i++) {
743         if (STRNCMP_LITERAL (argv[i], "--verbose") == 0) {
744             add_files_state.verbose = 1;
745         } else {
746             fprintf (stderr, "Unrecognized option: %s\n", argv[i]);
747             return 1;
748         }
749     }
750
751     config = notmuch_config_open (ctx, NULL, NULL);
752     if (config == NULL)
753         return 1;
754
755     add_files_state.new_tags = notmuch_config_get_new_tags (config, &add_files_state.new_tags_length);
756     add_files_state.synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);
757     add_files_state.message_ids_to_sync = _filename_list_create (ctx);
758     db_path = notmuch_config_get_database_path (config);
759
760     dot_notmuch_path = talloc_asprintf (ctx, "%s/%s", db_path, ".notmuch");
761
762     if (stat (dot_notmuch_path, &st)) {
763         int count;
764
765         count = 0;
766         count_files (db_path, &count);
767         if (interrupted)
768             return 1;
769
770         printf ("Found %d total files (that's not much mail).\n", count);
771         notmuch = notmuch_database_create (db_path);
772         add_files_state.total_files = count;
773     } else {
774         notmuch = notmuch_database_open (db_path,
775                                          NOTMUCH_DATABASE_MODE_READ_WRITE);
776         if (notmuch == NULL)
777             return 1;
778
779         if (notmuch_database_needs_upgrade (notmuch)) {
780             printf ("Welcome to a new version of notmuch! Your database will now be upgraded.\n");
781             gettimeofday (&add_files_state.tv_start, NULL);
782             notmuch_database_upgrade (notmuch, upgrade_print_progress,
783                                       &add_files_state);
784             printf ("Your notmuch database has now been upgraded to database format version %u.\n",
785                     notmuch_database_get_version (notmuch));
786         }
787
788         add_files_state.total_files = 0;
789     }
790
791     if (notmuch == NULL)
792         return 1;
793
794     /* Setup our handler for SIGINT. We do this after having
795      * potentially done a database upgrade we this interrupt handler
796      * won't support. */
797     memset (&action, 0, sizeof (struct sigaction));
798     action.sa_handler = handle_sigint;
799     sigemptyset (&action.sa_mask);
800     action.sa_flags = SA_RESTART;
801     sigaction (SIGINT, &action, NULL);
802
803     talloc_free (dot_notmuch_path);
804     dot_notmuch_path = NULL;
805
806     add_files_state.processed_files = 0;
807     add_files_state.added_messages = 0;
808     gettimeofday (&add_files_state.tv_start, NULL);
809
810     add_files_state.removed_files = _filename_list_create (ctx);
811     add_files_state.removed_directories = _filename_list_create (ctx);
812
813     ret = add_files (notmuch, db_path, &add_files_state);
814
815     removed_files = 0;
816     renamed_files = 0;
817     for (f = add_files_state.removed_files->head; f; f = f->next) {
818         status = notmuch_database_remove_message (notmuch, f->filename);
819         if (status == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID)
820             renamed_files++;
821         else
822             removed_files++;
823     }
824
825     for (f = add_files_state.removed_directories->head; f; f = f->next) {
826         _remove_directory (ctx, notmuch, f->filename,
827                            &renamed_files, &removed_files);
828     }
829
830     talloc_free (add_files_state.removed_files);
831     talloc_free (add_files_state.removed_directories);
832
833     /* Now that removals are done (hence the database is aware of all
834      * renames), we can synchronize maildir_flags to tags for all
835      * messages that had new filenames appear on this run. */
836     if (add_files_state.synchronize_flags) {
837         _filename_node_t *node;
838         notmuch_message_t *message;
839         for (node = add_files_state.message_ids_to_sync->head;
840              node;
841              node = node->next)
842         {
843             message = notmuch_database_find_message (notmuch, node->filename);
844             notmuch_message_maildir_flags_to_tags (message);
845             notmuch_message_destroy (message);
846         }
847     }
848
849     talloc_free (add_files_state.message_ids_to_sync);
850     add_files_state.message_ids_to_sync = NULL;
851
852     gettimeofday (&tv_now, NULL);
853     elapsed = notmuch_time_elapsed (add_files_state.tv_start,
854                                     tv_now);
855
856     if (add_files_state.processed_files) {
857         printf ("Processed %d %s in ", add_files_state.processed_files,
858                 add_files_state.processed_files == 1 ?
859                 "file" : "total files");
860         notmuch_time_print_formatted_seconds (elapsed);
861         if (elapsed > 1) {
862             printf (" (%d files/sec.).                 \n",
863                     (int) (add_files_state.processed_files / elapsed));
864         } else {
865             printf (".                    \n");
866         }
867     }
868
869     if (add_files_state.added_messages) {
870         printf ("Added %d new %s to the database.",
871                 add_files_state.added_messages,
872                 add_files_state.added_messages == 1 ?
873                 "message" : "messages");
874     } else {
875         printf ("No new mail.");
876     }
877
878     if (removed_files) {
879         printf (" Removed %d %s.",
880                 removed_files,
881                 removed_files == 1 ? "message" : "messages");
882     }
883
884     if (renamed_files) {
885         printf (" Detected %d file %s.",
886                 renamed_files,
887                 renamed_files == 1 ? "rename" : "renames");
888     }
889
890     printf ("\n");
891
892     if (ret) {
893         printf ("\nNote: At least one error was encountered: %s\n",
894                 notmuch_status_to_string (ret));
895     }
896
897     notmuch_database_close (notmuch);
898
899     return ret || interrupted;
900 }