X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fcqltransform.c;h=133db946baeb2d465f676e2d461dc71a8c3d188c;hp=8494046ccec76a1a16802648a8460a68c23af389;hb=e4368af2ede9079d33e7a8fd280d29b2bde1d1ad;hpb=e9db3cf52b6df66badd97391a51e85f9c78a8c91 diff --git a/src/cqltransform.c b/src/cqltransform.c index 8494046..133db94 100644 --- a/src/cqltransform.c +++ b/src/cqltransform.c @@ -1,4 +1,4 @@ -/* $Id: cqltransform.c,v 1.22 2006-04-05 12:04:51 mike Exp $ +/* $Id: cqltransform.c,v 1.25 2006-10-25 09:58:19 adam Exp $ Copyright (C) 1995-2005, Index Data ApS Index Data Aps @@ -10,8 +10,19 @@ See the file LICENSE. /** * \file cqltransform.c * \brief Implements CQL transform (CQL to RPN conversion). + * + * Evaluation order of rules: + * + * always + * relation + * structure + * position + * truncation + * index + * relationModifier */ +#include #include #include #include @@ -42,36 +53,48 @@ cql_transform_t cql_transform_open_FILE(FILE *f) { const char *cp_value_start; const char *cp_value_end; + const char *cp_pattern_start; const char *cp_pattern_end; const char *cp = line; - while (*cp && !strchr(" \t=\r\n#", *cp)) + + while (*cp && strchr(" \t", *cp)) + cp++; + cp_pattern_start = cp; + + while (*cp && !strchr(" \t\r\n=#", *cp)) cp++; cp_pattern_end = cp; - if (cp == line) + if (cp == cp_pattern_start) continue; - while (*cp && strchr(" \t\r\n", *cp)) + while (*cp && strchr(" \t", *cp)) cp++; if (*cp != '=') - continue; + { + *pp = 0; + cql_transform_close(ct); + return 0; + } cp++; while (*cp && strchr(" \t\r\n", *cp)) cp++; cp_value_start = cp; - if (!(cp_value_end = strchr(cp, '#'))) + cp_value_end = strchr(cp, '#'); + if (!cp_value_end) cp_value_end = strlen(line) + line; if (cp_value_end != cp_value_start && strchr(" \t\r\n", cp_value_end[-1])) cp_value_end--; *pp = (struct cql_prop_entry *) xmalloc (sizeof(**pp)); - (*pp)->pattern = (char *) xmalloc (cp_pattern_end - line + 1); - memcpy ((*pp)->pattern, line, cp_pattern_end - line); - (*pp)->pattern[cp_pattern_end-line] = 0; + (*pp)->pattern = (char *) xmalloc(cp_pattern_end-cp_pattern_start + 1); + memcpy ((*pp)->pattern, cp_pattern_start, + cp_pattern_end-cp_pattern_start); + (*pp)->pattern[cp_pattern_end-cp_pattern_start] = '\0'; - (*pp)->value = (char *) xmalloc (cp_value_end - cp_value_start + 1); + (*pp)->value = (char *) xmalloc (cp_value_end-cp_value_start + 1); if (cp_value_start != cp_value_end) memcpy ((*pp)->value, cp_value_start, cp_value_end-cp_value_start); - (*pp)->value[cp_value_end - cp_value_start] = 0; + (*pp)->value[cp_value_end - cp_value_start] = '\0'; pp = &(*pp)->next; } *pp = 0; @@ -318,11 +341,16 @@ static const char *wcchar(const char *term, int length) void emit_term(cql_transform_t ct, + struct cql_node *cn, const char *term, int length, void (*pr)(const char *buf, void *client_data), void *client_data) { int i; + const char *ns = cn->u.st.index_uri; + + assert(cn->which == CQL_NODE_ST); + if (length > 0) { if (length > 1 && term[0] == '^' && term[length-1] == '^') @@ -410,14 +438,39 @@ void emit_term(cql_transform_t ct, pr, client_data, 0); } } + if (ns) { + cql_pr_attr_uri(ct, "index", ns, + cn->u.st.index, "serverChoice", + pr, client_data, 16); + } + if (cn->u.st.modifiers) + { + struct cql_node *mod = cn->u.st.modifiers; + for (; mod; mod = mod->u.st.modifiers) + { + cql_pr_attr(ct, "relationModifier", mod->u.st.index, 0, + pr, client_data, 20); + } + } (*pr)("\"", client_data); for (i = 0; iu.st.relation, "eq", pr, client_data, 19); - if (cn->u.st.modifiers) - { - struct cql_node *mod = cn->u.st.modifiers; - for (; mod; mod = mod->u.st.modifiers) - { - cql_pr_attr(ct, "relationModifier", mod->u.st.index, 0, - pr, client_data, 20); - } - } cql_pr_attr(ct, "structure", cn->u.st.relation, 0, pr, client_data, 24); - if (ns) { - cql_pr_attr_uri(ct, "index", ns, - cn->u.st.index, "serverChoice", - pr, client_data, 16); - } if (cn->u.st.relation && !cql_strcmp(cn->u.st.relation, "all")) { emit_wordlist(ct, cn, pr, client_data, "and"); @@ -527,7 +566,7 @@ void cql_transform_r(cql_transform_t ct, } else { - emit_term(ct, cn->u.st.term, strlen(cn->u.st.term), + emit_term(ct, cn, cn->u.st.term, strlen(cn->u.st.term), pr, client_data); } break;