2 * Copyright (c) 1995, the EUROPAGATE consortium (see below).
4 * The EUROPAGATE consortium members are:
6 * University College Dublin
7 * Danmarks Teknologiske Videnscenter
8 * An Chomhairle Leabharlanna
9 * Consejo Superior de Investigaciones Cientificas
11 * Permission to use, copy, modify, distribute, and sell this software and
12 * its documentation, in whole or in part, for any purpose, is hereby granted,
15 * 1. This copyright and permission notice appear in all copies of the
16 * software and its documentation. Notices of copyright or attribution
17 * which appear at the beginning of any file must remain unchanged.
19 * 2. The names of EUROPAGATE or the project partners may not be used to
20 * endorse or promote products derived from this software without specific
21 * prior written permission.
23 * 3. Users of this software (implementors and gateway operators) agree to
24 * inform the EUROPAGATE consortium of their use of the software. This
25 * information will be used to evaluate the EUROPAGATE project and the
26 * software, and to plan further developments. The consortium may use
27 * the information in later publications.
29 * 4. Users of this software agree to make their best efforts, when
30 * documenting their use of the software, to acknowledge the EUROPAGATE
31 * consortium, and the role played by the software in their work.
33 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
34 * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
35 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
36 * IN NO EVENT SHALL THE EUROPAGATE CONSORTIUM OR ITS MEMBERS BE LIABLE
37 * FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF
38 * ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
39 * OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND
40 * ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
41 * USE OR PERFORMANCE OF THIS SOFTWARE.
47 * \brief Implements parsing of a CCL FIND query.
49 * This source file implements parsing of a CCL Query (ISO8777).
50 * The parser uses predictive parsing, but it does several tokens
51 * of lookahead in the handling of relational operations.. So
52 * it's not really pure.
56 /* CCL find (to rpn conversion)
59 * $Id: cclfind.c,v 1.8 2005-06-25 15:46:03 adam Exp $
63 * Revision 1.16 1996/01/08 08:41:13 adam
64 * Removed unused function.
66 * Revision 1.15 1995/07/20 08:14:34 adam
67 * Qualifiers were observed too often. Instead tokens are treated as
68 * qualifiers only when separated by comma.
70 * Revision 1.14 1995/05/16 09:39:26 adam
73 * Revision 1.13 1995/04/17 09:31:42 adam
74 * Improved handling of qualifiers. Aliases or reserved words.
76 * Revision 1.12 1995/03/20 15:27:43 adam
79 * Revision 1.11 1995/02/23 08:31:59 adam
82 * Revision 1.9 1995/02/16 13:20:06 adam
85 * Revision 1.8 1995/02/14 19:59:42 adam
86 * Removed a syntax error.
88 * Revision 1.7 1995/02/14 19:55:10 adam
89 * Header files ccl.h/cclp.h are gone! They have been merged an
90 * moved to ../include/ccl.h.
91 * Node kind(s) in ccl_rpn_node have changed names.
93 * Revision 1.6 1995/02/14 16:20:55 adam
94 * Qualifiers are read from a file now.
96 * Revision 1.5 1995/02/14 14:12:41 adam
97 * Ranges for ordered qualfiers implemented (e.g. pd=1980-1990).
99 * Revision 1.4 1995/02/14 13:16:29 adam
100 * Left and/or right truncation implemented.
102 * Revision 1.3 1995/02/14 10:25:56 adam
103 * The constructions 'qualifier rel term ...' implemented.
105 * Revision 1.2 1995/02/13 15:15:07 adam
106 * Added handling of qualifiers. Not finished yet.
108 * Revision 1.1 1995/02/13 12:35:20 adam
109 * First version of CCL. Qualifiers aren't handled yet.
118 /* returns type of current lookahead */
119 #define KIND (cclp->look_token->kind)
121 /* move one token forward */
122 #define ADVANCE cclp->look_token = cclp->look_token->next
125 * qual_val_type: test for existance of attribute type/value pair.
126 * qa: Attribute array
127 * type: Type of attribute to search for
128 * value: Value of attribute to seach for
129 * return: 1 if found; 0 otherwise.
131 static int qual_val_type (struct ccl_rpn_attr **qa, int type, int value,
135 struct ccl_rpn_attr *q;
139 for (i = 0; (q=qa[i]); i++)
142 if (q->type == type && q->kind == CCL_RPN_ATTR_NUMERIC &&
143 q->value.numeric == value)
155 * strxcat: concatenate strings.
156 * n: Null-terminated Destination string
157 * src: Source string to be appended (not null-terminated)
158 * len: Length of source string.
160 static void strxcat (char *n, const char *src, int len)
170 * copy_token_name: Return copy of CCL token name
171 * tp: Pointer to token info.
172 * return: malloc(3) allocated copy of token name.
174 static char *copy_token_name (struct ccl_token *tp)
176 char *str = (char *)xmalloc (tp->len + 1);
178 memcpy (str, tp->name, tp->len);
184 * mk_node: Create RPN node.
185 * kind: Type of node.
186 * return: pointer to allocated node.
188 static struct ccl_rpn_node *mk_node (int kind)
190 struct ccl_rpn_node *p;
191 p = (struct ccl_rpn_node *)xmalloc (sizeof(*p));
198 * ccl_rpn_delete: Delete RPN tree.
199 * rpn: Pointer to tree.
201 void ccl_rpn_delete (struct ccl_rpn_node *rpn)
203 struct ccl_rpn_attr *attr, *attr1;
211 ccl_rpn_delete (rpn->u.p[0]);
212 ccl_rpn_delete (rpn->u.p[1]);
215 xfree (rpn->u.t.term);
216 for (attr = rpn->u.t.attr_list; attr; attr = attr1)
219 if (attr->kind == CCL_RPN_ATTR_STRING)
220 xfree(attr->value.str);
227 xfree (rpn->u.setname);
230 ccl_rpn_delete (rpn->u.p[0]);
231 ccl_rpn_delete (rpn->u.p[1]);
232 ccl_rpn_delete (rpn->u.p[2]);
238 static struct ccl_rpn_node *find_spec (CCL_parser cclp,
239 struct ccl_rpn_attr **qa);
241 static int is_term_ok (int look, int *list)
243 for (;*list >= 0; list++)
249 static struct ccl_rpn_node *search_terms (CCL_parser cclp,
250 struct ccl_rpn_attr **qa);
252 static struct ccl_rpn_attr *add_attr_node (struct ccl_rpn_node *p,
253 const char *set, int type)
255 struct ccl_rpn_attr *n;
257 n = (struct ccl_rpn_attr *)xmalloc (sizeof(*n));
261 n->set = (char*) xmalloc (strlen(set)+1);
262 strcpy (n->set, set);
267 n->next = p->u.t.attr_list;
268 p->u.t.attr_list = n;
270 n->kind = CCL_RPN_ATTR_NUMERIC;
271 n->value.numeric = 0;
276 * add_attr_numeric: Add attribute (type/value) to RPN term node.
277 * p: RPN node of type term.
278 * type: Type of attribute
279 * value: Value of attribute
280 * set: Attribute set name
282 static void add_attr_numeric (struct ccl_rpn_node *p, const char *set,
285 struct ccl_rpn_attr *n;
287 n = add_attr_node(p, set, type);
288 n->kind = CCL_RPN_ATTR_NUMERIC;
289 n->value.numeric = value;
292 static void add_attr_string (struct ccl_rpn_node *p, const char *set,
293 int type, char *value)
295 struct ccl_rpn_attr *n;
297 n = add_attr_node(p, set, type);
298 n->kind = CCL_RPN_ATTR_STRING;
299 n->value.str = xstrdup(value);
304 * search_term: Parse CCL search term.
306 * qa: Qualifier attributes already applied.
307 * term_list: tokens we accept as terms in context
308 * multi: whether we accept "multiple" tokens
309 * return: pointer to node(s); NULL on error.
311 static struct ccl_rpn_node *search_term_x (CCL_parser cclp,
312 struct ccl_rpn_attr **qa,
313 int *term_list, int multi)
315 struct ccl_rpn_node *p_top = 0;
316 struct ccl_token *lookahead = cclp->look_token;
320 const char *truncation_aliases;
323 ccl_qual_search_special(cclp->bibset, "truncation");
324 if (!truncation_aliases)
325 truncation_aliases = "?";
327 if (qual_val_type (qa, CCL_BIB1_STR, CCL_BIB1_STR_AND_LIST, 0))
329 if (qual_val_type (qa, CCL_BIB1_STR, CCL_BIB1_STR_OR_LIST, 0))
333 struct ccl_rpn_node *p;
339 int relation_value = -1;
340 int position_value = -1;
341 int structure_value = -1;
342 int truncation_value = -1;
343 int completeness_value = -1;
346 if (and_list || or_list || !multi)
349 /* ignore commas when dealing with and-lists .. */
350 if (and_list && lookahead && lookahead->kind == CCL_TOK_COMMA)
352 lookahead = lookahead->next;
356 /* go through each TERM token. If no truncation attribute is yet
357 met, then look for left/right truncation markers (?) and
358 set left_trunc/right_trunc/mid_trunc accordingly */
359 for (no = 0; no < max && is_term_ok(lookahead->kind, term_list); no++)
361 for (i = 0; i<lookahead->len; i++)
362 if (lookahead->name[i] == ' ')
364 else if (strchr(truncation_aliases, lookahead->name[i]))
366 if (no == 0 && i == 0 && lookahead->len >= 1)
368 else if (!is_term_ok(lookahead->next->kind, term_list) &&
369 i == lookahead->len-1 && i >= 1)
374 len += 1+lookahead->len+lookahead->ws_prefix_len;
375 lookahead = lookahead->next;
379 break; /* no more terms . stop . */
385 p = mk_node (CCL_RPN_OR);
387 p = mk_node (CCL_RPN_AND);
389 p = mk_node (CCL_RPN_AND);
394 /* create the term node, but wait a moment before adding the term */
395 p = mk_node (CCL_RPN_TERM);
396 p->u.t.attr_list = NULL;
399 /* make the top node point to us.. */
406 /* go through all attributes and add them to the attribute list */
407 for (i=0; qa && qa[i]; i++)
409 struct ccl_rpn_attr *attr;
411 for (attr = qa[i]; attr; attr = attr->next)
414 case CCL_RPN_ATTR_STRING:
415 add_attr_string(p, attr->set, attr->type,
418 case CCL_RPN_ATTR_NUMERIC:
419 if (attr->value.numeric > 0)
420 { /* deal only with REAL attributes (positive) */
424 if (relation_value != -1)
426 relation_value = attr->value.numeric;
429 if (position_value != -1)
431 position_value = attr->value.numeric;
434 if (structure_value != -1)
436 structure_value = attr->value.numeric;
439 if (truncation_value != -1)
441 truncation_value = attr->value.numeric;
442 left_trunc = right_trunc = mid_trunc = 0;
445 if (completeness_value != -1)
447 completeness_value = attr->value.numeric;
450 add_attr_numeric(p, attr->set, attr->type,
451 attr->value.numeric);
455 /* len now holds the number of characters in the RPN term */
456 /* no holds the number of CCL tokens (1 or more) */
458 if (structure_value == -1 &&
459 qual_val_type (qa, CCL_BIB1_STR, CCL_BIB1_STR_WP, &attset))
460 { /* no structure attribute met. Apply either structure attribute
461 WORD or PHRASE depending on number of CCL tokens */
462 if (no == 1 && no_spaces == 0)
463 add_attr_numeric (p, attset, CCL_BIB1_STR, 2);
465 add_attr_numeric (p, attset, CCL_BIB1_STR, 1);
468 /* make the RPN token */
469 p->u.t.term = (char *)xmalloc (len);
470 ccl_assert (p->u.t.term);
471 p->u.t.term[0] = '\0';
472 for (i = 0; i<no; i++)
474 const char *src_str = cclp->look_token->name;
475 int src_len = cclp->look_token->len;
477 if (i == 0 && left_trunc)
482 if (i == no-1 && right_trunc)
484 if (i && cclp->look_token->ws_prefix_len)
486 size_t len = strlen(p->u.t.term);
487 memcpy(p->u.t.term + len, cclp->look_token->ws_prefix_buf,
488 cclp->look_token->ws_prefix_len);
489 p->u.t.term[len + cclp->look_token->ws_prefix_len] = '\0';
491 strxcat (p->u.t.term, src_str, src_len);
494 if (left_trunc && right_trunc)
496 if (!qual_val_type (qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_BOTH,
499 cclp->error_code = CCL_ERR_TRUNC_NOT_BOTH;
503 add_attr_numeric (p, attset, CCL_BIB1_TRU, 3);
505 else if (right_trunc)
507 if (!qual_val_type (qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_RIGHT,
510 cclp->error_code = CCL_ERR_TRUNC_NOT_RIGHT;
514 add_attr_numeric (p, attset, CCL_BIB1_TRU, 1);
518 if (!qual_val_type (qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_LEFT,
521 cclp->error_code = CCL_ERR_TRUNC_NOT_LEFT;
525 add_attr_numeric (p, attset, CCL_BIB1_TRU, 2);
529 if (qual_val_type (qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_NONE,
531 add_attr_numeric (p, attset, CCL_BIB1_TRU, 100);
537 cclp->error_code = CCL_ERR_TERM_EXPECTED;
541 static struct ccl_rpn_node *search_term (CCL_parser cclp,
542 struct ccl_rpn_attr **qa)
544 static int list[] = {CCL_TOK_TERM, CCL_TOK_COMMA, -1};
545 return search_term_x(cclp, qa, list, 0);
549 struct ccl_rpn_node *qualifiers_order (CCL_parser cclp,
550 struct ccl_rpn_attr **ap, char *attset)
553 struct ccl_rpn_node *p;
555 if (cclp->look_token->len == 1)
557 if (cclp->look_token->name[0] == '<')
559 else if (cclp->look_token->name[0] == '=')
561 else if (cclp->look_token->name[0] == '>')
564 else if (cclp->look_token->len == 2)
566 if (!memcmp (cclp->look_token->name, "<=", 2))
568 else if (!memcmp (cclp->look_token->name, ">=", 2))
570 else if (!memcmp (cclp->look_token->name, "<>", 2))
575 cclp->error_code = CCL_ERR_BAD_RELATION;
578 ADVANCE; /* skip relation */
580 qual_val_type(ap, CCL_BIB1_REL, CCL_BIB1_REL_PORDER, 0))
582 /* allow - inside term and treat it as range _always_ */
583 /* relation is =. Extract "embedded" - to separate terms */
584 if (KIND == CCL_TOK_TERM)
587 for (i = 0; i<cclp->look_token->len; i++)
589 if (cclp->look_token->name[i] == '-')
593 if (cclp->look_token->len > 1 && i == 0)
595 struct ccl_token *ntoken = ccl_token_add (cclp->look_token);
597 ntoken->kind = CCL_TOK_TERM;
598 ntoken->name = cclp->look_token->name + 1;
599 ntoken->len = cclp->look_token->len - 1;
601 cclp->look_token->len = 1;
602 cclp->look_token->name = "-";
604 else if (cclp->look_token->len > 1 && i == cclp->look_token->len-1)
606 struct ccl_token *ntoken = ccl_token_add (cclp->look_token);
608 ntoken->kind = CCL_TOK_TERM;
612 (cclp->look_token->len)--;
614 else if (cclp->look_token->len > 2 && i < cclp->look_token->len)
616 struct ccl_token *ntoken1 = ccl_token_add (cclp->look_token);
617 struct ccl_token *ntoken2 = ccl_token_add (ntoken1);
619 ntoken1->kind = CCL_TOK_TERM; /* generate - */
623 ntoken2->kind = CCL_TOK_TERM; /* generate yy */
624 ntoken2->name = cclp->look_token->name + (i+1);
625 ntoken2->len = cclp->look_token->len - (i+1);
627 cclp->look_token->len = i; /* adjust xx */
629 else if (i == cclp->look_token->len &&
630 cclp->look_token->next &&
631 cclp->look_token->next->kind == CCL_TOK_TERM &&
632 cclp->look_token->next->len > 1 &&
633 cclp->look_token->next->name[0] == '-')
636 /* we _know_ that xx does not have - in it */
637 struct ccl_token *ntoken = ccl_token_add (cclp->look_token);
639 ntoken->kind = CCL_TOK_TERM; /* generate - */
643 (ntoken->next->name)++; /* adjust yy */
644 (ntoken->next->len)--;
650 KIND == CCL_TOK_TERM &&
651 cclp->look_token->next && cclp->look_token->next->len == 1 &&
652 cclp->look_token->next->name[0] == '-')
654 struct ccl_rpn_node *p1;
655 if (!(p1 = search_term (cclp, ap)))
657 ADVANCE; /* skip '-' */
658 if (KIND == CCL_TOK_TERM) /* = term - term ? */
660 struct ccl_rpn_node *p2;
662 if (!(p2 = search_term (cclp, ap)))
667 p = mk_node (CCL_RPN_AND);
669 add_attr_numeric (p1, attset, CCL_BIB1_REL, 4);
671 add_attr_numeric (p2, attset, CCL_BIB1_REL, 2);
676 add_attr_numeric (p1, attset, CCL_BIB1_REL, 4);
681 cclp->look_token->len == 1 &&
682 cclp->look_token->name[0] == '-') /* = - term ? */
685 if (!(p = search_term (cclp, ap)))
687 add_attr_numeric (p, attset, CCL_BIB1_REL, 2);
690 else if (KIND == CCL_TOK_LP)
693 if (!(p = find_spec (cclp, ap)))
695 if (KIND != CCL_TOK_RP)
697 cclp->error_code = CCL_ERR_RP_EXPECTED;
706 if (!(p = search_terms (cclp, ap)))
708 add_attr_numeric (p, attset, CCL_BIB1_REL, rel);
711 cclp->error_code = CCL_ERR_TERM_EXPECTED;
716 struct ccl_rpn_node *qualifiers2 (CCL_parser cclp, struct ccl_rpn_attr **ap)
719 struct ccl_rpn_node *p;
721 if (qual_val_type(ap, CCL_BIB1_REL, CCL_BIB1_REL_ORDER, &attset)
722 || qual_val_type(ap, CCL_BIB1_REL, CCL_BIB1_REL_PORDER, &attset))
723 return qualifiers_order(cclp, ap, attset);
725 /* unordered relation */
726 if (KIND != CCL_TOK_EQ)
728 cclp->error_code = CCL_ERR_EQ_EXPECTED;
732 if (KIND == CCL_TOK_LP)
735 if (!(p = find_spec (cclp, ap)))
739 if (KIND != CCL_TOK_RP)
741 cclp->error_code = CCL_ERR_RP_EXPECTED;
748 p = search_terms (cclp, ap);
753 * qualifiers1: Parse CCL qualifiers and search terms.
755 * la: Token pointer to RELATION token.
756 * qa: Qualifier attributes already applied.
757 * return: pointer to node(s); NULL on error.
759 static struct ccl_rpn_node *qualifiers1 (CCL_parser cclp, struct ccl_token *la,
760 struct ccl_rpn_attr **qa)
762 struct ccl_token *lookahead = cclp->look_token;
763 struct ccl_token *look_start = cclp->look_token;
764 struct ccl_rpn_attr **ap;
765 struct ccl_rpn_node *node = 0;
766 const char *field_str;
774 cclp->error_code = CCL_ERR_DOUBLE_QUAL;
778 for (lookahead = cclp->look_token; lookahead != la;
779 lookahead=lookahead->next)
782 for (i=0; qa[i]; i++)
784 ap = (struct ccl_rpn_attr **)xmalloc ((no ? (no+1) : 2) * sizeof(*ap));
787 field_str = ccl_qual_search_special(cclp->bibset, "field");
790 if (!strcmp (field_str, "or"))
792 else if (!strcmp (field_str, "merge"))
797 /* consider each field separately and OR */
798 lookahead = look_start;
799 while (lookahead != la)
803 while ((ap[0] = ccl_qual_search (cclp, lookahead->name,
804 lookahead->len, seq)) != 0)
806 struct ccl_rpn_node *node_sub;
807 cclp->look_token = la;
809 node_sub = qualifiers2(cclp, ap);
812 ccl_rpn_delete (node);
818 struct ccl_rpn_node *node_this = mk_node(CCL_RPN_OR);
819 node_this->u.p[0] = node;
820 node_this->u.p[1] = node_sub;
829 cclp->look_token = lookahead;
830 cclp->error_code = CCL_ERR_UNKNOWN_QUAL;
834 lookahead = lookahead->next;
835 if (lookahead->kind == CCL_TOK_COMMA)
836 lookahead = lookahead->next;
841 /* merge attributes from ALL fields - including inherited ones */
844 struct ccl_rpn_node *node_sub;
846 lookahead = look_start;
847 for (i = 0; lookahead != la; i++)
849 ap[i] = ccl_qual_search (cclp, lookahead->name,
850 lookahead->len, seq);
853 if (!ap[i] && seq > 0)
854 ap[i] = ccl_qual_search (cclp, lookahead->name,
858 cclp->look_token = lookahead;
859 cclp->error_code = CCL_ERR_UNKNOWN_QUAL;
863 lookahead = lookahead->next;
864 if (lookahead->kind == CCL_TOK_COMMA)
865 lookahead = lookahead->next;
869 struct ccl_rpn_attr **qa0 = qa;
879 cclp->look_token = lookahead;
881 node_sub = qualifiers2(cclp, ap);
884 ccl_rpn_delete (node);
889 struct ccl_rpn_node *node_this = mk_node(CCL_RPN_OR);
890 node_this->u.p[0] = node;
891 node_this->u.p[1] = node_sub;
905 * search_terms: Parse CCL search terms - including proximity.
907 * qa: Qualifier attributes already applied.
908 * return: pointer to node(s); NULL on error.
910 static struct ccl_rpn_node *search_terms (CCL_parser cclp,
911 struct ccl_rpn_attr **qa)
913 static int list[] = {
914 CCL_TOK_TERM, CCL_TOK_COMMA,CCL_TOK_EQ, CCL_TOK_REL, CCL_TOK_SET, -1};
915 struct ccl_rpn_node *p1, *p2, *pn;
916 p1 = search_term_x (cclp, qa, list, 1);
921 if (KIND == CCL_TOK_PROX)
923 struct ccl_rpn_node *p_prox = 0;
924 /* ! word order specified */
925 /* % word order not specified */
926 p_prox = mk_node(CCL_RPN_TERM);
927 p_prox->u.t.term = (char *) xmalloc(1 + cclp->look_token->len);
928 memcpy(p_prox->u.t.term, cclp->look_token->name,
929 cclp->look_token->len);
930 p_prox->u.t.term[cclp->look_token->len] = 0;
931 p_prox->u.t.attr_list = 0;
934 p2 = search_term_x (cclp, qa, list, 1);
940 pn = mk_node (CCL_RPN_PROX);
946 else if (is_term_ok(KIND, list))
948 p2 = search_term_x (cclp, qa, list, 1);
954 pn = mk_node (CCL_RPN_PROX);
967 * search_elements: Parse CCL search elements
969 * qa: Qualifier attributes already applied.
970 * return: pointer to node(s); NULL on error.
972 static struct ccl_rpn_node *search_elements (CCL_parser cclp,
973 struct ccl_rpn_attr **qa)
975 struct ccl_rpn_node *p1;
976 struct ccl_token *lookahead;
977 if (KIND == CCL_TOK_LP)
980 p1 = find_spec (cclp, qa);
983 if (KIND != CCL_TOK_RP)
985 cclp->error_code = CCL_ERR_RP_EXPECTED;
992 else if (KIND == CCL_TOK_SET)
995 if (KIND == CCL_TOK_EQ)
997 if (KIND != CCL_TOK_TERM)
999 cclp->error_code = CCL_ERR_SETNAME_EXPECTED;
1002 p1 = mk_node (CCL_RPN_SET);
1003 p1->u.setname = copy_token_name (cclp->look_token);
1007 lookahead = cclp->look_token;
1009 while (lookahead->kind==CCL_TOK_TERM)
1011 lookahead = lookahead->next;
1012 if (lookahead->kind == CCL_TOK_REL || lookahead->kind == CCL_TOK_EQ)
1013 return qualifiers1 (cclp, lookahead, qa);
1014 if (lookahead->kind != CCL_TOK_COMMA)
1016 lookahead = lookahead->next;
1019 return search_terms (cclp, qa);
1022 struct ccl_rpn_attr *qa[2];
1023 struct ccl_rpn_node *node = 0;
1025 lookahead = cclp->look_token;
1028 for(seq = 0; ;seq++)
1030 struct ccl_rpn_node *node_sub;
1031 qa[0] = ccl_qual_search(cclp, "term", 4, seq);
1035 cclp->look_token = lookahead;
1037 node_sub = search_terms (cclp, qa);
1040 ccl_rpn_delete (node);
1045 struct ccl_rpn_node *node_this = mk_node(CCL_RPN_OR);
1046 node_this->u.p[0] = node;
1047 node_this->u.p[1] = node_sub;
1048 node_this->u.p[2] = 0;
1055 node = search_terms (cclp, 0);
1061 * find_spec: Parse CCL find specification
1063 * qa: Qualifier attributes already applied.
1064 * return: pointer to node(s); NULL on error.
1066 static struct ccl_rpn_node *find_spec (CCL_parser cclp,
1067 struct ccl_rpn_attr **qa)
1069 struct ccl_rpn_node *p1, *p2, *pn;
1070 if (!(p1 = search_elements (cclp, qa)))
1078 p2 = search_elements (cclp, qa);
1081 ccl_rpn_delete (p1);
1084 pn = mk_node (CCL_RPN_AND);
1092 p2 = search_elements (cclp, qa);
1095 ccl_rpn_delete (p1);
1098 pn = mk_node (CCL_RPN_OR);
1106 p2 = search_elements (cclp, qa);
1109 ccl_rpn_delete (p1);
1112 pn = mk_node (CCL_RPN_NOT);
1124 struct ccl_rpn_node *ccl_parser_find (CCL_parser cclp, struct ccl_token *list)
1126 struct ccl_rpn_node *p;
1128 cclp->look_token = list;
1129 p = find_spec (cclp, NULL);
1130 if (p && KIND != CCL_TOK_EOL)
1132 if (KIND == CCL_TOK_RP)
1133 cclp->error_code = CCL_ERR_BAD_RP;
1135 cclp->error_code = CCL_ERR_OP_EXPECTED;
1139 cclp->error_pos = cclp->look_token->name;
1141 cclp->error_code = CCL_ERR_OK;
1143 cclp->error_code = cclp->error_code;
1148 * ccl_find: Parse CCL find - token representation
1149 * bibset: Bibset to be used for the parsing
1150 * list: List of tokens
1151 * error: Pointer to integer. Holds error no. on completion.
1152 * pos: Pointer to char position. Holds approximate error position.
1153 * return: RPN tree on successful completion; NULL otherwise.
1155 struct ccl_rpn_node *ccl_find (CCL_bibset bibset, struct ccl_token *list,
1156 int *error, const char **pos)
1158 struct ccl_rpn_node *p;
1159 CCL_parser cclp = ccl_parser_create ();
1161 cclp->bibset = bibset;
1163 p = ccl_parser_find (cclp, list);
1165 *error = cclp->error_code;
1166 *pos = cclp->error_pos;
1168 ccl_parser_destroy (cclp);
1174 * ccl_find_str: Parse CCL find - string representation
1175 * bibset: Bibset to be used for the parsing
1176 * str: String to be parsed
1177 * error: Pointer to integer. Holds error no. on completion.
1178 * pos: Pointer to char position. Holds approximate error position.
1179 * return: RPN tree on successful completion; NULL otherwise.
1181 struct ccl_rpn_node *ccl_find_str (CCL_bibset bibset, const char *str,
1182 int *error, int *pos)
1184 CCL_parser cclp = ccl_parser_create ();
1185 struct ccl_token *list;
1186 struct ccl_rpn_node *p;
1188 cclp->bibset = bibset;
1190 list = ccl_parser_tokenize (cclp, str);
1191 p = ccl_parser_find (cclp, list);
1193 *error = cclp->error_code;
1195 *pos = cclp->error_pos - str;
1196 ccl_parser_destroy (cclp);
1197 ccl_token_del (list);
1203 * indent-tabs-mode: nil
1205 * vim: shiftwidth=4 tabstop=8 expandtab