]> git.notmuchmail.org Git - notmuch/blob - notmuch-new.c
lib: Add two missing static qualifiers
[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 this directory hasn't been modified since the last
312      * "notmuch new", then we can skip the second pass entirely. */
313     if (fs_mtime <= db_mtime)
314         goto DONE;
315
316     /* Pass 2: Scan for new files, removed files, and removed directories. */
317     for (i = 0; i < num_fs_entries; i++)
318     {
319         if (interrupted)
320             break;
321
322         entry = fs_entries[i];
323
324         /* Check if we've walked past any names in db_files or
325          * db_subdirs. If so, these have been deleted. */
326         while (notmuch_filenames_valid (db_files) &&
327                strcmp (notmuch_filenames_get (db_files), entry->d_name) < 0)
328         {
329             char *absolute = talloc_asprintf (state->removed_files,
330                                               "%s/%s", path,
331                                               notmuch_filenames_get (db_files));
332
333             _filename_list_add (state->removed_files, absolute);
334
335             notmuch_filenames_move_to_next (db_files);
336         }
337
338         while (notmuch_filenames_valid (db_subdirs) &&
339                strcmp (notmuch_filenames_get (db_subdirs), entry->d_name) <= 0)
340         {
341             const char *filename = notmuch_filenames_get (db_subdirs);
342
343             if (strcmp (filename, entry->d_name) < 0)
344             {
345                 char *absolute = talloc_asprintf (state->removed_directories,
346                                                   "%s/%s", path, filename);
347
348                 _filename_list_add (state->removed_directories, absolute);
349             }
350
351             notmuch_filenames_move_to_next (db_subdirs);
352         }
353
354         /* If we're looking at a symlink, we only want to add it if it
355          * links to a regular file, (and not to a directory, say).
356          *
357          * Similarly, if the file is of unknown type (due to filesytem
358          * limitations), then we also need to look closer.
359          *
360          * In either case, a stat does the trick.
361          */
362         if (entry->d_type == DT_LNK || entry->d_type == DT_UNKNOWN) {
363             int err;
364
365             next = talloc_asprintf (notmuch, "%s/%s", path, entry->d_name);
366             err = stat (next, &st);
367             talloc_free (next);
368             next = NULL;
369
370             /* Don't emit an error for a link pointing nowhere, since
371              * the directory-traversal pass will have already done
372              * that. */
373             if (err)
374                 continue;
375
376             if (! S_ISREG (st.st_mode))
377                 continue;
378         } else if (entry->d_type != DT_REG) {
379             continue;
380         }
381
382         /* Don't add a file that we've added before. */
383         if (notmuch_filenames_valid (db_files) &&
384             strcmp (notmuch_filenames_get (db_files), entry->d_name) == 0)
385         {
386             notmuch_filenames_move_to_next (db_files);
387             continue;
388         }
389
390         /* We're now looking at a regular file that doesn't yet exist
391          * in the database, so add it. */
392         next = talloc_asprintf (notmuch, "%s/%s", path, entry->d_name);
393
394         state->processed_files++;
395
396         if (state->verbose) {
397             if (state->output_is_a_tty)
398                 printf("\r\033[K");
399
400             printf ("%i/%i: %s",
401                     state->processed_files,
402                     state->total_files,
403                     next);
404
405             putchar((state->output_is_a_tty) ? '\r' : '\n');
406             fflush (stdout);
407         }
408
409         status = notmuch_database_add_message (notmuch, next, &message);
410         switch (status) {
411         /* success */
412         case NOTMUCH_STATUS_SUCCESS:
413             state->added_messages++;
414             for (tag=state->new_tags; *tag != NULL; tag++)
415                 notmuch_message_add_tag (message, *tag);
416             /* Defer sync of maildir flags until after old filenames
417              * are removed in the case of a rename. */
418             if (state->synchronize_flags == TRUE)
419                 _filename_list_add (state->message_ids_to_sync,
420                                     notmuch_message_get_message_id (message));
421             break;
422         /* Non-fatal issues (go on to next file) */
423         case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID:
424             /* Defer sync of maildir flags until after old filenames
425              * are removed in the case of a rename. */
426             if (state->synchronize_flags == TRUE)
427                 _filename_list_add (state->message_ids_to_sync,
428                                     notmuch_message_get_message_id (message));
429             break;
430         case NOTMUCH_STATUS_FILE_NOT_EMAIL:
431             fprintf (stderr, "Note: Ignoring non-mail file: %s\n",
432                      next);
433             break;
434         /* Fatal issues. Don't process anymore. */
435         case NOTMUCH_STATUS_READ_ONLY_DATABASE:
436         case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
437         case NOTMUCH_STATUS_OUT_OF_MEMORY:
438             fprintf (stderr, "Error: %s. Halting processing.\n",
439                      notmuch_status_to_string (status));
440             ret = status;
441             goto DONE;
442         default:
443         case NOTMUCH_STATUS_FILE_ERROR:
444         case NOTMUCH_STATUS_NULL_POINTER:
445         case NOTMUCH_STATUS_TAG_TOO_LONG:
446         case NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW:
447         case NOTMUCH_STATUS_LAST_STATUS:
448             INTERNAL_ERROR ("add_message returned unexpected value: %d",  status);
449             goto DONE;
450         }
451
452         if (message) {
453             notmuch_message_destroy (message);
454             message = NULL;
455         }
456
457         if (do_add_files_print_progress) {
458             do_add_files_print_progress = 0;
459             add_files_print_progress (state);
460         }
461
462         talloc_free (next);
463         next = NULL;
464     }
465
466     if (interrupted)
467         goto DONE;
468
469     /* Now that we've walked the whole filesystem list, anything left
470      * over in the database lists has been deleted. */
471     while (notmuch_filenames_valid (db_files))
472     {
473         char *absolute = talloc_asprintf (state->removed_files,
474                                           "%s/%s", path,
475                                           notmuch_filenames_get (db_files));
476
477         _filename_list_add (state->removed_files, absolute);
478
479         notmuch_filenames_move_to_next (db_files);
480     }
481
482     while (notmuch_filenames_valid (db_subdirs))
483     {
484         char *absolute = talloc_asprintf (state->removed_directories,
485                                           "%s/%s", path,
486                                           notmuch_filenames_get (db_subdirs));
487
488         _filename_list_add (state->removed_directories, absolute);
489
490         notmuch_filenames_move_to_next (db_subdirs);
491     }
492
493     if (! interrupted) {
494         status = notmuch_directory_set_mtime (directory, fs_mtime);
495         if (status && ret == NOTMUCH_STATUS_SUCCESS)
496             ret = status;
497     }
498
499   DONE:
500     if (next)
501         talloc_free (next);
502     if (entry)
503         free (entry);
504     if (dir)
505         closedir (dir);
506     if (fs_entries)
507         free (fs_entries);
508     if (db_subdirs)
509         notmuch_filenames_destroy (db_subdirs);
510     if (db_files)
511         notmuch_filenames_destroy (db_files);
512     if (directory)
513         notmuch_directory_destroy (directory);
514
515     return ret;
516 }
517
518 /* This is the top-level entry point for add_files. It does a couple
519  * of error checks, sets up the progress-printing timer and then calls
520  * into the recursive function. */
521 static notmuch_status_t
522 add_files (notmuch_database_t *notmuch,
523            const char *path,
524            add_files_state_t *state)
525 {
526     notmuch_status_t status;
527     struct sigaction action;
528     struct itimerval timerval;
529     notmuch_bool_t timer_is_active = FALSE;
530     struct stat st;
531
532     if (state->output_is_a_tty && ! debugger_is_active () && ! state->verbose) {
533         /* Setup our handler for SIGALRM */
534         memset (&action, 0, sizeof (struct sigaction));
535         action.sa_handler = handle_sigalrm;
536         sigemptyset (&action.sa_mask);
537         action.sa_flags = SA_RESTART;
538         sigaction (SIGALRM, &action, NULL);
539
540         /* Then start a timer to send SIGALRM once per second. */
541         timerval.it_interval.tv_sec = 1;
542         timerval.it_interval.tv_usec = 0;
543         timerval.it_value.tv_sec = 1;
544         timerval.it_value.tv_usec = 0;
545         setitimer (ITIMER_REAL, &timerval, NULL);
546
547         timer_is_active = TRUE;
548     }
549
550     if (stat (path, &st)) {
551         fprintf (stderr, "Error reading directory %s: %s\n",
552                  path, strerror (errno));
553         return NOTMUCH_STATUS_FILE_ERROR;
554     }
555
556     if (! S_ISDIR (st.st_mode)) {
557         fprintf (stderr, "Error: %s is not a directory.\n", path);
558         return NOTMUCH_STATUS_FILE_ERROR;
559     }
560
561     status = add_files_recursive (notmuch, path, state);
562
563     if (timer_is_active) {
564         /* Now stop the timer. */
565         timerval.it_interval.tv_sec = 0;
566         timerval.it_interval.tv_usec = 0;
567         timerval.it_value.tv_sec = 0;
568         timerval.it_value.tv_usec = 0;
569         setitimer (ITIMER_REAL, &timerval, NULL);
570
571         /* And disable the signal handler. */
572         action.sa_handler = SIG_IGN;
573         sigaction (SIGALRM, &action, NULL);
574     }
575
576     return status;
577 }
578
579 /* XXX: This should be merged with the add_files function since it
580  * shares a lot of logic with it. */
581 /* Recursively count all regular files in path and all sub-directories
582  * of path.  The result is added to *count (which should be
583  * initialized to zero by the top-level caller before calling
584  * count_files). */
585 static void
586 count_files (const char *path, int *count)
587 {
588     struct dirent *entry = NULL;
589     char *next;
590     struct stat st;
591     struct dirent **fs_entries = NULL;
592     int num_fs_entries = scandir (path, &fs_entries, 0, dirent_sort_inode);
593     int i = 0;
594
595     if (num_fs_entries == -1) {
596         fprintf (stderr, "Warning: failed to open directory %s: %s\n",
597                  path, strerror (errno));
598         goto DONE;
599     }
600
601     while (!interrupted) {
602         if (i == num_fs_entries)
603             break;
604
605         entry = fs_entries[i++];
606
607         /* Ignore special directories to avoid infinite recursion.
608          * Also ignore the .notmuch directory.
609          */
610         /* XXX: Eventually we'll want more sophistication to let the
611          * user specify files to be ignored. */
612         if (strcmp (entry->d_name, ".") == 0 ||
613             strcmp (entry->d_name, "..") == 0 ||
614             strcmp (entry->d_name, ".notmuch") == 0)
615         {
616             continue;
617         }
618
619         if (asprintf (&next, "%s/%s", path, entry->d_name) == -1) {
620             next = NULL;
621             fprintf (stderr, "Error descending from %s to %s: Out of memory\n",
622                      path, entry->d_name);
623             continue;
624         }
625
626         stat (next, &st);
627
628         if (S_ISREG (st.st_mode)) {
629             *count = *count + 1;
630             if (*count % 1000 == 0) {
631                 printf ("Found %d files so far.\r", *count);
632                 fflush (stdout);
633             }
634         } else if (S_ISDIR (st.st_mode)) {
635             count_files (next, count);
636         }
637
638         free (next);
639     }
640
641   DONE:
642     if (entry)
643         free (entry);
644     if (fs_entries)
645         free (fs_entries);
646 }
647
648 static void
649 upgrade_print_progress (void *closure,
650                         double progress)
651 {
652     add_files_state_t *state = closure;
653
654     printf ("Upgrading database: %.2f%% complete", progress * 100.0);
655
656     if (progress > 0) {
657         struct timeval tv_now;
658         double elapsed, time_remaining;
659
660         gettimeofday (&tv_now, NULL);
661
662         elapsed = notmuch_time_elapsed (state->tv_start, tv_now);
663         time_remaining = (elapsed / progress) * (1.0 - progress);
664         printf (" (");
665         notmuch_time_print_formatted_seconds (time_remaining);
666         printf (" remaining)");
667     }
668
669     printf (".      \r");
670
671     fflush (stdout);
672 }
673
674 /* Recursively remove all filenames from the database referring to
675  * 'path' (or to any of its children). */
676 static void
677 _remove_directory (void *ctx,
678                    notmuch_database_t *notmuch,
679                    const char *path,
680                    int *renamed_files,
681                    int *removed_files)
682 {
683     notmuch_directory_t *directory;
684     notmuch_filenames_t *files, *subdirs;
685     notmuch_status_t status;
686     char *absolute;
687
688     directory = notmuch_database_get_directory (notmuch, path);
689
690     for (files = notmuch_directory_get_child_files (directory);
691          notmuch_filenames_valid (files);
692          notmuch_filenames_move_to_next (files))
693     {
694         absolute = talloc_asprintf (ctx, "%s/%s", path,
695                                     notmuch_filenames_get (files));
696         status = notmuch_database_remove_message (notmuch, absolute);
697         if (status == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID)
698             *renamed_files = *renamed_files + 1;
699         else
700             *removed_files = *removed_files + 1;
701         talloc_free (absolute);
702     }
703
704     for (subdirs = notmuch_directory_get_child_directories (directory);
705          notmuch_filenames_valid (subdirs);
706          notmuch_filenames_move_to_next (subdirs))
707     {
708         absolute = talloc_asprintf (ctx, "%s/%s", path,
709                                     notmuch_filenames_get (subdirs));
710         _remove_directory (ctx, notmuch, absolute, renamed_files, removed_files);
711         talloc_free (absolute);
712     }
713
714     notmuch_directory_destroy (directory);
715 }
716
717 int
718 notmuch_new_command (void *ctx, int argc, char *argv[])
719 {
720     notmuch_config_t *config;
721     notmuch_database_t *notmuch;
722     add_files_state_t add_files_state;
723     double elapsed;
724     struct timeval tv_now;
725     int ret = 0;
726     struct stat st;
727     const char *db_path;
728     char *dot_notmuch_path;
729     struct sigaction action;
730     _filename_node_t *f;
731     int renamed_files, removed_files;
732     notmuch_status_t status;
733     int i;
734
735     add_files_state.verbose = 0;
736     add_files_state.output_is_a_tty = isatty (fileno (stdout));
737
738     for (i = 0; i < argc && argv[i][0] == '-'; i++) {
739         if (STRNCMP_LITERAL (argv[i], "--verbose") == 0) {
740             add_files_state.verbose = 1;
741         } else {
742             fprintf (stderr, "Unrecognized option: %s\n", argv[i]);
743             return 1;
744         }
745     }
746
747     config = notmuch_config_open (ctx, NULL, NULL);
748     if (config == NULL)
749         return 1;
750
751     add_files_state.new_tags = notmuch_config_get_new_tags (config, &add_files_state.new_tags_length);
752     add_files_state.synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);
753     add_files_state.message_ids_to_sync = _filename_list_create (ctx);
754     db_path = notmuch_config_get_database_path (config);
755
756     dot_notmuch_path = talloc_asprintf (ctx, "%s/%s", db_path, ".notmuch");
757
758     if (stat (dot_notmuch_path, &st)) {
759         int count;
760
761         count = 0;
762         count_files (db_path, &count);
763         if (interrupted)
764             return 1;
765
766         printf ("Found %d total files (that's not much mail).\n", count);
767         notmuch = notmuch_database_create (db_path);
768         add_files_state.total_files = count;
769     } else {
770         notmuch = notmuch_database_open (db_path,
771                                          NOTMUCH_DATABASE_MODE_READ_WRITE);
772         if (notmuch == NULL)
773             return 1;
774
775         if (notmuch_database_needs_upgrade (notmuch)) {
776             printf ("Welcome to a new version of notmuch! Your database will now be upgraded.\n");
777             gettimeofday (&add_files_state.tv_start, NULL);
778             notmuch_database_upgrade (notmuch, upgrade_print_progress,
779                                       &add_files_state);
780             printf ("Your notmuch database has now been upgraded to database format version %u.\n",
781                     notmuch_database_get_version (notmuch));
782         }
783
784         add_files_state.total_files = 0;
785     }
786
787     if (notmuch == NULL)
788         return 1;
789
790     /* Setup our handler for SIGINT. We do this after having
791      * potentially done a database upgrade we this interrupt handler
792      * won't support. */
793     memset (&action, 0, sizeof (struct sigaction));
794     action.sa_handler = handle_sigint;
795     sigemptyset (&action.sa_mask);
796     action.sa_flags = SA_RESTART;
797     sigaction (SIGINT, &action, NULL);
798
799     talloc_free (dot_notmuch_path);
800     dot_notmuch_path = NULL;
801
802     add_files_state.processed_files = 0;
803     add_files_state.added_messages = 0;
804     gettimeofday (&add_files_state.tv_start, NULL);
805
806     add_files_state.removed_files = _filename_list_create (ctx);
807     add_files_state.removed_directories = _filename_list_create (ctx);
808
809     ret = add_files (notmuch, db_path, &add_files_state);
810
811     removed_files = 0;
812     renamed_files = 0;
813     for (f = add_files_state.removed_files->head; f; f = f->next) {
814         status = notmuch_database_remove_message (notmuch, f->filename);
815         if (status == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID)
816             renamed_files++;
817         else
818             removed_files++;
819     }
820
821     for (f = add_files_state.removed_directories->head; f; f = f->next) {
822         _remove_directory (ctx, notmuch, f->filename,
823                            &renamed_files, &removed_files);
824     }
825
826     talloc_free (add_files_state.removed_files);
827     talloc_free (add_files_state.removed_directories);
828
829     /* Now that removals are done (hence the database is aware of all
830      * renames), we can synchronize maildir_flags to tags for all
831      * messages that had new filenames appear on this run. */
832     if (add_files_state.synchronize_flags) {
833         _filename_node_t *node;
834         notmuch_message_t *message;
835         for (node = add_files_state.message_ids_to_sync->head;
836              node;
837              node = node->next)
838         {
839             message = notmuch_database_find_message (notmuch, node->filename);
840             notmuch_message_maildir_flags_to_tags (message);
841             notmuch_message_destroy (message);
842         }
843     }
844
845     talloc_free (add_files_state.message_ids_to_sync);
846     add_files_state.message_ids_to_sync = NULL;
847
848     gettimeofday (&tv_now, NULL);
849     elapsed = notmuch_time_elapsed (add_files_state.tv_start,
850                                     tv_now);
851
852     if (add_files_state.processed_files) {
853         printf ("Processed %d %s in ", add_files_state.processed_files,
854                 add_files_state.processed_files == 1 ?
855                 "file" : "total files");
856         notmuch_time_print_formatted_seconds (elapsed);
857         if (elapsed > 1) {
858             printf (" (%d files/sec.).                 \n",
859                     (int) (add_files_state.processed_files / elapsed));
860         } else {
861             printf (".                    \n");
862         }
863     }
864
865     if (add_files_state.added_messages) {
866         printf ("Added %d new %s to the database.",
867                 add_files_state.added_messages,
868                 add_files_state.added_messages == 1 ?
869                 "message" : "messages");
870     } else {
871         printf ("No new mail.");
872     }
873
874     if (removed_files) {
875         printf (" Removed %d %s.",
876                 removed_files,
877                 removed_files == 1 ? "message" : "messages");
878     }
879
880     if (renamed_files) {
881         printf (" Detected %d file %s.",
882                 renamed_files,
883                 renamed_files == 1 ? "rename" : "renames");
884     }
885
886     printf ("\n");
887
888     if (ret) {
889         printf ("\nNote: At least one error was encountered: %s\n",
890                 notmuch_status_to_string (ret));
891     }
892
893     notmuch_database_close (notmuch);
894
895     return ret || interrupted;
896 }