]> git.notmuchmail.org Git - notmuch/blob - notmuch-tag.c
lib: Add missing status check in _notmuch_message_remove_filename.
[notmuch] / notmuch-tag.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 static volatile sig_atomic_t interrupted;
24
25 static void
26 handle_sigint (unused (int sig))
27 {
28     static char msg[] = "Stopping...         \n";
29     write(2, msg, sizeof(msg)-1);
30     interrupted = 1;
31 }
32
33 int
34 notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[]))
35 {
36     int *add_tags, *remove_tags;
37     int add_tags_count = 0;
38     int remove_tags_count = 0;
39     char *query_string;
40     notmuch_config_t *config;
41     notmuch_database_t *notmuch;
42     notmuch_query_t *query;
43     notmuch_messages_t *messages;
44     notmuch_message_t *message;
45     struct sigaction action;
46     notmuch_bool_t synchronize_flags;
47     int i;
48
49     /* Setup our handler for SIGINT */
50     memset (&action, 0, sizeof (struct sigaction));
51     action.sa_handler = handle_sigint;
52     sigemptyset (&action.sa_mask);
53     action.sa_flags = SA_RESTART;
54     sigaction (SIGINT, &action, NULL);
55
56     add_tags = talloc_size (ctx, argc * sizeof (int));
57     if (add_tags == NULL) {
58         fprintf (stderr, "Out of memory.\n");
59         return 1;
60     }
61
62     remove_tags = talloc_size (ctx, argc * sizeof (int));
63     if (remove_tags == NULL) {
64         fprintf (stderr, "Out of memory.\n");
65         return 1;
66     }
67
68     for (i = 0; i < argc; i++) {
69         if (strcmp (argv[i], "--") == 0) {
70             i++;
71             break;
72         }
73         if (argv[i][0] == '+') {
74             add_tags[add_tags_count++] = i;
75         } else if (argv[i][0] == '-') {
76             remove_tags[remove_tags_count++] = i;
77         } else {
78             break;
79         }
80     }
81
82     if (add_tags_count == 0 && remove_tags_count == 0) {
83         fprintf (stderr, "Error: 'notmuch tag' requires at least one tag to add or remove.\n");
84         return 1;
85     }
86
87     query_string = query_string_from_args (ctx, argc - i, &argv[i]);
88
89     if (*query_string == '\0') {
90         fprintf (stderr, "Error: notmuch tag requires at least one search term.\n");
91         return 1;
92     }
93
94     config = notmuch_config_open (ctx, NULL, NULL);
95     if (config == NULL)
96         return 1;
97
98     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
99                                      NOTMUCH_DATABASE_MODE_READ_WRITE);
100     if (notmuch == NULL)
101         return 1;
102
103     synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);
104
105     query = notmuch_query_create (notmuch, query_string);
106     if (query == NULL) {
107         fprintf (stderr, "Out of memory.\n");
108         return 1;
109     }
110
111     /* tagging is not interested in any special sort order */
112     notmuch_query_set_sort (query, NOTMUCH_SORT_UNSORTED);
113
114     for (messages = notmuch_query_search_messages (query);
115          notmuch_messages_valid (messages) && !interrupted;
116          notmuch_messages_move_to_next (messages))
117     {
118         message = notmuch_messages_get (messages);
119
120         notmuch_message_freeze (message);
121
122         for (i = 0; i < remove_tags_count; i++)
123             notmuch_message_remove_tag (message,
124                                         argv[remove_tags[i]] + 1);
125
126         for (i = 0; i < add_tags_count; i++)
127             notmuch_message_add_tag (message, argv[add_tags[i]] + 1);
128
129         notmuch_message_thaw (message);
130
131         if (synchronize_flags)
132             notmuch_message_tags_to_maildir_flags (message);
133
134         notmuch_message_destroy (message);
135     }
136
137     notmuch_query_destroy (query);
138     notmuch_database_close (notmuch);
139
140     return interrupted;
141 }