notmuch webmails
[notmuch-archives.git] / 20 / 8701b2bed1278d1166f64d3f86a3a5d99abea1
1 Return-Path: <bremner@tethera.net>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 9413A431FB6\r
6         for <notmuch@notmuchmail.org>; Tue, 25 Dec 2012 11:43:24 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id 6sPBEtTP65H3 for <notmuch@notmuchmail.org>;\r
16         Tue, 25 Dec 2012 11:43:22 -0800 (PST)\r
17 Received: from tesseract.cs.unb.ca (tesseract.cs.unb.ca [131.202.240.238])\r
18         (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 93078431E64\r
21         for <notmuch@notmuchmail.org>; Tue, 25 Dec 2012 11:43:11 -0800 (PST)\r
22 Received: from fctnnbsc30w-156034082078.dhcp-dynamic.fibreop.nb.bellaliant.net\r
23         ([156.34.82.78] helo=zancas.localnet)\r
24         by tesseract.cs.unb.ca with esmtpsa\r
25         (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72)\r
26         (envelope-from <bremner@tethera.net>)\r
27         id 1TnaP8-0001iG-13; Tue, 25 Dec 2012 15:43:10 -0400\r
28 Received: from bremner by zancas.localnet with local (Exim 4.80)\r
29         (envelope-from <bremner@tethera.net>)\r
30         id 1TnaP2-0005nD-Hc; Tue, 25 Dec 2012 15:43:04 -0400\r
31 From: david@tethera.net\r
32 To: notmuch@notmuchmail.org\r
33 Subject: [PATCH 04/11] cli: add support for batch tagging operations to\r
34         "notmuch tag"\r
35 Date: Tue, 25 Dec 2012 15:42:40 -0400\r
36 Message-Id: <1356464567-21779-5-git-send-email-david@tethera.net>\r
37 X-Mailer: git-send-email 1.7.10.4\r
38 In-Reply-To: <1356464567-21779-1-git-send-email-david@tethera.net>\r
39 References: <1356464567-21779-1-git-send-email-david@tethera.net>\r
40 X-Spam_bar: -\r
41 X-BeenThere: notmuch@notmuchmail.org\r
42 X-Mailman-Version: 2.1.13\r
43 Precedence: list\r
44 List-Id: "Use and development of the notmuch mail system."\r
45         <notmuch.notmuchmail.org>\r
46 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
48 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
49 List-Post: <mailto:notmuch@notmuchmail.org>\r
50 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
51 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
53 X-List-Received-Date: Tue, 25 Dec 2012 19:43:25 -0000\r
54 \r
55 From: Jani Nikula <jani@nikula.org>\r
56 \r
57 Add support for batch tagging operations through stdin to "notmuch\r
58 tag". This can be enabled with the new --batch command line option to\r
59 "notmuch tag". The input must consist of lines of the format:\r
60 \r
61 +<tag>|-<tag> [...] [--] <query> [...]\r
62 \r
63 Each line is interpreted similarly to "notmuch tag" command line\r
64 arguments. The delimiter is one or more spaces ' '. Any characters in\r
65 <tag> MAP be hex encoded with %NN where NN is the\r
66 hexadecimal value of the character. Any ' ' and '%' characters in\r
67 <tag> and <search-term> MUST be hex encoded (using %20 and %25,\r
68 respectively). Any characters that are not part of <tag> or\r
69 MUST NOT be hex encoded.\r
70 \r
71 <query> is passed verbatim to Xapian\r
72 \r
73 Leading and trailing space ' ' is ignored. Empty lines and lines\r
74 beginning with '#' are ignored.\r
75 \r
76 Signed-off-by: Jani Nikula <jani@nikula.org>\r
77 \r
78 Hacked-like-crazy-by: David Bremner <david@tethera.net>\r
79 ---\r
80  notmuch-tag.c |   94 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----\r
81  1 file changed, 86 insertions(+), 8 deletions(-)\r
82 \r
83 diff --git a/notmuch-tag.c b/notmuch-tag.c\r
84 index 8129912..7fc614d 100644\r
85 --- a/notmuch-tag.c\r
86 +++ b/notmuch-tag.c\r
87 @@ -128,6 +128,46 @@ tag_query (void *ctx, notmuch_database_t *notmuch, const char *query_string,\r
88      return interrupted;\r
89  }\r
90  \r
91 +static int\r
92 +tag_file (void *ctx, notmuch_database_t *notmuch, tag_op_flag_t flags,\r
93 +         FILE *input)\r
94 +{\r
95 +    char *line = NULL;\r
96 +    char *query_string = NULL;\r
97 +    size_t line_size = 0;\r
98 +    ssize_t line_len;\r
99 +    int ret = 0;\r
100 +    tag_op_list_t *tag_ops;\r
101 +\r
102 +    tag_ops = tag_op_list_create (ctx);\r
103 +    if (tag_ops == NULL) {\r
104 +       fprintf (stderr, "Out of memory.\n");\r
105 +       return 1;\r
106 +    }\r
107 +\r
108 +    while ((line_len = getline (&line, &line_size, input)) != -1 &&\r
109 +          ! interrupted) {\r
110 +\r
111 +       ret = parse_tag_line (ctx, line, TAG_FLAG_NONE,\r
112 +                             &query_string, tag_ops);\r
113 +\r
114 +       if (ret > 0)\r
115 +           continue;\r
116 +\r
117 +       if (ret < 0)\r
118 +           break;\r
119 +\r
120 +       ret = tag_query (ctx, notmuch, query_string, tag_ops, flags);\r
121 +       if (ret)\r
122 +           break;\r
123 +    }\r
124 +\r
125 +    if (line)\r
126 +       free (line);\r
127 +\r
128 +    return ret;\r
129 +}\r
130 +\r
131  int\r
132  notmuch_tag_command (void *ctx, int argc, char *argv[])\r
133  {\r
134 @@ -137,6 +177,10 @@ notmuch_tag_command (void *ctx, int argc, char *argv[])\r
135      notmuch_database_t *notmuch;\r
136      struct sigaction action;\r
137      tag_op_flag_t tag_flags = TAG_FLAG_NONE;\r
138 +    notmuch_bool_t batch = FALSE;\r
139 +    FILE *input = stdin;\r
140 +    char *input_file_name = NULL;\r
141 +    int opt_index;\r
142      int ret = 0;\r
143  \r
144      /* Setup our handler for SIGINT */\r
145 @@ -146,15 +190,43 @@ notmuch_tag_command (void *ctx, int argc, char *argv[])\r
146      action.sa_flags = SA_RESTART;\r
147      sigaction (SIGINT, &action, NULL);\r
148  \r
149 -    tag_ops = tag_op_list_create (ctx);\r
150 -    if (tag_ops == NULL) {\r
151 -       fprintf (stderr, "Out of memory.\n");\r
152 +    notmuch_opt_desc_t options[] = {\r
153 +       { NOTMUCH_OPT_BOOLEAN, &batch, "batch", 0, 0 },\r
154 +       { NOTMUCH_OPT_STRING, &input_file_name, "input", 'i', 0 },\r
155 +       { 0, 0, 0, 0, 0 }\r
156 +    };\r
157 +\r
158 +    opt_index = parse_arguments (argc, argv, options, 1);\r
159 +    if (opt_index < 0)\r
160         return 1;\r
161 +\r
162 +    if (input_file_name) {\r
163 +       batch = TRUE;\r
164 +       input = fopen (input_file_name, "r");\r
165 +       if (input == NULL) {\r
166 +           fprintf (stderr, "Error opening %s for reading: %s\n",\r
167 +                    input_file_name, strerror (errno));\r
168 +           return 1;\r
169 +       }\r
170      }\r
171  \r
172 -    if (parse_tag_command_line (ctx, argc - 1, argv + 1,\r
173 -                               &query_string, tag_ops))\r
174 -       return 1;\r
175 +    if (batch) {\r
176 +       if (opt_index != argc) {\r
177 +           fprintf (stderr, "Can't specify both cmdline and stdin!\n");\r
178 +           return 1;\r
179 +       }\r
180 +    } else {\r
181 +\r
182 +       tag_ops = tag_op_list_create (ctx);\r
183 +       if (tag_ops == NULL) {\r
184 +           fprintf (stderr, "Out of memory.\n");\r
185 +           return 1;\r
186 +       }\r
187 +\r
188 +       if (parse_tag_command_line (ctx, argc - opt_index, argv + opt_index,\r
189 +                                   &query_string, tag_ops))\r
190 +           return 1;\r
191 +    }\r
192  \r
193      config = notmuch_config_open (ctx, NULL, NULL);\r
194      if (config == NULL)\r
195 @@ -167,9 +239,15 @@ notmuch_tag_command (void *ctx, int argc, char *argv[])\r
196      if (notmuch_config_get_maildir_synchronize_flags (config))\r
197         tag_flags |= TAG_FLAG_MAILDIR_SYNC;\r
198  \r
199 -    ret = tag_query (ctx, notmuch, query_string, tag_ops, tag_flags);\r
200 +    if (batch)\r
201 +       ret = tag_file (ctx, notmuch, tag_flags, input);\r
202 +    else\r
203 +       ret = tag_query (ctx, notmuch, query_string, tag_ops, tag_flags);\r
204  \r
205      notmuch_database_destroy (notmuch);\r
206  \r
207 -    return ret;\r
208 +    if (input != stdin)\r
209 +       fclose (input);\r
210 +\r
211 +    return ret || interrupted;\r
212  }\r
213 -- \r
214 1.7.10.4\r
215 \r