X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=zoom%2Fzoomsh.c;h=c72eaa27df7a33b3cdae0fdd3761fccfa7351f03;hp=2cbd6d4f540821b8f995d057ac4cc4d302d9f738;hb=ab75b3bd5dffe9425dfcfd36e76a60e8496bdd5d;hpb=4936dff1c451bc76df80ddad8557c2396526f843 diff --git a/zoom/zoomsh.c b/zoom/zoomsh.c index 2cbd6d4..c72eaa2 100644 --- a/zoom/zoomsh.c +++ b/zoom/zoomsh.c @@ -1,18 +1,20 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) 1995-2011 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 +#include #if HAVE_READLINE_READLINE_H #include @@ -21,15 +23,29 @@ #include #endif -#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; @@ -50,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++; @@ -62,20 +78,23 @@ 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); 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) @@ -92,32 +111,37 @@ static void 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 (next_token_copy(args, key, sizeof(key)) < 0) + if (!(key = next_token_new_wrbuf(args))) { printf("missing argument for set\n"); return ; } - if (next_token_copy(args, val, sizeof(val)) < 0) - ZOOM_options_set(options, key, 0); + 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, key, val); + ZOOM_options_set(options, wrbuf_cstr(key), 0); + wrbuf_destroy(key); } static void cmd_get(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"); } else { - const char *val = ZOOM_options_get(options, key); - printf("%s = %s\n", key, val ? val : ""); + const char *val = ZOOM_options_get(options, wrbuf_cstr(key)); + printf("%s = %s\n", wrbuf_cstr(key), val ? val : ""); + wrbuf_destroy(key); } } @@ -125,8 +149,8 @@ static void 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"); } @@ -139,9 +163,10 @@ static void cmd_rget(ZOOM_connection *c, ZOOM_resultset *r, if (!r[i]) continue; - val = ZOOM_resultset_option_get(r[i], key); - printf("%s = %s\n", key, val ? val : ""); + val = ZOOM_resultset_option_get(r[i], wrbuf_cstr(key)); + printf("%s = %s\n", wrbuf_cstr(key), val ? val : ""); } + wrbuf_destroy(key); } } @@ -149,36 +174,38 @@ static void 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); + { + WRBUF tmp; - if (next_token_copy(args, count_str, sizeof(count_str)) >= 0) - ZOOM_options_set(options, "count", count_str); + if ((tmp = next_token_new_wrbuf(args))) + { + start = atoi(wrbuf_cstr(tmp)); + wrbuf_destroy(tmp); + } - for (i = 0; i\n"); printf("search \n"); - printf("show [ []\n"); + printf("show [ [ [\n"); printf("quit\n"); printf("close \n"); @@ -495,6 +592,8 @@ static void cmd_help(ZOOM_connection *c, ZOOM_resultset *r, printf(" implementationName\n"); printf(" charset\n"); printf(" lang\n"); + printf(" timeout\n"); + printf(" facets\n"); } static void cmd_connect(ZOOM_connection *c, ZOOM_resultset *r, @@ -503,9 +602,9 @@ static void cmd_connect(ZOOM_connection *c, ZOOM_resultset *r, { int error; const char *errmsg, *addinfo, *dset; - char host[60]; int j, i; - if (next_token_copy(args, host, sizeof(host)) < 0) + WRBUF host = next_token_new_wrbuf(args); + if (!host) { printf("missing host after connect\n"); return ; @@ -514,7 +613,7 @@ static void cmd_connect(ZOOM_connection *c, ZOOM_resultset *r, { const char *h; if (c[i] && (h = ZOOM_connection_option_get(c[i], "host")) && - !strcmp(h, host)) + !strcmp(h, wrbuf_cstr(host))) { ZOOM_connection_destroy(c[i]); break; @@ -527,17 +626,19 @@ static void cmd_connect(ZOOM_connection *c, ZOOM_resultset *r, if (j == -1) { printf("no more connection available\n"); + wrbuf_destroy(host); return; } i = j; /* OK, use this one is available */ } c[i] = ZOOM_connection_create(options); - ZOOM_connection_connect(c[i], host, 0); + ZOOM_connection_connect(c[i], wrbuf_cstr(host), 0); 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); + wrbuf_destroy(host); } static int cmd_parse(ZOOM_connection *c, ZOOM_resultset *r, @@ -564,6 +665,8 @@ static int cmd_parse(ZOOM_connection *c, ZOOM_resultset *r, cmd_connect(c, r, options, buf); else if (is_command("search", cmd_str, cmd_len)) cmd_search(c, r, options, buf); + else if (is_command("facets", cmd_str, cmd_len)) + cmd_facets(c, r, options, buf); else if (is_command("find", cmd_str, cmd_len)) cmd_search(c, r, options, buf); else if (is_command("show", cmd_str, cmd_len)) @@ -622,8 +725,8 @@ void shell(ZOOM_connection *c, ZOOM_resultset *r, static void zoomsh(int argc, char **argv) { - ZOOM_options options = ZOOM_options_create(); - int i, res; + ZOOM_options zoom_options = ZOOM_options_create(); + int i, res = 1; ZOOM_connection z39_con[MAX_CON]; ZOOM_resultset z39_res[MAX_CON]; @@ -632,21 +735,31 @@ static void zoomsh(int argc, char **argv) z39_con[i] = 0; z39_res[i] = 0; } - - for (i = 0; i 2 && !strcmp(argv[1], "-v")) - { - maskstr = argv[2]; - argv += 2; - argc -= 2; - } - else if (argc > 1 && !strncmp(argv[1], "-v", 2)) - { - maskstr = argv[1]+2; - argv++; - argc--; - } - if (maskstr) - { - int mask = yaz_log_mask_str(maskstr); - yaz_log_init_level(mask); - } zoomsh(argc, argv); exit(0); } /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab