Remove the oid_name_to_dotstring() function, which is now in oid.c
[yaz-moved-to-github.git] / zoom / zoomsh.c
1 /*
2  * $Id: zoomsh.c,v 1.22 2003-07-10 11:50:32 mike Exp $
3  *
4  * ZOOM-C Shell
5  */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <ctype.h>
11
12 #if HAVE_READLINE_READLINE_H
13 #include <readline/readline.h> 
14 #endif
15 #if HAVE_READLINE_HISTORY_H
16 #include <readline/history.h>
17 #endif
18
19 #include <yaz/xmalloc.h>
20
21 #include <yaz/log.h>
22 #include <yaz/nmem.h>
23 #include <yaz/zoom.h>
24 #include <yaz/oid.h>
25
26 #define MAX_CON 100
27
28 static int next_token (const char **cpp, const char **t_start)
29 {
30     int len = 0;
31     const char *cp = *cpp;
32     while (*cp == ' ')
33         cp++;
34     if (*cp == '"')
35     {
36         cp++;
37         *t_start = cp;
38         while (*cp && *cp != '"')
39         {
40             cp++;
41             len++;
42         }
43         if (*cp)
44             cp++;
45     }
46     else
47     {
48         *t_start = cp;
49         while (*cp && *cp != ' ' && *cp != '\r' && *cp != '\n')
50         {
51             cp++;
52             len++;
53         }
54         if (len == 0)
55             len = -1;
56     }
57     *cpp = cp;
58     return len;  /* return -1 if no token was read .. */
59 }
60
61 static int next_token_copy (const char **cpp, char *buf_out, int buf_max)
62 {
63     const char *start;
64     int len = next_token (cpp, &start);
65     if (len < 0)
66     {
67         *buf_out = 0;
68         return len;
69     }
70     if (len >= buf_max)
71         len = buf_max-1;
72     memcpy (buf_out, start, len);
73     buf_out[len] = '\0';
74     return len;
75 }
76
77 static int is_command (const char *cmd_str, const char *this_str, int this_len)
78 {
79     int cmd_len = strlen(cmd_str);
80     if (cmd_len != this_len)
81         return 0;
82     if (memcmp (cmd_str, this_str, cmd_len))
83         return 0;
84     return 1;
85 }
86
87 static void cmd_set (ZOOM_connection *c, ZOOM_resultset *r,
88                      ZOOM_options options,
89                      const char **args)
90 {
91     char key[40], val[80];
92
93     if (next_token_copy (args, key, sizeof(key)) < 0)
94     {
95         printf ("missing argument for set\n");
96         return ;
97     }
98     if (next_token_copy (args, val, sizeof(val)) < 0)
99         ZOOM_options_set(options, key, 0);
100     else
101         ZOOM_options_set(options, key, val);
102 }
103
104 static void cmd_get (ZOOM_connection *c, ZOOM_resultset *r,
105                      ZOOM_options options,
106                      const char **args)
107 {
108     char key[40];
109     if (next_token_copy (args, key, sizeof(key)) < 0)
110     {
111         printf ("missing argument for get\n");
112     }
113     else
114     {
115         const char *val = ZOOM_options_get(options, key);
116         printf ("%s = %s\n", key, val ? val : "<null>");
117     }
118 }
119
120 static void cmd_close (ZOOM_connection *c, ZOOM_resultset *r,
121                        ZOOM_options options,
122                        const char **args)
123 {
124     char host[60];
125     int i;
126     next_token_copy (args, host, sizeof(host));
127     for (i = 0; i<MAX_CON; i++)
128     {
129         const char *h;
130         if (!c[i])
131             continue;
132         if ((h = ZOOM_connection_option_get(c[i], "host"))
133             && !strcmp (h, host))
134         {
135             ZOOM_connection_destroy (c[i]);
136             c[i] = 0;
137         }
138         else if (*host == '\0')
139         {
140             ZOOM_connection_destroy (c[i]);
141             c[i] = 0;
142         }
143     }
144 }
145
146 static void display_records (ZOOM_connection c,
147                              ZOOM_resultset r,
148                              int start, int count)
149 {
150     int i;
151     for (i = 0; i<count; i++)
152     {
153         int pos = i + start;
154         ZOOM_record rec = ZOOM_resultset_record (r, pos);
155         const char *db = ZOOM_record_get (rec, "database", 0);
156         int len;
157         const char *render = ZOOM_record_get (rec, "render", &len);
158         const char *syntax = ZOOM_record_get (rec, "syntax", 0);
159         /* if rec is non-null, we got a record for display */
160         if (rec)
161         {
162             char oidbuf[100];
163             (void) oid_name_to_dotstring(CLASS_RECSYN, syntax, oidbuf);
164             printf ("%d %s %s (%s)\n",
165                     pos+1, (db ? db : "unknown"), syntax, oidbuf);
166             if (render)
167                 fwrite (render, 1, len, stdout);
168             printf ("\n");
169         }
170     }
171 }
172
173 static void cmd_show (ZOOM_connection *c, ZOOM_resultset *r,
174                       ZOOM_options options,
175                       const char **args)
176 {
177     int i;
178     char start_str[10], count_str[10];
179
180     if (next_token_copy (args, start_str, sizeof(start_str)) >= 0)
181         ZOOM_options_set (options, "start", start_str);
182
183     if (next_token_copy (args, count_str, sizeof(count_str)) >= 0)
184         ZOOM_options_set (options, "count", count_str);
185
186     for (i = 0; i<MAX_CON; i++)
187         ZOOM_resultset_records (r[i], 0, atoi(start_str), atoi(count_str));
188     while (ZOOM_event (MAX_CON, c))
189         ;
190
191     for (i = 0; i<MAX_CON; i++)
192     {
193         int error;
194         const char *errmsg, *addinfo, *dset;
195         /* display errors if any */
196         if (!c[i])
197             continue;
198         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
199             printf ("%s error: %s (%s:%d) %s\n",
200                      ZOOM_connection_option_get(c[i], "host"), errmsg,
201                      dset, error, addinfo);
202         else if (r[i])
203         {
204             /* OK, no major errors. Display records... */
205             int start = ZOOM_options_get_int (options, "start", 0);
206             int count = ZOOM_options_get_int (options, "count", 0);
207             display_records (c[i], r[i], start, count);
208         }
209     }
210     ZOOM_options_set (options, "count", "0");
211     ZOOM_options_set (options, "start", "0");
212 }
213
214 static void cmd_ext (ZOOM_connection *c, ZOOM_resultset *r,
215                      ZOOM_options options,
216                      const char **args)
217 {
218     ZOOM_package p[MAX_CON];
219     
220     int i;
221     
222     for (i = 0; i<MAX_CON; i++)
223     {
224         if (c[i])
225         {
226             p[i] = ZOOM_connection_package (c[i], 0);
227             ZOOM_package_send(p[i], "itemorder");
228         }
229         else
230             p[i] = 0;
231     }
232
233     while (ZOOM_event (MAX_CON, c))
234         ;
235
236     for (i = 0; i<MAX_CON; i++)
237     {
238         int error;
239         const char *errmsg, *addinfo, *dset;
240         /* display errors if any */
241         if (!p[i])
242             continue;
243         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
244             printf ("%s error: %s (%s:%d) %s\n",
245                      ZOOM_connection_option_get(c[i], "host"), errmsg,
246                      dset, error, addinfo);
247         else if (p[i])
248         {
249             printf ("ok\n");
250         }
251         ZOOM_package_destroy (p[i]);
252     }
253 }
254
255 static void cmd_debug (ZOOM_connection *c, ZOOM_resultset *r,
256                        ZOOM_options options,
257                        const char **args)
258 {
259     yaz_log_init_level(LOG_ALL);
260 }
261
262 static void cmd_search (ZOOM_connection *c, ZOOM_resultset *r,
263                         ZOOM_options options,
264                         const char **args)
265 {
266     ZOOM_query s;
267     const char *query_str = *args;
268     int i;
269     
270     s = ZOOM_query_create ();
271     while (*query_str == ' ')
272         query_str++;
273     if (memcmp(query_str, "cql:", 4) == 0)
274     {
275         ZOOM_query_cql (s, query_str + 4);
276     }
277     else if (ZOOM_query_prefix (s, query_str))
278     {
279         printf ("Bad PQF: %s\n", query_str);
280         return;
281     }
282     for (i = 0; i<MAX_CON; i++)
283     {
284         if (c[i])
285         {
286             ZOOM_resultset_destroy (r[i]);
287             r[i] = 0;
288         }
289         if (c[i])
290             r[i] = ZOOM_connection_search (c[i], s);
291     }
292
293     while (ZOOM_event (MAX_CON, c))
294         ;
295
296     for (i = 0; i<MAX_CON; i++)
297     {
298         int error;
299         const char *errmsg, *addinfo, *dset;
300         /* display errors if any */
301         if (!c[i])
302             continue;
303         if ((error = ZOOM_connection_error_x(c[i], &errmsg, &addinfo, &dset)))
304             printf ("%s error: %s (%s:%d) %s\n",
305                     ZOOM_connection_option_get(c[i], "host"), errmsg,
306                     dset, error, addinfo);
307         else if (r[i])
308         {
309             /* OK, no major errors. Look at the result count */
310             int start = ZOOM_options_get_int (options, "start", 0);
311             int count = ZOOM_options_get_int (options, "count", 0);
312
313             printf ("%s: %d hits\n", ZOOM_connection_option_get(c[i], "host"),
314                     ZOOM_resultset_size(r[i]));
315             /* and display */
316             display_records (c[i], r[i], start, count);
317         }
318     }
319     ZOOM_query_destroy (s);
320 }
321
322 static void cmd_scan (ZOOM_connection *c, ZOOM_resultset *r,
323                       ZOOM_options options,
324                       const char **args)
325 {
326     const char *start_term = *args;
327     int i;
328     ZOOM_scanset s[MAX_CON];
329     
330     while (*start_term == ' ')
331         start_term++;
332
333     for (i = 0; i<MAX_CON; i++)
334     {
335         if (c[i])
336             s[i] = ZOOM_connection_scan(c[i], start_term);
337         else
338             s[i] = 0;
339     }
340     while (ZOOM_event(MAX_CON, c))
341         ;
342     for (i = 0; i<MAX_CON; i++)
343     {
344         if (s[i]) {
345             size_t p, sz = ZOOM_scanset_size(s[i]);
346             for (p = 0; p < sz; p++)
347             {
348                 int occ = 0;
349                 int len = 0;
350                 const char *term = ZOOM_scanset_term(s[i], p, &occ, &len);
351                 fwrite(term, 1, len, stdout);
352                 printf (" %d\n", occ);
353             }            
354             ZOOM_scanset_destroy(s[i]);
355         }
356     }
357 }
358
359 static void cmd_help (ZOOM_connection *c, ZOOM_resultset *r,
360                       ZOOM_options options,
361                       const char **args)
362 {
363     printf ("connect <zurl>\n");
364     printf ("search <pqf>\n");
365     printf ("show [<start> [<count>]\n");
366     printf ("scan <term>\n");
367     printf ("quit\n");
368     printf ("close <zurl>\n");
369     printf ("set <option> [<value>]\n");
370     printf ("get <option>\n");
371     printf ("\n");
372     printf ("options:\n");
373     printf (" start\n");
374     printf (" count\n");
375     printf (" databaseName\n");
376     printf (" preferredRecordSyntax\n");
377     printf (" proxy\n");
378     printf (" elementSetName\n");
379     printf (" maximumRecordSize\n");
380     printf (" preferredRecordSize\n");
381     printf (" async\n");
382     printf (" piggyback\n");
383     printf (" group\n");
384     printf (" user\n");
385     printf (" pass\n");
386     printf (" implementationName\n");
387     printf (" charset\n");
388     printf (" lang\n");
389 }
390
391 static void cmd_connect (ZOOM_connection *c, ZOOM_resultset *r,
392                          ZOOM_options options,
393                          const char **args)
394 {
395     int error;
396     const char *errmsg, *addinfo, *dset;
397     char host[60];
398     int j, i;
399     if (next_token_copy (args, host, sizeof(host)) < 0)
400     {
401         printf ("missing host after connect\n");
402         return ;
403     }
404     for (j = -1, i = 0; i<MAX_CON; i++)
405     {
406         const char *h;
407         if (c[i] && (h = ZOOM_connection_option_get(c[i], "host")) &&
408             !strcmp (h, host))
409         {
410             ZOOM_connection_destroy (c[i]);
411             break;
412         }
413         else if (c[i] == 0 && j == -1)
414             j = i;
415     }
416     if (i == MAX_CON)  /* no match .. */
417     {
418         if (j == -1)
419         {
420             printf ("no more connection available\n");
421             return;
422         }
423         i = j;   /* OK, use this one is available */
424     }
425     c[i] = ZOOM_connection_create (options);
426     ZOOM_connection_connect (c[i], host, 0);
427         
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
434 static int cmd_parse (ZOOM_connection *c, ZOOM_resultset *r,
435                       ZOOM_options options, 
436                       const char **buf)
437 {
438     int cmd_len;
439     const char *cmd_str;
440
441     cmd_len = next_token (buf, &cmd_str);
442     if (cmd_len < 0)
443         return 1;
444     if (is_command ("quit", cmd_str, cmd_len))
445         return 0;
446     else if (is_command ("set", cmd_str, cmd_len))
447         cmd_set (c, r, options, buf);
448     else if (is_command ("get", cmd_str, cmd_len))
449         cmd_get (c, r, options, buf);
450     else if (is_command ("connect", cmd_str, cmd_len))
451         cmd_connect (c, r, options, buf);
452     else if (is_command ("open", cmd_str, cmd_len))
453         cmd_connect (c, r, options, buf);
454     else if (is_command ("search", cmd_str, cmd_len))
455         cmd_search (c, r, options, buf);
456     else if (is_command ("find", cmd_str, cmd_len))
457         cmd_search (c, r, options, buf);
458     else if (is_command ("show", cmd_str, cmd_len))
459         cmd_show (c, r, options, buf);
460     else if (is_command ("close", cmd_str, cmd_len))
461         cmd_close (c, r, options, buf);
462     else if (is_command ("help", cmd_str, cmd_len))
463         cmd_help(c, r, options, buf);
464     else if (is_command ("ext", cmd_str, cmd_len))
465         cmd_ext(c, r, options, buf);
466     else if (is_command ("debug", cmd_str, cmd_len))
467         cmd_debug(c, r, options, buf);
468     else if (is_command ("scan", cmd_str, cmd_len))
469         cmd_scan(c, r, options, buf);
470     else
471         printf ("unknown command %.*s\n", cmd_len, cmd_str);
472     return 2;
473 }
474
475 void shell(ZOOM_connection *c, ZOOM_resultset *r,
476            ZOOM_options options)
477 {
478     while (1)
479     {
480         char buf[1000];
481         char *cp;
482         const char *bp = buf;
483 #if HAVE_READLINE_READLINE_H
484         char* line_in;
485         line_in=readline("ZOOM>");
486         if (!line_in)
487             break;
488 #if HAVE_READLINE_HISTORY_H
489         if (*line_in)
490             add_history(line_in);
491 #endif
492         if(strlen(line_in) > 999) {
493             printf("Input line too long\n");
494             break;
495         };
496         strcpy(buf,line_in);
497         free (line_in);
498 #else    
499         printf ("ZOOM>"); fflush (stdout);
500         if (!fgets (buf, 999, stdin))
501             break;
502 #endif 
503         if ((cp = strchr(buf, '\n')))
504             *cp = '\0';
505         if (!cmd_parse (c, r, options, &bp))
506             break;
507     }
508 }
509
510 int main (int argc, char **argv)
511 {
512     ZOOM_options options = ZOOM_options_create();
513     int i, res;
514     ZOOM_connection z39_con[MAX_CON];
515     ZOOM_resultset  z39_res[MAX_CON];
516
517     nmem_init();
518     for (i = 0; i<MAX_CON; i++)
519     {
520         z39_con[i] = 0;
521         z39_res[i] = 0;
522     }
523
524     for (i = 0; i<MAX_CON; i++)
525         z39_con[i] = 0;
526
527     res = 1;
528     for (i = 1; i<argc; i++)
529     {
530         const char *bp = argv[i];
531         res = cmd_parse(z39_con, z39_res, options, &bp);
532         if (res == 0)  /* received quit */
533             break;
534     }
535     if (res)  /* do cmdline shell only if not quitting */
536         shell(z39_con, z39_res, options);
537     ZOOM_options_destroy(options);
538
539     for (i = 0; i<MAX_CON; i++)
540     {
541         ZOOM_connection_destroy(z39_con[i]);
542         ZOOM_resultset_destroy(z39_res[i]);
543     }
544     nmem_exit();
545     exit (0);
546 }