1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2010 Index Data
3 * See the file LICENSE for details.
7 * \brief Implements SRW/SRU utilities.
13 #include <yaz/matchstr.h>
14 #include <yaz/yaz-iconv.h>
16 #include <yaz/facet.h>
17 #include <yaz/wrbuf.h>
21 #define SOLR_MAX_PARAMETERS 100
24 #include <libxml/parser.h>
25 #include <libxml/tree.h>
27 const char *xml_node_attribute_value_get(xmlNodePtr ptr, const char *node_name, const char *attribute_name) {
29 struct _xmlAttr *attr;
30 // check if the node name matches
31 if (strcmp((const char*) ptr->name, node_name))
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;
43 static int match_xml_node_attribute(xmlNodePtr ptr, const char *node_name, const char *attribute_name, const char *value)
45 const char *attribute_value;
46 // check if the node name matches
47 if (strcmp((const char*) ptr->name, node_name))
49 attribute_value = xml_node_attribute_value_get(ptr, node_name, attribute_name);
50 if (attribute_value && !strcmp(attribute_value, value))
55 static void yaz_solr_decode_result_docs(ODR o, xmlNodePtr ptr, Odr_int start, Z_SRW_searchRetrieveResponse *sr) {
61 for (node = ptr->children; node; node = node->next)
62 if (node->type == XML_ELEMENT_NODE)
65 sr->records = odr_malloc(o, sizeof(*sr->records) * sr->num_records);
67 for (node = ptr->children; node; node = node->next)
69 if (node->type == XML_ELEMENT_NODE)
71 Z_SRW_record *record = sr->records + i;
72 xmlBufferPtr buf = xmlBufferCreate();
73 xmlNode *tmp = xmlCopyNode(node, 1);
75 xmlNodeDump(buf, tmp->doc, tmp, 0, 0);
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);
97 static int yaz_solr_decode_result(ODR o, xmlNodePtr ptr, Z_SRW_searchRetrieveResponse *sr) {
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));
106 else if (!strcmp((const char *) attr->name, "start")) {
107 start = odr_atoi((const char *) attr->children->content);
110 if (sr->numberOfRecords && *sr->numberOfRecords > 0)
111 yaz_solr_decode_result_docs(o, ptr, start, sr);
112 if (sr->numberOfRecords)
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();
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;
146 static const char *get_facet_term_count(xmlNodePtr node, int *freq) {
148 const char *term = xml_node_attribute_value_get(node, "int", "name");
150 WRBUF wrbuf = wrbuf_alloc();
154 for (child = node->children; child ; child = child->next) {
155 if (child->type == XML_TEXT_NODE)
156 wrbuf_puts(wrbuf, (const char *) child->content);
158 *freq = atoi(wrbuf_cstr(wrbuf));
159 wrbuf_destroy(wrbuf);
163 Z_FacetField *yaz_solr_decode_facet_field(ODR o, xmlNodePtr ptr, Z_SRW_searchRetrieveResponse *sr)
166 Z_AttributeList *list;
167 Z_FacetField *facet_field;
172 const char* name = xml_node_attribute_value_get(ptr, "lst", "name");
173 char *pos = strstr(name, "_exact");
178 list = yaz_solr_use_atttribute_create(o, name);
179 for (node = ptr->children; node; node = node->next) {
182 facet_field = facet_field_create(o, list, num_terms);
184 for (node = ptr->children; node; node = node->next) {
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);
193 static int yaz_solr_decode_facet_counts(ODR o, xmlNodePtr root, Z_SRW_searchRetrieveResponse *sr) {
195 for (ptr = root->children; ptr; ptr = ptr->next)
197 if (match_xml_node_attribute(ptr, "lst", "name", "facet_fields"))
200 Z_FacetList *facet_list;
202 for (node = ptr->children; node; node= node->next)
206 facet_list = facet_list_create(o, num_facets);
208 for (node = ptr->children; node; node= node->next)
210 facet_list_field_set(o, facet_list, yaz_solr_decode_facet_field(o, node, sr), num_facets);
213 sr->facetList = facet_list;
222 int yaz_solr_decode_response(ODR o, Z_HTTP_Response *hres, Z_SRW_PDU **pdup)
225 const char *content_buf = hres->content_buf;
226 int content_len = hres->content_len;
227 xmlDocPtr doc = xmlParseMemory(content_buf, content_len);
230 Z_SRW_PDU *pdu = yaz_srw_get(o, Z_SRW_searchRetrieve_response);
231 Z_SRW_searchRetrieveResponse *sr = pdu->u.response;
239 xmlNodePtr root = xmlDocGetRootElement(doc);
244 else if (strcmp((const char *) root->name, "response"))
250 /** look for result (required) and facets node (optional) */
253 for (ptr = root->children; ptr; ptr = ptr->next)
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 /* TODO The check on hits is a work-around to avoid garbled facets on zero results from the SOLR server.
259 * The work-around works because the results is before the facets in the xml. */
260 if (rc_result == 0 && match_xml_node_attribute(ptr, "lst", "name", "facet_counts"))
261 rc_facets = yaz_solr_decode_facet_counts(o, ptr, sr);
263 ret = rc_result + rc_facets;
276 static void yaz_solr_encode_facet_field(ODR encode, char **name, char **value, int *i, Z_FacetField *facet_field, int *limit) {
277 Z_AttributeList *attribute_list = facet_field->attributes;
278 struct yaz_facet_attr attr_values;
279 yaz_facet_attr_init(&attr_values);
280 yaz_facet_attr_get_z_attributes(attribute_list, &attr_values);
281 // TODO do we want to support server decided
282 if (!attr_values.errcode && attr_values.useattr) {
283 WRBUF wrbuf = wrbuf_alloc();
284 wrbuf_puts(wrbuf, (char *) attr_values.useattr);
285 /* Skip date field */
286 if (strcmp("date", attr_values.useattr) != 0)
287 wrbuf_puts(wrbuf, "_exact");
288 yaz_add_name_value_str(encode, name, value, i, "facet.field", odr_strdup(encode, wrbuf_cstr(wrbuf)));
289 if (attr_values.limit > 0) {
290 WRBUF wrbuf2 = wrbuf_alloc();
292 wrbuf_puts(wrbuf2, "f.");
293 wrbuf_puts(wrbuf2, wrbuf_cstr(wrbuf));
294 wrbuf_puts(wrbuf2, ".facet.limit");
295 olimit = attr_values.limit;
296 yaz_add_name_value_int(encode, name, value, i, odr_strdup(encode, wrbuf_cstr(wrbuf2)), &olimit);
297 wrbuf_destroy(wrbuf2);
299 wrbuf_destroy(wrbuf);
303 static void yaz_solr_encode_facet_list(ODR encode, char **name, char **value, int *i, Z_FacetList *facet_list, int *limit) {
306 for (index = 0; index < facet_list->num; index++) {
307 yaz_solr_encode_facet_field(encode, name, value, i, facet_list->elements[index], limit);
313 int yaz_solr_encode_request(Z_HTTP_Request *hreq, Z_SRW_PDU *srw_pdu,
314 ODR encode, const char *charset)
316 const char *solr_op = 0;
317 //TODO Change. not a nice hard coded, unchecked limit.
318 char *name[SOLR_MAX_PARAMETERS], *value[SOLR_MAX_PARAMETERS];
323 z_HTTP_header_add_basic_auth(encode, &hreq->headers,
324 srw_pdu->username, srw_pdu->password);
326 switch (srw_pdu->which)
328 case Z_SRW_searchRetrieve_request: {
329 Z_SRW_searchRetrieveRequest *request = srw_pdu->u.request;
331 switch(srw_pdu->u.request->query_type)
333 case Z_SRW_query_type_pqf:
334 yaz_add_name_value_str(encode, name, value, &i,
335 "q", request->query.pqf);
337 case Z_SRW_query_type_cql:
338 yaz_add_name_value_str(encode, name, value, &i,
339 "q", request->query.cql);
344 if (srw_pdu->u.request->startRecord)
346 Odr_int start = *request->startRecord - 1;
347 yaz_add_name_value_int(encode, name, value, &i,
350 yaz_add_name_value_int(encode, name, value, &i,
351 "rows", request->maximumRecords);
352 yaz_add_name_value_str(encode, name, value, &i,
353 "fl", request->recordSchema);
355 if (request->facetList) {
356 Z_FacetList *facet_list = request->facetList;
358 yaz_add_name_value_str(encode, name, value, &i, "facet", "true");
359 yaz_add_name_value_str(encode, name, value, &i, "facet.mincount", "1");
360 yaz_solr_encode_facet_list(encode, name, value, &i, facet_list, &limit);
363 yaz_add_name_value_int(encode, name, value, &i, "facet.limit", &olimit);
373 yaz_array_to_uri(&uri_args, encode, name, value);
375 hreq->method = "GET";
378 odr_malloc(encode, strlen(hreq->path) +
379 strlen(uri_args) + strlen(solr_op) + 4);
381 sprintf(path, "%s/%s?%s", hreq->path, solr_op, uri_args);
384 z_HTTP_header_add_content_type(encode, &hreq->headers,
385 "text/xml", charset);
393 * c-file-style: "Stroustrup"
394 * indent-tabs-mode: nil
396 * vim: shiftwidth=4 tabstop=8 expandtab