mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
notmuch-restore: convert to command-line-arguments
The new argument handling is a bit more concise, and bit more flexible. It allows the input file name to go before the --accumulate option.
This commit is contained in:
parent
7ced2e32d1
commit
a077d2b103
1 changed files with 15 additions and 22 deletions
|
@ -18,8 +18,6 @@
|
||||||
* Author: Carl Worth <cworth@cworth.org>
|
* Author: Carl Worth <cworth@cworth.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <getopt.h>
|
|
||||||
|
|
||||||
#include "notmuch-client.h"
|
#include "notmuch-client.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -29,12 +27,14 @@ notmuch_restore_command (unused (void *ctx), int argc, char *argv[])
|
||||||
notmuch_database_t *notmuch;
|
notmuch_database_t *notmuch;
|
||||||
notmuch_bool_t synchronize_flags;
|
notmuch_bool_t synchronize_flags;
|
||||||
notmuch_bool_t accumulate = FALSE;
|
notmuch_bool_t accumulate = FALSE;
|
||||||
|
char *input_file_name = NULL;
|
||||||
FILE *input = stdin;
|
FILE *input = stdin;
|
||||||
char *line = NULL;
|
char *line = NULL;
|
||||||
size_t line_size;
|
size_t line_size;
|
||||||
ssize_t line_len;
|
ssize_t line_len;
|
||||||
regex_t regex;
|
regex_t regex;
|
||||||
int rerr;
|
int rerr;
|
||||||
|
int opt_index;
|
||||||
|
|
||||||
config = notmuch_config_open (ctx, NULL, NULL);
|
config = notmuch_config_open (ctx, NULL, NULL);
|
||||||
if (config == NULL)
|
if (config == NULL)
|
||||||
|
@ -47,37 +47,30 @@ notmuch_restore_command (unused (void *ctx), int argc, char *argv[])
|
||||||
|
|
||||||
synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);
|
synchronize_flags = notmuch_config_get_maildir_synchronize_flags (config);
|
||||||
|
|
||||||
struct option options[] = {
|
notmuch_opt_desc_t options[] = {
|
||||||
{ "accumulate", no_argument, 0, 'a' },
|
{ NOTMUCH_OPT_POSITION, &input_file_name, 0, 0, 0 },
|
||||||
{ 0, 0, 0, 0}
|
{ NOTMUCH_OPT_BOOLEAN, &accumulate, "accumulate", 'a', 0 },
|
||||||
|
{ 0, 0, 0, 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
int opt;
|
opt_index = parse_arguments (argc, argv, options, 1);
|
||||||
do {
|
|
||||||
opt = getopt_long (argc, argv, "", options, NULL);
|
|
||||||
|
|
||||||
switch (opt) {
|
if (opt_index < 0) {
|
||||||
case 'a':
|
/* diagnostics already printed */
|
||||||
accumulate = 1;
|
return 1;
|
||||||
break;
|
}
|
||||||
case '?':
|
|
||||||
return 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
} while (opt != -1);
|
if (input_file_name) {
|
||||||
|
input = fopen (input_file_name, "r");
|
||||||
if (optind < argc) {
|
|
||||||
input = fopen (argv[optind], "r");
|
|
||||||
if (input == NULL) {
|
if (input == NULL) {
|
||||||
fprintf (stderr, "Error opening %s for reading: %s\n",
|
fprintf (stderr, "Error opening %s for reading: %s\n",
|
||||||
argv[optind], strerror (errno));
|
input_file_name, strerror (errno));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
optind++;
|
optind++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (optind < argc) {
|
if (opt_index < argc) {
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Cannot read dump from more than one file: %s\n",
|
"Cannot read dump from more than one file: %s\n",
|
||||||
argv[optind]);
|
argv[optind]);
|
||||||
|
|
Loading…
Reference in a new issue