mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 12:28:09 +01:00
cli: add support for batch tagging operations to "notmuch tag"
Add support for batch tagging operations through stdin to "notmuch tag". This can be enabled with the new --batch command line option to "notmuch tag". The input must consist of lines of the format: +<tag>|-<tag> [...] [--] <query> [...] Each line is interpreted similarly to "notmuch tag" command line arguments. The delimiter is one or more spaces ' '. Any characters in <tag> MAY be hex encoded with %NN where NN is the hexadecimal value of the character. Any ' ' and '%' characters in <tag> and MUST be hex encoded (using %20 and %25, respectively). For future-proofing, any '"' characters in <tag> SHOULD be hex-encoded. Any characters that are not part of <tag> or MUST NOT be hex encoded. <query> is passed verbatim to Xapian Leading and trailing space ' ' is ignored. Empty lines and lines beginning with '#' are ignored. Signed-off-by: Jani Nikula <jani@nikula.org> Hacked-like-crazy-by: David Bremner <david@tethera.net>
This commit is contained in:
parent
e9b6e46474
commit
3f9cc3d082
1 changed files with 85 additions and 8 deletions
|
@ -128,6 +128,46 @@ tag_query (void *ctx, notmuch_database_t *notmuch, const char *query_string,
|
||||||
return interrupted;
|
return interrupted;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
tag_file (void *ctx, notmuch_database_t *notmuch, tag_op_flag_t flags,
|
||||||
|
FILE *input)
|
||||||
|
{
|
||||||
|
char *line = NULL;
|
||||||
|
char *query_string = NULL;
|
||||||
|
size_t line_size = 0;
|
||||||
|
ssize_t line_len;
|
||||||
|
int ret = 0;
|
||||||
|
tag_op_list_t *tag_ops;
|
||||||
|
|
||||||
|
tag_ops = tag_op_list_create (ctx);
|
||||||
|
if (tag_ops == NULL) {
|
||||||
|
fprintf (stderr, "Out of memory.\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
while ((line_len = getline (&line, &line_size, input)) != -1 &&
|
||||||
|
! interrupted) {
|
||||||
|
|
||||||
|
ret = parse_tag_line (ctx, line, TAG_FLAG_NONE,
|
||||||
|
&query_string, tag_ops);
|
||||||
|
|
||||||
|
if (ret > 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (ret < 0)
|
||||||
|
break;
|
||||||
|
|
||||||
|
ret = tag_query (ctx, notmuch, query_string, tag_ops, flags);
|
||||||
|
if (ret)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (line)
|
||||||
|
free (line);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
notmuch_tag_command (void *ctx, int argc, char *argv[])
|
notmuch_tag_command (void *ctx, int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
@ -137,6 +177,10 @@ notmuch_tag_command (void *ctx, int argc, char *argv[])
|
||||||
notmuch_database_t *notmuch;
|
notmuch_database_t *notmuch;
|
||||||
struct sigaction action;
|
struct sigaction action;
|
||||||
tag_op_flag_t tag_flags = TAG_FLAG_NONE;
|
tag_op_flag_t tag_flags = TAG_FLAG_NONE;
|
||||||
|
notmuch_bool_t batch = FALSE;
|
||||||
|
FILE *input = stdin;
|
||||||
|
char *input_file_name = NULL;
|
||||||
|
int opt_index;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
/* Setup our handler for SIGINT */
|
/* Setup our handler for SIGINT */
|
||||||
|
@ -146,15 +190,42 @@ notmuch_tag_command (void *ctx, int argc, char *argv[])
|
||||||
action.sa_flags = SA_RESTART;
|
action.sa_flags = SA_RESTART;
|
||||||
sigaction (SIGINT, &action, NULL);
|
sigaction (SIGINT, &action, NULL);
|
||||||
|
|
||||||
|
notmuch_opt_desc_t options[] = {
|
||||||
|
{ NOTMUCH_OPT_BOOLEAN, &batch, "batch", 0, 0 },
|
||||||
|
{ NOTMUCH_OPT_STRING, &input_file_name, "input", 'i', 0 },
|
||||||
|
{ 0, 0, 0, 0, 0 }
|
||||||
|
};
|
||||||
|
|
||||||
|
opt_index = parse_arguments (argc, argv, options, 1);
|
||||||
|
if (opt_index < 0)
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
if (input_file_name) {
|
||||||
|
batch = TRUE;
|
||||||
|
input = fopen (input_file_name, "r");
|
||||||
|
if (input == NULL) {
|
||||||
|
fprintf (stderr, "Error opening %s for reading: %s\n",
|
||||||
|
input_file_name, strerror (errno));
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (batch) {
|
||||||
|
if (opt_index != argc) {
|
||||||
|
fprintf (stderr, "Can't specify both cmdline and stdin!\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
tag_ops = tag_op_list_create (ctx);
|
tag_ops = tag_op_list_create (ctx);
|
||||||
if (tag_ops == NULL) {
|
if (tag_ops == NULL) {
|
||||||
fprintf (stderr, "Out of memory.\n");
|
fprintf (stderr, "Out of memory.\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parse_tag_command_line (ctx, argc - 1, argv + 1,
|
if (parse_tag_command_line (ctx, argc - opt_index, argv + opt_index,
|
||||||
&query_string, tag_ops))
|
&query_string, tag_ops))
|
||||||
return 1;
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
config = notmuch_config_open (ctx, NULL, NULL);
|
config = notmuch_config_open (ctx, NULL, NULL);
|
||||||
if (config == NULL)
|
if (config == NULL)
|
||||||
|
@ -167,9 +238,15 @@ notmuch_tag_command (void *ctx, int argc, char *argv[])
|
||||||
if (notmuch_config_get_maildir_synchronize_flags (config))
|
if (notmuch_config_get_maildir_synchronize_flags (config))
|
||||||
tag_flags |= TAG_FLAG_MAILDIR_SYNC;
|
tag_flags |= TAG_FLAG_MAILDIR_SYNC;
|
||||||
|
|
||||||
|
if (batch)
|
||||||
|
ret = tag_file (ctx, notmuch, tag_flags, input);
|
||||||
|
else
|
||||||
ret = tag_query (ctx, notmuch, query_string, tag_ops, tag_flags);
|
ret = tag_query (ctx, notmuch, query_string, tag_ops, tag_flags);
|
||||||
|
|
||||||
notmuch_database_destroy (notmuch);
|
notmuch_database_destroy (notmuch);
|
||||||
|
|
||||||
return ret;
|
if (input != stdin)
|
||||||
|
fclose (input);
|
||||||
|
|
||||||
|
return ret || interrupted;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue