]> git.notmuchmail.org Git - notmuch/blob - notmuch-new.c
378bf4c2a15a7dd2a1215b77998d8f73daad1943
[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 https://www.gnu.org/licenses/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 #include "notmuch-client.h"
22 #include "tag-util.h"
23
24 #include <unistd.h>
25
26 typedef struct _filename_node {
27     char *filename;
28     time_t mtime;
29     struct _filename_node *next;
30 } _filename_node_t;
31
32 typedef struct _filename_list {
33     unsigned count;
34     _filename_node_t *head;
35     _filename_node_t **tail;
36 } _filename_list_t;
37
38 enum verbosity {
39     VERBOSITY_QUIET,
40     VERBOSITY_NORMAL,
41     VERBOSITY_VERBOSE,
42 };
43
44 typedef struct {
45     int output_is_a_tty;
46     enum verbosity verbosity;
47     notmuch_bool_t debug;
48     const char **new_tags;
49     size_t new_tags_length;
50     const char **new_ignore;
51     size_t new_ignore_length;
52
53     int total_files;
54     int processed_files;
55     int added_messages, removed_messages, renamed_messages;
56     int vanished_files;
57     struct timeval tv_start;
58
59     _filename_list_t *removed_files;
60     _filename_list_t *removed_directories;
61     _filename_list_t *directory_mtimes;
62
63     notmuch_bool_t synchronize_flags;
64 } add_files_state_t;
65
66 static volatile sig_atomic_t do_print_progress = 0;
67
68 static void
69 handle_sigalrm (unused (int signal))
70 {
71     do_print_progress = 1;
72 }
73
74 static volatile sig_atomic_t interrupted;
75
76 static void
77 handle_sigint (unused (int sig))
78 {
79     static char msg[] = "Stopping...         \n";
80
81     /* This write is "opportunistic", so it's okay to ignore the
82      * result.  It is not required for correctness, and if it does
83      * fail or produce a short write, we want to get out of the signal
84      * handler as quickly as possible, not retry it. */
85     IGNORE_RESULT (write (2, msg, sizeof(msg)-1));
86     interrupted = 1;
87 }
88
89 static _filename_list_t *
90 _filename_list_create (const void *ctx)
91 {
92     _filename_list_t *list;
93
94     list = talloc (ctx, _filename_list_t);
95     if (list == NULL)
96         return NULL;
97
98     list->head = NULL;
99     list->tail = &list->head;
100     list->count = 0;
101
102     return list;
103 }
104
105 static _filename_node_t *
106 _filename_list_add (_filename_list_t *list,
107                     const char *filename)
108 {
109     _filename_node_t *node = talloc (list, _filename_node_t);
110
111     list->count++;
112
113     node->filename = talloc_strdup (list, filename);
114     node->next = NULL;
115
116     *(list->tail) = node;
117     list->tail = &node->next;
118
119     return node;
120 }
121
122 static void
123 generic_print_progress (const char *action, const char *object,
124                         struct timeval tv_start, unsigned processed, unsigned total)
125 {
126     struct timeval tv_now;
127     double elapsed_overall, rate_overall;
128
129     gettimeofday (&tv_now, NULL);
130
131     elapsed_overall = notmuch_time_elapsed (tv_start, tv_now);
132     rate_overall = processed / elapsed_overall;
133
134     printf ("%s %u ", action, processed);
135
136     if (total) {
137         printf ("of %u %s", total, object);
138         if (processed > 0 && elapsed_overall > 0.5) {
139             double time_remaining = ((total - processed) / rate_overall);
140             printf (" (");
141             notmuch_time_print_formatted_seconds (time_remaining);
142             printf (" remaining)");
143         }
144     } else {
145         printf ("%s", object);
146         if (elapsed_overall > 0.5)
147             printf (" (%d %s/sec.)", (int) rate_overall, object);
148     }
149     printf (".\033[K\r");
150
151     fflush (stdout);
152 }
153
154 static int
155 dirent_sort_inode (const struct dirent **a, const struct dirent **b)
156 {
157     return ((*a)->d_ino < (*b)->d_ino) ? -1 : 1;
158 }
159
160 static int
161 dirent_sort_strcmp_name (const struct dirent **a, const struct dirent **b)
162 {
163     return strcmp ((*a)->d_name, (*b)->d_name);
164 }
165
166 /* Return the type of a directory entry relative to path as a stat(2)
167  * mode.  Like stat, this follows symlinks.  Returns -1 and sets errno
168  * if the file's type cannot be determined (which includes dangling
169  * symlinks).
170  */
171 static int
172 dirent_type (const char *path, const struct dirent *entry)
173 {
174     struct stat statbuf;
175     char *abspath;
176     int err, saved_errno;
177
178 #if HAVE_D_TYPE
179     /* Mapping from d_type to stat mode_t.  We omit DT_LNK so that
180      * we'll fall through to stat and get the real file type. */
181     static const mode_t modes[] = {
182         [DT_BLK]  = S_IFBLK,
183         [DT_CHR]  = S_IFCHR,
184         [DT_DIR]  = S_IFDIR,
185         [DT_FIFO] = S_IFIFO,
186         [DT_REG]  = S_IFREG,
187         [DT_SOCK] = S_IFSOCK
188     };
189     if (entry->d_type < ARRAY_SIZE(modes) && modes[entry->d_type])
190         return modes[entry->d_type];
191 #endif
192
193     abspath = talloc_asprintf (NULL, "%s/%s", path, entry->d_name);
194     if (!abspath) {
195         errno = ENOMEM;
196         return -1;
197     }
198     err = stat(abspath, &statbuf);
199     saved_errno = errno;
200     talloc_free (abspath);
201     if (err < 0) {
202         errno = saved_errno;
203         return -1;
204     }
205     return statbuf.st_mode & S_IFMT;
206 }
207
208 /* Test if the directory looks like a Maildir directory.
209  *
210  * Search through the array of directory entries to see if we can find all
211  * three subdirectories typical for Maildir, that is "new", "cur", and "tmp".
212  *
213  * Return 1 if the directory looks like a Maildir and 0 otherwise.
214  */
215 static int
216 _entries_resemble_maildir (const char *path, struct dirent **entries, int count)
217 {
218     int i, found = 0;
219
220     for (i = 0; i < count; i++) {
221         if (dirent_type (path, entries[i]) != S_IFDIR)
222             continue;
223
224         if (strcmp(entries[i]->d_name, "new") == 0 ||
225             strcmp(entries[i]->d_name, "cur") == 0 ||
226             strcmp(entries[i]->d_name, "tmp") == 0)
227         {
228             found++;
229             if (found == 3)
230                 return 1;
231         }
232     }
233
234     return 0;
235 }
236
237 static notmuch_bool_t
238 _special_directory (const char *entry)
239 {
240     return strcmp (entry, ".") == 0 || strcmp (entry, "..") == 0;
241 }
242
243 /* Test if the file/directory is to be ignored.
244  */
245 static notmuch_bool_t
246 _entry_in_ignore_list (const char *entry, add_files_state_t *state)
247 {
248     size_t i;
249
250     for (i = 0; i < state->new_ignore_length; i++)
251         if (strcmp (entry, state->new_ignore[i]) == 0)
252             return TRUE;
253
254     return FALSE;
255 }
256
257 /* Add a single file to the database. */
258 static notmuch_status_t
259 add_file (notmuch_database_t *notmuch, const char *filename,
260           add_files_state_t *state)
261 {
262     notmuch_message_t *message = NULL;
263     const char **tag;
264     notmuch_status_t status;
265
266     status = notmuch_database_begin_atomic (notmuch);
267     if (status)
268         goto DONE;
269
270     status = notmuch_database_index_file (notmuch, filename, NULL, &message);
271     switch (status) {
272     /* Success. */
273     case NOTMUCH_STATUS_SUCCESS:
274         state->added_messages++;
275         notmuch_message_freeze (message);
276         if (state->synchronize_flags)
277             notmuch_message_maildir_flags_to_tags (message);
278
279         for (tag = state->new_tags; *tag != NULL; tag++) {
280             if (strcmp ("unread", *tag) !=0 ||
281                 !notmuch_message_has_maildir_flag (message, 'S')) {
282                 notmuch_message_add_tag (message, *tag);
283             }
284         }
285
286         notmuch_message_thaw (message);
287         break;
288     /* Non-fatal issues (go on to next file). */
289     case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID:
290         if (state->synchronize_flags)
291             notmuch_message_maildir_flags_to_tags (message);
292         break;
293     case NOTMUCH_STATUS_FILE_NOT_EMAIL:
294         fprintf (stderr, "Note: Ignoring non-mail file: %s\n", filename);
295         break;
296     case NOTMUCH_STATUS_FILE_ERROR:
297         /* Someone renamed/removed the file between scandir and now. */
298         state->vanished_files++;
299         fprintf (stderr, "Unexpected error with file %s\n", filename);
300         (void) print_status_database ("add_file", notmuch, status);
301         break;
302     /* Fatal issues. Don't process anymore. */
303     case NOTMUCH_STATUS_READ_ONLY_DATABASE:
304     case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
305     case NOTMUCH_STATUS_OUT_OF_MEMORY:
306         (void) print_status_database("add_file", notmuch, status);
307         goto DONE;
308     default:
309         INTERNAL_ERROR ("add_message returned unexpected value: %d", status);
310         goto DONE;
311     }
312
313     status = notmuch_database_end_atomic (notmuch);
314
315   DONE:
316     if (message)
317         notmuch_message_destroy (message);
318
319     return status;
320 }
321
322 /* Examine 'path' recursively as follows:
323  *
324  *   o Ask the filesystem for the mtime of 'path' (fs_mtime)
325  *   o Ask the database for its timestamp of 'path' (db_mtime)
326  *
327  *   o Ask the filesystem for files and directories within 'path'
328  *     (via scandir and stored in fs_entries)
329  *
330  *   o Pass 1: For each directory in fs_entries, recursively call into
331  *     this same function.
332  *
333  *   o Compare fs_mtime to db_mtime. If they are equivalent, terminate
334  *     the algorithm at this point, (this directory has not been
335  *     updated in the filesystem since the last database scan of PASS
336  *     2).
337  *
338  *   o Ask the database for files and directories within 'path'
339  *     (db_files and db_subdirs)
340  *
341  *   o Pass 2: Walk fs_entries simultaneously with db_files and
342  *     db_subdirs. Look for one of three interesting cases:
343  *
344  *         1. Regular file in fs_entries and not in db_files
345  *            This is a new file to add_message into the database.
346  *
347  *         2. Filename in db_files not in fs_entries.
348  *            This is a file that has been removed from the mail store.
349  *
350  *         3. Directory in db_subdirs not in fs_entries
351  *            This is a directory that has been removed from the mail store.
352  *
353  *     Note that the addition of a directory is not interesting here,
354  *     since that will have been taken care of in pass 1. Also, we
355  *     don't immediately act on file/directory removal since we must
356  *     ensure that in the case of a rename that the new filename is
357  *     added before the old filename is removed, (so that no
358  *     information is lost from the database).
359  *
360  *   o Tell the database to update its time of 'path' to 'fs_mtime'
361  *     if fs_mtime isn't the current wall-clock time.
362  */
363 static notmuch_status_t
364 add_files (notmuch_database_t *notmuch,
365            const char *path,
366            add_files_state_t *state)
367 {
368     struct dirent *entry = NULL;
369     char *next = NULL;
370     time_t fs_mtime, db_mtime;
371     notmuch_status_t status, ret = NOTMUCH_STATUS_SUCCESS;
372     struct dirent **fs_entries = NULL;
373     int i, num_fs_entries = 0, entry_type;
374     notmuch_directory_t *directory;
375     notmuch_filenames_t *db_files = NULL;
376     notmuch_filenames_t *db_subdirs = NULL;
377     time_t stat_time;
378     struct stat st;
379     notmuch_bool_t is_maildir;
380
381     if (stat (path, &st)) {
382         fprintf (stderr, "Error reading directory %s: %s\n",
383                  path, strerror (errno));
384         return NOTMUCH_STATUS_FILE_ERROR;
385     }
386     stat_time = time (NULL);
387
388     if (! S_ISDIR (st.st_mode)) {
389         fprintf (stderr, "Error: %s is not a directory.\n", path);
390         return NOTMUCH_STATUS_FILE_ERROR;
391     }
392
393     fs_mtime = st.st_mtime;
394
395     status = notmuch_database_get_directory (notmuch, path, &directory);
396     if (status) {
397         ret = status;
398         goto DONE;
399     }
400     db_mtime = directory ? notmuch_directory_get_mtime (directory) : 0;
401
402     /* If the directory is unchanged from our last scan and has no
403      * sub-directories, then return without scanning it at all.  In
404      * some situations, skipping the scan can substantially reduce the
405      * cost of notmuch new, especially since the huge numbers of files
406      * in Maildirs make scans expensive, but all files live in leaf
407      * directories.
408      *
409      * To check for sub-directories, we borrow a trick from find,
410      * kpathsea, and many other UNIX tools: since a directory's link
411      * count is the number of sub-directories (specifically, their
412      * '..' entries) plus 2 (the link from the parent and the link for
413      * '.').  This check is safe even on weird file systems, since
414      * file systems that can't compute this will return 0 or 1.  This
415      * is safe even on *really* weird file systems like HFS+ that
416      * mistakenly return the total number of directory entries, since
417      * that only inflates the count beyond 2.
418      */
419     if (directory && fs_mtime == db_mtime && st.st_nlink == 2) {
420         /* There's one catch: pass 1 below considers symlinks to
421          * directories to be directories, but these don't increase the
422          * file system link count.  So, only bail early if the
423          * database agrees that there are no sub-directories. */
424         db_subdirs = notmuch_directory_get_child_directories (directory);
425         if (!notmuch_filenames_valid (db_subdirs))
426             goto DONE;
427         notmuch_filenames_destroy (db_subdirs);
428         db_subdirs = NULL;
429     }
430
431     /* If the database knows about this directory, then we sort based
432      * on strcmp to match the database sorting. Otherwise, we can do
433      * inode-based sorting for faster filesystem operation. */
434     num_fs_entries = scandir (path, &fs_entries, 0,
435                               directory ?
436                               dirent_sort_strcmp_name : dirent_sort_inode);
437
438     if (num_fs_entries == -1) {
439         fprintf (stderr, "Error opening directory %s: %s\n",
440                  path, strerror (errno));
441         /* We consider this a fatal error because, if a user moved a
442          * message from another directory that we were able to scan
443          * into this directory, skipping this directory will cause
444          * that message to be lost. */
445         ret = NOTMUCH_STATUS_FILE_ERROR;
446         goto DONE;
447     }
448
449     /* Pass 1: Recurse into all sub-directories. */
450     is_maildir = _entries_resemble_maildir (path, fs_entries, num_fs_entries);
451
452     for (i = 0; i < num_fs_entries && ! interrupted; i++) {
453         entry = fs_entries[i];
454
455         /* Ignore special directories to avoid infinite recursion. */
456         if (_special_directory (entry->d_name))
457             continue;
458
459         /* Ignore any files/directories the user has configured to
460          * ignore.  We do this before dirent_type both for performance
461          * and because we don't care if dirent_type fails on entries
462          * that are explicitly ignored.
463          */
464         if (_entry_in_ignore_list (entry->d_name, state)) {
465             if (state->debug)
466                 printf ("(D) add_files, pass 1: explicitly ignoring %s/%s\n",
467                         path, entry->d_name);
468             continue;
469         }
470
471         /* We only want to descend into directories (and symlinks to
472          * directories). */
473         entry_type = dirent_type (path, entry);
474         if (entry_type == -1) {
475             /* Be pessimistic, e.g. so we don't lose lots of mail just
476              * because a user broke a symlink. */
477             fprintf (stderr, "Error reading file %s/%s: %s\n",
478                      path, entry->d_name, strerror (errno));
479             return NOTMUCH_STATUS_FILE_ERROR;
480         } else if (entry_type != S_IFDIR) {
481             continue;
482         }
483
484         /* Ignore the .notmuch directory and any "tmp" directory
485          * that appears within a maildir.
486          */
487         if ((is_maildir && strcmp (entry->d_name, "tmp") == 0) ||
488             strcmp (entry->d_name, ".notmuch") == 0)
489             continue;
490
491         next = talloc_asprintf (notmuch, "%s/%s", path, entry->d_name);
492         status = add_files (notmuch, next, state);
493         if (status) {
494             ret = status;
495             goto DONE;
496         }
497         talloc_free (next);
498         next = NULL;
499     }
500
501     /* If the directory's modification time in the filesystem is the
502      * same as what we recorded in the database the last time we
503      * scanned it, then we can skip the second pass entirely.
504      *
505      * We test for strict equality here to avoid a bug that can happen
506      * if the system clock jumps backward, (preventing new mail from
507      * being discovered until the clock catches up and the directory
508      * is modified again).
509      */
510     if (directory && fs_mtime == db_mtime)
511         goto DONE;
512
513     /* If the database has never seen this directory before, we can
514      * simply leave db_files and db_subdirs NULL. */
515     if (directory) {
516         db_files = notmuch_directory_get_child_files (directory);
517         db_subdirs = notmuch_directory_get_child_directories (directory);
518     }
519
520     /* Pass 2: Scan for new files, removed files, and removed directories. */
521     for (i = 0; i < num_fs_entries && ! interrupted; i++) {
522         entry = fs_entries[i];
523
524         /* Ignore files & directories user has configured to be ignored */
525         if (_entry_in_ignore_list (entry->d_name, state)) {
526             if (state->debug)
527                 printf ("(D) add_files, pass 2: explicitly ignoring %s/%s\n",
528                         path, entry->d_name);
529             continue;
530         }
531
532         /* Check if we've walked past any names in db_files or
533          * db_subdirs. If so, these have been deleted. */
534         while (notmuch_filenames_valid (db_files) &&
535                strcmp (notmuch_filenames_get (db_files), entry->d_name) < 0)
536         {
537             char *absolute = talloc_asprintf (state->removed_files,
538                                               "%s/%s", path,
539                                               notmuch_filenames_get (db_files));
540
541             if (state->debug)
542                 printf ("(D) add_files, pass 2: queuing passed file %s for deletion from database\n",
543                         absolute);
544
545             _filename_list_add (state->removed_files, absolute);
546
547             notmuch_filenames_move_to_next (db_files);
548         }
549
550         while (notmuch_filenames_valid (db_subdirs) &&
551                strcmp (notmuch_filenames_get (db_subdirs), entry->d_name) <= 0)
552         {
553             const char *filename = notmuch_filenames_get (db_subdirs);
554
555             if (strcmp (filename, entry->d_name) < 0)
556             {
557                 char *absolute = talloc_asprintf (state->removed_directories,
558                                                   "%s/%s", path, filename);
559                 if (state->debug)
560                     printf ("(D) add_files, pass 2: queuing passed directory %s for deletion from database\n",
561                         absolute);
562
563                 _filename_list_add (state->removed_directories, absolute);
564             }
565
566             notmuch_filenames_move_to_next (db_subdirs);
567         }
568
569         /* Only add regular files (and symlinks to regular files). */
570         entry_type = dirent_type (path, entry);
571         if (entry_type == -1) {
572             fprintf (stderr, "Error reading file %s/%s: %s\n",
573                      path, entry->d_name, strerror (errno));
574             return NOTMUCH_STATUS_FILE_ERROR;
575         } else if (entry_type != S_IFREG) {
576             continue;
577         }
578
579         /* Don't add a file that we've added before. */
580         if (notmuch_filenames_valid (db_files) &&
581             strcmp (notmuch_filenames_get (db_files), entry->d_name) == 0)
582         {
583             notmuch_filenames_move_to_next (db_files);
584             continue;
585         }
586
587         /* We're now looking at a regular file that doesn't yet exist
588          * in the database, so add it. */
589         next = talloc_asprintf (notmuch, "%s/%s", path, entry->d_name);
590
591         state->processed_files++;
592
593         if (state->verbosity >= VERBOSITY_VERBOSE) {
594             if (state->output_is_a_tty)
595                 printf("\r\033[K");
596
597             printf ("%i/%i: %s", state->processed_files, state->total_files,
598                     next);
599
600             putchar((state->output_is_a_tty) ? '\r' : '\n');
601             fflush (stdout);
602         }
603
604         status = add_file (notmuch, next, state);
605         if (status) {
606             ret = status;
607             goto DONE;
608         }
609
610         if (do_print_progress) {
611             do_print_progress = 0;
612             generic_print_progress ("Processed", "files", state->tv_start,
613                                     state->processed_files, state->total_files);
614         }
615
616         talloc_free (next);
617         next = NULL;
618     }
619
620     if (interrupted)
621         goto DONE;
622
623     /* Now that we've walked the whole filesystem list, anything left
624      * over in the database lists has been deleted. */
625     while (notmuch_filenames_valid (db_files))
626     {
627         char *absolute = talloc_asprintf (state->removed_files,
628                                           "%s/%s", path,
629                                           notmuch_filenames_get (db_files));
630         if (state->debug)
631             printf ("(D) add_files, pass 3: queuing leftover file %s for deletion from database\n",
632                     absolute);
633
634         _filename_list_add (state->removed_files, absolute);
635
636         notmuch_filenames_move_to_next (db_files);
637     }
638
639     while (notmuch_filenames_valid (db_subdirs))
640     {
641         char *absolute = talloc_asprintf (state->removed_directories,
642                                           "%s/%s", path,
643                                           notmuch_filenames_get (db_subdirs));
644
645         if (state->debug)
646             printf ("(D) add_files, pass 3: queuing leftover directory %s for deletion from database\n",
647                     absolute);
648
649         _filename_list_add (state->removed_directories, absolute);
650
651         notmuch_filenames_move_to_next (db_subdirs);
652     }
653
654     /* If the directory's mtime is the same as the wall-clock time
655      * when we stat'ed the directory, we skip updating the mtime in
656      * the database because a message could be delivered later in this
657      * same second.  This may lead to unnecessary re-scans, but it
658      * avoids overlooking messages. */
659     if (fs_mtime != stat_time)
660         _filename_list_add (state->directory_mtimes, path)->mtime = fs_mtime;
661
662   DONE:
663     if (next)
664         talloc_free (next);
665     if (fs_entries) {
666         for (i = 0; i < num_fs_entries; i++)
667             free (fs_entries[i]);
668
669         free (fs_entries);
670     }
671     if (db_subdirs)
672         notmuch_filenames_destroy (db_subdirs);
673     if (db_files)
674         notmuch_filenames_destroy (db_files);
675     if (directory)
676         notmuch_directory_destroy (directory);
677
678     return ret;
679 }
680
681 static void
682 setup_progress_printing_timer (void)
683 {
684     struct sigaction action;
685     struct itimerval timerval;
686
687     /* Set up our handler for SIGALRM */
688     memset (&action, 0, sizeof (struct sigaction));
689     action.sa_handler = handle_sigalrm;
690     sigemptyset (&action.sa_mask);
691     action.sa_flags = SA_RESTART;
692     sigaction (SIGALRM, &action, NULL);
693
694     /* Then start a timer to send SIGALRM once per second. */
695     timerval.it_interval.tv_sec = 1;
696     timerval.it_interval.tv_usec = 0;
697     timerval.it_value.tv_sec = 1;
698     timerval.it_value.tv_usec = 0;
699     setitimer (ITIMER_REAL, &timerval, NULL);
700 }
701
702 static void
703 stop_progress_printing_timer (void)
704 {
705     struct sigaction action;
706     struct itimerval timerval;
707
708     /* Now stop the timer. */
709     timerval.it_interval.tv_sec = 0;
710     timerval.it_interval.tv_usec = 0;
711     timerval.it_value.tv_sec = 0;
712     timerval.it_value.tv_usec = 0;
713     setitimer (ITIMER_REAL, &timerval, NULL);
714
715     /* And disable the signal handler. */
716     action.sa_handler = SIG_IGN;
717     sigaction (SIGALRM, &action, NULL);
718 }
719
720
721 /* XXX: This should be merged with the add_files function since it
722  * shares a lot of logic with it. */
723 /* Recursively count all regular files in path and all sub-directories
724  * of path.  The result is added to *count (which should be
725  * initialized to zero by the top-level caller before calling
726  * count_files). */
727 static void
728 count_files (const char *path, int *count, add_files_state_t *state)
729 {
730     struct dirent *entry = NULL;
731     char *next;
732     struct dirent **fs_entries = NULL;
733     int num_fs_entries = scandir (path, &fs_entries, 0, dirent_sort_inode);
734     int entry_type, i;
735
736     if (num_fs_entries == -1) {
737         fprintf (stderr, "Warning: failed to open directory %s: %s\n",
738                  path, strerror (errno));
739         goto DONE;
740     }
741
742     for (i = 0; i < num_fs_entries && ! interrupted; i++) {
743         entry = fs_entries[i];
744
745         /* Ignore special directories to avoid infinite recursion.
746          * Also ignore the .notmuch directory.
747          */
748         if (_special_directory (entry->d_name) ||
749             strcmp (entry->d_name, ".notmuch") == 0)
750             continue;
751
752         /* Ignore any files/directories the user has configured to be
753          * ignored
754          */
755         if (_entry_in_ignore_list (entry->d_name, state)) {
756             if (state->debug)
757                 printf ("(D) count_files: explicitly ignoring %s/%s\n",
758                         path, entry->d_name);
759             continue;
760         }
761
762         if (asprintf (&next, "%s/%s", path, entry->d_name) == -1) {
763             next = NULL;
764             fprintf (stderr, "Error descending from %s to %s: Out of memory\n",
765                      path, entry->d_name);
766             continue;
767         }
768
769         entry_type = dirent_type (path, entry);
770         if (entry_type == S_IFREG) {
771             *count = *count + 1;
772             if (*count % 1000 == 0 && state->verbosity >= VERBOSITY_NORMAL) {
773                 printf ("Found %d files so far.\r", *count);
774                 fflush (stdout);
775             }
776         } else if (entry_type == S_IFDIR) {
777             count_files (next, count, state);
778         }
779
780         free (next);
781     }
782
783   DONE:
784     if (fs_entries) {
785         for (i = 0; i < num_fs_entries; i++)
786             free (fs_entries[i]);
787
788         free (fs_entries);
789     }
790 }
791
792 static void
793 upgrade_print_progress (void *closure,
794                         double progress)
795 {
796     add_files_state_t *state = closure;
797
798     printf ("Upgrading database: %.2f%% complete", progress * 100.0);
799
800     if (progress > 0) {
801         struct timeval tv_now;
802         double elapsed, time_remaining;
803
804         gettimeofday (&tv_now, NULL);
805
806         elapsed = notmuch_time_elapsed (state->tv_start, tv_now);
807         time_remaining = (elapsed / progress) * (1.0 - progress);
808         printf (" (");
809         notmuch_time_print_formatted_seconds (time_remaining);
810         printf (" remaining)");
811     }
812
813     printf (".      \r");
814
815     fflush (stdout);
816 }
817
818 /* Remove one message filename from the database. */
819 static notmuch_status_t
820 remove_filename (notmuch_database_t *notmuch,
821                  const char *path,
822                  add_files_state_t *add_files_state)
823 {
824     notmuch_status_t status;
825     notmuch_message_t *message;
826     status = notmuch_database_begin_atomic (notmuch);
827     if (status)
828         return status;
829     status = notmuch_database_find_message_by_filename (notmuch, path, &message);
830     if (status || message == NULL)
831         goto DONE;
832
833     status = notmuch_database_remove_message (notmuch, path);
834     if (status == NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) {
835         add_files_state->renamed_messages++;
836         if (add_files_state->synchronize_flags == TRUE)
837             notmuch_message_maildir_flags_to_tags (message);
838         status = NOTMUCH_STATUS_SUCCESS;
839     } else if (status == NOTMUCH_STATUS_SUCCESS) {
840         add_files_state->removed_messages++;
841     }
842     notmuch_message_destroy (message);
843
844   DONE:
845     notmuch_database_end_atomic (notmuch);
846     return status;
847 }
848
849 /* Recursively remove all filenames from the database referring to
850  * 'path' (or to any of its children). */
851 static notmuch_status_t
852 _remove_directory (void *ctx,
853                    notmuch_database_t *notmuch,
854                    const char *path,
855                    add_files_state_t *add_files_state)
856 {
857     notmuch_status_t status;
858     notmuch_directory_t *directory;
859     notmuch_filenames_t *files, *subdirs;
860     char *absolute;
861
862     status = notmuch_database_get_directory (notmuch, path, &directory);
863     if (status || !directory)
864         return status;
865
866     for (files = notmuch_directory_get_child_files (directory);
867          notmuch_filenames_valid (files);
868          notmuch_filenames_move_to_next (files))
869     {
870         absolute = talloc_asprintf (ctx, "%s/%s", path,
871                                     notmuch_filenames_get (files));
872         status = remove_filename (notmuch, absolute, add_files_state);
873         talloc_free (absolute);
874         if (status)
875             goto DONE;
876     }
877
878     for (subdirs = notmuch_directory_get_child_directories (directory);
879          notmuch_filenames_valid (subdirs);
880          notmuch_filenames_move_to_next (subdirs))
881     {
882         absolute = talloc_asprintf (ctx, "%s/%s", path,
883                                     notmuch_filenames_get (subdirs));
884         status = _remove_directory (ctx, notmuch, absolute, add_files_state);
885         talloc_free (absolute);
886         if (status)
887             goto DONE;
888     }
889
890     status = notmuch_directory_delete (directory);
891
892   DONE:
893     if (status)
894         notmuch_directory_destroy (directory);
895     return status;
896 }
897
898 static void
899 print_results (const add_files_state_t *state)
900 {
901     double elapsed;
902     struct timeval tv_now;
903
904     gettimeofday (&tv_now, NULL);
905     elapsed = notmuch_time_elapsed (state->tv_start, tv_now);
906
907     if (state->processed_files) {
908         printf ("Processed %d %s in ", state->processed_files,
909                 state->processed_files == 1 ? "file" : "total files");
910         notmuch_time_print_formatted_seconds (elapsed);
911         if (elapsed > 1)
912             printf (" (%d files/sec.)",
913                     (int) (state->processed_files / elapsed));
914         printf (".%s\n", (state->output_is_a_tty) ? "\033[K" : "");
915     }
916
917     if (state->added_messages)
918         printf ("Added %d new %s to the database.", state->added_messages,
919                 state->added_messages == 1 ? "message" : "messages");
920     else
921         printf ("No new mail.");
922
923     if (state->removed_messages)
924         printf (" Removed %d %s.", state->removed_messages,
925                 state->removed_messages == 1 ? "message" : "messages");
926
927     if (state->renamed_messages)
928         printf (" Detected %d file %s.", state->renamed_messages,
929                 state->renamed_messages == 1 ? "rename" : "renames");
930
931     printf ("\n");
932 }
933
934 int
935 notmuch_new_command (notmuch_config_t *config, int argc, char *argv[])
936 {
937     notmuch_database_t *notmuch;
938     add_files_state_t add_files_state = {
939         .verbosity = VERBOSITY_NORMAL,
940         .debug = FALSE,
941         .output_is_a_tty = isatty (fileno (stdout)),
942     };
943     struct timeval tv_start;
944     int ret = 0;
945     struct stat st;
946     const char *db_path;
947     char *dot_notmuch_path;
948     struct sigaction action;
949     _filename_node_t *f;
950     int opt_index;
951     unsigned int i;
952     notmuch_bool_t timer_is_active = FALSE;
953     notmuch_bool_t no_hooks = FALSE;
954     notmuch_bool_t quiet = FALSE, verbose = FALSE;
955     notmuch_status_t status;
956
957     notmuch_opt_desc_t options[] = {
958         { NOTMUCH_OPT_BOOLEAN,  &quiet, "quiet", 'q', 0 },
959         { NOTMUCH_OPT_BOOLEAN,  &verbose, "verbose", 'v', 0 },
960         { NOTMUCH_OPT_BOOLEAN,  &add_files_state.debug, "debug", 'd', 0 },
961         { NOTMUCH_OPT_BOOLEAN,  &no_hooks, "no-hooks", 'n', 0 },
962         { NOTMUCH_OPT_INHERIT, (void *) &notmuch_shared_options, NULL, 0, 0 },
963         { 0, 0, 0, 0, 0 }
964     };
965
966     opt_index = parse_arguments (argc, argv, options, 1);
967     if (opt_index < 0)
968         return EXIT_FAILURE;
969
970     notmuch_process_shared_options (argv[0]);
971
972     /* quiet trumps verbose */
973     if (quiet)
974         add_files_state.verbosity = VERBOSITY_QUIET;
975     else if (verbose)
976         add_files_state.verbosity = VERBOSITY_VERBOSE;
977
978     add_files_state.new_tags = notmuch_config_get_new_tags (config, &add_files_state.new_tags_length);
979     add_files_state.new_ignore = notmuch_config_get_new_ignore (config, &add_files_state.new_ignore_length);
980     add_files_state.synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);
981     db_path = notmuch_config_get_database_path (config);
982
983     for (i = 0; i < add_files_state.new_tags_length; i++) {
984         const char *error_msg;
985
986         error_msg = illegal_tag (add_files_state.new_tags[i], FALSE);
987         if (error_msg) {
988             fprintf (stderr, "Error: tag '%s' in new.tags: %s\n",
989                      add_files_state.new_tags[i], error_msg);
990             return EXIT_FAILURE;
991         }
992     }
993
994     if (!no_hooks) {
995         ret = notmuch_run_hook (db_path, "pre-new");
996         if (ret)
997             return EXIT_FAILURE;
998     }
999
1000     dot_notmuch_path = talloc_asprintf (config, "%s/%s", db_path, ".notmuch");
1001
1002     if (stat (dot_notmuch_path, &st)) {
1003         int count;
1004
1005         count = 0;
1006         count_files (db_path, &count, &add_files_state);
1007         if (interrupted)
1008             return EXIT_FAILURE;
1009
1010         if (add_files_state.verbosity >= VERBOSITY_NORMAL)
1011             printf ("Found %d total files (that's not much mail).\n", count);
1012         if (notmuch_database_create (db_path, &notmuch))
1013             return EXIT_FAILURE;
1014         add_files_state.total_files = count;
1015     } else {
1016         char *status_string = NULL;
1017         if (notmuch_database_open_verbose (db_path, NOTMUCH_DATABASE_MODE_READ_WRITE,
1018                                            &notmuch, &status_string)) {
1019             if (status_string) {
1020                 fputs (status_string, stderr);
1021                 free (status_string);
1022             }
1023             return EXIT_FAILURE;
1024         }
1025
1026         notmuch_exit_if_unmatched_db_uuid (notmuch);
1027
1028         if (notmuch_database_needs_upgrade (notmuch)) {
1029             time_t now = time (NULL);
1030             struct tm *gm_time = gmtime (&now);
1031
1032             /* since dump files are written atomically, the amount of
1033              * harm from overwriting one within a second seems
1034              * relatively small. */
1035
1036             const char *backup_name =
1037                 talloc_asprintf (notmuch, "%s/dump-%04d%02d%02dT%02d%02d%02d.gz",
1038                                  dot_notmuch_path,
1039                                  gm_time->tm_year + 1900,
1040                                  gm_time->tm_mon + 1,
1041                                  gm_time->tm_mday,
1042                                  gm_time->tm_hour,
1043                                  gm_time->tm_min,
1044                                  gm_time->tm_sec);
1045
1046             if (add_files_state.verbosity >= VERBOSITY_NORMAL) {
1047                 printf ("Welcome to a new version of notmuch! Your database will now be upgraded.\n");
1048                 printf ("This process is safe to interrupt.\n");
1049                 printf ("Backing up tags to %s...\n", backup_name);
1050             }
1051
1052             if (notmuch_database_dump (notmuch, backup_name, "",
1053                                        DUMP_FORMAT_BATCH_TAG, DUMP_INCLUDE_DEFAULT, TRUE)) {
1054                 fprintf (stderr, "Backup failed. Aborting upgrade.");
1055                 return EXIT_FAILURE;
1056             }
1057
1058             gettimeofday (&add_files_state.tv_start, NULL);
1059             status = notmuch_database_upgrade (
1060                 notmuch,
1061                 add_files_state.verbosity >= VERBOSITY_NORMAL ? upgrade_print_progress : NULL,
1062                 &add_files_state);
1063             if (status) {
1064                 printf ("Upgrade failed: %s\n",
1065                         notmuch_status_to_string (status));
1066                 notmuch_database_destroy (notmuch);
1067                 return EXIT_FAILURE;
1068             }
1069             if (add_files_state.verbosity >= VERBOSITY_NORMAL)
1070                 printf ("Your notmuch database has now been upgraded.\n");
1071         }
1072
1073         add_files_state.total_files = 0;
1074     }
1075
1076     if (notmuch == NULL)
1077         return EXIT_FAILURE;
1078
1079     /* Set up our handler for SIGINT. We do this after having
1080      * potentially done a database upgrade we this interrupt handler
1081      * won't support. */
1082     memset (&action, 0, sizeof (struct sigaction));
1083     action.sa_handler = handle_sigint;
1084     sigemptyset (&action.sa_mask);
1085     action.sa_flags = SA_RESTART;
1086     sigaction (SIGINT, &action, NULL);
1087
1088     talloc_free (dot_notmuch_path);
1089     dot_notmuch_path = NULL;
1090
1091     gettimeofday (&add_files_state.tv_start, NULL);
1092
1093     add_files_state.removed_files = _filename_list_create (config);
1094     add_files_state.removed_directories = _filename_list_create (config);
1095     add_files_state.directory_mtimes = _filename_list_create (config);
1096
1097     if (add_files_state.verbosity == VERBOSITY_NORMAL &&
1098         add_files_state.output_is_a_tty && ! debugger_is_active ()) {
1099         setup_progress_printing_timer ();
1100         timer_is_active = TRUE;
1101     }
1102
1103     ret = add_files (notmuch, db_path, &add_files_state);
1104     if (ret)
1105         goto DONE;
1106
1107     gettimeofday (&tv_start, NULL);
1108     for (f = add_files_state.removed_files->head; f && !interrupted; f = f->next) {
1109         ret = remove_filename (notmuch, f->filename, &add_files_state);
1110         if (ret)
1111             goto DONE;
1112         if (do_print_progress) {
1113             do_print_progress = 0;
1114             generic_print_progress ("Cleaned up", "messages",
1115                 tv_start, add_files_state.removed_messages + add_files_state.renamed_messages,
1116                 add_files_state.removed_files->count);
1117         }
1118     }
1119
1120     gettimeofday (&tv_start, NULL);
1121     for (f = add_files_state.removed_directories->head, i = 0; f && !interrupted; f = f->next, i++) {
1122         ret = _remove_directory (config, notmuch, f->filename, &add_files_state);
1123         if (ret)
1124             goto DONE;
1125         if (do_print_progress) {
1126             do_print_progress = 0;
1127             generic_print_progress ("Cleaned up", "directories",
1128                 tv_start, i,
1129                 add_files_state.removed_directories->count);
1130         }
1131     }
1132
1133     for (f = add_files_state.directory_mtimes->head; f && !interrupted; f = f->next) {
1134         notmuch_directory_t *directory;
1135         status = notmuch_database_get_directory (notmuch, f->filename, &directory);
1136         if (status == NOTMUCH_STATUS_SUCCESS && directory) {
1137             notmuch_directory_set_mtime (directory, f->mtime);
1138             notmuch_directory_destroy (directory);
1139         }
1140     }
1141
1142   DONE:
1143     talloc_free (add_files_state.removed_files);
1144     talloc_free (add_files_state.removed_directories);
1145     talloc_free (add_files_state.directory_mtimes);
1146
1147     if (timer_is_active)
1148         stop_progress_printing_timer ();
1149
1150     if (add_files_state.verbosity >= VERBOSITY_NORMAL)
1151         print_results (&add_files_state);
1152
1153     if (ret)
1154         fprintf (stderr, "Note: A fatal error was encountered: %s\n",
1155                  notmuch_status_to_string (ret));
1156
1157     notmuch_database_destroy (notmuch);
1158
1159     if (!no_hooks && !ret && !interrupted)
1160         ret = notmuch_run_hook (db_path, "post-new");
1161
1162     if (ret || interrupted)
1163         return EXIT_FAILURE;
1164
1165     if (add_files_state.vanished_files)
1166         return NOTMUCH_EXIT_TEMPFAIL;
1167
1168     return EXIT_SUCCESS;
1169 }