1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2009 Index Data
3 * See the file LICENSE for details.
7 \brief ZOOM C command line tool (shell)
15 #include <yaz/comstack.h>
17 #if HAVE_READLINE_READLINE_H
18 #include <readline/readline.h>
20 #if HAVE_READLINE_HISTORY_H
21 #include <readline/history.h>
24 #include <yaz/xmalloc.h>
32 static int next_token(const char **cpp, const char **t_start)
35 const char *cp = *cpp;
42 while (*cp && *cp != '"')
53 while (*cp && *cp != ' ' && *cp != '\r' && *cp != '\n')
62 return len; /* return -1 if no token was read .. */
65 static int next_token_copy(const char **cpp, char *buf_out, int buf_max)
68 int len = next_token(cpp, &start);
76 memcpy(buf_out, start, len);
81 static int is_command(const char *cmd_str, const char *this_str, int this_len)
83 int cmd_len = strlen(cmd_str);
84 if (cmd_len != this_len)
86 if (memcmp(cmd_str, this_str, cmd_len))
91 static void cmd_set(ZOOM_connection *c, ZOOM_resultset *r,
95 char key[40], val[80];
97 if (next_token_copy(args, key, sizeof(key)) < 0)
99 printf("missing argument for set\n");
102 if (next_token_copy(args, val, sizeof(val)) < 0)
103 ZOOM_options_set(options, key, 0);
105 ZOOM_options_set(options, key, val);
108 static void cmd_get(ZOOM_connection *c, ZOOM_resultset *r,
109 ZOOM_options options,
113 if (next_token_copy(args, key, sizeof(key)) < 0)
115 printf("missing argument for get\n");
119 const char *val = ZOOM_options_get(options, key);
120 printf("%s = %s\n", key, val ? val : "<null>");
124 static void cmd_rget(ZOOM_connection *c, ZOOM_resultset *r,
125 ZOOM_options options,
129 if (next_token_copy(args, key, sizeof(key)) < 0)
131 printf("missing argument for get\n");
136 for (i = 0; i<MAX_CON; i++)
142 val = ZOOM_resultset_option_get(r[i], key);
143 printf("%s = %s\n", key, val ? val : "<null>");
148 static void cmd_close(ZOOM_connection *c, ZOOM_resultset *r,
149 ZOOM_options options,
154 next_token_copy(args, host, sizeof(host));
155 for (i = 0; i<MAX_CON; i++)
160 if ((h = ZOOM_connection_option_get(c[i], "host"))
163 ZOOM_connection_destroy(c[i]);
166 else if (*host == '\0')
168 ZOOM_connection_destroy(c[i]);
174 static void display_records(ZOOM_connection c,
176 int start, int count)
179 for (i = 0; i<count; i++)
182 ZOOM_record rec = ZOOM_resultset_record(r, pos);
183 const char *db = ZOOM_record_get(rec, "database", 0);
185 if (ZOOM_record_error(rec, 0, 0, 0))
190 int error = ZOOM_record_error(rec, &msg, &addinfo, &diagset);
192 printf("%d %s: %s (%s:%d) %s\n", pos, (db ? db : "unknown"),
193 msg, diagset, error, addinfo ? addinfo : "none");
198 const char *render = ZOOM_record_get(rec, "render", &len);
199 const char *opac_render = ZOOM_record_get(rec, "opac", &opac_len);
200 const char *syntax = ZOOM_record_get(rec, "syntax", 0);
201 const char *schema = ZOOM_record_get(rec, "schema", 0);
202 /* if rec is non-null, we got a record for display */
205 printf("%d database=%s syntax=%s schema=%s\n",
206 pos, (db ? db : "unknown"), syntax,
207 schema ? schema : "unknown");
210 if (fwrite(render, 1, len, stdout) != (size_t) len)
212 printf("write to stdout failed\n");
218 if (fwrite(opac_render, 1, opac_len, stdout) != (size_t)
220 printf("write to stdout failed\n");
227 static void cmd_show(ZOOM_connection *c, ZOOM_resultset *r,
228 ZOOM_options options,
232 char start_str[10], count_str[10];
234 if (next_token_copy(args, start_str, sizeof(start_str)) >= 0)
235 ZOOM_options_set(options, "start", start_str);
237 if (next_token_copy(args, count_str, sizeof(count_str)) >= 0)
238 ZOOM_options_set(options, "count", count_str);
240 for (i = 0; i<MAX_CON; i++)
241 ZOOM_resultset_records(r[i], 0, atoi(start_str), atoi(count_str));
242 while (ZOOM_event(MAX_CON, c))
245 for (i = 0; i<MAX_CON; i++)
248 const char *errmsg, *addinfo, *dset;
249 /* display errors if any */
252 if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
253 printf("%s error: %s (%s:%d) %s\n",
254 ZOOM_connection_option_get(c[i], "host"), errmsg,
255 dset, error, addinfo);
258 /* OK, no major errors. Display records... */
259 int start = ZOOM_options_get_int(options, "start", 0);
260 int count = ZOOM_options_get_int(options, "count", 0);
261 display_records(c[i], r[i], start, count);
264 ZOOM_options_set(options, "count", "0");
265 ZOOM_options_set(options, "start", "0");
268 static void cmd_ext(ZOOM_connection *c, ZOOM_resultset *r,
269 ZOOM_options options,
272 ZOOM_package p[MAX_CON];
273 char ext_type_str[10];
277 if (next_token_copy(args, ext_type_str, sizeof(ext_type_str)) < 0)
280 for (i = 0; i<MAX_CON; i++)
284 p[i] = ZOOM_connection_package(c[i], 0);
285 ZOOM_package_send(p[i], ext_type_str);
291 while (ZOOM_event(MAX_CON, c))
294 for (i = 0; i<MAX_CON; i++)
297 const char *errmsg, *addinfo, *dset;
298 /* display errors if any */
301 if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
302 printf("%s error: %s (%s:%d) %s\n",
303 ZOOM_connection_option_get(c[i], "host"), errmsg,
304 dset, error, addinfo);
309 v = ZOOM_package_option_get(p[i], "targetReference");
311 printf("targetReference: %s\n", v);
312 v = ZOOM_package_option_get(p[i], "xmlUpdateDoc");
314 printf("xmlUpdateDoc: %s\n", v);
316 ZOOM_package_destroy(p[i]);
320 static void cmd_debug(ZOOM_connection *c, ZOOM_resultset *r,
321 ZOOM_options options,
324 yaz_log_init_level(YLOG_ALL);
327 static void cmd_search(ZOOM_connection *c, ZOOM_resultset *r,
328 ZOOM_options options,
332 const char *query_str = *args;
335 s = ZOOM_query_create();
336 while (*query_str == ' ')
338 if (memcmp(query_str, "cql:", 4) == 0)
340 ZOOM_query_cql(s, query_str + 4);
342 else if (ZOOM_query_prefix(s, query_str))
344 printf("Bad PQF: %s\n", query_str);
347 for (i = 0; i<MAX_CON; i++)
352 ZOOM_resultset_destroy(r[i]);
356 r[i] = ZOOM_connection_search(c[i], s);
358 ZOOM_query_destroy(s);
360 while (ZOOM_event(MAX_CON, c))
363 for (i = 0; i<MAX_CON; i++)
366 const char *errmsg, *addinfo, *dset;
367 /* display errors if any */
370 if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
371 printf("%s error: %s (%s:%d) %s\n",
372 ZOOM_connection_option_get(c[i], "host"), errmsg,
373 dset, error, addinfo);
376 /* OK, no major errors. Look at the result count */
377 int start = ZOOM_options_get_int(options, "start", 0);
378 int count = ZOOM_options_get_int(options, "count", 0);
380 printf("%s: %ld hits\n", ZOOM_connection_option_get(c[i], "host"),
381 (long) ZOOM_resultset_size(r[i]));
383 display_records(c[i], r[i], start, count);
388 static void cmd_scan(ZOOM_connection *c, ZOOM_resultset *r,
389 ZOOM_options options,
392 const char *query_str = *args;
393 ZOOM_query query = ZOOM_query_create();
395 ZOOM_scanset s[MAX_CON];
397 while (*query_str == ' ')
400 if (memcmp(query_str, "cql:", 4) == 0)
402 ZOOM_query_cql(query, query_str + 4);
404 else if (ZOOM_query_prefix(query, query_str))
406 printf("Bad PQF: %s\n", query_str);
410 for (i = 0; i<MAX_CON; i++)
413 s[i] = ZOOM_connection_scan1(c[i], query);
417 ZOOM_query_destroy(query);
419 while (ZOOM_event(MAX_CON, c))
421 for (i = 0; i<MAX_CON; i++)
424 const char *errmsg, *addinfo, *dset;
425 /* display errors if any */
428 if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
429 printf("%s error: %s (%s:%d) %s\n",
430 ZOOM_connection_option_get(c[i], "host"), errmsg,
431 dset, error, addinfo);
434 size_t p, sz = ZOOM_scanset_size(s[i]);
435 for (p = 0; p < sz; p++)
439 const char *term = ZOOM_scanset_display_term(s[i], p,
442 printf("%.*s %d\n", len, term, occ);
444 ZOOM_scanset_destroy(s[i]);
449 static void cmd_sort(ZOOM_connection *c, ZOOM_resultset *r,
450 ZOOM_options options,
453 const char *sort_spec = *args;
456 while (*sort_spec == ' ')
459 for (i = 0; i<MAX_CON; i++)
462 ZOOM_resultset_sort(r[i], "yaz", sort_spec);
464 while (ZOOM_event(MAX_CON, c))
468 static void cmd_help(ZOOM_connection *c, ZOOM_resultset *r,
469 ZOOM_options options,
472 printf("connect <zurl>\n");
473 printf("search <pqf>\n");
474 printf("show [<start> [<count> [<type]]]\n");
475 printf("scan <term>\n");
477 printf("close <zurl>\n");
478 printf("ext <type>\n");
479 printf("set <option> [<value>]\n");
480 printf("get <option>\n");
482 printf("options:\n");
485 printf(" databaseName\n");
486 printf(" preferredRecordSyntax\n");
488 printf(" elementSetName\n");
489 printf(" maximumRecordSize\n");
490 printf(" preferredRecordSize\n");
492 printf(" piggyback\n");
495 printf(" password\n");
496 printf(" implementationName\n");
497 printf(" charset\n");
501 static void cmd_connect(ZOOM_connection *c, ZOOM_resultset *r,
502 ZOOM_options options,
506 const char *errmsg, *addinfo, *dset;
509 if (next_token_copy(args, host, sizeof(host)) < 0)
511 printf("missing host after connect\n");
514 for (j = -1, i = 0; i<MAX_CON; i++)
517 if (c[i] && (h = ZOOM_connection_option_get(c[i], "host")) &&
520 ZOOM_connection_destroy(c[i]);
523 else if (c[i] == 0 && j == -1)
526 if (i == MAX_CON) /* no match .. */
530 printf("no more connection available\n");
533 i = j; /* OK, use this one is available */
535 c[i] = ZOOM_connection_create(options);
536 ZOOM_connection_connect(c[i], host, 0);
538 if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
539 printf("%s error: %s (%s:%d) %s\n",
540 ZOOM_connection_option_get(c[i], "host"), errmsg,
541 dset, error, addinfo);
544 static int cmd_parse(ZOOM_connection *c, ZOOM_resultset *r,
545 ZOOM_options options,
551 cmd_len = next_token(buf, &cmd_str);
554 if (is_command("quit", cmd_str, cmd_len))
556 else if (is_command("set", cmd_str, cmd_len))
557 cmd_set(c, r, options, buf);
558 else if (is_command("get", cmd_str, cmd_len))
559 cmd_get(c, r, options, buf);
560 else if (is_command("rget", cmd_str, cmd_len))
561 cmd_rget(c, r, options, buf);
562 else if (is_command("connect", cmd_str, cmd_len))
563 cmd_connect(c, r, options, buf);
564 else if (is_command("open", cmd_str, cmd_len))
565 cmd_connect(c, r, options, buf);
566 else if (is_command("search", cmd_str, cmd_len))
567 cmd_search(c, r, options, buf);
568 else if (is_command("find", cmd_str, cmd_len))
569 cmd_search(c, r, options, buf);
570 else if (is_command("show", cmd_str, cmd_len))
571 cmd_show(c, r, options, buf);
572 else if (is_command("close", cmd_str, cmd_len))
573 cmd_close(c, r, options, buf);
574 else if (is_command("help", cmd_str, cmd_len))
575 cmd_help(c, r, options, buf);
576 else if (is_command("ext", cmd_str, cmd_len))
577 cmd_ext(c, r, options, buf);
578 else if (is_command("debug", cmd_str, cmd_len))
579 cmd_debug(c, r, options, buf);
580 else if (is_command("scan", cmd_str, cmd_len))
581 cmd_scan(c, r, options, buf);
582 else if (is_command("sort", cmd_str, cmd_len))
583 cmd_sort(c, r, options, buf);
585 printf("unknown command %.*s\n", cmd_len, cmd_str);
589 void shell(ZOOM_connection *c, ZOOM_resultset *r,
590 ZOOM_options options)
596 const char *bp = buf;
597 #if HAVE_READLINE_READLINE_H
599 line_in=readline("ZOOM>");
602 #if HAVE_READLINE_HISTORY_H
604 add_history(line_in);
606 if(strlen(line_in) > 999) {
607 printf("Input line too long\n");
613 printf("ZOOM>"); fflush(stdout);
614 if (!fgets(buf, 999, stdin))
617 if ((cp = strchr(buf, '\n')))
619 if (!cmd_parse(c, r, options, &bp))
624 static void zoomsh(int argc, char **argv)
626 ZOOM_options options = ZOOM_options_create();
628 ZOOM_connection z39_con[MAX_CON];
629 ZOOM_resultset z39_res[MAX_CON];
631 for (i = 0; i<MAX_CON; i++)
637 for (i = 0; i<MAX_CON; i++)
641 for (i = 1; i<argc; i++)
643 const char *bp = argv[i];
644 res = cmd_parse(z39_con, z39_res, options, &bp);
645 if (res == 0) /* received quit */
648 if (res) /* do cmdline shell only if not quitting */
649 shell(z39_con, z39_res, options);
650 ZOOM_options_destroy(options);
652 for (i = 0; i<MAX_CON; i++)
654 ZOOM_connection_destroy(z39_con[i]);
655 ZOOM_resultset_destroy(z39_res[i]);
659 int main(int argc, char **argv)
661 const char *maskstr = 0;
662 if (argc > 2 && !strcmp(argv[1], "-v"))
668 else if (argc > 1 && !strncmp(argv[1], "-v", 2))
676 int mask = yaz_log_mask_str(maskstr);
677 yaz_log_init_level(mask);
685 * c-file-style: "Stroustrup"
686 * indent-tabs-mode: nil
688 * vim: shiftwidth=4 tabstop=8 expandtab