]> git.notmuchmail.org Git - notmuch/blob - notmuch-restore.c
notmuch-restore: implement --accumulate option
[notmuch] / notmuch-restore.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 <getopt.h>
22
23 #include "notmuch-client.h"
24
25 int
26 notmuch_restore_command (unused (void *ctx), int argc, char *argv[])
27 {
28     notmuch_config_t *config;
29     notmuch_database_t *notmuch;
30     notmuch_bool_t synchronize_flags;
31     notmuch_bool_t accumulate = FALSE;
32     FILE *input = stdin;
33     char *line = NULL;
34     size_t line_size;
35     ssize_t line_len;
36     regex_t regex;
37     int rerr;
38
39     config = notmuch_config_open (ctx, NULL, NULL);
40     if (config == NULL)
41         return 1;
42
43     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
44                                      NOTMUCH_DATABASE_MODE_READ_WRITE);
45     if (notmuch == NULL)
46         return 1;
47
48     synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);
49
50     struct option options[] = {
51         { "accumulate",   no_argument,       0, 'a' },
52         { 0, 0, 0, 0}
53     };
54
55     int opt;
56     do {
57         opt = getopt_long (argc, argv, "", options, NULL);
58
59         switch (opt) {
60         case 'a':
61             accumulate = 1;
62             break;
63         case '?':
64             return 1;
65             break;
66         }
67
68     } while (opt != -1);
69
70     if (optind < argc) {
71         input = fopen (argv[optind], "r");
72         if (input == NULL) {
73             fprintf (stderr, "Error opening %s for reading: %s\n",
74                      argv[optind], strerror (errno));
75             return 1;
76         }
77         optind++;
78     }
79
80     /* Dump output is one line per message. We match a sequence of
81      * non-space characters for the message-id, then one or more
82      * spaces, then a list of space-separated tags as a sequence of
83      * characters within literal '(' and ')'. */
84     xregcomp (&regex,
85               "^([^ ]+) \\(([^)]*)\\)$",
86               REG_EXTENDED);
87
88     while ((line_len = getline (&line, &line_size, input)) != -1) {
89         regmatch_t match[3];
90         char *message_id, *file_tags, *tag, *next;
91         notmuch_message_t *message = NULL;
92         notmuch_status_t status;
93         notmuch_tags_t *db_tags;
94         char *db_tags_str;
95
96         chomp_newline (line);
97
98         rerr = xregexec (&regex, line, 3, match, 0);
99         if (rerr == REG_NOMATCH)
100         {
101             fprintf (stderr, "Warning: Ignoring invalid input line: %s\n",
102                      line);
103             continue;
104         }
105
106         message_id = xstrndup (line + match[1].rm_so,
107                                match[1].rm_eo - match[1].rm_so);
108         file_tags = xstrndup (line + match[2].rm_so,
109                               match[2].rm_eo - match[2].rm_so);
110
111         status = notmuch_database_find_message (notmuch, message_id, &message);
112         if (status || message == NULL) {
113             fprintf (stderr, "Warning: Cannot apply tags to %smessage: %s\n",
114                      message ? "" : "missing ", message_id);
115             if (status)
116                 fprintf (stderr, "%s\n",
117                          notmuch_status_to_string(status));
118             goto NEXT_LINE;
119         }
120
121         /* In order to detect missing messages, this check/optimization is
122          * intentionally done *after* first finding the message.  */
123         if (accumulate && (file_tags == NULL || *file_tags == '\0'))
124         {
125             goto NEXT_LINE;
126         }
127
128         db_tags_str = NULL;
129         for (db_tags = notmuch_message_get_tags (message);
130              notmuch_tags_valid (db_tags);
131              notmuch_tags_move_to_next (db_tags))
132         {
133             const char *tag = notmuch_tags_get (db_tags);
134
135             if (db_tags_str)
136                 db_tags_str = talloc_asprintf_append (db_tags_str, " %s", tag);
137             else
138                 db_tags_str = talloc_strdup (message, tag);
139         }
140
141         if (((file_tags == NULL || *file_tags == '\0') &&
142              (db_tags_str == NULL || *db_tags_str == '\0')) ||
143             (file_tags && db_tags_str && strcmp (file_tags, db_tags_str) == 0))
144         {
145             goto NEXT_LINE;
146         }
147
148         notmuch_message_freeze (message);
149
150         if (!accumulate)
151             notmuch_message_remove_all_tags (message);
152
153         next = file_tags;
154         while (next) {
155             tag = strsep (&next, " ");
156             if (*tag == '\0')
157                 continue;
158             status = notmuch_message_add_tag (message, tag);
159             if (status) {
160                 fprintf (stderr,
161                          "Error applying tag %s to message %s:\n",
162                          tag, message_id);
163                 fprintf (stderr, "%s\n",
164                          notmuch_status_to_string (status));
165             }
166         }
167
168         notmuch_message_thaw (message);
169
170         if (synchronize_flags)
171             notmuch_message_tags_to_maildir_flags (message);
172
173       NEXT_LINE:
174         if (message)
175             notmuch_message_destroy (message);
176         message = NULL;
177         free (message_id);
178         free (file_tags);
179     }
180
181     regfree (&regex);
182
183     if (line)
184         free (line);
185
186     notmuch_database_close (notmuch);
187     if (input != stdin)
188         fclose (input);
189
190     return 0;
191 }