aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkatherine <shmibs@shmibbles.me>2018-03-25 10:22:02 -0700
committerkatherine <shmibs@shmibbles.me>2018-03-25 10:22:02 -0700
commit86071ec611fdaad93e7fe0e1a24007bdb8dc6fda (patch)
tree7f87a0b0cb9f2d324ad21025559c5619d176f056
parentfd5b37444a16e85606d56ab27ef0f84ddc20df78 (diff)
downloadsimple-opt-86071ec611fdaad93e7fe0e1a24007bdb8dc6fda.tar.gz
fix error printing
-rw-r--r--doc/example.c5
-rw-r--r--simple-opt.h30
2 files changed, 24 insertions, 11 deletions
diff --git a/doc/example.c b/doc/example.c
index 50d8173..2c21341 100644
--- a/doc/example.c
+++ b/doc/example.c
@@ -35,9 +35,10 @@ int main(int argc, char **argv)
result = simple_opt_parse(argc, argv, options);
- /* catch any errors and print a default result */
+ /* catch any errors and print a default error message. you can do this bit
+ * yourself, if you'd like more control of the output */
if (result.result_type != SIMPLE_OPT_RESULT_SUCCESS) {
- simple_opt_print_error(stderr, argv[0], options, result);
+ simple_opt_print_error(stderr, argv[0], result);
return 1;
}
diff --git a/simple-opt.h b/simple-opt.h
index e4e582a..9bc1141 100644
--- a/simple-opt.h
+++ b/simple-opt.h
@@ -88,6 +88,7 @@ struct simple_opt_result {
enum simple_opt_type option_type;
char option_string[SIMPLE_OPT_OPT_MAX_WIDTH];
char argument_string[SIMPLE_OPT_OPT_ARG_MAX_WIDTH];
+ struct simple_opt *option;
int argc;
char *argv[SIMPLE_OPT_MAX_ARGC];
};
@@ -100,7 +101,7 @@ static void simple_opt_print_usage(FILE *f, unsigned width, char *command_name,
struct simple_opt *options);
static void simple_opt_print_error(FILE *f, char *command_name,
- struct simple_opt *options, struct simple_opt_result result);
+ struct simple_opt_result result);
/*
@@ -360,6 +361,7 @@ static struct simple_opt_result simple_opt_parse(int argc, char **argv,
if (i + 1 >= argc) {
r.result_type = SIMPLE_OPT_RESULT_MISSING_ARG;
r.option_type = options[opt_i].type;
+ r.option = options + opt_i;
goto opt_copy_and_return;
}
s = argv[i+1];
@@ -367,6 +369,7 @@ static struct simple_opt_result simple_opt_parse(int argc, char **argv,
if (argv[i][3 + strlen(options[opt_i].long_name)] == '\0') {
r.result_type = SIMPLE_OPT_RESULT_MISSING_ARG;
r.option_type = options[opt_i].type;
+ r.option = options + opt_i;
goto opt_copy_and_return;
}
@@ -378,6 +381,7 @@ static struct simple_opt_result simple_opt_parse(int argc, char **argv,
&& strlen(s) + 1 >= SIMPLE_OPT_OPT_ARG_MAX_WIDTH) {
r.result_type = SIMPLE_OPT_RESULT_OPT_ARG_TOO_LONG;
r.option_type = options[opt_i].type;
+ r.option = options + opt_i;
goto opt_copy_and_return;
}
@@ -391,7 +395,9 @@ static struct simple_opt_result simple_opt_parse(int argc, char **argv,
} else {
r.result_type = SIMPLE_OPT_RESULT_BAD_ARG;
r.option_type = options[opt_i].type;
- strncpy(r.argument_string, s, SIMPLE_OPT_OPT_ARG_MAX_WIDTH);
+ strncpy(r.argument_string, s, SIMPLE_OPT_OPT_ARG_MAX_WIDTH - 1);
+ r.argument_string[SIMPLE_OPT_OPT_ARG_MAX_WIDTH - 1] = '\0';
+ r.option = options + opt_i;
goto opt_copy_and_return;
}
@@ -414,6 +420,9 @@ opt_copy_and_return:
strncpy(r.option_string, argv[i], SIMPLE_OPT_OPT_MAX_WIDTH - 1 < arg_end ?
SIMPLE_OPT_OPT_MAX_WIDTH - 1 : arg_end);
+ r.option_string[SIMPLE_OPT_OPT_MAX_WIDTH - 1 < arg_end ?
+ SIMPLE_OPT_OPT_MAX_WIDTH -1 : arg_end] = '\0';
+
goto end;
}
@@ -733,7 +742,7 @@ static void simple_opt_print_usage(FILE *f, unsigned width, char *command_name,
}
static void simple_opt_print_error(FILE *f, char *command_name,
- struct simple_opt *options, struct simple_opt_result result)
+ struct simple_opt_result result)
{
char *s;
unsigned i;
@@ -773,19 +782,22 @@ static void simple_opt_print_error(FILE *f, char *command_name,
fprintf(f, "expected a string\n");
break;
case SIMPLE_OPT_STRING_SET:
- for (i = 0; options->string_set[i] != NULL; i++);
+ for (i = 0; result.option->string_set[i] != NULL; i++);
if (i == 1)
- fprintf(f, "expected \"%s\"\n", options->string_set[0]);
+ fprintf(f, "expected \"%s\"\n", result.option->string_set[0]);
else if (i == 2)
fprintf(f, "expected \"%s\" or \"%s\"\n",
- options->string_set[0], options->string_set[1]);
+ result.option->string_set[0], result.option->string_set[1]);
else if (i == 3)
fprintf(f, "expected \"%s\", \"%s\" or \"%s\"\n",
- options->string_set[0], options->string_set[1],
- options->string_set[2]);
+ result.option->string_set[0], result.option->string_set[1],
+ result.option->string_set[2]);
+ else if (i == 4)
+ fprintf(f, "expected \"%s\", \"%s\", \"%s\", or \"%s\"\n",
+ result.option->string_set[0], result.option->string_set[1],
+ result.option->string_set[2], result.option->string_set[3]);
else
fprintf(f, "expected a string\n");
- break;
default:
break;
}