From 5ce89138d84a5edc6d9b8e6d8128367b9b9b3e31 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 21 Sep 2011 14:12:26 +0200 Subject: [PATCH] zoomsh: option -e for getting zoomsh to set EXIT code depending on success/failure. --- doc/zoomsh-man.xml | 21 +++++ zoom/zoomsh.c | 240 ++++++++++++++++++++++++++++++++++------------------ 2 files changed, 179 insertions(+), 82 deletions(-) diff --git a/doc/zoomsh-man.xml b/doc/zoomsh-man.xml index 1471d54..bf55813 100644 --- a/doc/zoomsh-man.xml +++ b/doc/zoomsh-man.xml @@ -29,6 +29,8 @@ zoomsh + + commands @@ -44,6 +46,25 @@ These commands are invoked first. + + + OPTIONS + + + -e + + Makes zoomsh stop processing commands as soon as an error occur. + The exit code of zoomsh is 1 if error occurs; 0 otherwise. + + + + -v loglevel + + Sets YAZ log level. + + + + EXAMPLES If you start the yaz-ztest in one console you diff --git a/zoom/zoomsh.c b/zoom/zoomsh.c index c72eaa2..2e719f0 100644 --- a/zoom/zoomsh.c +++ b/zoom/zoomsh.c @@ -107,9 +107,9 @@ static int is_command(const char *cmd_str, const char *this_str, int this_len) return 1; } -static void cmd_set(ZOOM_connection *c, ZOOM_resultset *r, - ZOOM_options options, - const char **args) +static int cmd_set(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, + const char **args) { WRBUF key; const char *val_buf; @@ -118,7 +118,7 @@ static void cmd_set(ZOOM_connection *c, ZOOM_resultset *r, if (!(key = next_token_new_wrbuf(args))) { printf("missing argument for set\n"); - return ; + return 1; } val_len = next_token_chars(args, &val_buf, ""); if (val_len != -1) @@ -126,16 +126,18 @@ static void cmd_set(ZOOM_connection *c, ZOOM_resultset *r, else ZOOM_options_set(options, wrbuf_cstr(key), 0); wrbuf_destroy(key); + return 0; } -static void cmd_get(ZOOM_connection *c, ZOOM_resultset *r, - ZOOM_options options, - const char **args) +static int cmd_get(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, + const char **args) { WRBUF key; if (!(key = next_token_new_wrbuf(args))) { printf("missing argument for get\n"); + return 1; } else { @@ -143,16 +145,18 @@ static void cmd_get(ZOOM_connection *c, ZOOM_resultset *r, printf("%s = %s\n", wrbuf_cstr(key), val ? val : ""); wrbuf_destroy(key); } + return 0; } -static void cmd_rget(ZOOM_connection *c, ZOOM_resultset *r, - ZOOM_options options, +static int cmd_rget(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, const char **args) { WRBUF key; if (!(key = next_token_new_wrbuf(args))) { printf("missing argument for get\n"); + return 1; } else { @@ -168,11 +172,12 @@ static void cmd_rget(ZOOM_connection *c, ZOOM_resultset *r, } wrbuf_destroy(key); } + return 0; } -static void cmd_close(ZOOM_connection *c, ZOOM_resultset *r, - ZOOM_options options, - const char **args) +static int cmd_close(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, + const char **args) { WRBUF host; int i; @@ -196,6 +201,7 @@ static void cmd_close(ZOOM_connection *c, ZOOM_resultset *r, } if (host) wrbuf_destroy(host); + return 0; } static void display_records(ZOOM_connection c, @@ -245,14 +251,15 @@ static void display_records(ZOOM_connection c, } } -static void cmd_show(ZOOM_connection *c, ZOOM_resultset *r, - ZOOM_options options, - const char **args) +static int cmd_show(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, + const char **args) { int i; size_t start = 0, count = 1; const char *type = "render"; WRBUF render_str = 0; + int ret = 0; { WRBUF tmp; @@ -285,9 +292,12 @@ static void cmd_show(ZOOM_connection *c, ZOOM_resultset *r, if (!c[i]) continue; if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset))) + { printf("%s error: %s (%s:%d) %s\n", ZOOM_connection_option_get(c[i], "host"), errmsg, dset, error, addinfo); + ret = 1; + } else if (r[i]) { /* OK, no major errors. Display records... */ @@ -296,7 +306,7 @@ static void cmd_show(ZOOM_connection *c, ZOOM_resultset *r, } if (render_str) wrbuf_destroy(render_str); - + return ret; } static void display_facets(ZOOM_facet_field *facets, int count) { @@ -314,11 +324,12 @@ static void display_facets(ZOOM_facet_field *facets, int count) { } } -static void cmd_facets(ZOOM_connection *c, ZOOM_resultset *r, - ZOOM_options options, - const char **args) +static int cmd_facets(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, + const char **args) { int i; + int ret = 0; process_events(c); @@ -330,9 +341,12 @@ static void cmd_facets(ZOOM_connection *c, ZOOM_resultset *r, if (!c[i]) continue; if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset))) + { printf("%s error: %s (%s:%d) %s\n", ZOOM_connection_option_get(c[i], "host"), errmsg, dset, error, addinfo); + ret = 1; + } else if (r[i]) { int num_facets = ZOOM_resultset_facets_size(r[i]); @@ -342,14 +356,16 @@ static void cmd_facets(ZOOM_connection *c, ZOOM_resultset *r, } } } + return ret; } -static void cmd_ext(ZOOM_connection *c, ZOOM_resultset *r, - ZOOM_options options, - const char **args) +static int cmd_ext(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, + const char **args) { ZOOM_package p[MAX_CON]; int i; + int ret = 0; WRBUF ext_type_str = next_token_new_wrbuf(args); for (i = 0; i\n"); printf("search \n"); @@ -594,12 +629,14 @@ static void cmd_help(ZOOM_connection *c, ZOOM_resultset *r, printf(" lang\n"); printf(" timeout\n"); printf(" facets\n"); + return 0; } -static void cmd_connect(ZOOM_connection *c, ZOOM_resultset *r, - ZOOM_options options, - const char **args) +static int cmd_connect(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, + const char **args) { + int ret = 0; int error; const char *errmsg, *addinfo, *dset; int j, i; @@ -607,7 +644,7 @@ static void cmd_connect(ZOOM_connection *c, ZOOM_resultset *r, if (!host) { printf("missing host after connect\n"); - return ; + return 1; } for (j = -1, i = 0; i"); + line_in = readline("ZOOM>"); if (!line_in) + { + res = -1; break; + } #if HAVE_READLINE_HISTORY_H if (*line_in) add_history(line_in); #endif - if(strlen(line_in) > 999) { + if (strlen(line_in) > 999) + { printf("Input line too long\n"); + res = 1; break; - }; + } strcpy(buf,line_in); free(line_in); #else printf("ZOOM>"); fflush(stdout); if (!fgets(buf, 999, stdin)) + { + res = -1; break; + } #endif if ((cp = strchr(buf, '\n'))) *cp = '\0'; - if (!cmd_parse(c, r, options, &bp)) + res = cmd_parse(c, r, options, &bp); + if (res == -1) break; + if (!exit_on_error && res > 0) + res = 0; } + return res; } -static void zoomsh(int argc, char **argv) +static int zoomsh(int argc, char **argv) { ZOOM_options zoom_options = ZOOM_options_create(); - int i, res = 1; + int i, res = 0; /* -1: EOF; 0 = OK, > 0 ERROR */ + int exit_on_error = 0; ZOOM_connection z39_con[MAX_CON]; ZOOM_resultset z39_res[MAX_CON]; @@ -735,29 +803,33 @@ static void zoomsh(int argc, char **argv) z39_con[i] = 0; z39_res[i] = 0; } - while (res) + while (res == 0) { int mask; char *arg = 0; - int option_ret = options("v:", argv, argc, &arg); + int option_ret = options("ev:", argv, argc, &arg); const char *bp = arg; switch (option_ret) { case 0: res = cmd_parse(z39_con, z39_res, zoom_options, &bp); - /* returns res == 0 on quit */ + /* returns res == -1 on quit */ + if (!exit_on_error && res > 0) + res = 0; /* hide error */ break; case YAZ_OPTIONS_EOF: - shell(z39_con, z39_res, zoom_options); - res = 0; + res = shell(z39_con, z39_res, zoom_options, exit_on_error); + break; + case 'e': + exit_on_error = 1; break; case 'v': mask = yaz_log_mask_str(arg); yaz_log_init_level(mask); break; default: - fprintf(stderr, "zoomsh: [-v] [commands]\n"); - res = 0; + fprintf(stderr, "zoomsh: [-e] [-v] [commands]\n"); + res = 1; } } @@ -766,12 +838,16 @@ static void zoomsh(int argc, char **argv) ZOOM_connection_destroy(z39_con[i]); ZOOM_resultset_destroy(z39_res[i]); } + ZOOM_options_destroy(zoom_options); + if (res == -1) /* quit .. which is not an error */ + res = 0; + return res; } int main(int argc, char **argv) { - zoomsh(argc, argv); - exit(0); + int ret = zoomsh(argc, argv); + exit(ret); } /* * Local variables: -- 1.7.10.4