X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fcqltransform.c;h=b2422c9ee80989cd9ecd4d9f3ec6be809bcaadcf;hp=a07894e96114d61e38ec6aa9fcfcac68e7197893;hb=1254f5913d639e30ac822165196170a9b53748ff;hpb=43a9d38d20c1b1bcd1a03b2445a501d27526bd35 diff --git a/src/cqltransform.c b/src/cqltransform.c index a07894e..b2422c9 100644 --- a/src/cqltransform.c +++ b/src/cqltransform.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2011 Index Data + * Copyright (C) 1995-2012 Index Data * See the file LICENSE for details. */ /** @@ -23,7 +23,6 @@ #include #include #include -#include #include #include #include @@ -138,7 +137,7 @@ static int cql_transform_parse_tok_line(cql_transform_t ct, break; } value_str = yaz_tok_parse_string(tp); - if (isdigit(*value_str)) + if (yaz_isdigit(*value_str)) { elem->which = Z_AttributeValue_numeric; elem->value.numeric = @@ -617,9 +616,17 @@ static void emit_term(cql_transform_t ct, { int i; const char *ns = cn->u.st.index_uri; - int process_term = !has_modifier(cn, "regexp"); - char *z3958_mem = 0; + int z3958_mode = 0; + int process_term = 1; + if (has_modifier(cn, "regexp")) + process_term = 0; + else if (cql_lookup_property(ct, "truncation", 0, "cql")) + { + process_term = 0; + cql_pr_attr(ct, "truncation", "cql", 0, + pr, client_data, YAZ_SRW_MASKING_CHAR_UNSUPP); + } assert(cn->which == CQL_NODE_ST); if (process_term && length > 0) @@ -686,34 +693,12 @@ static void emit_term(cql_transform_t ct, } else if (first_wc) { - /* We have one or more wildcard characters, but not in a - * way that can be dealt with using only the standard - * left-, right- and both-truncation attributes. We need - * to translate the pattern into a Z39.58-type pattern, - * which has been supported in BIB-1 since 1996. If - * there's no configuration element for "truncation.z3958" - * we indicate this as error 28 "Masking character not - * supported". - */ - int i; + z3958_mode = 1; cql_pr_attr(ct, "truncation", "z3958", 0, pr, client_data, YAZ_SRW_MASKING_CHAR_UNSUPP); - z3958_mem = (char *) xmalloc(length+1); - for (i = 0; i < length; i++) - { - if (i > 0 && term[i-1] == '\\') - z3958_mem[i] = term[i]; - else if (term[i] == '*') - z3958_mem[i] = '?'; - else if (term[i] == '?') - z3958_mem[i] = '#'; - else - z3958_mem[i] = term[i]; - } - z3958_mem[length] = '\0'; - term = z3958_mem; } - else { + else + { /* No masking characters. Use "truncation.none" if given. */ cql_pr_attr(ct, "truncation", "none", 0, pr, client_data, 0); @@ -734,20 +719,47 @@ static void emit_term(cql_transform_t ct, } } + /* produce only \-sequences if: + 1) the output is a Z39.58-trunc reserved character + 2) the output is a PQF reserved character (\\, \") + */ (*pr)("\"", client_data); - for (i = 0; i 0 && term[i-1] == '\\') + { + if (term[i] == '\"' || term[i] == '\\') + pr("\\", client_data); + if (z3958_mode && strchr("#?", term[i])) + pr("\\\\", client_data); /* double \\ to survive PQF parse */ + x[0] = term[i]; + x[1] = '\0'; + pr(x, client_data); + } + else if (z3958_mode && term[i] == '*') + { + pr("?", client_data); + /* avoid ?n sequences output (n=[0-9]) because that has + different semantics than just a single ? in Z39.58 + */ + if (i < length - 1 && yaz_isdigit(term[i+1])) + pr("\\\\", client_data); /* double \\ to survive PQF parse */ + } + else if (z3958_mode && term[i] == '?') + pr("#", client_data); + else if (term[i] != '\\') + { + if (term[i] == '\"') + pr("\\", client_data); + if (z3958_mode && strchr("#?", term[i])) + pr("\\\\", client_data); /* double \\ to survive PQF parse */ + x[0] = term[i]; + x[1] = '\0'; + pr(x, client_data); + } } (*pr)("\" ", client_data); - xfree(z3958_mem); } static void emit_terms(cql_transform_t ct, @@ -877,7 +889,9 @@ void cql_transform_r(cql_transform_t ct, cql_transform_r(ct, cn->u.boolean.left, pr, client_data); cql_transform_r(ct, cn->u.boolean.right, pr, client_data); break; - + case CQL_NODE_SORT: + cql_transform_r(ct, cn->u.sort.search, pr, client_data); + break; default: fprintf(stderr, "Fatal: impossible CQL node-type %d\n", cn->which); abort(); @@ -913,7 +927,8 @@ int cql_transform_FILE(cql_transform_t ct, struct cql_node *cn, FILE *f) return cql_transform(ct, cn, cql_fputs, f); } -int cql_transform_buf(cql_transform_t ct, struct cql_node *cn, char *out, int max) +int cql_transform_buf(cql_transform_t ct, struct cql_node *cn, + char *out, int max) { struct cql_buf_write_info info; int r;