01c8e1aaefd511e13797bda5b5afb5574d9c77bc
[yaz-moved-to-github.git] / zoom / zoomsh.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2009 Index Data
3  * See the file LICENSE for details.
4  */
5
6 /** \file zoomsh.c
7     \brief ZOOM C command line tool (shell)
8 */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <ctype.h>
14
15 #if HAVE_READLINE_READLINE_H
16 #include <readline/readline.h> 
17 #endif
18 #if HAVE_READLINE_HISTORY_H
19 #include <readline/history.h>
20 #endif
21
22 #include <yaz/log.h>
23 #include <yaz/zoom.h>
24
25 #define MAX_CON 100
26
27 static int next_token(const char **cpp, const char **t_start)
28 {
29     int len = 0;
30     const char *cp = *cpp;
31     while (*cp == ' ')
32         cp++;
33     if (*cp == '"')
34     {
35         cp++;
36         *t_start = cp;
37         while (*cp && *cp != '"')
38         {
39             cp++;
40             len++;
41         }
42         if (*cp)
43             cp++;
44     }
45     else
46     {
47         *t_start = cp;
48         while (*cp && *cp != ' ' && *cp != '\r' && *cp != '\n')
49         {
50             cp++;
51             len++;
52         }
53         if (len == 0)
54             len = -1;
55     }
56     *cpp = cp;
57     return len;  /* return -1 if no token was read .. */
58 }
59
60 static int next_token_copy(const char **cpp, char *buf_out, int buf_max)
61 {
62     const char *start;
63     int len = next_token(cpp, &start);
64     if (len < 0)
65     {
66         *buf_out = 0;
67         return len;
68     }
69     if (len >= buf_max)
70         len = buf_max-1;
71     memcpy(buf_out, start, len);
72     buf_out[len] = '\0';
73     return len;
74 }
75
76 static int is_command(const char *cmd_str, const char *this_str, int this_len)
77 {
78     int cmd_len = strlen(cmd_str);
79     if (cmd_len != this_len)
80         return 0;
81     if (memcmp(cmd_str, this_str, cmd_len))
82         return 0;
83     return 1;
84 }
85
86 static void cmd_set(ZOOM_connection *c, ZOOM_resultset *r,
87                     ZOOM_options options,
88                     const char **args)
89 {
90     char key[40], val[80];
91
92     if (next_token_copy(args, key, sizeof(key)) < 0)
93     {
94         printf("missing argument for set\n");
95         return ;
96     }
97     if (next_token_copy(args, val, sizeof(val)) < 0)
98         ZOOM_options_set(options, key, 0);
99     else
100         ZOOM_options_set(options, key, val);
101 }
102
103 static void cmd_get(ZOOM_connection *c, ZOOM_resultset *r,
104                     ZOOM_options options,
105                     const char **args)
106 {
107     char key[40];
108     if (next_token_copy(args, key, sizeof(key)) < 0)
109     {
110         printf("missing argument for get\n");
111     }
112     else
113     {
114         const char *val = ZOOM_options_get(options, key);
115         printf("%s = %s\n", key, val ? val : "<null>");
116     }
117 }
118
119 static void cmd_rget(ZOOM_connection *c, ZOOM_resultset *r,
120                      ZOOM_options options,
121                      const char **args)
122 {
123     char key[40];
124     if (next_token_copy(args, key, sizeof(key)) < 0)
125     {
126         printf("missing argument for get\n");
127     }
128     else
129     {
130         int i;
131         for (i = 0; i<MAX_CON; i++)
132         {
133             const char *val;
134             if (!r[i])
135                 continue;
136             
137             val = ZOOM_resultset_option_get(r[i], key);
138             printf("%s = %s\n", key, val ? val : "<null>");
139         }
140     }
141 }
142
143 static void cmd_close(ZOOM_connection *c, ZOOM_resultset *r,
144                       ZOOM_options options,
145                       const char **args)
146 {
147     char host[60];
148     int i;
149     next_token_copy(args, host, sizeof(host));
150     for (i = 0; i<MAX_CON; i++)
151     {
152         const char *h;
153         if (!c[i])
154             continue;
155         if ((h = ZOOM_connection_option_get(c[i], "host"))
156             && !strcmp(h, host))
157         {
158             ZOOM_connection_destroy(c[i]);
159             c[i] = 0;
160         }
161         else if (*host == '\0')
162         {
163             ZOOM_connection_destroy(c[i]);
164             c[i] = 0;
165         }
166     }
167 }
168
169 static void display_records(ZOOM_connection c,
170                             ZOOM_resultset r,
171                             int start, int count, const char *type)
172 {
173     int i;
174     for (i = 0; i<count; i++)
175     {
176         int pos = i + start;
177         ZOOM_record rec = ZOOM_resultset_record(r, pos);
178         const char *db = ZOOM_record_get(rec, "database", 0);
179         
180         if (ZOOM_record_error(rec, 0, 0, 0))
181         {
182             const char *msg;
183             const char *addinfo;
184             const char *diagset;
185             int error = ZOOM_record_error(rec, &msg, &addinfo, &diagset);
186             
187             printf("%d %s: %s (%s:%d) %s\n", pos, (db ? db : "unknown"),
188                    msg, diagset, error, addinfo ? addinfo : "none");
189         }
190         else
191         {
192             int len, opac_len;
193             const char *render = ZOOM_record_get(rec, type, &len);
194             const char *opac_render = ZOOM_record_get(rec, "opac", &opac_len);
195             const char *syntax = ZOOM_record_get(rec, "syntax", 0);
196             const char *schema = ZOOM_record_get(rec, "schema", 0);
197             /* if rec is non-null, we got a record for display */
198             if (rec)
199             {
200                 printf("%d database=%s syntax=%s schema=%s\n",
201                        pos, (db ? db : "unknown"), syntax,
202                        schema ? schema : "unknown");
203                 if (render)
204                 {
205                     if (fwrite(render, 1, len, stdout) != (size_t) len)
206                     {
207                         printf("write to stdout failed\n");
208                     }
209                 }
210                 printf("\n");
211                 if (opac_render)
212                 {
213                     if (fwrite(opac_render, 1, opac_len, stdout) != (size_t) 
214                                opac_len)
215                         printf("write to stdout failed\n");
216                 }
217             }
218         }
219     }
220 }
221
222 static void cmd_show(ZOOM_connection *c, ZOOM_resultset *r,
223                      ZOOM_options options,
224                      const char **args)
225 {
226     int i;
227     char start_str[10], count_str[10], render_str[60];
228     const char *type = "render";
229
230     if (next_token_copy(args, start_str, sizeof(start_str)) >= 0)
231         ZOOM_options_set(options, "start", start_str);
232
233     if (next_token_copy(args, count_str, sizeof(count_str)) <= 0)
234         strcpy(count_str, "1");
235     ZOOM_options_set(options, "count", count_str);
236
237     if (next_token_copy(args, render_str, sizeof(render_str)) >= 0)
238         type = render_str;
239
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))
243         ;
244
245     for (i = 0; i<MAX_CON; i++)
246     {
247         int error;
248         const char *errmsg, *addinfo, *dset;
249         /* display errors if any */
250         if (!c[i])
251             continue;
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);
256         else if (r[i])
257         {
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, type);
262         }
263     }
264     ZOOM_options_set(options, "count", "0");
265     ZOOM_options_set(options, "start", "0");
266 }
267
268 static void cmd_ext(ZOOM_connection *c, ZOOM_resultset *r,
269                     ZOOM_options options,
270                     const char **args)
271 {
272     ZOOM_package p[MAX_CON];
273     char ext_type_str[10];
274     
275     int i;
276
277     if (next_token_copy(args, ext_type_str, sizeof(ext_type_str)) < 0)
278         return;
279     
280     for (i = 0; i<MAX_CON; i++)
281     {
282         if (c[i])
283         {
284             p[i] = ZOOM_connection_package(c[i], 0);
285             ZOOM_package_send(p[i], ext_type_str);
286         }
287         else
288             p[i] = 0;
289     }
290
291     while (ZOOM_event(MAX_CON, c))
292         ;
293
294     for (i = 0; i<MAX_CON; i++)
295     {
296         int error;
297         const char *errmsg, *addinfo, *dset;
298         /* display errors if any */
299         if (!p[i])
300             continue;
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);
305         else if (p[i])
306         {
307             const char *v;
308             printf("ok\n");
309             v = ZOOM_package_option_get(p[i], "targetReference");
310             if (v)
311                 printf("targetReference: %s\n", v);
312             v = ZOOM_package_option_get(p[i], "xmlUpdateDoc");
313             if (v)
314                 printf("xmlUpdateDoc: %s\n", v);
315         }
316         ZOOM_package_destroy(p[i]);
317     }
318 }
319
320 static void cmd_debug(ZOOM_connection *c, ZOOM_resultset *r,
321                       ZOOM_options options,
322                       const char **args)
323 {
324     yaz_log_init_level(YLOG_ALL);
325 }
326
327 static void cmd_search(ZOOM_connection *c, ZOOM_resultset *r,
328                        ZOOM_options options,
329                        const char **args)
330 {
331     ZOOM_query s;
332     const char *query_str = *args;
333     int i;
334     
335     s = ZOOM_query_create();
336     while (*query_str == ' ')
337         query_str++;
338     if (memcmp(query_str, "cql:", 4) == 0)
339     {
340         ZOOM_query_cql(s, query_str + 4);
341     }
342     else if (ZOOM_query_prefix(s, query_str))
343     {
344         printf("Bad PQF: %s\n", query_str);
345         return;
346     }
347     for (i = 0; i<MAX_CON; i++)
348     {
349
350         if (c[i])
351         {
352             ZOOM_resultset_destroy(r[i]);
353             r[i] = 0;
354         }
355         if (c[i])
356             r[i] = ZOOM_connection_search(c[i], s);
357     }
358     ZOOM_query_destroy(s);
359
360     while (ZOOM_event(MAX_CON, c))
361         ;
362
363     for (i = 0; i<MAX_CON; i++)
364     {
365         int error;
366         const char *errmsg, *addinfo, *dset;
367         /* display errors if any */
368         if (!c[i])
369             continue;
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);
374         else if (r[i])
375         {
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);
379
380             printf("%s: %lld hits\n", ZOOM_connection_option_get(c[i], "host"),
381                    (long long int) ZOOM_resultset_size(r[i]));
382             /* and display */
383             display_records(c[i], r[i], start, count, "render");
384         }
385     }
386 }
387
388 static void cmd_scan(ZOOM_connection *c, ZOOM_resultset *r,
389                      ZOOM_options options,
390                      const char **args)
391 {
392     const char *query_str = *args;
393     ZOOM_query query = ZOOM_query_create();
394     int i;
395     ZOOM_scanset s[MAX_CON];
396     
397     while (*query_str == ' ')
398         query_str++;
399
400     if (memcmp(query_str, "cql:", 4) == 0)
401     {
402         ZOOM_query_cql(query, query_str + 4);
403     }
404     else if (ZOOM_query_prefix(query, query_str))
405     {
406         printf("Bad PQF: %s\n", query_str);
407         return;
408     }
409
410     for (i = 0; i<MAX_CON; i++)
411     {
412         if (c[i])
413             s[i] = ZOOM_connection_scan1(c[i], query);
414         else
415             s[i] = 0;
416     }
417     ZOOM_query_destroy(query);
418
419     while (ZOOM_event(MAX_CON, c))
420         ;
421     for (i = 0; i<MAX_CON; i++)
422     {
423         int error;
424         const char *errmsg, *addinfo, *dset;
425         /* display errors if any */
426         if (!c[i])
427             continue;
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);
432
433         if (s[i]) {
434             size_t p, sz = ZOOM_scanset_size(s[i]);
435             for (p = 0; p < sz; p++)
436             {
437                 size_t occ = 0;
438                 size_t len = 0;
439                 const char *term = ZOOM_scanset_display_term(s[i], p,
440                                                              &occ, &len);
441                 printf("%.*s %lld\n", (int) len, term, (long long int) occ);
442             }            
443             ZOOM_scanset_destroy(s[i]);
444         }
445     }
446 }
447
448 static void cmd_sort(ZOOM_connection *c, ZOOM_resultset *r,
449                      ZOOM_options options,
450                      const char **args)
451 {
452     const char *sort_spec = *args;
453     int i;
454     
455     while (*sort_spec == ' ')
456         sort_spec++;
457     
458     for (i = 0; i<MAX_CON; i++)
459     {
460         if (r[i])
461             ZOOM_resultset_sort(r[i], "yaz", sort_spec);
462     }
463     while (ZOOM_event(MAX_CON, c))
464         ;
465 }
466
467 static void cmd_help(ZOOM_connection *c, ZOOM_resultset *r,
468                      ZOOM_options options,
469                      const char **args)
470 {
471     printf("connect <zurl>\n");
472     printf("search <pqf>\n");
473     printf("show [<start> [<count> [<type]]]\n");
474     printf("scan <term>\n");
475     printf("quit\n");
476     printf("close <zurl>\n");
477     printf("ext <type>\n");
478     printf("set <option> [<value>]\n");
479     printf("get <option>\n");
480     printf("\n");
481     printf("options:\n");
482     printf(" start\n");
483     printf(" count\n");
484     printf(" databaseName\n");
485     printf(" preferredRecordSyntax\n");
486     printf(" proxy\n");
487     printf(" elementSetName\n");
488     printf(" maximumRecordSize\n");
489     printf(" preferredRecordSize\n");
490     printf(" async\n");
491     printf(" piggyback\n");
492     printf(" group\n");
493     printf(" user\n");
494     printf(" password\n");
495     printf(" implementationName\n");
496     printf(" charset\n");
497     printf(" lang\n");
498 }
499
500 static void cmd_connect(ZOOM_connection *c, ZOOM_resultset *r,
501                         ZOOM_options options,
502                         const char **args)
503 {
504     int error;
505     const char *errmsg, *addinfo, *dset;
506     char host[60];
507     int j, i;
508     if (next_token_copy(args, host, sizeof(host)) < 0)
509     {
510         printf("missing host after connect\n");
511         return ;
512     }
513     for (j = -1, i = 0; i<MAX_CON; i++)
514     {
515         const char *h;
516         if (c[i] && (h = ZOOM_connection_option_get(c[i], "host")) &&
517             !strcmp(h, host))
518         {
519             ZOOM_connection_destroy(c[i]);
520             break;
521         }
522         else if (c[i] == 0 && j == -1)
523             j = i;
524     }
525     if (i == MAX_CON)  /* no match .. */
526     {
527         if (j == -1)
528         {
529             printf("no more connection available\n");
530             return;
531         }
532         i = j;   /* OK, use this one is available */
533     }
534     c[i] = ZOOM_connection_create(options);
535     ZOOM_connection_connect(c[i], host, 0);
536         
537     if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
538         printf("%s error: %s (%s:%d) %s\n",
539                ZOOM_connection_option_get(c[i], "host"), errmsg,
540                dset, error, addinfo);
541 }
542
543 static int cmd_parse(ZOOM_connection *c, ZOOM_resultset *r,
544                      ZOOM_options options, 
545                      const char **buf)
546 {
547     int cmd_len;
548     const char *cmd_str;
549
550     cmd_len = next_token(buf, &cmd_str);
551     if (cmd_len < 0)
552         return 1;
553     if (is_command("quit", cmd_str, cmd_len))
554         return 0;
555     else if (is_command("set", cmd_str, cmd_len))
556         cmd_set(c, r, options, buf);
557     else if (is_command("get", cmd_str, cmd_len))
558         cmd_get(c, r, options, buf);
559     else if (is_command("rget", cmd_str, cmd_len))
560         cmd_rget(c, r, options, buf);
561     else if (is_command("connect", cmd_str, cmd_len))
562         cmd_connect(c, r, options, buf);
563     else if (is_command("open", cmd_str, cmd_len))
564         cmd_connect(c, r, options, buf);
565     else if (is_command("search", cmd_str, cmd_len))
566         cmd_search(c, r, options, buf);
567     else if (is_command("find", cmd_str, cmd_len))
568         cmd_search(c, r, options, buf);
569     else if (is_command("show", cmd_str, cmd_len))
570         cmd_show(c, r, options, buf);
571     else if (is_command("close", cmd_str, cmd_len))
572         cmd_close(c, r, options, buf);
573     else if (is_command("help", cmd_str, cmd_len))
574         cmd_help(c, r, options, buf);
575     else if (is_command("ext", cmd_str, cmd_len))
576         cmd_ext(c, r, options, buf);
577     else if (is_command("debug", cmd_str, cmd_len))
578         cmd_debug(c, r, options, buf);
579     else if (is_command("scan", cmd_str, cmd_len))
580         cmd_scan(c, r, options, buf);
581     else if (is_command("sort", cmd_str, cmd_len))
582         cmd_sort(c, r, options, buf);
583     else
584         printf("unknown command %.*s\n", cmd_len, cmd_str);
585     return 2;
586 }
587
588 void shell(ZOOM_connection *c, ZOOM_resultset *r,
589            ZOOM_options options)
590 {
591     while (1)
592     {
593         char buf[1000];
594         char *cp;
595         const char *bp = buf;
596 #if HAVE_READLINE_READLINE_H
597         char* line_in;
598         line_in=readline("ZOOM>");
599         if (!line_in)
600             break;
601 #if HAVE_READLINE_HISTORY_H
602         if (*line_in)
603             add_history(line_in);
604 #endif
605         if(strlen(line_in) > 999) {
606             printf("Input line too long\n");
607             break;
608         };
609         strcpy(buf,line_in);
610         free(line_in);
611 #else    
612         printf("ZOOM>"); fflush(stdout);
613         if (!fgets(buf, 999, stdin))
614             break;
615 #endif 
616         if ((cp = strchr(buf, '\n')))
617             *cp = '\0';
618         if (!cmd_parse(c, r, options, &bp))
619             break;
620     }
621 }
622
623 static void zoomsh(int argc, char **argv)
624 {
625     ZOOM_options options = ZOOM_options_create();
626     int i, res;
627     ZOOM_connection z39_con[MAX_CON];
628     ZOOM_resultset  z39_res[MAX_CON];
629
630     for (i = 0; i<MAX_CON; i++)
631     {
632         z39_con[i] = 0;
633         z39_res[i] = 0;
634     }
635
636     for (i = 0; i<MAX_CON; i++)
637         z39_con[i] = 0;
638
639     res = 1;
640     for (i = 1; i<argc; i++)
641     {
642         const char *bp = argv[i];
643         res = cmd_parse(z39_con, z39_res, options, &bp);
644         if (res == 0)  /* received quit */
645             break;
646     }
647     if (res)  /* do cmdline shell only if not quitting */
648         shell(z39_con, z39_res, options);
649     ZOOM_options_destroy(options);
650
651     for (i = 0; i<MAX_CON; i++)
652     {
653         ZOOM_connection_destroy(z39_con[i]);
654         ZOOM_resultset_destroy(z39_res[i]);
655     }
656 }
657
658 int main(int argc, char **argv)
659 {
660     const char *maskstr = 0;
661     if (argc > 2 && !strcmp(argv[1], "-v"))
662     {
663         maskstr = argv[2];
664         argv += 2;
665         argc -= 2;
666     }
667     else if (argc > 1 && !strncmp(argv[1], "-v", 2))
668     {
669         maskstr = argv[1]+2;
670         argv++;
671         argc--;
672     }
673     if (maskstr)
674     {
675         int mask = yaz_log_mask_str(maskstr);
676         yaz_log_init_level(mask);
677     }
678     zoomsh(argc, argv);
679     exit(0);
680 }
681 /*
682  * Local variables:
683  * c-basic-offset: 4
684  * c-file-style: "Stroustrup"
685  * indent-tabs-mode: nil
686  * End:
687  * vim: shiftwidth=4 tabstop=8 expandtab
688  */
689