X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=zoom%2Fzoomsh.c;h=fde447e4c6fc12822033114bcb4ae2ec8528b59f;hp=8469ce41430bfc99bfb0281805351f9d36c0d676;hb=5242cb5a8634bfa38b9333ff7f903e718ac6e292;hpb=ca359fadd2bc021173109ad2e84a03f5e0f6a677 diff --git a/zoom/zoomsh.c b/zoom/zoomsh.c index 8469ce4..fde447e 100644 --- a/zoom/zoomsh.c +++ b/zoom/zoomsh.c @@ -1,20 +1,23 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2010 Index Data + * Copyright (C) 1995-2012 Index Data * See the file LICENSE for details. */ - /** \file zoomsh.c \brief ZOOM C command line tool (shell) */ +#if HAVE_CONFIG_H +#include +#endif #include #include #include -#include #include +#include +#include #if HAVE_READLINE_READLINE_H -#include +#include #endif #if HAVE_READLINE_HISTORY_H #include @@ -25,7 +28,24 @@ #define MAX_CON 100 -static int next_token(const char **cpp, const char **t_start) +static void process_events(ZOOM_connection *c) +{ + int i; + + yaz_log(YLOG_DEBUG, "process_events"); + while ((i = ZOOM_event(MAX_CON, c)) != 0) + { + int peek = ZOOM_connection_peek_event(c[i-1]); + int event = ZOOM_connection_last_event(c[i-1]); + yaz_log(YLOG_DEBUG, "no = %d peek = %d event = %d %s", i-1, + peek, + event, + ZOOM_get_event_str(event)); + } +} + +static int next_token_chars(const char **cpp, const char **t_start, + const char *tok_chars) { int len = 0; const char *cp = *cpp; @@ -46,7 +66,7 @@ static int next_token(const char **cpp, const char **t_start) else { *t_start = cp; - while (*cp && *cp != ' ' && *cp != '\r' && *cp != '\n') + while (*cp && !strchr(tok_chars, *cp)) { cp++; len++; @@ -58,6 +78,12 @@ static int next_token(const char **cpp, const char **t_start) return len; /* return -1 if no token was read .. */ } +static int next_token(const char **cpp, const char **t_start) +{ + return next_token_chars(cpp, t_start, "\r\n "); +} + + static WRBUF next_token_new_wrbuf(const char **cpp) { WRBUF w = 0; @@ -81,35 +107,37 @@ 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, val; + WRBUF key; + const char *val_buf; + int val_len; if (!(key = next_token_new_wrbuf(args))) { printf("missing argument for set\n"); - return ; - } - if ((val = next_token_new_wrbuf(args))) - { - ZOOM_options_set(options, wrbuf_cstr(key), wrbuf_cstr(val)); - wrbuf_destroy(val); + return 1; } + val_len = next_token_chars(args, &val_buf, ""); + if (val_len != -1) + ZOOM_options_setl(options, wrbuf_cstr(key), val_buf, val_len); 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 { @@ -117,16 +145,27 @@ 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_shell(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, const char **args) +{ + int ret = system(*args); + if (ret) + printf("system command returned %d\n", ret); + return 0; +} + +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 { @@ -136,17 +175,18 @@ static void cmd_rget(ZOOM_connection *c, ZOOM_resultset *r, const char *val; if (!r[i]) continue; - + val = ZOOM_resultset_option_get(r[i], wrbuf_cstr(key)); printf("%s = %s\n", wrbuf_cstr(key), val ? val : ""); } 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; @@ -170,6 +210,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, @@ -182,14 +223,14 @@ static void display_records(ZOOM_connection c, size_t pos = i + start; ZOOM_record rec = ZOOM_resultset_record(r, pos); const char *db = ZOOM_record_get(rec, "database", 0); - + if (ZOOM_record_error(rec, 0, 0, 0)) { const char *msg; const char *addinfo; const char *diagset; int error = ZOOM_record_error(rec, &msg, &addinfo, &diagset); - + printf("%lld %s: %s (%s:%d) %s\n", (long long) pos, (db ? db : "unknown"), msg, diagset, error, addinfo ? addinfo : "none"); @@ -219,14 +260,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; @@ -249,8 +291,7 @@ static void cmd_show(ZOOM_connection *c, ZOOM_resultset *r, for (i = 0; i < MAX_CON; i++) ZOOM_resultset_records(r[i], 0, start, count); - while (ZOOM_event(MAX_CON, c)) - ; + process_events(c); for (i = 0; i < MAX_CON; i++) { @@ -260,9 +301,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... */ @@ -271,7 +315,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) { @@ -289,43 +333,47 @@ 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; - size_t start = 0, count = 1; - const char *type = "render"; - WRBUF render_str = 0; + int ret = 0; - if (0) - { - WRBUF tmp; + process_events(c); - if ((tmp = next_token_new_wrbuf(args))) + for (i = 0; i < MAX_CON; i++) + { + int error; + const char *errmsg, *addinfo, *dset; + /* display errors if any */ + if (!c[i]) + continue; + if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset))) { - start = atoi(wrbuf_cstr(tmp)); - wrbuf_destroy(tmp); + printf("%s error: %s (%s:%d) %s\n", + ZOOM_connection_option_get(c[i], "host"), errmsg, + dset, error, addinfo); + ret = 1; } - - if ((tmp = next_token_new_wrbuf(args))) + else if (r[i]) { - count = atoi(wrbuf_cstr(tmp)); - wrbuf_destroy(tmp); + int num_facets = ZOOM_resultset_facets_size(r[i]); + if (num_facets) { + ZOOM_facet_field *facets = ZOOM_resultset_facets(r[i]); + display_facets(facets, num_facets); + } } - render_str = next_token_new_wrbuf(args); } - if (render_str) - type = wrbuf_cstr(render_str); + return ret; +} - /* - for (i = 0; i < MAX_CON; i++) { - int num_facets = ZOOM_resultset_facet_size(r[i]); - ZOOM_resultset_records(r[i], 0, start, count); - } - */ - while (ZOOM_event(MAX_CON, c)) - ; +static int cmd_suggestions(ZOOM_connection *c, ZOOM_resultset *r, ZOOM_options options, const char **args) +{ + int i; + int ret = 0; + + process_events(c); for (i = 0; i < MAX_CON; i++) { @@ -335,31 +383,39 @@ 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]); - if (num_facets) { - ZOOM_facet_field *facets = ZOOM_resultset_facets(r[i]); - display_facets(facets, num_facets); + const char *suggestions = ZOOM_resultset_option_get(r[i], "suggestions"); + if (suggestions) { + printf("Suggestions: \n%s\n", suggestions); } } } - if (render_str) - wrbuf_destroy(render_str); - + 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); - + + if (!ext_type_str) + { + printf("es: missing type " + "(itemorder, create, drop, commit, update, xmlupdate)\n"); + return 1; + } for (i = 0; i\n"); printf("search \n"); @@ -563,6 +657,7 @@ static void cmd_help(ZOOM_connection *c, ZOOM_resultset *r, printf("ext \n"); printf("set