zoomsh: option -e for getting zoomsh to set EXIT code
[yaz-moved-to-github.git] / zoom / zoomsh.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2011 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_ext(ZOOM_connection *c, ZOOM_resultset *r,
363                    ZOOM_options options,
364                    const char **args)
365 {
366     ZOOM_package p[MAX_CON];
367     int i;
368     int ret = 0;
369     WRBUF ext_type_str = next_token_new_wrbuf(args);
370     
371     for (i = 0; i<MAX_CON; i++)
372     {
373         if (c[i])
374         {
375             p[i] = ZOOM_connection_package(c[i], 0);
376             ZOOM_package_send(p[i], ext_type_str ? wrbuf_cstr(ext_type_str):0);
377         }
378         else
379             p[i] = 0;
380     }
381
382     process_events(c);
383
384     for (i = 0; i<MAX_CON; i++)
385     {
386         int error;
387         const char *errmsg, *addinfo, *dset;
388         /* display errors if any */
389         if (!p[i])
390             continue;
391         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
392         {
393             printf("%s error: %s (%s:%d) %s\n",
394                    ZOOM_connection_option_get(c[i], "host"), errmsg,
395                    dset, error, addinfo);
396             ret = 1;
397         }
398         else if (p[i])
399         {
400             const char *v;
401             printf("ok\n");
402             v = ZOOM_package_option_get(p[i], "targetReference");
403             if (v)
404                 printf("targetReference: %s\n", v);
405             v = ZOOM_package_option_get(p[i], "xmlUpdateDoc");
406             if (v)
407                 printf("xmlUpdateDoc: %s\n", v);
408         }
409         ZOOM_package_destroy(p[i]);
410     }
411     if (ext_type_str)
412         wrbuf_destroy(ext_type_str);
413     return ret;
414 }
415
416 static int cmd_debug(ZOOM_connection *c, ZOOM_resultset *r,
417                      ZOOM_options options,
418                      const char **args)
419 {
420     yaz_log_init_level(YLOG_ALL);
421     return 0;
422 }
423
424 static int cmd_search(ZOOM_connection *c, ZOOM_resultset *r,
425                       ZOOM_options options,
426                       const char **args)
427 {
428     ZOOM_query s;
429     const char *query_str = *args;
430     int i;
431     int ret = 0;
432     
433     s = ZOOM_query_create();
434     while (*query_str == ' ')
435         query_str++;
436     if (memcmp(query_str, "cql:", 4) == 0)
437     {
438         ZOOM_query_cql(s, query_str + 4);
439     }
440     else if (ZOOM_query_prefix(s, query_str))
441     {
442         printf("Bad PQF: %s\n", query_str);
443         ZOOM_query_destroy(s);
444         return 1;
445     }
446     for (i = 0; i<MAX_CON; i++)
447     {
448
449         if (c[i])
450         {
451             ZOOM_resultset_destroy(r[i]);
452             r[i] = 0;
453         }
454         if (c[i])
455             r[i] = ZOOM_connection_search(c[i], s);
456     }
457     ZOOM_query_destroy(s);
458
459     process_events(c);
460
461     for (i = 0; i<MAX_CON; i++)
462     {
463         int error;
464         const char *errmsg, *addinfo, *dset;
465         /* display errors if any */
466         if (!c[i])
467             continue;
468         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
469         {
470             printf("%s error: %s (%s:%d) %s\n",
471                    ZOOM_connection_option_get(c[i], "host"), errmsg,
472                    dset, error, addinfo);
473             ret = 1;
474         }
475         else if (r[i])
476         {
477             /* OK, no major errors. Look at the result count */
478             int start = ZOOM_options_get_int(options, "start", 0);
479             int count = ZOOM_options_get_int(options, "count", 0);
480             int facet_num;
481
482             printf("%s: %lld hits\n", ZOOM_connection_option_get(c[i], "host"),
483                    (long long int) ZOOM_resultset_size(r[i]));
484             
485             facet_num = ZOOM_resultset_facets_size(r[i]);
486             if (facet_num)
487             {
488                 ZOOM_facet_field *facets = ZOOM_resultset_facets(r[i]);
489                 int facet_idx;
490                 for (facet_idx = 0; facet_idx < facet_num; facet_idx++)
491                 {
492                     const char *name = ZOOM_facet_field_name(facets[facet_idx]);
493                     size_t term_idx;
494                     size_t term_num = ZOOM_facet_field_term_count(facets[facet_idx]);
495                     printf("facet: %s\n", name);
496                     for (term_idx = 0; term_idx < term_num; term_idx++ )
497                     {
498                         int freq;
499                         const char *term =
500                             ZOOM_facet_field_get_term(facets[facet_idx], term_idx, &freq);
501                         printf("term: %s %d\n", term, freq);
502                     }
503                 }
504             }
505             /* and display */
506             display_records(c[i], r[i], start, count, "render");
507         }
508     }
509     return ret;
510 }
511
512 static int cmd_scan(ZOOM_connection *c, ZOOM_resultset *r,
513                     ZOOM_options options,
514                     const char **args)
515 {
516     const char *query_str = *args;
517     ZOOM_query query = ZOOM_query_create();
518     int i;
519     int ret = 0;
520     ZOOM_scanset s[MAX_CON];
521     
522     while (*query_str == ' ')
523         query_str++;
524
525     if (memcmp(query_str, "cql:", 4) == 0)
526     {
527         ZOOM_query_cql(query, query_str + 4);
528     }
529     else if (ZOOM_query_prefix(query, query_str))
530     {
531         printf("Bad PQF: %s\n", query_str);
532         ZOOM_query_destroy(query);
533         return 1;
534     }
535
536     for (i = 0; i<MAX_CON; i++)
537     {
538         if (c[i])
539             s[i] = ZOOM_connection_scan1(c[i], query);
540         else
541             s[i] = 0;
542     }
543     ZOOM_query_destroy(query);
544
545     process_events(c);
546
547     for (i = 0; i<MAX_CON; i++)
548     {
549         int error;
550         const char *errmsg, *addinfo, *dset;
551         /* display errors if any */
552         if (!c[i])
553             continue;
554         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
555         {
556             printf("%s error: %s (%s:%d) %s\n",
557                    ZOOM_connection_option_get(c[i], "host"), errmsg,
558                    dset, error, addinfo);
559             ret = 1;
560         }
561         if (s[i])
562         {
563             size_t p, sz = ZOOM_scanset_size(s[i]);
564             for (p = 0; p < sz; p++)
565             {
566                 size_t occ = 0;
567                 size_t len = 0;
568                 const char *term = ZOOM_scanset_display_term(s[i], p,
569                                                              &occ, &len);
570                 printf("%.*s %lld\n", (int) len, term, (long long int) occ);
571             }            
572             ZOOM_scanset_destroy(s[i]);
573         }
574     }
575     return ret;
576 }
577
578 static int cmd_sort(ZOOM_connection *c, ZOOM_resultset *r,
579                     ZOOM_options options,
580                     const char **args)
581 {
582     const char *sort_spec = *args;
583     int i;
584     int ret = 0;
585     
586     while (*sort_spec == ' ')
587         sort_spec++;
588     
589     for (i = 0; i<MAX_CON; i++)
590     {
591         if (r[i])
592             ZOOM_resultset_sort(r[i], "yaz", sort_spec);
593     }
594     process_events(c);
595     return ret;
596 }
597
598 static int cmd_help(ZOOM_connection *c, ZOOM_resultset *r,
599                     ZOOM_options options,
600                     const char **args)
601 {
602     printf("connect <zurl>\n");
603     printf("search <pqf>\n");
604     printf("show [<start> [<count> [<type]]]\n");
605     printf("facets\n");
606     printf("scan <term>\n");
607     printf("quit\n");
608     printf("close <zurl>\n");
609     printf("ext <type>\n");
610     printf("set <option> [<value>]\n");
611     printf("get <option>\n");
612     printf("\n");
613     printf("options:\n");
614     printf(" start\n");
615     printf(" count\n");
616     printf(" databaseName\n");
617     printf(" preferredRecordSyntax\n");
618     printf(" proxy\n");
619     printf(" elementSetName\n");
620     printf(" maximumRecordSize\n");
621     printf(" preferredRecordSize\n");
622     printf(" async\n");
623     printf(" piggyback\n");
624     printf(" group\n");
625     printf(" user\n");
626     printf(" password\n");
627     printf(" implementationName\n");
628     printf(" charset\n");
629     printf(" lang\n");
630     printf(" timeout\n");
631     printf(" facets\n");
632     return 0;
633 }
634
635 static int cmd_connect(ZOOM_connection *c, ZOOM_resultset *r,
636                        ZOOM_options options,
637                        const char **args)
638 {
639     int ret = 0;
640     int error;
641     const char *errmsg, *addinfo, *dset;
642     int j, i;
643     WRBUF host = next_token_new_wrbuf(args);
644     if (!host)
645     {
646         printf("missing host after connect\n");
647         return 1;
648     }
649     for (j = -1, i = 0; i<MAX_CON; i++)
650     {
651         const char *h;
652         if (c[i] && (h = ZOOM_connection_option_get(c[i], "host")) &&
653             !strcmp(h, wrbuf_cstr(host)))
654         {
655             ZOOM_connection_destroy(c[i]);
656             break;
657         }
658         else if (c[i] == 0 && j == -1)
659             j = i;
660     }
661     if (i == MAX_CON)  /* no match .. */
662     {
663         if (j == -1)
664         {
665             printf("no more connection available\n");
666             wrbuf_destroy(host);
667             return 1;
668         }
669         i = j;   /* OK, use this one is available */
670     }
671     c[i] = ZOOM_connection_create(options);
672     ZOOM_connection_connect(c[i], wrbuf_cstr(host), 0);
673         
674     if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
675     {
676         printf("%s error: %s (%s:%d) %s\n",
677                ZOOM_connection_option_get(c[i], "host"), errmsg,
678                dset, error, addinfo);
679         ret = 1;
680     }
681     wrbuf_destroy(host);
682     return ret;
683 }
684
685 /** \brief parse and execute zoomsh command
686     \param c connections
687     \param r result sets
688     \param options ZOOM options
689     \param buf command string and arguments
690     \retval 0 OK
691     \retval 1 failure to execute
692     \retval -1 EOF (no more commands or quit seen)
693 */
694 static int cmd_parse(ZOOM_connection *c, ZOOM_resultset *r,
695                      ZOOM_options options, 
696                      const char **buf)
697 {
698     int cmd_len;
699     const char *cmd_str;
700     int ret = 0;
701
702     cmd_len = next_token(buf, &cmd_str);
703     if (cmd_len < 0)
704         return -1;
705     if (is_command("quit", cmd_str, cmd_len))
706         return -1;
707     else if (is_command("set", cmd_str, cmd_len))
708         ret = cmd_set(c, r, options, buf);
709     else if (is_command("get", cmd_str, cmd_len))
710         ret = cmd_get(c, r, options, buf);
711     else if (is_command("rget", cmd_str, cmd_len))
712         ret = cmd_rget(c, r, options, buf);
713     else if (is_command("connect", cmd_str, cmd_len))
714         ret = cmd_connect(c, r, options, buf);
715     else if (is_command("open", cmd_str, cmd_len))
716         ret = cmd_connect(c, r, options, buf);
717     else if (is_command("search", cmd_str, cmd_len))
718         ret = cmd_search(c, r, options, buf);
719     else if (is_command("facets", cmd_str, cmd_len))
720         ret = cmd_facets(c, r, options, buf);
721     else if (is_command("find", cmd_str, cmd_len))
722         ret = cmd_search(c, r, options, buf);
723     else if (is_command("show", cmd_str, cmd_len))
724         ret = cmd_show(c, r, options, buf);
725     else if (is_command("close", cmd_str, cmd_len))
726         ret = cmd_close(c, r, options, buf);
727     else if (is_command("help", cmd_str, cmd_len))
728         ret = cmd_help(c, r, options, buf);
729     else if (is_command("ext", cmd_str, cmd_len))
730         ret = cmd_ext(c, r, options, buf);
731     else if (is_command("debug", cmd_str, cmd_len))
732         ret = cmd_debug(c, r, options, buf);
733     else if (is_command("scan", cmd_str, cmd_len))
734         ret = cmd_scan(c, r, options, buf);
735     else if (is_command("sort", cmd_str, cmd_len))
736         ret = cmd_sort(c, r, options, buf);
737     else
738     {
739         printf("unknown command %.*s\n", cmd_len, cmd_str);
740         ret = 1;
741     }
742     return ret;
743 }
744
745 static int shell(ZOOM_connection *c, ZOOM_resultset *r,
746                  ZOOM_options options, int exit_on_error)
747 {
748     int res = 0;
749     while (res == 0)
750     {
751         char buf[1000];
752         char *cp;
753         const char *bp = buf;
754 #if HAVE_READLINE_READLINE_H
755         char* line_in;
756         line_in = readline("ZOOM>");
757         if (!line_in)
758         {
759             res = -1;
760             break;
761         }
762 #if HAVE_READLINE_HISTORY_H
763         if (*line_in)
764             add_history(line_in);
765 #endif
766         if (strlen(line_in) > 999)
767         {
768             printf("Input line too long\n");
769             res = 1;
770             break;
771         }
772         strcpy(buf,line_in);
773         free(line_in);
774 #else    
775         printf("ZOOM>"); fflush(stdout);
776         if (!fgets(buf, 999, stdin))
777         {
778             res = -1;
779             break;
780         }
781 #endif 
782         if ((cp = strchr(buf, '\n')))
783             *cp = '\0';
784         res = cmd_parse(c, r, options, &bp);
785         if (res == -1)
786             break;
787         if (!exit_on_error && res > 0)
788             res = 0;
789     }
790     return res;
791 }
792
793 static int zoomsh(int argc, char **argv)
794 {
795     ZOOM_options zoom_options = ZOOM_options_create();
796     int i, res = 0; /* -1: EOF; 0 = OK, > 0 ERROR */
797     int exit_on_error = 0;
798     ZOOM_connection z39_con[MAX_CON];
799     ZOOM_resultset  z39_res[MAX_CON];
800
801     for (i = 0; i<MAX_CON; i++)
802     {
803         z39_con[i] = 0;
804         z39_res[i] = 0;
805     }
806     while (res == 0)
807     {
808         int mask;
809         char *arg = 0;
810         int option_ret = options("ev:", argv, argc, &arg);
811         const char *bp = arg;
812         switch (option_ret)
813         {
814         case 0:
815             res = cmd_parse(z39_con, z39_res, zoom_options, &bp);
816             /* returns res == -1 on quit */
817             if (!exit_on_error && res > 0)
818                 res = 0;  /* hide error */
819             break;
820         case YAZ_OPTIONS_EOF:
821             res = shell(z39_con, z39_res, zoom_options, exit_on_error);
822             break;
823         case 'e':
824             exit_on_error = 1;
825             break;
826         case 'v':
827             mask = yaz_log_mask_str(arg);
828             yaz_log_init_level(mask);
829             break;
830         default:
831             fprintf(stderr, "zoomsh: [-e] [-v] [commands]\n");
832             res = 1;
833         }
834     }
835
836     for (i = 0; i<MAX_CON; i++)
837     {
838         ZOOM_connection_destroy(z39_con[i]);
839         ZOOM_resultset_destroy(z39_res[i]);
840     }
841     ZOOM_options_destroy(zoom_options);
842     if (res == -1) /* quit .. which is not an error */
843         res = 0;
844     return res;
845 }
846
847 int main(int argc, char **argv)
848 {
849     int ret = zoomsh(argc, argv);
850     exit(ret);
851 }
852 /*
853  * Local variables:
854  * c-basic-offset: 4
855  * c-file-style: "Stroustrup"
856  * indent-tabs-mode: nil
857  * End:
858  * vim: shiftwidth=4 tabstop=8 expandtab
859  */
860