Fix: allocating string on odr memory
[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     // USE attribute
166     const char* name = xml_node_attribute_value_get(ptr, "lst", "name");
167     Z_AttributeList *list = yaz_solr_use_atttribute_create(o, name);
168     Z_FacetField *facet_field;
169     int num_terms = 0;
170     int index = 0;
171     xmlNodePtr node;
172     for (node = ptr->children; node; node = node->next) {
173         num_terms++;
174     }
175     facet_field = facet_field_create(o, list, num_terms);
176     index = 0;
177     for (node = ptr->children; node; node = node->next) {
178         int count = 0;
179         const char *term = get_facet_term_count(node, &count);
180         facet_field_term_set(o, facet_field, facet_term_create(o, term_create(o, term), count), index);
181         index++;
182     }
183     return facet_field;
184 }
185
186 static int yaz_solr_decode_facet_counts(ODR o, xmlNodePtr root, Z_SRW_searchRetrieveResponse *sr) {
187     xmlNodePtr ptr;
188     for (ptr = root->children; ptr; ptr = ptr->next)
189     {
190         if (match_xml_node_attribute(ptr, "lst", "name", "facet_fields"))
191         {
192             xmlNodePtr node;
193             Z_FacetList *facet_list;
194             int num_facets = 0;
195             for (node = ptr->children; node; node= node->next)
196             {
197                 num_facets++;
198             }
199             facet_list = facet_list_create(o, num_facets);
200             num_facets = 0;
201             for (node = ptr->children; node; node= node->next)
202             {
203                 facet_list_field_set(o, facet_list, yaz_solr_decode_facet_field(o, node, sr), num_facets);
204                 num_facets++;
205             }
206             sr->facetList = facet_list;
207             break;
208         }
209     }
210     return 0;
211 }
212
213 static void yaz_solr_decode_facets(ODR o, xmlNodePtr ptr, Z_SRW_searchRetrieveResponse *sr) {
214     if (match_xml_node_attribute(ptr, "lst", "name", "facet_counts"))
215         yaz_solr_decode_facet_counts(o, ptr->children, sr);
216 }
217 #endif
218
219 int yaz_solr_decode_response(ODR o, Z_HTTP_Response *hres, Z_SRW_PDU **pdup)
220 {
221 #if YAZ_HAVE_XML2
222     const char *content_buf = hres->content_buf;
223     int content_len = hres->content_len;
224     xmlDocPtr doc = xmlParseMemory(content_buf, content_len);
225     int ret = 0;
226     xmlNodePtr ptr = 0;
227     Z_SRW_PDU *pdu = yaz_srw_get(o, Z_SRW_searchRetrieve_response);
228     Z_SRW_searchRetrieveResponse *sr = pdu->u.response;
229
230     if (!doc)
231     {
232         ret = -1;
233     }
234     if (doc)
235     {
236         xmlNodePtr root = xmlDocGetRootElement(doc);
237         if (!root)
238         {
239             ret = -1;
240         }
241         else if (strcmp((const char *) root->name, "response"))
242         {
243             ret = -1;
244         }
245         else
246         {
247             /** look for result (required) and facets node (optional) */
248             int rc_result = -1;
249             int rc_facets = 0;
250             for (ptr = root->children; ptr; ptr = ptr->next)
251             {
252                 if (ptr->type == XML_ELEMENT_NODE &&
253                     !strcmp((const char *) ptr->name, "result"))
254                         rc_result = yaz_solr_decode_result(o, ptr, sr);
255                 if (match_xml_node_attribute(ptr, "lst", "name", "facet_counts"))
256                     rc_facets =  yaz_solr_decode_facet_counts(o, ptr, sr);
257             }
258             ret = rc_result + rc_facets;
259         }
260     }
261     if (doc)
262         xmlFreeDoc(doc);
263     if (ret == 0)
264         *pdup = pdu;
265     return ret;
266 #else
267     return -1;
268 #endif
269 }
270
271 static void yaz_solr_encode_facet_field(ODR encode, char **name, char **value, int *i, Z_FacetField *facet_field, int *limit) {
272       Z_AttributeList *attribute_list = facet_field->attributes;
273       struct yaz_facet_attr attr_values;
274       yaz_facet_attr_init(&attr_values);
275       yaz_facet_attr_get_z_attributes(attribute_list, &attr_values);
276       // TODO do we want to support server decided
277       if (!attr_values.errcode && attr_values.useattr) {
278           yaz_add_name_value_str(encode, name, value, i, "facet.field", (char *) attr_values.useattr);
279           // TODO max(attr_values, *limit);
280           if (attr_values.limit > 0 && attr_values.limit > *limit) {
281               *limit = attr_values.limit;
282           }
283       }
284 }
285
286 static void yaz_solr_encode_facet_list(ODR encode, char **name, char **value, int *i, Z_FacetList *facet_list, int *limit) {
287
288     int index;
289     for (index = 0; index < facet_list->num; index++)  {
290         yaz_solr_encode_facet_field(encode, name, value, i, facet_list->elements[index], limit);
291
292     }
293 }
294
295
296 int yaz_solr_encode_request(Z_HTTP_Request *hreq, Z_SRW_PDU *srw_pdu,
297                             ODR encode, const char *charset)
298 {
299     const char *solr_op = 0;
300     //TODO Change. not a nice hard coded, unchecked limit.
301     char *name[SOLR_MAX_PARAMETERS], *value[SOLR_MAX_PARAMETERS];
302     char *uri_args;
303     char *path;
304     int i = 0;
305
306     z_HTTP_header_add_basic_auth(encode, &hreq->headers, 
307                                  srw_pdu->username, srw_pdu->password);
308
309     switch (srw_pdu->which)
310     {
311     case Z_SRW_searchRetrieve_request: {
312         Z_SRW_searchRetrieveRequest *request = srw_pdu->u.request;
313         solr_op = "select";
314         switch(srw_pdu->u.request->query_type)
315         {
316         case Z_SRW_query_type_pqf:
317             yaz_add_name_value_str(encode, name, value, &i,
318                                    "q", request->query.pqf);
319             break;
320         case Z_SRW_query_type_cql:
321             yaz_add_name_value_str(encode, name, value, &i,
322                                    "q", request->query.cql);
323             break;
324         default:
325             return -1;
326         }
327         if (srw_pdu->u.request->startRecord)
328         {
329             Odr_int start = *request->startRecord - 1;
330             yaz_add_name_value_int(encode, name, value, &i,
331                                    "start", &start);
332         }
333         yaz_add_name_value_int(encode, name, value, &i,
334                                "rows", request->maximumRecords);
335         yaz_add_name_value_str(encode, name, value, &i,
336                                "fl", request->recordSchema);
337
338         if (request->facetList) {
339             Z_FacetList *facet_list = request->facetList;
340             int limit = 0;
341             Odr_int olimit;
342             yaz_add_name_value_str(encode, name, value, &i, "facet", "true");
343             yaz_solr_encode_facet_list(encode, name, value, &i, facet_list, &limit);
344             olimit = limit;
345             yaz_add_name_value_int(encode, name, value, &i, "facet.limit", &olimit);
346
347         }
348         break;
349     }
350     default:
351         return -1;
352     }
353     name[i] = 0;
354     yaz_array_to_uri(&uri_args, encode, name, value);
355     
356     hreq->method = "GET";
357     
358     path = (char *)
359         odr_malloc(encode, strlen(hreq->path) +
360                    strlen(uri_args) + strlen(solr_op) + 4);
361
362     sprintf(path, "%s/%s?%s", hreq->path, solr_op, uri_args);
363     hreq->path = path;
364
365     z_HTTP_header_add_content_type(encode, &hreq->headers,
366                                    "text/xml", charset);
367     return 0;
368 }
369
370
371 /*
372  * Local variables:
373  * c-basic-offset: 4
374  * c-file-style: "Stroustrup"
375  * indent-tabs-mode: nil
376  * End:
377  * vim: shiftwidth=4 tabstop=8 expandtab
378  */
379