1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2008 Index Data
3 * See the file LICENSE for details.
8 * \brief Implements Z39.50 Query Printing
15 #include <yaz/logrpn.h>
16 #include <yaz/oid_db.h>
18 static const char *relToStr(int v)
23 case 1: str = "Less than"; break;
24 case 2: str = "Less than or equal"; break;
25 case 3: str = "Equal"; break;
26 case 4: str = "Greater or equal"; break;
27 case 5: str = "Greater than"; break;
28 case 6: str = "Not equal"; break;
29 case 100: str = "Phonetic"; break;
30 case 101: str = "Stem"; break;
31 case 102: str = "Relevance"; break;
32 case 103: str = "AlwaysMatches"; break;
37 static void attrStr (int type, int value, char *str)
47 rstr = relToStr(value);
49 sprintf(str, "relation=%s", rstr);
51 sprintf(str, "relation=%d", value);
57 sprintf(str, "position=First in field");
60 sprintf(str, "position=First in any subfield");
63 sprintf(str, "position=Any position in field");
66 sprintf(str, "position");
73 sprintf(str, "structure=Phrase");
76 sprintf(str, "structure=Word");
79 sprintf(str, "structure=Key");
82 sprintf(str, "structure=Year");
85 sprintf(str, "structure=Date");
88 sprintf(str, "structure=Word list");
91 sprintf(str, "structure=Date (un)");
94 sprintf(str, "structure=Name (norm)");
97 sprintf(str, "structure=Name (un)");
100 sprintf(str, "structure=Structure");
103 sprintf(str, "structure=urx");
106 sprintf(str, "structure=free-form-text");
109 sprintf(str, "structure=document-text");
112 sprintf(str, "structure=local-number");
115 sprintf(str, "structure=string");
118 sprintf(str, "structure=numeric string");
121 sprintf(str, "structure");
128 sprintf(str, "truncation=Right");
131 sprintf(str, "truncation=Left");
134 sprintf(str, "truncation=Left&right");
137 sprintf(str, "truncation=Do not truncate");
140 sprintf(str, "truncation=Process #");
143 sprintf(str, "truncation=re-1");
146 sprintf(str, "truncation=re-2");
149 sprintf(str, "truncation=CCL");
152 sprintf(str, "truncation");
159 sprintf(str, "completeness=Incomplete subfield");
162 sprintf(str, "completeness=Complete subfield");
165 sprintf(str, "completeness=Complete field");
168 sprintf(str, "completeness");
173 sprintf(str + strlen(str), " (%d=%d)", type, value);
175 sprintf(str, "%d=%d", type, value);
179 * zlog_attributes: print attributes of term
181 static void zlog_attributes(Z_AttributesPlusTerm *t, int depth,
182 const Odr_oid *ast, int loglevel)
186 int num_attributes = t->attributes->num_attributes;
188 for (of = 0; of < num_attributes; of++)
190 char attset_name_buf[OID_STR_MAX];
191 const char *attset_name = 0;
192 Z_AttributeElement *element;
193 element = t->attributes->attributes[of];
194 if (element->attributeSet)
196 attset_name = yaz_oid_to_string_buf(element->attributeSet,
201 switch (element->which)
203 case Z_AttributeValue_numeric:
204 attrStr (*element->attributeType,
205 *element->value.numeric, str);
206 yaz_log (loglevel, "%*.0s%s %s", depth, "", attset_name, str);
208 case Z_AttributeValue_complex:
209 yaz_log (loglevel, "%*.0s%s attributeType=%d complex",
210 depth, "", attset_name, *element->attributeType);
211 for (i = 0; i<element->value.complex->num_list; i++)
213 if (element->value.complex->list[i]->which ==
214 Z_StringOrNumeric_string)
215 yaz_log (loglevel, "%*.0s string: '%s'", depth, "",
216 element->value.complex->list[i]->u.string);
217 else if (element->value.complex->list[i]->which ==
218 Z_StringOrNumeric_numeric)
219 yaz_log (loglevel, "%*.0s numeric: '%d'", depth, "",
220 *element->value.complex->list[i]->u.numeric);
224 yaz_log (loglevel, "%.*s%s attribute unknown",
225 depth, "", attset_name);
230 static char *complex_op_name(Z_Operator *op)
238 case Z_Operator_and_not:
240 case Z_Operator_prox:
243 return "unknown complex operator";
247 static char *prox_unit_name(Z_ProximityOperator *op)
249 if (op->which!=Z_ProximityOperator_known)
253 case Z_ProxUnit_character: return "character";
254 case Z_ProxUnit_word: return "word";
255 case Z_ProxUnit_sentence: return "sentence";
256 case Z_ProxUnit_paragraph: return "paragraph";
257 case Z_ProxUnit_section: return "section";
258 case Z_ProxUnit_chapter: return "chapter";
259 case Z_ProxUnit_document: return "document";
260 case Z_ProxUnit_element: return "element";
261 case Z_ProxUnit_subelement: return "subelement";
262 case Z_ProxUnit_elementType: return "elementType";
263 case Z_ProxUnit_byte: return "byte";
264 default: return "unknown";
268 static void zlog_structure(Z_RPNStructure *zs, int depth,
269 const Odr_oid *ast, int loglevel)
271 if (zs->which == Z_RPNStructure_complex)
273 Z_Operator *op = zs->u.complex->roperator;
278 case Z_Operator_and_not:
279 yaz_log (loglevel, "%*.0s %s", depth, "", complex_op_name(op) );
281 case Z_Operator_prox:
282 yaz_log (loglevel, "%*.0s prox excl=%s dist=%d order=%s "
284 depth, "", op->u.prox->exclusion ?
285 (*op->u.prox->exclusion ? "T" : "F") : "N",
286 *op->u.prox->distance,
287 *op->u.prox->ordered ? "T" : "F",
288 relToStr(*op->u.prox->relationType),
289 prox_unit_name(op->u.prox) );
292 yaz_log (loglevel, "%*.0s unknown complex", depth, "");
295 zlog_structure (zs->u.complex->s1, depth+2, ast, loglevel);
296 zlog_structure (zs->u.complex->s2, depth+2, ast, loglevel);
298 else if (zs->which == Z_RPNStructure_simple)
300 if (zs->u.simple->which == Z_Operand_APT)
302 Z_AttributesPlusTerm *zapt = zs->u.simple->u.attributesPlusTerm;
304 switch (zapt->term->which)
307 yaz_log (loglevel, "%*.0s term '%.*s' (general)", depth, "",
308 zapt->term->u.general->len,
309 zapt->term->u.general->buf);
311 case Z_Term_characterString:
312 yaz_log (loglevel, "%*.0s term '%s' (string)", depth, "",
313 zapt->term->u.characterString);
316 yaz_log (loglevel, "%*.0s term '%d' (numeric)", depth, "",
317 *zapt->term->u.numeric);
320 yaz_log (loglevel, "%*.0s term (null)", depth, "");
323 yaz_log (loglevel, "%*.0s term (not general)", depth, "");
325 zlog_attributes(zapt, depth+2, ast, loglevel);
327 else if (zs->u.simple->which == Z_Operand_resultSetId)
329 yaz_log (loglevel, "%*.0s set '%s'", depth, "",
330 zs->u.simple->u.resultSetId);
333 yaz_log (loglevel, "%*.0s unknown simple structure", depth, "");
336 yaz_log (loglevel, "%*.0s unknown structure", depth, "");
339 void log_rpn_query_level (int loglevel, Z_RPNQuery *rpn)
341 zlog_structure(rpn->RPNStructure, 0, rpn->attributeSetId, loglevel);
344 void log_rpn_query(Z_RPNQuery *rpn)
346 log_rpn_query_level(YLOG_LOG, rpn);
349 void log_scan_term_level(int loglevel,
350 Z_AttributesPlusTerm *zapt, const Odr_oid *ast)
355 if (zapt->term->which == Z_Term_general)
357 yaz_log (loglevel, "%*.0s term '%.*s' (general)", depth, "",
358 zapt->term->u.general->len, zapt->term->u.general->buf);
361 yaz_log (loglevel, "%*.0s term (not general)", depth, "");
362 zlog_attributes(zapt, depth+2, ast, loglevel);
365 void log_scan_term(Z_AttributesPlusTerm *zapt, const Odr_oid *ast)
367 log_scan_term_level (YLOG_LOG, zapt, ast);
370 void yaz_log_zquery_level (int loglevel, Z_Query *q)
376 case Z_Query_type_1: case Z_Query_type_101:
377 log_rpn_query_level (loglevel, q->u.type_1);
380 yaz_log(loglevel, "CCL: %.*s", q->u.type_2->len, q->u.type_2->buf);
382 case Z_Query_type_100:
383 yaz_log(loglevel, "Z39.58: %.*s", q->u.type_100->len,
386 case Z_Query_type_104:
387 if (q->u.type_104->which == Z_External_CQL)
388 yaz_log (loglevel, "CQL: %s", q->u.type_104->u.cql);
392 void yaz_log_zquery (Z_Query *q)
394 yaz_log_zquery_level(YLOG_LOG, q);
400 * indent-tabs-mode: nil
402 * vim: shiftwidth=4 tabstop=8 expandtab