1 /* notmuch - Not much of an email program, (just index and search)
3 * Copyright © 2009 Carl Worth
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.
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.
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/ .
18 * Author: Carl Worth <cworth@cworth.org>
21 #include "notmuch-client.h"
24 notmuch_restore_command (unused (void *ctx), int argc, char *argv[])
26 notmuch_config_t *config;
27 notmuch_database_t *notmuch;
28 notmuch_bool_t synchronize_flags;
29 notmuch_bool_t accumulate = FALSE;
30 char *input_file_name = NULL;
39 config = notmuch_config_open (ctx, NULL, NULL);
43 notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
44 NOTMUCH_DATABASE_MODE_READ_WRITE);
48 synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);
50 notmuch_opt_desc_t options[] = {
51 { NOTMUCH_OPT_POSITION, &input_file_name, 0, 0, 0 },
52 { NOTMUCH_OPT_BOOLEAN, &accumulate, "accumulate", 'a', 0 },
56 opt_index = parse_arguments (argc, argv, options, 1);
59 /* diagnostics already printed */
63 if (input_file_name) {
64 input = fopen (input_file_name, "r");
66 fprintf (stderr, "Error opening %s for reading: %s\n",
67 input_file_name, strerror (errno));
73 if (opt_index < argc) {
75 "Cannot read dump from more than one file: %s\n",
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 if ( xregcomp (®ex,
85 "^([^ ]+) \\(([^)]*)\\)$",
87 INTERNAL_ERROR("compile time constant regex failed.");
89 while ((line_len = getline (&line, &line_size, input)) != -1) {
91 char *message_id, *file_tags, *tag, *next;
92 notmuch_message_t *message = NULL;
93 notmuch_status_t status;
94 notmuch_tags_t *db_tags;
99 rerr = xregexec (®ex, line, 3, match, 0);
100 if (rerr == REG_NOMATCH)
102 fprintf (stderr, "Warning: Ignoring invalid input line: %s\n",
107 message_id = xstrndup (line + match[1].rm_so,
108 match[1].rm_eo - match[1].rm_so);
109 file_tags = xstrndup (line + match[2].rm_so,
110 match[2].rm_eo - match[2].rm_so);
112 status = notmuch_database_find_message (notmuch, message_id, &message);
113 if (status || message == NULL) {
114 fprintf (stderr, "Warning: Cannot apply tags to %smessage: %s\n",
115 message ? "" : "missing ", message_id);
117 fprintf (stderr, "%s\n",
118 notmuch_status_to_string(status));
122 /* In order to detect missing messages, this check/optimization is
123 * intentionally done *after* first finding the message. */
124 if (accumulate && (file_tags == NULL || *file_tags == '\0'))
130 for (db_tags = notmuch_message_get_tags (message);
131 notmuch_tags_valid (db_tags);
132 notmuch_tags_move_to_next (db_tags))
134 const char *tag = notmuch_tags_get (db_tags);
137 db_tags_str = talloc_asprintf_append (db_tags_str, " %s", tag);
139 db_tags_str = talloc_strdup (message, tag);
142 if (((file_tags == NULL || *file_tags == '\0') &&
143 (db_tags_str == NULL || *db_tags_str == '\0')) ||
144 (file_tags && db_tags_str && strcmp (file_tags, db_tags_str) == 0))
149 notmuch_message_freeze (message);
152 notmuch_message_remove_all_tags (message);
156 tag = strsep (&next, " ");
159 status = notmuch_message_add_tag (message, tag);
162 "Error applying tag %s to message %s:\n",
164 fprintf (stderr, "%s\n",
165 notmuch_status_to_string (status));
169 notmuch_message_thaw (message);
171 if (synchronize_flags)
172 notmuch_message_tags_to_maildir_flags (message);
176 notmuch_message_destroy (message);
187 notmuch_database_close (notmuch);