Fixes for gcc warnings - mostly WRT check of returns values
[yaz-moved-to-github.git] / zoom / zoomtst3.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2008 Index Data
3  * See the file LICENSE for details.
4  */
5
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <string.h>
9 #include <ctype.h>
10
11 #include <yaz/xmalloc.h>
12
13 #include <yaz/zoom.h>
14
15 int main(int argc, char **argv)
16 {
17     int i;
18     int same_target = 0;
19     int no = argc-2;
20     ZOOM_connection z[500]; /* allow at most 500 connections */
21     ZOOM_resultset r[500];  /* and result sets .. */
22     ZOOM_options o = ZOOM_options_create ();
23
24     if (argc < 3)
25     {
26         fprintf (stderr, "usage:\n%s target1 target2 ... targetN query\n"
27                          "%s number target query\n", *argv, *argv);
28         exit (1);
29     }
30     if (argc == 4 && isdigit(argv[1][0]) && !strchr(argv[1],'.'))
31     {
32         no = atoi(argv[1]);
33         same_target = 1;
34     }
35
36     if (no > 500)
37         no = 500;
38
39     /* async mode */
40     ZOOM_options_set (o, "async", "1");
41
42     /* get first 10 records of result set (using piggyback) */
43     ZOOM_options_set (o, "count", "10");
44
45     /* preferred record syntax */
46     ZOOM_options_set (o, "preferredRecordSyntax", "usmarc");
47     ZOOM_options_set (o, "elementSetName", "F");
48
49     /* connect to all */
50     for (i = 0; i<no; i++)
51     {
52         /* create connection - pass options (they are the same for all) */
53         z[i] = ZOOM_connection_create (o);
54
55         /* connect and init */
56         if (same_target)
57             ZOOM_connection_connect (z[i], argv[2], 0);
58         else
59             ZOOM_connection_connect (z[i], argv[1+i], 0);
60     }
61     /* search all */
62     for (i = 0; i<no; i++)
63         r[i] = ZOOM_connection_search_pqf (z[i], argv[argc-1]);
64
65     /* network I/O. pass number of connections and array of connections */
66     while ((i = ZOOM_event (no, z)))
67     {
68         int peek = ZOOM_connection_peek_event(z[i-1]);
69         printf ("no = %d peek = %d event = %d\n", i-1,
70                 peek,
71                 ZOOM_connection_last_event(z[i-1]));
72     }
73     
74     /* no more to be done. Inspect results */
75     for (i = 0; i<no; i++)
76     {
77         int error;
78         const char *errmsg, *addinfo;
79         const char *tname = (same_target ? argv[2] : argv[1+i]);
80         /* display errors if any */
81         if ((error = ZOOM_connection_error(z[i], &errmsg, &addinfo)))
82             fprintf (stderr, "%s error: %s (%d) %s\n", tname, errmsg,
83                      error, addinfo);
84         else
85         {
86             /* OK, no major errors. Look at the result count */
87             int pos;
88             printf ("%s: %ld hits\n", tname, (long) ZOOM_resultset_size(r[i]));
89             /* go through all records at target */
90             for (pos = 0; pos < 10; pos++)
91             {
92                 int len; /* length of buffer rec */
93                 const char *rec =
94                     ZOOM_record_get (
95                         ZOOM_resultset_record (r[i], pos), "render", &len);
96                 /* if rec is non-null, we got a record for display */
97                 if (rec)
98                     printf ("%d\n%.*s\n", pos+1, len, rec);
99             }
100         }
101     }
102     /* destroy and exit */
103     for (i = 0; i<no; i++)
104     {
105         ZOOM_resultset_destroy (r[i]);
106         ZOOM_connection_destroy (z[i]);
107     }
108     ZOOM_options_destroy(o);
109     exit (0);
110 }
111 /*
112  * Local variables:
113  * c-basic-offset: 4
114  * indent-tabs-mode: nil
115  * End:
116  * vim: shiftwidth=4 tabstop=8 expandtab
117  */
118