1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2011 Index Data
3 * See the file LICENSE for details.
7 * \brief Implements RPN to SOLR conversion
16 #include <yaz/rpn2solr.h>
17 #include <yaz/xmalloc.h>
18 #include <yaz/diagbib1.h>
19 #include <yaz/z-core.h>
20 #include <yaz/wrbuf.h>
22 static void wrbuf_vputs(const char *buf, void *client_data)
24 wrbuf_write((WRBUF) client_data, buf, strlen(buf));
27 static const char *lookup_index_from_string_attr(Z_AttributeList *attributes)
30 int server_choice = 1;
31 for (j = 0; j < attributes->num_attributes; j++)
33 Z_AttributeElement *ae = attributes->attributes[j];
34 if (*ae->attributeType == 1) /* use attribute */
36 if (ae->which == Z_AttributeValue_complex)
38 Z_ComplexAttribute *ca = ae->value.complex;
40 for (i = 0; i < ca->num_list; i++)
42 Z_StringOrNumeric *son = ca->list[i];
43 if (son->which == Z_StringOrNumeric_string)
47 server_choice = 0; /* not serverChoice because we have use attr */
51 return "solr.serverChoice";
55 static const char *lookup_relation_index_from_attr(Z_AttributeList *attributes)
58 for (j = 0; j < attributes->num_attributes; j++)
60 Z_AttributeElement *ae = attributes->attributes[j];
61 if (*ae->attributeType == 2) /* relation attribute */
63 if (ae->which == Z_AttributeValue_numeric)
65 /* Only support for numeric relation */
66 Odr_int *relation = ae->value.numeric;
67 /* map this numeric to representation in SOLR */
70 /* Unsure on whether this is the relation attribute constants? */
71 case Z_ProximityOperator_Prox_lessThan:
73 case Z_ProximityOperator_Prox_lessThanOrEqual:
75 case Z_ProximityOperator_Prox_equal:
77 case Z_ProximityOperator_Prox_greaterThanOrEqual:
79 case Z_ProximityOperator_Prox_greaterThan:
81 case Z_ProximityOperator_Prox_notEqual:
84 /* phonetic is not implemented*/
87 /* stem is not not implemented */
90 /* relevance is supported in SOLR, but not implemented yet */
93 /* Invalid relation */
98 /* Can we have a complex relation value?
99 Should we implement something?
107 static int rpn2solr_attr(solr_transform_t ct,
108 Z_AttributeList *attributes, WRBUF w)
110 const char *relation = solr_lookup_reverse(ct, "relation.", attributes);
111 const char *index = solr_lookup_reverse(ct, "index.", attributes);
112 const char *structure = solr_lookup_reverse(ct, "structure.", attributes);
114 /* if transform (properties) do not match, we'll just use a USE string attribute (bug #2978) */
116 index = lookup_index_from_string_attr(attributes);
118 /* Attempt to fix bug #2978: Look for a relation attribute */
120 relation = lookup_relation_index_from_attr(attributes);
124 solr_transform_set_error(ct,
125 YAZ_BIB1_UNSUPP_USE_ATTRIBUTE, 0);
128 /* for serverChoice we omit index+relation+structure */
129 if (strcmp(index, "solr.serverChoice"))
131 wrbuf_puts(w, index);
134 if (!strcmp(relation, "exact"))
135 /* TODO Verify if a exact SOLR exists */
137 else if (!strcmp(relation, "eq"))
139 else if (!strcmp(relation, "le")) {
140 /* TODO Not support as such, but could perhaps be transformed into a range
141 relation = ":[ * to ";
145 else if (!strcmp(relation, "ge")) {
146 /* TODO Not support as such, but could perhaps be transformed into a range
148 relation = ":[ * to ";
152 /* Missing mapping of not equal, phonetic, stem and relevance */
153 wrbuf_puts(w, relation);
160 if (strcmp(structure, "*"))
163 wrbuf_puts(w, structure);
171 /* Bug 2878: Currently only support left and right truncation. Specific check for this */
172 static int checkForTruncation(int flag, Z_AttributeList *attributes)
175 for (j = 0; j < attributes->num_attributes; j++)
177 Z_AttributeElement *ae = attributes->attributes[j];
178 if (*ae->attributeType == 5) /* truncation attribute */
180 if (ae->which == Z_AttributeValue_numeric)
182 Odr_int truncation = *(ae->value.numeric);
183 /* This logic only works for Left, right and both. eg. 1,2,3 */
185 return ((int) truncation & flag);
187 else if (ae->which == Z_AttributeValue_complex) {
188 //yaz_log(YLOG_DEBUG, "Z_Attribute_complex");
189 /* Complex: Shouldn't happen */
193 /* No truncation or unsupported */
197 static int checkForLeftTruncation(Z_AttributeList *attributes) {
198 return checkForTruncation(2, attributes);
201 static int checkForRightTruncation(Z_AttributeList *attributes) {
202 return checkForTruncation(1, attributes);
205 static int rpn2solr_simple(solr_transform_t ct,
206 void (*pr)(const char *buf, void *client_data),
208 Z_Operand *q, WRBUF w)
211 if (q->which != Z_Operand_APT)
214 solr_transform_set_error(ct, YAZ_BIB1_RESULT_SET_UNSUPP_AS_A_SEARCH_TERM, 0);
218 Z_AttributesPlusTerm *apt = q->u.attributesPlusTerm;
219 Z_Term *term = apt->term;
220 const char *sterm = 0;
224 ret = rpn2solr_attr(ct, apt->attributes, w);
229 lterm = term->u.general->len;
230 sterm = (const char *) term->u.general->buf;
233 wrbuf_printf(w, ODR_INT_PRINTF, *term->u.numeric);
235 case Z_Term_characterString:
236 sterm = term->u.characterString;
237 lterm = strlen(sterm);
241 solr_transform_set_error(ct, YAZ_BIB1_TERM_TYPE_UNSUPP, 0);
248 for (i = 0 ; i < lterm; i++)
253 /* Bug 2878: Check and add Truncation */
254 if (checkForLeftTruncation(apt->attributes))
256 wrbuf_write(w, sterm, lterm);
257 /* Bug 2878: Check and add Truncation */
258 if (checkForRightTruncation(apt->attributes))
264 pr(wrbuf_cstr(w), client_data);
270 static int rpn2solr_structure(solr_transform_t ct,
271 void (*pr)(const char *buf, void *client_data),
273 Z_RPNStructure *q, int nested,
276 if (q->which == Z_RPNStructure_simple)
277 return rpn2solr_simple(ct, pr, client_data, q->u.simple, w);
280 Z_Operator *op = q->u.complex->roperator;
284 pr("(", client_data);
286 r = rpn2solr_structure(ct, pr, client_data, q->u.complex->s1, 1, w);
292 pr(" AND ", client_data);
295 pr(" OR ", client_data);
297 case Z_Operator_and_not:
298 pr(" AND NOT ", client_data);
300 case Z_Operator_prox:
301 solr_transform_set_error(ct, YAZ_BIB1_UNSUPP_SEARCH, 0);
304 r = rpn2solr_structure(ct, pr, client_data, q->u.complex->s2, 1, w);
306 pr(")", client_data);
311 int solr_transform_rpn2solr_stream(solr_transform_t ct,
312 void (*pr)(const char *buf, void *client_data),
317 WRBUF w = wrbuf_alloc();
318 solr_transform_set_error(ct, 0, 0);
319 r = rpn2solr_structure(ct, pr, client_data, q->RPNStructure, 0, w);
325 int solr_transform_rpn2solr_wrbuf(solr_transform_t ct,
329 return solr_transform_rpn2solr_stream(ct, wrbuf_vputs, w, q);
335 * c-file-style: "Stroustrup"
336 * indent-tabs-mode: nil
338 * vim: shiftwidth=4 tabstop=8 expandtab