Happy new year
[yaz-moved-to-github.git] / zoom / zoomsh.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2012 Index Data
3  * See the file LICENSE for details.
4  */
5 /** \file zoomsh.c
6     \brief ZOOM C command line tool (shell)
7 */
8 #if HAVE_CONFIG_H
9 #include <config.h>
10 #endif
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <yaz/wrbuf.h>
16 #include <yaz/log.h>
17 #include <yaz/options.h>
18
19 #if HAVE_READLINE_READLINE_H
20 #include <readline/readline.h> 
21 #endif
22 #if HAVE_READLINE_HISTORY_H
23 #include <readline/history.h>
24 #endif
25
26 #include <yaz/log.h>
27 #include <yaz/zoom.h>
28
29 #define MAX_CON 100
30
31 static void process_events(ZOOM_connection *c)
32 {
33     int i;
34
35     yaz_log(YLOG_DEBUG, "process_events");
36     while ((i = ZOOM_event(MAX_CON, c)) != 0)
37     {
38         int peek = ZOOM_connection_peek_event(c[i-1]);
39         int event = ZOOM_connection_last_event(c[i-1]);
40         yaz_log(YLOG_DEBUG, "no = %d peek = %d event = %d %s", i-1,
41                 peek,
42                 event,
43                 ZOOM_get_event_str(event));
44     }
45 }
46
47 static int next_token_chars(const char **cpp, const char **t_start,
48                             const char *tok_chars)
49 {
50     int len = 0;
51     const char *cp = *cpp;
52     while (*cp == ' ')
53         cp++;
54     if (*cp == '"')
55     {
56         cp++;
57         *t_start = cp;
58         while (*cp && *cp != '"')
59         {
60             cp++;
61             len++;
62         }
63         if (*cp)
64             cp++;
65     }
66     else
67     {
68         *t_start = cp;
69         while (*cp && !strchr(tok_chars, *cp))
70         {
71             cp++;
72             len++;
73         }
74         if (len == 0)
75             len = -1;
76     }
77     *cpp = cp;
78     return len;  /* return -1 if no token was read .. */
79 }
80
81 static int next_token(const char **cpp, const char **t_start)
82 {
83     return next_token_chars(cpp, t_start, "\r\n ");
84 }
85
86
87 static WRBUF next_token_new_wrbuf(const char **cpp)
88 {
89     WRBUF w = 0;
90     const char *start;
91     int len = next_token(cpp, &start);
92     if (len < 0)
93         return 0;
94     w = wrbuf_alloc();
95     if (len > 0)
96         wrbuf_write(w, start, len);
97     return w;
98 }
99
100 static int is_command(const char *cmd_str, const char *this_str, int this_len)
101 {
102     int cmd_len = strlen(cmd_str);
103     if (cmd_len != this_len)
104         return 0;
105     if (memcmp(cmd_str, this_str, cmd_len))
106         return 0;
107     return 1;
108 }
109
110 static int cmd_set(ZOOM_connection *c, ZOOM_resultset *r,
111                    ZOOM_options options,
112                    const char **args)
113 {
114     WRBUF key;
115     const char *val_buf;
116     int val_len;
117
118     if (!(key = next_token_new_wrbuf(args)))
119     {
120         printf("missing argument for set\n");
121         return 1;
122     }
123     val_len = next_token_chars(args, &val_buf, "");
124     if (val_len != -1)
125         ZOOM_options_setl(options, wrbuf_cstr(key), val_buf, val_len);
126     else
127         ZOOM_options_set(options, wrbuf_cstr(key), 0);
128     wrbuf_destroy(key);
129     return 0;
130 }
131
132 static int cmd_get(ZOOM_connection *c, ZOOM_resultset *r,
133                    ZOOM_options options,
134                    const char **args)
135 {
136     WRBUF key;
137     if (!(key = next_token_new_wrbuf(args)))
138     {
139         printf("missing argument for get\n");
140         return 1;
141     }
142     else
143     {
144         const char *val = ZOOM_options_get(options, wrbuf_cstr(key));
145         printf("%s = %s\n", wrbuf_cstr(key), val ? val : "<null>");
146         wrbuf_destroy(key);
147     }
148     return 0;
149 }
150
151 static int cmd_rget(ZOOM_connection *c, ZOOM_resultset *r,
152                     ZOOM_options options,
153                      const char **args)
154 {
155     WRBUF key;
156     if (!(key = next_token_new_wrbuf(args)))
157     {
158         printf("missing argument for get\n");
159         return 1;
160     }
161     else
162     {
163         int i;
164         for (i = 0; i<MAX_CON; i++)
165         {
166             const char *val;
167             if (!r[i])
168                 continue;
169             
170             val = ZOOM_resultset_option_get(r[i], wrbuf_cstr(key));
171             printf("%s = %s\n", wrbuf_cstr(key), val ? val : "<null>");
172         }
173         wrbuf_destroy(key);
174     }
175     return 0;
176 }
177
178 static int cmd_close(ZOOM_connection *c, ZOOM_resultset *r,
179                      ZOOM_options options,
180                      const char **args)
181 {
182     WRBUF host;
183     int i;
184     host = next_token_new_wrbuf(args);
185     for (i = 0; i<MAX_CON; i++)
186     {
187         const char *h;
188         if (!c[i])
189             continue;
190         if (!host)
191         {
192             ZOOM_connection_destroy(c[i]);
193             c[i] = 0;
194         }
195         else if ((h = ZOOM_connection_option_get(c[i], "host"))
196                  && !strcmp(h, wrbuf_cstr(host)))
197         {
198             ZOOM_connection_destroy(c[i]);
199             c[i] = 0;
200         }
201     }
202     if (host)
203         wrbuf_destroy(host);
204     return 0;
205 }
206
207 static void display_records(ZOOM_connection c,
208                             ZOOM_resultset r,
209                             size_t start, size_t count, const char *type)
210 {
211     size_t i;
212     for (i = 0; i < count; i++)
213     {
214         size_t pos = i + start;
215         ZOOM_record rec = ZOOM_resultset_record(r, pos);
216         const char *db = ZOOM_record_get(rec, "database", 0);
217         
218         if (ZOOM_record_error(rec, 0, 0, 0))
219         {
220             const char *msg;
221             const char *addinfo;
222             const char *diagset;
223             int error = ZOOM_record_error(rec, &msg, &addinfo, &diagset);
224             
225             printf("%lld %s: %s (%s:%d) %s\n", (long long) pos,
226                    (db ? db : "unknown"),
227                    msg, diagset, error, addinfo ? addinfo : "none");
228         }
229         else
230         {
231             int len;
232             const char *render = ZOOM_record_get(rec, type, &len);
233             const char *syntax = ZOOM_record_get(rec, "syntax", 0);
234             const char *schema = ZOOM_record_get(rec, "schema", 0);
235             /* if rec is non-null, we got a record for display */
236             if (rec)
237             {
238                 printf("%lld database=%s syntax=%s schema=%s\n",
239                        (long long) pos, (db ? db : "unknown"), syntax,
240                        schema ? schema : "unknown");
241                 if (render)
242                 {
243                     if (fwrite(render, 1, len, stdout) != (size_t) len)
244                     {
245                         printf("write to stdout failed\n");
246                     }
247                 }
248                 printf("\n");
249             }
250         }
251     }
252 }
253
254 static int cmd_show(ZOOM_connection *c, ZOOM_resultset *r,
255                     ZOOM_options options,
256                     const char **args)
257 {
258     int i;
259     size_t start = 0, count = 1;
260     const char *type = "render";
261     WRBUF render_str = 0;
262     int ret = 0;
263
264     {
265         WRBUF tmp;
266
267         if ((tmp = next_token_new_wrbuf(args)))
268         {
269             start = atoi(wrbuf_cstr(tmp));
270             wrbuf_destroy(tmp);
271         }
272
273         if ((tmp = next_token_new_wrbuf(args)))
274         {
275             count = atoi(wrbuf_cstr(tmp));
276             wrbuf_destroy(tmp);
277         }
278         render_str = next_token_new_wrbuf(args);
279     }
280     if (render_str)
281         type = wrbuf_cstr(render_str);
282
283     for (i = 0; i < MAX_CON; i++)
284         ZOOM_resultset_records(r[i], 0, start, count);
285     process_events(c);
286
287     for (i = 0; i < MAX_CON; i++)
288     {
289         int error;
290         const char *errmsg, *addinfo, *dset;
291         /* display errors if any */
292         if (!c[i])
293             continue;
294         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
295         {
296             printf("%s error: %s (%s:%d) %s\n",
297                    ZOOM_connection_option_get(c[i], "host"), errmsg,
298                    dset, error, addinfo);
299             ret = 1;
300         }
301         else if (r[i])
302         {
303             /* OK, no major errors. Display records... */
304             display_records(c[i], r[i], start, count, type);
305         }
306     }
307     if (render_str)
308         wrbuf_destroy(render_str);
309     return ret;
310 }
311
312 static void display_facets(ZOOM_facet_field *facets, int count) {
313     int index;
314     printf("Facets: \n");
315     for (index = 0; index <  count; index++) {
316         int term_index;
317         const char *facet_name = ZOOM_facet_field_name(facets[index]);
318         printf("  %s: \n", facet_name);
319         for (term_index = 0; term_index < ZOOM_facet_field_term_count(facets[index]); term_index++) {
320             int freq = 0;
321             const char *term = ZOOM_facet_field_get_term(facets[index], term_index, &freq);
322             printf("    %s(%d) \n", term,  freq);
323         }
324     }
325 }
326
327 static int cmd_facets(ZOOM_connection *c, ZOOM_resultset *r,
328                       ZOOM_options options,
329                       const char **args)
330 {
331     int i;
332     int ret = 0;
333
334     process_events(c);
335
336     for (i = 0; i < MAX_CON; i++)
337     {
338         int error;
339         const char *errmsg, *addinfo, *dset;
340         /* display errors if any */
341         if (!c[i])
342             continue;
343         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
344         {
345             printf("%s error: %s (%s:%d) %s\n",
346                    ZOOM_connection_option_get(c[i], "host"), errmsg,
347                    dset, error, addinfo);
348             ret = 1;
349         }
350         else if (r[i])
351         {
352             int num_facets = ZOOM_resultset_facets_size(r[i]);
353             if (num_facets) {
354                 ZOOM_facet_field  *facets = ZOOM_resultset_facets(r[i]);
355                 display_facets(facets, num_facets);
356             }
357         }
358     }
359     return ret;
360 }
361
362 static int cmd_suggestions(ZOOM_connection *c, ZOOM_resultset *r, ZOOM_options options, const char **args)
363 {
364     int i;
365     int ret = 0;
366
367     process_events(c);
368
369     for (i = 0; i < MAX_CON; i++)
370     {
371         int error;
372         const char *errmsg, *addinfo, *dset;
373         /* display errors if any */
374         if (!c[i])
375             continue;
376         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
377         {
378             printf("%s error: %s (%s:%d) %s\n",
379                    ZOOM_connection_option_get(c[i], "host"), errmsg,
380                    dset, error, addinfo);
381             ret = 1;
382         }
383         else if (r[i])
384         {
385             const char *suggestions = ZOOM_resultset_option_get(r[i], "suggestions");
386             if (suggestions) {
387                 printf("Suggestions: \n%s\n", suggestions);
388             }
389         }
390     }
391     return ret;
392 }
393
394
395 static int cmd_ext(ZOOM_connection *c, ZOOM_resultset *r,
396                    ZOOM_options options,
397                    const char **args)
398 {
399     ZOOM_package p[MAX_CON];
400     int i;
401     int ret = 0;
402     WRBUF ext_type_str = next_token_new_wrbuf(args);
403     
404     for (i = 0; i<MAX_CON; i++)
405     {
406         if (c[i])
407         {
408             p[i] = ZOOM_connection_package(c[i], 0);
409             ZOOM_package_send(p[i], ext_type_str ? wrbuf_cstr(ext_type_str):0);
410         }
411         else
412             p[i] = 0;
413     }
414
415     process_events(c);
416
417     for (i = 0; i<MAX_CON; i++)
418     {
419         int error;
420         const char *errmsg, *addinfo, *dset;
421         /* display errors if any */
422         if (!p[i])
423             continue;
424         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
425         {
426             printf("%s error: %s (%s:%d) %s\n",
427                    ZOOM_connection_option_get(c[i], "host"), errmsg,
428                    dset, error, addinfo);
429             ret = 1;
430         }
431         else if (p[i])
432         {
433             const char *v;
434             printf("ok\n");
435             v = ZOOM_package_option_get(p[i], "targetReference");
436             if (v)
437                 printf("targetReference: %s\n", v);
438             v = ZOOM_package_option_get(p[i], "xmlUpdateDoc");
439             if (v)
440                 printf("xmlUpdateDoc: %s\n", v);
441         }
442         ZOOM_package_destroy(p[i]);
443     }
444     if (ext_type_str)
445         wrbuf_destroy(ext_type_str);
446     return ret;
447 }
448
449 static int cmd_debug(ZOOM_connection *c, ZOOM_resultset *r,
450                      ZOOM_options options,
451                      const char **args)
452 {
453     yaz_log_init_level(YLOG_ALL);
454     return 0;
455 }
456
457 static int cmd_search(ZOOM_connection *c, ZOOM_resultset *r,
458                       ZOOM_options options,
459                       const char **args)
460 {
461     ZOOM_query s;
462     const char *query_str = *args;
463     int i;
464     int ret = 0;
465     
466     s = ZOOM_query_create();
467     while (*query_str == ' ')
468         query_str++;
469     if (memcmp(query_str, "cql:", 4) == 0)
470     {
471         ZOOM_query_cql(s, query_str + 4);
472     }
473     else if (ZOOM_query_prefix(s, query_str))
474     {
475         printf("Bad PQF: %s\n", query_str);
476         ZOOM_query_destroy(s);
477         return 1;
478     }
479     for (i = 0; i<MAX_CON; i++)
480     {
481
482         if (c[i])
483         {
484             ZOOM_resultset_destroy(r[i]);
485             r[i] = 0;
486         }
487         if (c[i])
488             r[i] = ZOOM_connection_search(c[i], s);
489     }
490     ZOOM_query_destroy(s);
491
492     process_events(c);
493
494     for (i = 0; i<MAX_CON; i++)
495     {
496         int error;
497         const char *errmsg, *addinfo, *dset;
498         /* display errors if any */
499         if (!c[i])
500             continue;
501         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
502         {
503             printf("%s error: %s (%s:%d) %s\n",
504                    ZOOM_connection_option_get(c[i], "host"), errmsg,
505                    dset, error, addinfo);
506             ret = 1;
507         }
508         else if (r[i])
509         {
510             /* OK, no major errors. Look at the result count */
511             int start = ZOOM_options_get_int(options, "start", 0);
512             int count = ZOOM_options_get_int(options, "count", 0);
513             int facet_num;
514
515             printf("%s: %lld hits\n", ZOOM_connection_option_get(c[i], "host"),
516                    (long long int) ZOOM_resultset_size(r[i]));
517             
518             facet_num = ZOOM_resultset_facets_size(r[i]);
519             if (facet_num)
520             {
521                 ZOOM_facet_field *facets = ZOOM_resultset_facets(r[i]);
522                 int facet_idx;
523                 for (facet_idx = 0; facet_idx < facet_num; facet_idx++)
524                 {
525                     const char *name = ZOOM_facet_field_name(facets[facet_idx]);
526                     size_t term_idx;
527                     size_t term_num = ZOOM_facet_field_term_count(facets[facet_idx]);
528                     printf("facet: %s\n", name);
529                     for (term_idx = 0; term_idx < term_num; term_idx++ )
530                     {
531                         int freq;
532                         const char *term =
533                             ZOOM_facet_field_get_term(facets[facet_idx], term_idx, &freq);
534                         printf("term: %s %d\n", term, freq);
535                     }
536                 }
537             }
538             /* and display */
539             display_records(c[i], r[i], start, count, "render");
540         }
541     }
542     return ret;
543 }
544
545 static int cmd_scan(ZOOM_connection *c, ZOOM_resultset *r,
546                     ZOOM_options options,
547                     const char **args)
548 {
549     const char *query_str = *args;
550     ZOOM_query query = ZOOM_query_create();
551     int i;
552     int ret = 0;
553     ZOOM_scanset s[MAX_CON];
554     
555     while (*query_str == ' ')
556         query_str++;
557
558     if (memcmp(query_str, "cql:", 4) == 0)
559     {
560         ZOOM_query_cql(query, query_str + 4);
561     }
562     else if (ZOOM_query_prefix(query, query_str))
563     {
564         printf("Bad PQF: %s\n", query_str);
565         ZOOM_query_destroy(query);
566         return 1;
567     }
568
569     for (i = 0; i<MAX_CON; i++)
570     {
571         if (c[i])
572             s[i] = ZOOM_connection_scan1(c[i], query);
573         else
574             s[i] = 0;
575     }
576     ZOOM_query_destroy(query);
577
578     process_events(c);
579
580     for (i = 0; i<MAX_CON; i++)
581     {
582         int error;
583         const char *errmsg, *addinfo, *dset;
584         /* display errors if any */
585         if (!c[i])
586             continue;
587         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
588         {
589             printf("%s error: %s (%s:%d) %s\n",
590                    ZOOM_connection_option_get(c[i], "host"), errmsg,
591                    dset, error, addinfo);
592             ret = 1;
593         }
594         if (s[i])
595         {
596             size_t p, sz = ZOOM_scanset_size(s[i]);
597             for (p = 0; p < sz; p++)
598             {
599                 size_t occ = 0;
600                 size_t len = 0;
601                 const char *term = ZOOM_scanset_display_term(s[i], p,
602                                                              &occ, &len);
603                 printf("%.*s %lld\n", (int) len, term, (long long int) occ);
604             }            
605             ZOOM_scanset_destroy(s[i]);
606         }
607     }
608     return ret;
609 }
610
611 static int cmd_sort(ZOOM_connection *c, ZOOM_resultset *r,
612                     ZOOM_options options,
613                     const char **args)
614 {
615     const char *sort_spec = *args;
616     int i;
617     int ret = 0;
618     
619     while (*sort_spec == ' ')
620         sort_spec++;
621     
622     for (i = 0; i<MAX_CON; i++)
623     {
624         if (r[i])
625             ZOOM_resultset_sort(r[i], "yaz", sort_spec);
626     }
627     process_events(c);
628     return ret;
629 }
630
631 static int cmd_help(ZOOM_connection *c, ZOOM_resultset *r,
632                     ZOOM_options options,
633                     const char **args)
634 {
635     printf("connect <zurl>\n");
636     printf("search <pqf>\n");
637     printf("show [<start> [<count> [<type]]]\n");
638     printf("facets\n");
639     printf("scan <term>\n");
640     printf("quit\n");
641     printf("close <zurl>\n");
642     printf("ext <type>\n");
643     printf("set <option> [<value>]\n");
644     printf("get <option>\n");
645     printf("\n");
646     printf("options:\n");
647     printf(" start\n");
648     printf(" count\n");
649     printf(" databaseName\n");
650     printf(" preferredRecordSyntax\n");
651     printf(" proxy\n");
652     printf(" elementSetName\n");
653     printf(" maximumRecordSize\n");
654     printf(" preferredRecordSize\n");
655     printf(" async\n");
656     printf(" piggyback\n");
657     printf(" group\n");
658     printf(" user\n");
659     printf(" password\n");
660     printf(" implementationName\n");
661     printf(" charset\n");
662     printf(" lang\n");
663     printf(" timeout\n");
664     printf(" facets\n");
665     printf(" extraArgs\n");
666     printf(" suggestions\n");
667     return 0;
668 }
669
670 static int cmd_connect(ZOOM_connection *c, ZOOM_resultset *r,
671                        ZOOM_options options,
672                        const char **args)
673 {
674     int ret = 0;
675     int error;
676     const char *errmsg, *addinfo, *dset;
677     int j, i;
678     WRBUF host = next_token_new_wrbuf(args);
679     if (!host)
680     {
681         printf("missing host after connect\n");
682         return 1;
683     }
684     for (j = -1, i = 0; i<MAX_CON; i++)
685     {
686         const char *h;
687         if (c[i] && (h = ZOOM_connection_option_get(c[i], "host")) &&
688             !strcmp(h, wrbuf_cstr(host)))
689         {
690             ZOOM_connection_destroy(c[i]);
691             break;
692         }
693         else if (c[i] == 0 && j == -1)
694             j = i;
695     }
696     if (i == MAX_CON)  /* no match .. */
697     {
698         if (j == -1)
699         {
700             printf("no more connection available\n");
701             wrbuf_destroy(host);
702             return 1;
703         }
704         i = j;   /* OK, use this one is available */
705     }
706     c[i] = ZOOM_connection_create(options);
707     ZOOM_connection_connect(c[i], wrbuf_cstr(host), 0);
708         
709     if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
710     {
711         printf("%s error: %s (%s:%d) %s\n",
712                ZOOM_connection_option_get(c[i], "host"), errmsg,
713                dset, error, addinfo);
714         ret = 1;
715     }
716     wrbuf_destroy(host);
717     return ret;
718 }
719
720 /** \brief parse and execute zoomsh command
721     \param c connections
722     \param r result sets
723     \param options ZOOM options
724     \param buf command string and arguments
725     \retval 0 OK
726     \retval 1 failure to execute
727     \retval -1 EOF (no more commands or quit seen)
728 */
729 static int cmd_parse(ZOOM_connection *c, ZOOM_resultset *r,
730                      ZOOM_options options, 
731                      const char **buf)
732 {
733     int cmd_len;
734     const char *cmd_str;
735     int ret = 0;
736
737     cmd_len = next_token(buf, &cmd_str);
738     if (cmd_len < 0)
739         return -1;
740     if (is_command("quit", cmd_str, cmd_len))
741         return -1;
742     else if (is_command("set", cmd_str, cmd_len))
743         ret = cmd_set(c, r, options, buf);
744     else if (is_command("get", cmd_str, cmd_len))
745         ret = cmd_get(c, r, options, buf);
746     else if (is_command("rget", cmd_str, cmd_len))
747         ret = cmd_rget(c, r, options, buf);
748     else if (is_command("connect", cmd_str, cmd_len))
749         ret = cmd_connect(c, r, options, buf);
750     else if (is_command("open", cmd_str, cmd_len))
751         ret = cmd_connect(c, r, options, buf);
752     else if (is_command("search", cmd_str, cmd_len))
753         ret = cmd_search(c, r, options, buf);
754     else if (is_command("facets", cmd_str, cmd_len))
755         ret = cmd_facets(c, r, options, buf);
756     else if (is_command("find", cmd_str, cmd_len))
757         ret = cmd_search(c, r, options, buf);
758     else if (is_command("show", cmd_str, cmd_len))
759         ret = cmd_show(c, r, options, buf);
760     else if (is_command("suggestions", cmd_str, cmd_len))
761         ret = cmd_suggestions(c, r, options, buf);
762     else if (is_command("close", cmd_str, cmd_len))
763         ret = cmd_close(c, r, options, buf);
764     else if (is_command("help", cmd_str, cmd_len))
765         ret = cmd_help(c, r, options, buf);
766     else if (is_command("ext", cmd_str, cmd_len))
767         ret = cmd_ext(c, r, options, buf);
768     else if (is_command("debug", cmd_str, cmd_len))
769         ret = cmd_debug(c, r, options, buf);
770     else if (is_command("scan", cmd_str, cmd_len))
771         ret = cmd_scan(c, r, options, buf);
772     else if (is_command("sort", cmd_str, cmd_len))
773         ret = cmd_sort(c, r, options, buf);
774     else
775     {
776         printf("unknown command %.*s\n", cmd_len, cmd_str);
777         ret = 1;
778     }
779     return ret;
780 }
781
782 static int shell(ZOOM_connection *c, ZOOM_resultset *r,
783                  ZOOM_options options, int exit_on_error)
784 {
785     int res = 0;
786     while (res == 0)
787     {
788         char buf[1000];
789         char *cp;
790         const char *bp = buf;
791 #if HAVE_READLINE_READLINE_H
792         char* line_in;
793         line_in = readline("ZOOM>");
794         if (!line_in)
795         {
796             res = -1;
797             break;
798         }
799 #if HAVE_READLINE_HISTORY_H
800         if (*line_in)
801             add_history(line_in);
802 #endif
803         if (strlen(line_in) > 999)
804         {
805             printf("Input line too long\n");
806             res = 1;
807             break;
808         }
809         strcpy(buf,line_in);
810         free(line_in);
811 #else    
812         printf("ZOOM>"); fflush(stdout);
813         if (!fgets(buf, 999, stdin))
814         {
815             res = -1;
816             break;
817         }
818 #endif 
819         if ((cp = strchr(buf, '\n')))
820             *cp = '\0';
821         res = cmd_parse(c, r, options, &bp);
822         if (res == -1)
823             break;
824         if (!exit_on_error && res > 0)
825             res = 0;
826     }
827     return res;
828 }
829
830 static int zoomsh(int argc, char **argv)
831 {
832     ZOOM_options zoom_options = ZOOM_options_create();
833     int i, res = 0; /* -1: EOF; 0 = OK, > 0 ERROR */
834     int exit_on_error = 0;
835     ZOOM_connection z39_con[MAX_CON];
836     ZOOM_resultset  z39_res[MAX_CON];
837
838     for (i = 0; i<MAX_CON; i++)
839     {
840         z39_con[i] = 0;
841         z39_res[i] = 0;
842     }
843     while (res == 0)
844     {
845         int mask;
846         char *arg = 0;
847         int option_ret = options("ev:", argv, argc, &arg);
848         const char *bp = arg;
849         switch (option_ret)
850         {
851         case 0:
852             res = cmd_parse(z39_con, z39_res, zoom_options, &bp);
853             /* returns res == -1 on quit */
854             if (!exit_on_error && res > 0)
855                 res = 0;  /* hide error */
856             break;
857         case YAZ_OPTIONS_EOF:
858             res = shell(z39_con, z39_res, zoom_options, exit_on_error);
859             break;
860         case 'e':
861             exit_on_error = 1;
862             break;
863         case 'v':
864             mask = yaz_log_mask_str(arg);
865             yaz_log_init_level(mask);
866             break;
867         default:
868             fprintf(stderr, "zoomsh: [-e] [-v] [commands]\n");
869             res = 1;
870         }
871     }
872
873     for (i = 0; i<MAX_CON; i++)
874     {
875         ZOOM_connection_destroy(z39_con[i]);
876         ZOOM_resultset_destroy(z39_res[i]);
877     }
878     ZOOM_options_destroy(zoom_options);
879     if (res == -1) /* quit .. which is not an error */
880         res = 0;
881     return res;
882 }
883
884 int main(int argc, char **argv)
885 {
886     int ret = zoomsh(argc, argv);
887     exit(ret);
888 }
889 /*
890  * Local variables:
891  * c-basic-offset: 4
892  * c-file-style: "Stroustrup"
893  * indent-tabs-mode: nil
894  * End:
895  * vim: shiftwidth=4 tabstop=8 expandtab
896  */
897