CCL: fix other inherited attributes
[yaz-moved-to-github.git] / src / solr.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 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 #include <yaz/proto.h>
22
23 #include "sru-p.h"
24
25 #if YAZ_HAVE_XML2
26 #include <libxml/parser.h>
27 #include <libxml/tree.h>
28
29 static void extract_text_node(xmlNodePtr node, WRBUF wrbuf)
30 {
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 =
91                 odr_strdupn(o, (const char *) buf->content, buf->use);
92             record->recordPosition = odr_intdup(o, start + offset + 1);
93
94             xmlBufferFree(buf);
95
96             offset++;
97             i++;
98         }
99     }
100 }
101
102 static int yaz_solr_decode_result(ODR o, xmlNodePtr ptr,
103                                   Z_SRW_searchRetrieveResponse *sr)
104 {
105     Odr_int start = 0;
106     struct _xmlAttr *attr;
107     for (attr = ptr->properties; attr; attr = attr->next)
108         if (attr->children && attr->children->type == XML_TEXT_NODE)
109         {
110             if (!strcmp((const char *) attr->name, "numFound"))
111             {
112                 sr->numberOfRecords = odr_intdup(o, odr_atoi(
113                         (const char *) attr->children->content));
114             }
115             else if (!strcmp((const char *) attr->name, "start"))
116             {
117                 start = odr_atoi((const char *) attr->children->content);
118             }
119         }
120     if (sr->numberOfRecords && *sr->numberOfRecords > 0)
121         yaz_solr_decode_result_docs(o, ptr, start, sr);
122     if (sr->numberOfRecords)
123         return 0;
124     return -1;
125 }
126
127 static const char *get_facet_term_count(xmlNodePtr node, Odr_int *freq)
128 {
129     const char *term = yaz_element_attribute_value_get(node, "int", "name");
130     xmlNodePtr child;
131     WRBUF wrbuf = wrbuf_alloc();
132     if (!term)
133         return term;
134
135     for (child = node->children; child ; child = child->next)
136     {
137         if (child->type == XML_TEXT_NODE)
138             wrbuf_puts(wrbuf, (const char *) child->content);
139     }
140     *freq = odr_atoi(wrbuf_cstr(wrbuf));
141     wrbuf_destroy(wrbuf);
142     return term;
143 }
144
145 Z_FacetField *yaz_solr_decode_facet_field(ODR o, xmlNodePtr ptr,
146                                           Z_SRW_searchRetrieveResponse *sr)
147
148 {
149     Z_AttributeList *list;
150     Z_FacetField *facet_field;
151     int num_terms = 0;
152     int index = 0;
153     xmlNodePtr node;
154     // USE attribute
155     const char* name = yaz_element_attribute_value_get(ptr, "lst", "name");
156     list = zget_AttributeList_use_string(o, name);
157     for (node = ptr->children; node; node = node->next)
158         num_terms++;
159     facet_field = facet_field_create(o, list, num_terms);
160     index = 0;
161     for (node = ptr->children; node; node = node->next)
162     {
163         Odr_int count = 0;
164         const char *term = get_facet_term_count(node, &count);
165         facet_field_term_set(o, facet_field,
166                              facet_term_create_cstr(o, term, count), index);
167         index++;
168     }
169     return facet_field;
170 }
171
172 static int yaz_solr_decode_facet_counts(ODR o, xmlNodePtr root,
173                                         Z_SRW_searchRetrieveResponse *sr)
174 {
175     xmlNodePtr ptr;
176     for (ptr = root->children; ptr; ptr = ptr->next)
177     {
178         if (match_xml_node_attribute(ptr, "lst", "name", "facet_fields"))
179         {
180             xmlNodePtr node;
181             Z_FacetList *facet_list;
182             int num_facets = 0;
183             for (node = ptr->children; node; node= node->next)
184             {
185                 num_facets++;
186             }
187             facet_list = facet_list_create(o, num_facets);
188             num_facets = 0;
189             for (node = ptr->children; node; node= node->next)
190             {
191                 facet_list_field_set(o, facet_list,
192                                      yaz_solr_decode_facet_field(o, node, sr),
193                                      num_facets);
194                 num_facets++;
195             }
196             sr->facetList = facet_list;
197             break;
198         }
199     }
200     return 0;
201 }
202
203 static void yaz_solr_decode_suggestion_values(xmlNodePtr listPptr, WRBUF wrbuf)
204 {
205     xmlNodePtr node;
206     for (node = listPptr; node; node= node->next)
207         if (!strcmp((char*) node->name, "lst"))
208         {
209             xmlNodePtr child;
210             for (child = node->children; child; child= child->next)
211             {
212                 if (match_xml_node_attribute(child, "str", "name", "word"))
213                 {
214                     wrbuf_puts(wrbuf, "<suggestion>");
215                     extract_text_node(child, wrbuf);
216                     wrbuf_puts(wrbuf, "</suggestion>\n");
217                 }
218             }
219         }
220 }
221
222 static void yaz_solr_decode_suggestion_lst(xmlNodePtr lstPtr, WRBUF wrbuf)
223 {
224     xmlNodePtr node;
225     for (node = lstPtr; node; node= node->next)
226         if (match_xml_node_attribute(node, "arr", "name", "suggestion"))
227             yaz_solr_decode_suggestion_values(node->children, wrbuf);
228 }
229
230 static void yaz_solr_decode_misspelled(xmlNodePtr lstPtr, WRBUF wrbuf)
231 {
232     xmlNodePtr node;
233     for (node = lstPtr; node; node= node->next)
234     {
235         if (!strcmp((const char*) node->name, "lst"))
236         {
237             const char *misspelled =
238                 yaz_element_attribute_value_get(node, "lst", "name");
239             if (misspelled)
240             {
241                 wrbuf_printf(wrbuf, "<misspelled term=\"%s\">\n", misspelled);
242                 yaz_solr_decode_suggestion_lst(node->children, wrbuf);
243                 wrbuf_puts(wrbuf, "</misspelled>\n");
244             }
245         }
246     }
247 }
248
249 static int yaz_solr_decode_spellcheck(ODR o, xmlNodePtr spellcheckPtr, Z_SRW_searchRetrieveResponse *sr)
250 {
251     xmlNodePtr ptr;
252     WRBUF wrbuf = wrbuf_alloc();
253     wrbuf_puts(wrbuf, "");
254     for (ptr = spellcheckPtr->children; ptr; ptr = ptr->next)
255     {
256         if (match_xml_node_attribute(ptr, "lst", "name", "suggestions"))
257         {
258             yaz_solr_decode_misspelled(ptr->children, wrbuf);
259         }
260     }
261     sr->suggestions = odr_strdup(o, wrbuf_cstr(wrbuf));
262     return 0;
263 }
264
265 static int yaz_solr_decode_scan_result(ODR o, xmlNodePtr ptr,
266                                        Z_SRW_scanResponse *scr)
267 {
268     xmlNodePtr node;
269     char *pos;
270     int i = 0;
271
272     /* find the actual list */
273     for (node = ptr->children; node; node = node->next)
274         if (node->type == XML_ELEMENT_NODE)
275         {
276             ptr = node;
277             break;
278         }
279
280     scr->num_terms = 0;
281     for (node = ptr->children; node; node = node->next)
282         if (node->type == XML_ELEMENT_NODE &&
283             !strcmp((const char *) node->name, "int"))
284             scr->num_terms++;
285
286     if (scr->num_terms)
287         scr->terms = odr_malloc(o, sizeof(*scr->terms) * scr->num_terms);
288
289     for (node = ptr->children; node; node = node->next)
290     {
291         if (node->type == XML_ELEMENT_NODE &&
292             !strcmp((const char *) node->name, "int"))
293         {
294             Z_SRW_scanTerm *term = scr->terms + i;
295
296             Odr_int count = 0;
297             const char *val = get_facet_term_count(node, &count);
298
299             term->numberOfRecords = odr_intdup(o, count);
300
301             /* if val contains a ^ then it is probably term<^>display term so separate them. This is due to
302              * SOLR not being able to encode them into 2 separate attributes.
303              */
304             pos = strchr(val, '^');
305             if (pos != NULL)
306             {
307                 term->displayTerm = odr_strdup(o, pos + 1);
308                 *pos = '\0';
309                 term->value = odr_strdup(o, val);
310                 *pos = '^';
311             }
312             else
313             {
314                 term->value = odr_strdup(o, val);
315                 term->displayTerm = NULL;
316             }
317             term->whereInList = NULL;
318             i++;
319         }
320     }
321
322     if (scr->num_terms)
323         return 0;
324     return -1;
325 }
326 #endif
327
328 int yaz_solr_decode_response(ODR o, Z_HTTP_Response *hres, Z_SRW_PDU **pdup)
329 {
330     int ret = -1;
331     Z_SRW_PDU *pdu = 0;
332 #if YAZ_HAVE_XML2
333     const char *content_buf = hres->content_buf;
334     int content_len = hres->content_len;
335     xmlDocPtr doc = xmlParseMemory(content_buf, content_len);
336
337     if (doc)
338     {
339         Z_SRW_searchRetrieveResponse *sr = NULL;
340         Z_SRW_scanResponse *scr = NULL;
341         xmlNodePtr ptr;
342         xmlNodePtr root = xmlDocGetRootElement(doc);
343         if (root && !strcmp((const char *) root->name, "response"))
344         {
345             for (ptr = root->children; ptr; ptr = ptr->next)
346             {
347                 if (ptr->type == XML_ELEMENT_NODE &&
348                     !strcmp((const char *) ptr->name, "result"))
349                 {
350                     pdu = yaz_srw_get(o, Z_SRW_searchRetrieve_response);
351                     sr = pdu->u.response;
352                     ret = yaz_solr_decode_result(o, ptr, sr);
353
354                 }
355                 if (ptr->type == XML_ELEMENT_NODE &&
356                     match_xml_node_attribute(ptr, "lst", "name", "terms"))
357                 {
358                     pdu = yaz_srw_get(o, Z_SRW_scan_response);
359                     scr = pdu->u.scan_response;
360                     ret = yaz_solr_decode_scan_result(o, ptr, scr);
361                 }
362                 /* The check on hits is a work-around to avoid garbled
363                    facets on zero results from the SOLR server.
364                    The work-around works because the results is before
365                    the facets in the xml.
366                 */
367                 if (sr && *sr->numberOfRecords > 0 &&
368                     match_xml_node_attribute(ptr, "lst", "name",
369                                              "facet_counts"))
370                     ret = yaz_solr_decode_facet_counts(o, ptr, sr);
371                 if (sr && *sr->numberOfRecords == 0 &&
372                     match_xml_node_attribute(ptr, "lst", "name",
373                                              "spellcheck"))
374                     ret = yaz_solr_decode_spellcheck(o, ptr, sr);
375             }
376         }
377         xmlFreeDoc(doc);
378     }
379 #endif
380     *pdup = pdu;
381     return ret;
382 }
383
384 static int yaz_solr_encode_facet_field(
385     ODR encode, char **name, char **value, int *i,
386     Z_FacetField *facet_field)
387 {
388     Z_AttributeList *attribute_list = facet_field->attributes;
389     struct yaz_facet_attr attr_values;
390     yaz_facet_attr_init(&attr_values);
391     yaz_facet_attr_get_z_attributes(attribute_list, &attr_values);
392
393     if (attr_values.errcode)
394         return -1;
395     if (attr_values.useattr)
396     {
397         WRBUF wrbuf = wrbuf_alloc();
398         yaz_add_name_value_str(encode, name, value, i,
399                                "facet.field",
400                                odr_strdup(encode, attr_values.useattr));
401
402         if (attr_values.limit > 0)
403         {
404             Odr_int v = attr_values.limit;
405             wrbuf_rewind(wrbuf);
406             wrbuf_printf(wrbuf, "f.%s.facet.limit", attr_values.useattr);
407             yaz_add_name_value_int(encode, name, value, i,
408                                    odr_strdup(encode, wrbuf_cstr(wrbuf)),
409                                    &v);
410         }
411         if (attr_values.start > 1)
412         {
413             Odr_int v = attr_values.start - 1;
414             wrbuf_rewind(wrbuf);
415             wrbuf_printf(wrbuf, "f.%s.facet.offset", attr_values.useattr);
416             yaz_add_name_value_int(encode, name, value, i,
417                                    odr_strdup(encode, wrbuf_cstr(wrbuf)),
418                                    &v);
419         }
420         if (attr_values.sortorder == 1)
421         {
422             wrbuf_rewind(wrbuf);
423             wrbuf_printf(wrbuf, "f.%s.facet.sort", attr_values.useattr);
424             yaz_add_name_value_str(encode, name, value, i,
425                                    odr_strdup(encode, wrbuf_cstr(wrbuf)),
426                                    "index");
427         }
428         wrbuf_destroy(wrbuf);
429     }
430     else
431     {
432         if (attr_values.limit > 0)
433         {
434             Odr_int v = attr_values.limit;
435             yaz_add_name_value_int(encode, name, value, i, "facet.limit", &v);
436         }
437         if (attr_values.start > 1)
438         {
439             Odr_int v = attr_values.start - 1;
440             yaz_add_name_value_int(encode, name, value, i, "facet.offset", &v);
441         }
442         if (attr_values.sortorder == 1)
443         {
444             yaz_add_name_value_str(encode, name, value, i, "facet.sort",
445                                    "index");
446         }
447     }
448     return 0;
449 }
450
451 static int yaz_solr_encode_facet_list(
452     ODR encode, char **name, char **value,
453     int *i, Z_FacetList *facet_list)
454 {
455     int index;
456     for (index = 0; index < facet_list->num; index++)
457     {
458         int r = yaz_solr_encode_facet_field(encode, name, value, i,
459                                             facet_list->elements[index]);
460         if (r)
461             return -1;
462
463     }
464     return 0;
465 }
466
467 int yaz_solr_encode_request(Z_HTTP_Request *hreq, Z_SRW_PDU *srw_pdu,
468                             ODR encode, const char *charset)
469 {
470     const char *solr_op = 0;
471     char **name, **value;
472     char *uri_args;
473     char *path;
474     char *q;
475     char *cp;
476     const char *path_args = 0;
477     int i = 0;
478     int defType_set = 0;
479     int no_parms = 20; /* safe upper limit of args without extra_args */
480     Z_SRW_extra_arg *ea;
481
482     if (srw_pdu->which == Z_SRW_searchRetrieve_request)
483     {   /* to make room for facets in yaz_solr_encode_facet_list later */
484         Z_SRW_searchRetrieveRequest *request = srw_pdu->u.request;
485         if (request->facetList)
486             no_parms += request->facetList->num;
487     }
488     for (ea = srw_pdu->extra_args; ea; ea = ea->next)
489         no_parms++;
490     name = (char **) odr_malloc(encode, sizeof(*name) * no_parms);
491     value = (char **) odr_malloc(encode, sizeof(*value) * no_parms);
492
493     for (ea = srw_pdu->extra_args; ea; ea = ea->next)
494     {
495         name[i] = ea->name;
496         if (!strcmp(ea->name, "defType"))
497             defType_set = 1;
498         value[i] = ea->value;
499         i++;
500     }
501
502     z_HTTP_header_add_basic_auth(encode, &hreq->headers,
503                                  srw_pdu->username, srw_pdu->password);
504     if (srw_pdu->which == Z_SRW_searchRetrieve_request)
505     {
506         Z_SRW_searchRetrieveRequest *request = srw_pdu->u.request;
507         solr_op = "select";
508         if (!srw_pdu->u.request->query)
509             return -1;
510         if (!defType_set)
511             yaz_add_name_value_str(encode, name, value, &i, "defType",
512                                    "lucene");
513         yaz_add_name_value_str(encode, name, value, &i, "q", request->query);
514         if (srw_pdu->u.request->startRecord)
515         {
516             Odr_int start = *request->startRecord - 1;
517             yaz_add_name_value_int(encode, name, value, &i,
518                                    "start", &start);
519         }
520         yaz_add_name_value_int(encode, name, value, &i,
521                                "rows", request->maximumRecords);
522         yaz_add_name_value_str(encode, name, value, &i,
523                                "fl", request->recordSchema);
524
525         switch(srw_pdu->u.request->sort_type)
526         {
527         case Z_SRW_sort_type_none:
528             break;
529         case Z_SRW_sort_type_sort:
530             yaz_add_name_value_str(encode, name, value, &i, "sort",
531                                    srw_pdu->u.request->sort.sortKeys);
532             break;
533         }
534         if (request->facetList)
535         {
536             Z_FacetList *facet_list = request->facetList;
537             yaz_add_name_value_str(encode, name, value, &i, "facet", "true");
538             yaz_add_name_value_str(encode, name, value, &i, "facet.mincount", "1");
539             if (yaz_solr_encode_facet_list(encode, name, value, &i, facet_list))
540                 return -1;
541         }
542     }
543     else if (srw_pdu->which == Z_SRW_scan_request)
544     {
545         Z_SRW_scanRequest *request = srw_pdu->u.scan_request;
546         solr_op = "terms";
547         if (!srw_pdu->u.scan_request->scanClause)
548             return -1;
549         if (!strcmp(srw_pdu->u.scan_request->queryType, "pqf"))
550         {
551             yaz_add_name_value_str(encode, name, value, &i,
552                                    "terms.fl", request->scanClause);
553             yaz_add_name_value_str(encode, name, value, &i,
554                                    "terms.lower", request->scanClause);
555         }
556         else if (!strcmp(srw_pdu->u.scan_request->queryType, "cql"))
557         {
558             q = request->scanClause;
559             cp = strchr(q, ':');
560             if (cp != NULL)
561             {
562                 yaz_add_name_value_str(encode, name, value, &i,
563                                        "terms.lower", odr_strdup(encode, cp + 1));
564                 *cp = '\0';
565                 yaz_add_name_value_str(encode, name, value, &i,
566                                        "terms.fl", odr_strdup(encode, q));
567                 *cp = ':';
568             }
569             else
570                 yaz_add_name_value_str(encode, name, value, &i,
571                                        "terms.lower", odr_strdup(encode, q));
572         }
573         else
574             return -1;
575         yaz_add_name_value_str(encode, name, value, &i,
576                                "terms.sort", "index");
577         yaz_add_name_value_int(encode, name, value, &i,
578                                "terms.limit", request->maximumTerms);
579     }
580     else
581         return -1;
582
583     name[i++] = 0;
584
585     yaz_array_to_uri(&uri_args, encode, name, value);
586
587     hreq->method = "GET";
588
589     path = (char *)
590         odr_malloc(encode, strlen(hreq->path) +
591                    strlen(uri_args) + strlen(solr_op) + 5);
592
593     cp = strchr(hreq->path, '#');
594     if (cp)
595         *cp = '\0';
596     cp = strchr(hreq->path, '?');
597     if (cp)
598     {
599         *cp = '\0'; /* args in path */
600         path_args = cp + 1;
601     }
602     strcpy(path, hreq->path);
603     cp = strrchr(path, '/');
604     if (cp)
605     {
606         if (!strcmp(cp, "/select") || !strcmp(cp, "/"))
607             *cp = '\0';
608     }
609     strcat(path, "/");
610     strcat(path, solr_op);
611     strcat(path, "?");
612     if (path_args)
613     {
614         strcat(path, path_args);
615         strcat(path, "&");
616     }
617     strcat(path, uri_args);
618     hreq->path = path;
619     return 0;
620 }
621
622
623 /*
624  * Local variables:
625  * c-basic-offset: 4
626  * c-file-style: "Stroustrup"
627  * indent-tabs-mode: nil
628  * End:
629  * vim: shiftwidth=4 tabstop=8 expandtab
630  */
631