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