X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-tag.c;h=7d92ec485eabc7233d176bc2b8374a81bde494c5;hp=ada52e45d4295a1a6dffed64edea60bec411aa01;hb=f4245aec94815176a52baae57a6c260b2bbae9c2;hpb=13569ad6c96c3f3a653ac51274056614647ad7ef diff --git a/notmuch-tag.c b/notmuch-tag.c index ada52e45..7d92ec48 100644 --- a/notmuch-tag.c +++ b/notmuch-tag.c @@ -20,6 +20,16 @@ #include "notmuch-client.h" +static volatile sig_atomic_t interrupted; + +static void +handle_sigint (unused (int sig)) +{ + static char msg[] = "Stopping... \n"; + write(2, msg, sizeof(msg)-1); + interrupted = 1; +} + int notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[])) { @@ -32,8 +42,16 @@ notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[])) notmuch_query_t *query; notmuch_messages_t *messages; notmuch_message_t *message; + struct sigaction action; int i; + /* Setup our handler for SIGINT */ + memset (&action, 0, sizeof (struct sigaction)); + action.sa_handler = handle_sigint; + sigemptyset (&action.sa_mask); + action.sa_flags = SA_RESTART; + sigaction (SIGINT, &action, NULL); + add_tags = talloc_size (ctx, argc * sizeof (int)); if (add_tags == NULL) { fprintf (stderr, "Out of memory.\n"); @@ -86,8 +104,8 @@ notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[])) return 1; } - for (messages = notmuch_query_search_messages (query); - notmuch_messages_has_more (messages); + for (messages = notmuch_query_search_messages (query, 0, -1); + notmuch_messages_has_more (messages) && !interrupted; notmuch_messages_advance (messages)) { message = notmuch_messages_get (messages); @@ -109,5 +127,5 @@ notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[])) notmuch_query_destroy (query); notmuch_database_close (notmuch); - return 0; + return interrupted; }