9ed3508f1dc7f5bcc0501d77ba43773664541c57
[idzebra-moved-to-github.git] / index / apitest.c
1
2 #include <stdio.h>
3
4 #include <log.h>
5 #include <pquery.h>
6 #include "zebraapi.h"
7
8 /* Small routine to display GRS-1 record variants ... */
9 /* Copied verbatim from yaz/client/client.c */
10 static void display_variant(Z_Variant *v, int level)
11 {
12     int i;
13
14     for (i = 0; i < v->num_triples; i++)
15     {
16         printf("%*sclass=%d,type=%d", level * 4, "", *v->triples[i]->zclass,
17             *v->triples[i]->type);
18         if (v->triples[i]->which == Z_Triple_internationalString)
19             printf(",value=%s\n", v->triples[i]->value.internationalString);
20         else
21             printf("\n");
22     }
23 }
24  
25 /* Small routine to display a GRS-1 record ... */
26 /* Copied verbatim from yaz/client/client.c */
27 static void display_grs1(Z_GenericRecord *r, int level)
28 {
29     int i;
30
31     if (!r)
32         return;
33     for (i = 0; i < r->num_elements; i++)
34     {
35         Z_TaggedElement *t;
36
37         printf("%*s", level * 4, "");
38         t = r->elements[i];
39         printf("(");
40         if (t->tagType)
41             printf("%d,", *t->tagType);
42         else
43             printf("?,");
44         if (t->tagValue->which == Z_StringOrNumeric_numeric)
45             printf("%d) ", *t->tagValue->u.numeric);
46         else
47             printf("%s) ", t->tagValue->u.string);
48         if (t->content->which == Z_ElementData_subtree)
49         {
50             printf("\n");
51             display_grs1(t->content->u.subtree, level+1);
52         }
53         else if (t->content->which == Z_ElementData_string)
54             printf("%s\n", t->content->u.string);
55         else if (t->content->which == Z_ElementData_numeric)
56             printf("%d\n", *t->content->u.numeric);
57         else if (t->content->which == Z_ElementData_oid)
58         {
59             int *ip = t->content->u.oid;
60             oident *oent;
61
62             if ((oent = oid_getentbyoid(t->content->u.oid)))
63                 printf("OID: %s\n", oent->desc);
64             else
65             {
66                 printf("{");
67                 while (ip && *ip >= 0)
68                     printf(" %d", *(ip++));
69                 printf(" }\n");
70             }
71         }
72         else if (t->content->which == Z_ElementData_noDataRequested)
73             printf("[No data requested]\n");
74         else if (t->content->which == Z_ElementData_elementEmpty)
75             printf("[Element empty]\n");
76         else if (t->content->which == Z_ElementData_elementNotThere)
77             printf("[Element not there]\n");
78         else
79             printf("??????\n");
80         if (t->appliedVariant)
81             display_variant(t->appliedVariant, level+1);
82         if (t->metaData && t->metaData->supportedVariants)
83         {
84             int c;
85
86             printf("%*s---- variant list\n", (level+1)*4, "");
87             for (c = 0; c < t->metaData->num_supportedVariants; c++)
88             {
89                 printf("%*svariant #%d\n", (level+1)*4, "", c);
90                 display_variant(t->metaData->supportedVariants[c], level + 2);
91             }
92         }
93     }
94 }
95
96 /* Small test main to illustrate the use of the C api */
97 int main (int argc, char **argv)
98 {
99     /* odr is a handle to memory assocated with RETURNED data from
100        various functions */
101     ODR odr_input, odr_output;
102     
103     /* zh is our Zebra Handle - describes the server as a whole */
104     ZebraHandle zh;
105     
106     /* the database we specify in our example */
107     char *base = "Default";
108     int argno;
109
110     nmem_init ();
111
112     log_init_file("apitest.log");
113
114     odr_input = odr_createmem (ODR_DECODE);    
115     odr_output = odr_createmem (ODR_ENCODE);    
116     
117    /* open Zebra */
118     zh = zebra_open ("zebra.cfg");
119     if (!zh)
120     {
121         printf ("Couldn't init zebra\n");
122         exit (1);
123     }
124
125     /* This call controls the logging facility in YAZ/Zebra */
126 #if 0
127     log_init(LOG_ALL, "", "out.log");
128 #endif
129
130     /* Each argument to main will be a query */
131     for (argno = 1; argno < argc; argno++)
132     {
133         /* parse the query and generate an RPN structure */
134         Z_RPNQuery *query = p_query_rpn (odr_input, PROTO_Z3950, argv[argno]);
135         char setname[64];
136         int errCode;
137         int i;
138         const char *errString;
139         char *errAdd;
140         ZebraRetrievalRecord *records;
141         int noOfRecordsToFetch;
142
143         /* bad query? */
144         if (!query)
145         {
146             logf (LOG_WARN, "bad query %s\n", argv[argno]);
147             odr_reset (odr_input);
148             continue;
149         }
150
151         /* result set name will be called 1,2, etc */
152         sprintf (setname, "%d", argno);
153
154         /* fire up the search */
155         zebra_search_rpn (zh, odr_input, odr_output, query, 1, &base, setname);
156         
157         /* status ... */
158         errCode = zebra_errCode (zh);
159         errString = zebra_errString (zh);
160         errAdd = zebra_errAdd (zh);
161         
162         /* error? */
163         if (errCode)
164         {
165             printf ("Zebra Search Error %d %s %s\n",
166                     errCode, errString, errAdd ? errAdd : "");
167             continue;
168         }
169         /* ok ... */
170         printf ("Zebra Search gave %d hits\n", zebra_hits (zh));
171         
172         /* Deterimine number of records to fetch ... */
173         if (zebra_hits(zh) > 10)
174             noOfRecordsToFetch = 10;
175         else
176             noOfRecordsToFetch = zebra_hits(zh);
177
178         /* reset our memory - we've finished dealing with search */
179         odr_reset (odr_input);
180         odr_reset (odr_output);
181
182         /* prepare to fetch ... */
183         records = odr_malloc (odr_input, sizeof(*records) * noOfRecordsToFetch);
184         /* specify position of each record to fetch */
185         /* first one is numbered 1 and NOT 0 */
186         for (i = 0; i<noOfRecordsToFetch; i++)
187             records[i].position = i+1;
188         /* fetch them and request for GRS-1 records */
189         zebra_records_retrieve (zh, odr_input, setname, NULL, VAL_SUTRS,
190                                 noOfRecordsToFetch, records);
191
192         /* status ... */
193         errCode = zebra_errCode (zh);
194         errString = zebra_errString (zh);
195         errAdd = zebra_errAdd (zh);
196         
197         /* error ? */
198         if (errCode)
199         {
200             printf ("Zebra Search Error %d %s %s\n",
201                     errCode, errString, errAdd ? errAdd : "");
202         }
203         else
204         {
205             /* inspect each record in result */
206             for (i = 0; i<noOfRecordsToFetch; i++)
207             {
208                 printf ("Record %d\n", i+1);
209                 /* error when fetching this record? */
210                 if (records[i].errCode)
211                 {
212                     printf ("  Error %d\n", records[i].errCode);
213                     continue;
214                 }
215                 /* GRS-1 record ? */
216                 if (records[i].format == VAL_GRS1)
217                 {
218                     Z_GenericRecord *grs_record =
219                         (Z_GenericRecord *) records[i].buf;
220                     printf ("  GRS-1\n");
221                     display_grs1(grs_record, 0);
222                 }
223                 else if (records[i].format == VAL_SUTRS)
224                 {
225                     printf ("  SUTRS\n");
226                     printf ("%.*s", records[i].len, records[i].buf);
227                 }
228                 /* some other record we don't handle yet... */
229                 else
230                 {
231                     printf ("  Other record (ignored)\n");
232                 }
233             }
234         }
235         /* reset our memory - we've finished dealing with present */
236         odr_reset (odr_input); 
237         odr_reset (odr_output);
238     }
239     odr_destroy (odr_input);
240     odr_destroy (odr_output);
241     zebra_close (zh);
242     return 0;
243 }