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 Z39.50 Query Printing
17 #include <yaz/logrpn.h>
18 #include <yaz/oid_db.h>
20 static const char *relToStr(Odr_int v)
25 case 1: str = "Less than"; break;
26 case 2: str = "Less than or equal"; break;
27 case 3: str = "Equal"; break;
28 case 4: str = "Greater or equal"; break;
29 case 5: str = "Greater than"; break;
30 case 6: str = "Not equal"; break;
31 case 100: str = "Phonetic"; break;
32 case 101: str = "Stem"; break;
33 case 102: str = "Relevance"; break;
34 case 103: str = "AlwaysMatches"; break;
39 static void attrStr(Odr_int type, Odr_int value, char *str)
49 rstr = relToStr(value);
51 sprintf(str, "relation=%s", rstr);
53 sprintf(str, "relation=" ODR_INT_PRINTF, value);
59 sprintf(str, "position=First in field");
62 sprintf(str, "position=First in any subfield");
65 sprintf(str, "position=Any position in field");
68 sprintf(str, "position");
75 sprintf(str, "structure=Phrase");
78 sprintf(str, "structure=Word");
81 sprintf(str, "structure=Key");
84 sprintf(str, "structure=Year");
87 sprintf(str, "structure=Date");
90 sprintf(str, "structure=Word list");
93 sprintf(str, "structure=Date (un)");
96 sprintf(str, "structure=Name (norm)");
99 sprintf(str, "structure=Name (un)");
102 sprintf(str, "structure=Structure");
105 sprintf(str, "structure=urx");
108 sprintf(str, "structure=free-form-text");
111 sprintf(str, "structure=document-text");
114 sprintf(str, "structure=local-number");
117 sprintf(str, "structure=string");
120 sprintf(str, "structure=numeric string");
123 sprintf(str, "structure");
130 sprintf(str, "truncation=Right");
133 sprintf(str, "truncation=Left");
136 sprintf(str, "truncation=Left&right");
139 sprintf(str, "truncation=Do not truncate");
142 sprintf(str, "truncation=Process #");
145 sprintf(str, "truncation=re-1");
148 sprintf(str, "truncation=re-2");
151 sprintf(str, "truncation=CCL");
154 sprintf(str, "truncation");
161 sprintf(str, "completeness=Incomplete subfield");
164 sprintf(str, "completeness=Complete subfield");
167 sprintf(str, "completeness=Complete field");
170 sprintf(str, "completeness");
175 sprintf(str + strlen(str), " (" ODR_INT_PRINTF "=" ODR_INT_PRINTF")",
178 sprintf(str, ODR_INT_PRINTF "=" ODR_INT_PRINTF, type, value);
182 * zlog_attributes: print attributes of term
184 static void zlog_attributes(Z_AttributesPlusTerm *t, int depth,
185 const Odr_oid *ast, int loglevel)
189 int num_attributes = t->attributes->num_attributes;
191 for (of = 0; of < num_attributes; of++)
193 char attset_name_buf[OID_STR_MAX];
194 const char *attset_name = 0;
195 Z_AttributeElement *element;
196 element = t->attributes->attributes[of];
197 if (element->attributeSet)
199 attset_name = yaz_oid_to_string_buf(element->attributeSet,
204 switch (element->which)
206 case Z_AttributeValue_numeric:
207 attrStr(*element->attributeType,
208 *element->value.numeric, str);
209 yaz_log(loglevel, "%*.0s%s %s", depth, "", attset_name, str);
211 case Z_AttributeValue_complex:
212 yaz_log(loglevel, "%*.0s%s attributeType=" ODR_INT_PRINTF
214 depth, "", attset_name, *element->attributeType);
215 for (i = 0; i<element->value.complex->num_list; i++)
217 if (element->value.complex->list[i]->which ==
218 Z_StringOrNumeric_string)
219 yaz_log(loglevel, "%*.0s string: '%s'", depth, "",
220 element->value.complex->list[i]->u.string);
221 else if (element->value.complex->list[i]->which ==
222 Z_StringOrNumeric_numeric)
223 yaz_log(loglevel, "%*.0s numeric: '" ODR_INT_PRINTF
225 *element->value.complex->list[i]->u.numeric);
229 yaz_log(loglevel, "%.*s%s attribute unknown",
230 depth, "", attset_name);
235 static char *complex_op_name(Z_Operator *op)
243 case Z_Operator_and_not:
245 case Z_Operator_prox:
248 return "unknown complex operator";
252 static char *prox_unit_name(Z_ProximityOperator *op)
254 if (op->which!=Z_ProximityOperator_known)
258 case Z_ProxUnit_character: return "character";
259 case Z_ProxUnit_word: return "word";
260 case Z_ProxUnit_sentence: return "sentence";
261 case Z_ProxUnit_paragraph: return "paragraph";
262 case Z_ProxUnit_section: return "section";
263 case Z_ProxUnit_chapter: return "chapter";
264 case Z_ProxUnit_document: return "document";
265 case Z_ProxUnit_element: return "element";
266 case Z_ProxUnit_subelement: return "subelement";
267 case Z_ProxUnit_elementType: return "elementType";
268 case Z_ProxUnit_byte: return "byte";
269 default: return "unknown";
273 static void zlog_structure(Z_RPNStructure *zs, int depth,
274 const Odr_oid *ast, int loglevel)
276 if (zs->which == Z_RPNStructure_complex)
278 Z_Operator *op = zs->u.complex->roperator;
283 case Z_Operator_and_not:
284 yaz_log(loglevel, "%*.0s %s", depth, "", complex_op_name(op) );
286 case Z_Operator_prox:
287 yaz_log(loglevel, "%*.0s prox excl=%s dist=" ODR_INT_PRINTF
290 depth, "", op->u.prox->exclusion ?
291 (*op->u.prox->exclusion ? "T" : "F") : "N",
292 *op->u.prox->distance,
293 *op->u.prox->ordered ? "T" : "F",
294 relToStr(*op->u.prox->relationType),
295 prox_unit_name(op->u.prox) );
298 yaz_log(loglevel, "%*.0s unknown complex", depth, "");
301 zlog_structure(zs->u.complex->s1, depth+2, ast, loglevel);
302 zlog_structure(zs->u.complex->s2, depth+2, ast, loglevel);
304 else if (zs->which == Z_RPNStructure_simple)
306 if (zs->u.simple->which == Z_Operand_APT)
308 Z_AttributesPlusTerm *zapt = zs->u.simple->u.attributesPlusTerm;
310 switch (zapt->term->which)
313 yaz_log(loglevel, "%*.0s term '%.*s' (general)", depth, "",
314 zapt->term->u.general->len,
315 zapt->term->u.general->buf);
317 case Z_Term_characterString:
318 yaz_log(loglevel, "%*.0s term '%s' (string)", depth, "",
319 zapt->term->u.characterString);
322 yaz_log(loglevel, "%*.0s term '" ODR_INT_PRINTF
323 "' (numeric)", depth, "",
324 *zapt->term->u.numeric);
327 yaz_log(loglevel, "%*.0s term (null)", depth, "");
330 yaz_log(loglevel, "%*.0s term (not general)", depth, "");
332 zlog_attributes(zapt, depth+2, ast, loglevel);
334 else if (zs->u.simple->which == Z_Operand_resultSetId)
336 yaz_log(loglevel, "%*.0s set '%s'", depth, "",
337 zs->u.simple->u.resultSetId);
340 yaz_log(loglevel, "%*.0s unknown simple structure", depth, "");
343 yaz_log(loglevel, "%*.0s unknown structure", depth, "");
346 void log_rpn_query_level(int loglevel, Z_RPNQuery *rpn)
348 zlog_structure(rpn->RPNStructure, 0, rpn->attributeSetId, loglevel);
351 void log_rpn_query(Z_RPNQuery *rpn)
353 log_rpn_query_level(YLOG_LOG, rpn);
356 void log_scan_term_level(int loglevel,
357 Z_AttributesPlusTerm *zapt, const Odr_oid *ast)
362 if (zapt->term->which == Z_Term_general)
364 yaz_log(loglevel, "%*.0s term '%.*s' (general)", depth, "",
365 zapt->term->u.general->len, zapt->term->u.general->buf);
368 yaz_log(loglevel, "%*.0s term (not general)", depth, "");
369 zlog_attributes(zapt, depth+2, ast, loglevel);
372 void log_scan_term(Z_AttributesPlusTerm *zapt, const Odr_oid *ast)
374 log_scan_term_level(YLOG_LOG, zapt, ast);
377 void yaz_log_zquery_level(int loglevel, Z_Query *q)
383 case Z_Query_type_1: case Z_Query_type_101:
384 log_rpn_query_level(loglevel, q->u.type_1);
387 yaz_log(loglevel, "CCL: %.*s", q->u.type_2->len, q->u.type_2->buf);
389 case Z_Query_type_100:
390 yaz_log(loglevel, "Z39.58: %.*s", q->u.type_100->len,
393 case Z_Query_type_104:
394 if (q->u.type_104->which == Z_External_CQL)
395 yaz_log(loglevel, "CQL: %s", q->u.type_104->u.cql);
399 void yaz_log_zquery(Z_Query *q)
401 yaz_log_zquery_level(YLOG_LOG, q);
407 * c-file-style: "Stroustrup"
408 * indent-tabs-mode: nil
410 * vim: shiftwidth=4 tabstop=8 expandtab