Prefix ZOOM_ instead of Z3950_. Documentation updates.
[yaz-moved-to-github.git] / zoom / zoomtst6.c
1 /*
2  * $Id: zoomtst6.c,v 1.7 2001-11-18 21:14:23 adam Exp $
3  *
4  * Asynchronous multi-target client doing two searches
5  */
6
7 #include <stdio.h>
8 #include <yaz/nmem.h>
9 #include <yaz/xmalloc.h>
10
11 #include <yaz/zoom.h>
12
13 static void display_records (const char *tname, ZOOM_resultset r)
14 {
15     /* OK, no major errors. Look at the result count */
16     int pos;
17     printf ("%s: %d hits\n", tname, ZOOM_resultset_size(r));
18     /* go through all records at target */
19     for (pos = 0; pos < 2; pos++)
20     {
21         ZOOM_record rec = ZOOM_resultset_record (r, pos);
22
23         /* get database for record and record itself at pos */
24         const char *db = ZOOM_record_get (rec, "database", 0);
25         int len;
26         const char *render = ZOOM_record_get (rec, "render", &len);
27         /* if rec is non-null, we got a record for display */
28         if (rec)
29         {
30             printf ("%d %s\n", pos+1, (db ? db : "unknown"));
31             if (render)
32                 fwrite (render, 1, len, stdout);
33             putchar ('\n');
34         }
35     }
36 }
37
38 int main(int argc, char **argv)
39 {
40     int i;
41     int no = argc-3;
42     ZOOM_connection z[500];  /* allow at most 500 connections */
43     ZOOM_resultset r1[500];  /* and result sets .. */
44     ZOOM_resultset r2[500];  /* and result sets .. */
45     ZOOM_query q;
46     ZOOM_options o;
47
48     o = ZOOM_options_create ();
49     if (argc < 4)
50     {
51         fprintf (stderr, "usage:\n%s target1 .. targetN query1 query2\n",
52                  *argv);
53         exit (1);
54     }
55     if (no > 500)
56         no = 500;
57
58     ZOOM_options_set (o, "async", "1");
59
60     /* get 3 (at most) records from beginning */
61     ZOOM_options_set (o, "count", "3");
62
63     ZOOM_options_set (o, "preferredRecordSyntax", "sutrs");
64     ZOOM_options_set (o, "elementSetName", "B");
65
66     /* create query */
67     q = ZOOM_query_create ();
68     if (ZOOM_query_prefix (q, argv[argc-2]))
69     {
70         printf ("bad PQF: %s\n", argv[argc-2]);
71         exit (2);
72     }
73     /* connect - and search all */
74     for (i = 0; i<no; i++)
75     {
76         z[i] = ZOOM_connection_create (o);
77         ZOOM_connection_connect (z[i], argv[i+1], 0);
78         r1[i] = ZOOM_connection_search (z[i], q);
79     }
80     if (ZOOM_query_prefix (q, argv[argc-1]))
81     {
82         printf ("bad sort spec: %s\n", argv[argc-1]);
83         exit (2);
84     }
85     /* queue second search */
86     for (i = 0; i<no; i++)
87         r2[i] = ZOOM_connection_search (z[i], q);
88
89
90     /* network I/O */
91     while (ZOOM_event (no, z))
92         ;
93
94     for (i = 0; i<no; i++)
95         ZOOM_resultset_records (r1[i], 0, 4, 1);
96
97     /* network I/O */
98     while (ZOOM_event (no, z))
99         ;
100
101     /* handle errors */
102     for (i = 0; i<no; i++)
103     {
104         int error;
105         const char *errmsg, *addinfo;
106         if ((error = ZOOM_connection_error(z[i], &errmsg, &addinfo)))
107             fprintf (stderr, "%s error: %s (%d) %s\n",
108                      ZOOM_connection_option_get(z[i], "host"),
109                      errmsg, error, addinfo);
110         else
111         {
112             display_records (ZOOM_connection_option_get(z[i], "host"), r1[i]);
113             display_records (ZOOM_connection_option_get(z[i], "host"), r2[i]);
114         }
115     }
116     /* destroy stuff and exit */
117     ZOOM_query_destroy (q);
118     for (i = 0; i<no; i++)
119     {
120         ZOOM_connection_destroy (z[i]);
121         ZOOM_resultset_destroy (r1[i]);
122         ZOOM_resultset_destroy (r2[i]);
123     }
124     ZOOM_options_destroy(o);
125     exit (0);
126 }