X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=zoom%2Fzoomsh.c;h=26aab7b54f840f4bfc48c341be56fccf2c860eb9;hp=342e54666d308ece331283e601113a953de66e8f;hb=80184e0ebd6d82ad97874372236c2ad956e01d72;hpb=f1fef5aeb2f4aad16d5c66e7ed4b58def0a26464 diff --git a/zoom/zoomsh.c b/zoom/zoomsh.c index 342e546..26aab7b 100644 --- a/zoom/zoomsh.c +++ b/zoom/zoomsh.c @@ -1,13 +1,20 @@ -/* - * $Id: zoomsh.c,v 1.25 2004-01-12 12:10:44 adam Exp $ - * - * ZOOM-C Shell +/* This file is part of the YAZ toolkit. + * 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 @@ -16,21 +23,34 @@ #include #endif -#include - #include -#include #include -#include #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; while (*cp == ' ') - cp++; + cp++; if (*cp == '"') { cp++; @@ -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,498 +78,826 @@ static int next_token (const char **cpp, const char **t_start) return len; /* return -1 if no token was read .. */ } -static int next_token_copy (const char **cpp, char *buf_out, int buf_max) +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; const char *start; - int len = next_token (cpp, &start); + int len = next_token(cpp, &start); if (len < 0) - { - *buf_out = 0; - return len; - } - if (len >= buf_max) - len = buf_max-1; - memcpy (buf_out, start, len); - buf_out[len] = '\0'; - return len; + return 0; + w = wrbuf_alloc(); + if (len > 0) + wrbuf_write(w, start, len); + return w; } -static int is_command (const char *cmd_str, const char *this_str, int this_len) +static int is_command(const char *cmd_str, const char *this_str, int this_len) { int cmd_len = strlen(cmd_str); if (cmd_len != this_len) - return 0; - if (memcmp (cmd_str, this_str, cmd_len)) - return 0; + return 0; + if (memcmp(cmd_str, this_str, cmd_len)) + return 0; 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) { - char key[40], val[80]; + WRBUF key; + const char *val_buf; + int val_len; + + if (!(key = next_token_new_wrbuf(args))) + { + printf("missing argument for set\n"); + 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; +} - if (next_token_copy (args, key, sizeof(key)) < 0) +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 set\n"); - return ; + printf("missing argument for get\n"); + return 1; } - if (next_token_copy (args, val, sizeof(val)) < 0) - ZOOM_options_set(options, key, 0); else - ZOOM_options_set(options, key, val); + { + const char *val = ZOOM_options_get(options, wrbuf_cstr(key)); + printf("%s = %s\n", wrbuf_cstr(key), val ? val : ""); + wrbuf_destroy(key); + } + return 0; } -static void cmd_get (ZOOM_connection *c, ZOOM_resultset *r, - ZOOM_options options, - const char **args) +static int cmd_rget(ZOOM_connection *c, ZOOM_resultset *r, + ZOOM_options options, + const char **args) { - char key[40]; - if (next_token_copy (args, key, sizeof(key)) < 0) + WRBUF key; + if (!(key = next_token_new_wrbuf(args))) { - printf ("missing argument for get\n"); + printf("missing argument for get\n"); + return 1; } else { - const char *val = ZOOM_options_get(options, key); - printf ("%s = %s\n", key, val ? val : ""); + int i; + for (i = 0; i"); + } + 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) { - char host[60]; + WRBUF host; int i; - next_token_copy (args, host, sizeof(host)); + host = next_token_new_wrbuf(args); for (i = 0; i= 0) - ZOOM_options_set (options, "start", start_str); + process_events(c); + + 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))) + { + 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); + } + } + } + return ret; +} - if (next_token_copy (args, count_str, sizeof(count_str)) >= 0) - ZOOM_options_set (options, "count", count_str); +static int cmd_suggestions(ZOOM_connection *c, ZOOM_resultset *r, ZOOM_options options, const char **args) +{ + int i; + int ret = 0; - for (i = 0; i\n"); - printf ("search \n"); - printf ("show [ []\n"); - printf ("scan \n"); - printf ("quit\n"); - printf ("close \n"); - printf ("set