0a5ca4021fb6e3e9e10ed9d741d737af6cfd848c
[yaz-moved-to-github.git] / src / solr.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2010 Index Data
3  * See the file LICENSE for details.
4  */
5 /**
6  * \file srwutil.c
7  * \brief Implements SRW/SRU utilities.
8  */
9
10 #include <stdlib.h>
11 #include <assert.h>
12 #include <yaz/srw.h>
13 #include <yaz/matchstr.h>
14 #include <yaz/yaz-iconv.h>
15 #include <yaz/log.h>
16 #include <yaz/facet.h>
17 #include <yaz/wrbuf.h>
18
19 #include "sru-p.h"
20
21 #if YAZ_HAVE_XML2
22 #include <libxml/parser.h>
23 #include <libxml/tree.h>
24
25 #define SOLR_MAX_PARAMETERS  100
26
27 const char *xml_node_attribute_value_get(xmlNodePtr ptr, const char *node_name, const char *attribute_name) {
28
29     struct _xmlAttr *attr;
30     // check if the node name matches
31     if (strcmp((const char*) ptr->name, node_name))
32         return 0;
33     // check if the attribute name and return the value
34     for (attr = ptr->properties; attr; attr = attr->next)
35         if (attr->children && attr->children->type == XML_TEXT_NODE) {
36             if (!strcmp((const char *) attr->name, attribute_name))
37                 return (const char *) attr->children->content;
38         }
39     return 0;
40 }
41
42
43 static int match_xml_node_attribute(xmlNodePtr ptr, const char *node_name, const char *attribute_name, const char *value)
44 {
45     const char *attribute_value;
46     // check if the node name matches
47     if (strcmp((const char*) ptr->name, node_name))
48         return 0;
49     attribute_value = xml_node_attribute_value_get(ptr, node_name, attribute_name);
50     if (attribute_value && !strcmp(attribute_value, value))
51         return 1;
52     return 0;
53 }
54
55 static void yaz_solr_decode_result_docs(ODR o, xmlNodePtr ptr, Odr_int start, Z_SRW_searchRetrieveResponse *sr) {
56     xmlNodePtr node;
57     int offset = 0;
58     int i = 0;
59
60     sr->num_records = 0;
61     for (node = ptr->children; node; node = node->next)
62         if (node->type == XML_ELEMENT_NODE)
63             sr->num_records++;
64
65     sr->records = odr_malloc(o, sizeof(*sr->records) * sr->num_records);
66
67     for (node = ptr->children; node; node = node->next)
68     {
69         if (node->type == XML_ELEMENT_NODE)
70         {
71             Z_SRW_record *record = sr->records + i;
72             xmlBufferPtr buf = xmlBufferCreate();
73             xmlNode *tmp = xmlCopyNode(node, 1);
74
75             xmlNodeDump(buf, tmp->doc, tmp, 0, 0);
76
77             xmlFreeNode(tmp);
78
79             record->recordSchema = 0;
80             record->recordPacking = Z_SRW_recordPacking_XML;
81             record->recordData_len = buf->use;
82             record->recordData_buf = odr_malloc(o, buf->use + 1);
83             memcpy(record->recordData_buf, buf->content, buf->use);
84             record->recordData_buf[buf->use] = '\0';
85             // TODO Solve the real problem in zoom-sru, that doesnt work with 0-based indexes.
86             // Work-around: Making the recordPosition 1-based.
87             record->recordPosition = odr_intdup(o, start + offset + 1);
88
89             xmlBufferFree(buf);
90
91             offset++;
92             i++;
93         }
94     }
95 }
96
97 static int  yaz_solr_decode_result(ODR o, xmlNodePtr ptr, Z_SRW_searchRetrieveResponse *sr) {
98     Odr_int start = 0;
99     struct _xmlAttr *attr;
100     for (attr = ptr->properties; attr; attr = attr->next)
101         if (attr->children && attr->children->type == XML_TEXT_NODE) {
102             if (!strcmp((const char *) attr->name, "numFound")) {
103                 sr->numberOfRecords = odr_intdup(o, odr_atoi(
104                         (const char *) attr->children->content));
105             } 
106             else if (!strcmp((const char *) attr->name, "start")) {
107                 start = odr_atoi((const char *) attr->children->content);
108             }
109         }
110     if (sr->numberOfRecords && *sr->numberOfRecords > 0)
111         yaz_solr_decode_result_docs(o, ptr, start, sr);
112     if (sr->numberOfRecords)
113         return 0;
114     return -1;
115 }
116
117 static Z_AttributeList *yaz_solr_use_atttribute_create(ODR o, const char *name) {
118     Z_AttributeList *attributes= (Z_AttributeList *) odr_malloc(o, sizeof(*attributes));
119     Z_AttributeElement ** elements;
120     attributes->num_attributes = 1;
121     /* TODO check on name instead
122     if (!attributes->num_attributes) {
123         attributes->attributes = (Z_AttributeElement**)odr_nullval();
124         return attributes;
125     }
126     */
127     elements = (Z_AttributeElement**) odr_malloc (o, attributes->num_attributes * sizeof(*elements));
128     elements[0] = (Z_AttributeElement*)odr_malloc(o,sizeof(**elements));
129     elements[0]->attributeType = odr_malloc(o, sizeof(*elements[0]->attributeType));
130     *elements[0]->attributeType = 1;
131     elements[0]->attributeSet = odr_nullval();
132     elements[0]->which = Z_AttributeValue_complex;
133     elements[0]->value.complex = (Z_ComplexAttribute *) odr_malloc(o, sizeof(Z_ComplexAttribute));
134     elements[0]->value.complex->num_list = 1;
135     elements[0]->value.complex->list = (Z_StringOrNumeric **) odr_malloc(o, 1 * sizeof(Z_StringOrNumeric *));
136     elements[0]->value.complex->list[0] = (Z_StringOrNumeric *) odr_malloc(o, sizeof(Z_StringOrNumeric));
137     elements[0]->value.complex->list[0]->which = Z_StringOrNumeric_string;
138     elements[0]->value.complex->list[0]->u.string = (Z_InternationalString *) odr_strdup(o, name);
139     elements[0]->value.complex->semanticAction = 0;
140     elements[0]->value.complex->num_semanticAction = 0;
141     attributes->attributes = elements;
142     return attributes;
143 }
144
145
146 static const char *get_facet_term_count(xmlNodePtr node, int *freq) {
147
148     const char *term = xml_node_attribute_value_get(node, "int", "name");
149     xmlNodePtr child;
150     WRBUF wrbuf = wrbuf_alloc();
151     if (!term)
152         return term;
153
154     for (child = node->children; child ; child = child->next) {
155         if (child->type == XML_TEXT_NODE)
156         wrbuf_puts(wrbuf, (const char *) child->content);
157     }
158     *freq = atoi(wrbuf_cstr(wrbuf));
159     wrbuf_destroy(wrbuf);
160     return term;
161 }
162
163 Z_FacetField *yaz_solr_decode_facet_field(ODR o, xmlNodePtr ptr, Z_SRW_searchRetrieveResponse *sr)
164
165 {
166     Z_AttributeList *list;
167     Z_FacetField *facet_field;
168     int num_terms = 0;
169     int index = 0;
170     xmlNodePtr node;
171     // USE attribute
172     const char* name = xml_node_attribute_value_get(ptr, "lst", "name");
173     char *pos = strstr(name, "_exact");
174     /* HACK */
175     if (pos) {
176         pos[0] = 0;
177     }
178     list = yaz_solr_use_atttribute_create(o, name);
179     for (node = ptr->children; node; node = node->next) {
180         num_terms++;
181     }
182     facet_field = facet_field_create(o, list, num_terms);
183     index = 0;
184     for (node = ptr->children; node; node = node->next) {
185         int count = 0;
186         const char *term = get_facet_term_count(node, &count);
187         facet_field_term_set(o, facet_field, facet_term_create(o, term_create(o, term), count), index);
188         index++;
189     }
190     return facet_field;
191 }
192
193 static int yaz_solr_decode_facet_counts(ODR o, xmlNodePtr root, Z_SRW_searchRetrieveResponse *sr) {
194     xmlNodePtr ptr;
195     for (ptr = root->children; ptr; ptr = ptr->next)
196     {
197         if (match_xml_node_attribute(ptr, "lst", "name", "facet_fields"))
198         {
199             xmlNodePtr node;
200             Z_FacetList *facet_list;
201             int num_facets = 0;
202             for (node = ptr->children; node; node= node->next)
203             {
204                 num_facets++;
205             }
206             facet_list = facet_list_create(o, num_facets);
207             num_facets = 0;
208             for (node = ptr->children; node; node= node->next)
209             {
210                 facet_list_field_set(o, facet_list, yaz_solr_decode_facet_field(o, node, sr), num_facets);
211                 num_facets++;
212             }
213             sr->facetList = facet_list;
214             break;
215         }
216     }
217     return 0;
218 }
219
220 #endif
221
222 int yaz_solr_decode_response(ODR o, Z_HTTP_Response *hres, Z_SRW_PDU **pdup)
223 {
224 #if YAZ_HAVE_XML2
225     const char *content_buf = hres->content_buf;
226     int content_len = hres->content_len;
227     xmlDocPtr doc = xmlParseMemory(content_buf, content_len);
228     int ret = 0;
229     xmlNodePtr ptr = 0;
230     Z_SRW_PDU *pdu = yaz_srw_get(o, Z_SRW_searchRetrieve_response);
231     Z_SRW_searchRetrieveResponse *sr = pdu->u.response;
232
233     if (!doc)
234     {
235         ret = -1;
236     }
237     if (doc)
238     {
239         xmlNodePtr root = xmlDocGetRootElement(doc);
240         if (!root)
241         {
242             ret = -1;
243         }
244         else if (strcmp((const char *) root->name, "response"))
245         {
246             ret = -1;
247         }
248         else
249         {
250             /** look for result (required) and facets node (optional) */
251             int rc_result = -1;
252             int rc_facets = 0;
253             for (ptr = root->children; ptr; ptr = ptr->next)
254             {
255                 if (ptr->type == XML_ELEMENT_NODE &&
256                     !strcmp((const char *) ptr->name, "result"))
257                         rc_result = yaz_solr_decode_result(o, ptr, sr);
258                 if (match_xml_node_attribute(ptr, "lst", "name", "facet_counts"))
259                     rc_facets =  yaz_solr_decode_facet_counts(o, ptr, sr);
260             }
261             ret = rc_result + rc_facets;
262         }
263     }
264     if (doc)
265         xmlFreeDoc(doc);
266     if (ret == 0)
267         *pdup = pdu;
268     return ret;
269 #else
270     return -1;
271 #endif
272 }
273
274 static void yaz_solr_encode_facet_field(ODR encode, char **name, char **value, int *i, Z_FacetField *facet_field, int *limit) {
275       Z_AttributeList *attribute_list = facet_field->attributes;
276       struct yaz_facet_attr attr_values;
277       yaz_facet_attr_init(&attr_values);
278       yaz_facet_attr_get_z_attributes(attribute_list, &attr_values);
279       // TODO do we want to support server decided
280       if (!attr_values.errcode && attr_values.useattr) {
281           WRBUF wrbuf = wrbuf_alloc();
282           wrbuf_puts(wrbuf, (char *) attr_values.useattr);
283           /* Skip date field */
284           if (strcmp("date", attr_values.useattr) != 0)
285               wrbuf_puts(wrbuf, "_exact");
286           yaz_add_name_value_str(encode, name, value, i, "facet.field", odr_strdup(encode, wrbuf_cstr(wrbuf)));
287           if (attr_values.limit > 0) {
288               WRBUF wrbuf2 = wrbuf_alloc();
289               Odr_int olimit;
290               wrbuf_puts(wrbuf2, "f.");
291               wrbuf_puts(wrbuf2, wrbuf_cstr(wrbuf));
292               wrbuf_puts(wrbuf2, ".facet.limit");
293               olimit = attr_values.limit;
294               yaz_add_name_value_int(encode, name, value, i, odr_strdup(encode, wrbuf_cstr(wrbuf2)), &olimit);
295               wrbuf_destroy(wrbuf2);
296           }
297           wrbuf_destroy(wrbuf);
298       }
299 }
300
301 static void yaz_solr_encode_facet_list(ODR encode, char **name, char **value, int *i, Z_FacetList *facet_list, int *limit) {
302
303     int index;
304     for (index = 0; index < facet_list->num; index++)  {
305         yaz_solr_encode_facet_field(encode, name, value, i, facet_list->elements[index], limit);
306
307     }
308 }
309
310
311 int yaz_solr_encode_request(Z_HTTP_Request *hreq, Z_SRW_PDU *srw_pdu,
312                             ODR encode, const char *charset)
313 {
314     const char *solr_op = 0;
315     //TODO Change. not a nice hard coded, unchecked limit.
316     char *name[SOLR_MAX_PARAMETERS], *value[SOLR_MAX_PARAMETERS];
317     char *uri_args;
318     char *path;
319     int i = 0;
320
321     z_HTTP_header_add_basic_auth(encode, &hreq->headers, 
322                                  srw_pdu->username, srw_pdu->password);
323
324     switch (srw_pdu->which)
325     {
326     case Z_SRW_searchRetrieve_request: {
327         Z_SRW_searchRetrieveRequest *request = srw_pdu->u.request;
328         solr_op = "select";
329         switch(srw_pdu->u.request->query_type)
330         {
331         case Z_SRW_query_type_pqf:
332             yaz_add_name_value_str(encode, name, value, &i,
333                                    "q", request->query.pqf);
334             break;
335         case Z_SRW_query_type_cql:
336             yaz_add_name_value_str(encode, name, value, &i,
337                                    "q", request->query.cql);
338             break;
339         default:
340             return -1;
341         }
342         if (srw_pdu->u.request->startRecord)
343         {
344             Odr_int start = *request->startRecord - 1;
345             yaz_add_name_value_int(encode, name, value, &i,
346                                    "start", &start);
347         }
348         yaz_add_name_value_int(encode, name, value, &i,
349                                "rows", request->maximumRecords);
350         yaz_add_name_value_str(encode, name, value, &i,
351                                "fl", request->recordSchema);
352
353         if (request->facetList) {
354             Z_FacetList *facet_list = request->facetList;
355             int limit = 0;
356             yaz_add_name_value_str(encode, name, value, &i, "facet", "true");
357             yaz_solr_encode_facet_list(encode, name, value, &i, facet_list, &limit);
358             /*
359             olimit = limit;
360             yaz_add_name_value_int(encode, name, value, &i, "facet.limit", &olimit);
361              */
362
363         }
364         break;
365     }
366     default:
367         return -1;
368     }
369     name[i] = 0;
370     yaz_array_to_uri(&uri_args, encode, name, value);
371     
372     hreq->method = "GET";
373     
374     path = (char *)
375         odr_malloc(encode, strlen(hreq->path) +
376                    strlen(uri_args) + strlen(solr_op) + 4);
377
378     sprintf(path, "%s/%s?%s", hreq->path, solr_op, uri_args);
379     hreq->path = path;
380
381     z_HTTP_header_add_content_type(encode, &hreq->headers,
382                                    "text/xml", charset);
383     return 0;
384 }
385
386
387 /*
388  * Local variables:
389  * c-basic-offset: 4
390  * c-file-style: "Stroustrup"
391  * indent-tabs-mode: nil
392  * End:
393  * vim: shiftwidth=4 tabstop=8 expandtab
394  */
395