Towards working facets
[yaz-moved-to-github.git] / src / cclfind.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2013 Index Data
3  * See the file LICENSE for details.
4  */
5 /**
6  * \file cclfind.c
7  * \brief Implements parsing of a CCL FIND query.
8  *
9  * This source file implements parsing of a CCL Query (ISO8777).
10  * The parser uses predictive parsing, but it does several tokens
11  * of lookahead in the handling of relational operations.. So
12  * it's not really pure.
13  */
14 #if HAVE_CONFIG_H
15 #include <config.h>
16 #endif
17
18 #include <stdlib.h>
19 #include <string.h>
20 #include <assert.h>
21
22 #include "cclp.h"
23
24 /* returns type of current lookahead */
25 #define KIND (cclp->look_token->kind)
26
27 /* move one token forward */
28 #define ADVANCE cclp->look_token = cclp->look_token->next
29
30 /**
31  * qual_val_type: test for existance of attribute type/value pair.
32  * qa:     Attribute array
33  * type:   Type of attribute to search for
34  * value:  Value of attribute to seach for
35  * return: 1 if found; 0 otherwise.
36  */
37 static int qual_val_type(ccl_qualifier_t *qa, int type, int value,
38                          char **attset)
39 {
40     int i;
41
42     if (!qa)
43         return 0;
44     for (i = 0; qa[i]; i++)
45     {
46         struct ccl_rpn_attr *q = ccl_qual_get_attr(qa[i]);
47         while (q)
48         {
49             if (q->type == type && q->kind == CCL_RPN_ATTR_NUMERIC &&
50                 q->value.numeric == value)
51             {
52                 if (attset)
53                     *attset = q->set;
54                 return 1;
55             }
56             q = q->next;
57         }
58     }
59     return 0;
60 }
61
62 /**
63  * strxcat: concatenate strings.
64  * n:      Null-terminated Destination string
65  * src:    Source string to be appended (not null-terminated)
66  * len:    Length of source string.
67  */
68 static void strxcat(char *n, const char *src, int len)
69 {
70     while (*n)
71         n++;
72     while (--len >= 0)
73         *n++ = *src++;
74     *n = '\0';
75 }
76
77 /**
78  * copy_token_name: Return copy of CCL token name
79  * tp:      Pointer to token info.
80  * return:  malloc(3) allocated copy of token name.
81  */
82 static char *copy_token_name(struct ccl_token *tp)
83 {
84     char *str = (char *)xmalloc(tp->len + 1);
85     ccl_assert(str);
86     memcpy(str, tp->name, tp->len);
87     str[tp->len] = '\0';
88     return str;
89 }
90
91 /**
92  * mk_node: Create RPN node.
93  * kind:   Type of node.
94  * return: pointer to allocated node.
95  */
96 struct ccl_rpn_node *ccl_rpn_node_create(enum ccl_rpn_kind kind)
97 {
98     struct ccl_rpn_node *p;
99     p = (struct ccl_rpn_node *)xmalloc(sizeof(*p));
100     ccl_assert(p);
101     p->kind = kind;
102
103     switch(kind)
104     {
105     case CCL_RPN_TERM:
106         p->u.t.attr_list = 0;
107         p->u.t.term = 0;
108         p->u.t.qual = 0;
109         break;
110     default:
111         break;
112     }
113     return p;
114 }
115
116 /**
117  * ccl_rpn_delete: Delete RPN tree.
118  * rpn:   Pointer to tree.
119  */
120 void ccl_rpn_delete(struct ccl_rpn_node *rpn)
121 {
122     struct ccl_rpn_attr *attr, *attr1;
123     if (!rpn)
124         return;
125     switch (rpn->kind)
126     {
127     case CCL_RPN_AND:
128     case CCL_RPN_OR:
129     case CCL_RPN_NOT:
130         ccl_rpn_delete(rpn->u.p[0]);
131         ccl_rpn_delete(rpn->u.p[1]);
132         break;
133     case CCL_RPN_TERM:
134         xfree(rpn->u.t.term);
135         xfree(rpn->u.t.qual);
136         for (attr = rpn->u.t.attr_list; attr; attr = attr1)
137         {
138             attr1 = attr->next;
139             if (attr->kind == CCL_RPN_ATTR_STRING)
140                 xfree(attr->value.str);
141             if (attr->set)
142                 xfree(attr->set);
143             xfree(attr);
144         }
145         break;
146     case CCL_RPN_SET:
147         xfree(rpn->u.setname);
148         break;
149     case CCL_RPN_PROX:
150         ccl_rpn_delete(rpn->u.p[0]);
151         ccl_rpn_delete(rpn->u.p[1]);
152         ccl_rpn_delete(rpn->u.p[2]);
153         break;
154     }
155     xfree(rpn);
156 }
157
158 static struct ccl_rpn_node *find_spec(CCL_parser cclp, ccl_qualifier_t *qa);
159
160 static int is_term_ok(int look, int *list)
161 {
162     for (;*list >= 0; list++)
163         if (look == *list)
164             return 1;
165     return 0;
166 }
167
168 static struct ccl_rpn_node *search_terms(CCL_parser cclp, ccl_qualifier_t *qa);
169
170 static struct ccl_rpn_attr *add_attr_node(struct ccl_rpn_node *p,
171                                            const char *set, int type)
172 {
173     struct ccl_rpn_attr *n;
174
175     n = (struct ccl_rpn_attr *)xmalloc(sizeof(*n));
176     ccl_assert(n);
177     if (set)
178         n->set = xstrdup(set);
179     else
180         n->set = 0;
181     n->type = type;
182     n->next = p->u.t.attr_list;
183     p->u.t.attr_list = n;
184
185     return n;
186 }
187
188 /**
189  * add_attr_numeric: Add attribute (type/value) to RPN term node.
190  * p:     RPN node of type term.
191  * type:  Type of attribute
192  * value: Value of attribute
193  * set: Attribute set name
194  */
195 void ccl_add_attr_numeric(struct ccl_rpn_node *p, const char *set,
196                           int type, int value)
197 {
198     struct ccl_rpn_attr *n;
199
200     n = add_attr_node(p, set, type);
201     n->kind = CCL_RPN_ATTR_NUMERIC;
202     n->value.numeric = value;
203 }
204
205 void ccl_add_attr_string(struct ccl_rpn_node *p, const char *set,
206                          int type, char *value)
207 {
208     struct ccl_rpn_attr *n;
209
210     n = add_attr_node(p, set, type);
211     n->kind = CCL_RPN_ATTR_STRING;
212     n->value.str = xstrdup(value);
213 }
214
215 static size_t cmp_operator(const char **aliases, const char *input)
216 {
217     for (; *aliases; aliases++)
218     {
219         const char *cp = *aliases;
220         size_t i;
221         for (i = 0; *cp && *cp == input[i]; i++, cp++)
222             ;
223         if (*cp == '\0')
224             return i;
225     }
226     return 0;
227 }
228
229
230 #define REGEX_CHARS "^[]{}()|.*+?!$"
231 #define CCL_CHARS "#?\\"
232
233 static int has_ccl_masking(const char *src_str,
234                            int src_len,
235                            const char **truncation_aliases,
236                            const char **mask_aliases)
237 {
238     size_t j;
239     int quote_mode = 0;
240
241     for (j = 0; j < src_len; j++)
242     {
243         size_t op_size;
244         if (j > 0 && src_str[j-1] == '\\')
245             ;
246         else if (src_str[j] == '"')
247             quote_mode = !quote_mode;
248         else if (!quote_mode &&
249                  (op_size = cmp_operator(truncation_aliases,
250                                          src_str + j)))
251             return 1;
252         else if (!quote_mode &&
253                  (op_size = cmp_operator(mask_aliases,
254                                           src_str + j)))
255             return 1;
256     }
257     return 0;
258 }
259
260 static int append_term(CCL_parser cclp, const char *src_str, size_t src_len,
261                        char *dst_term, int regex_trunc, int z3958_trunc,
262                        const char **truncation_aliases,
263                        const char **mask_aliases,
264                        int is_first, int is_last,
265                        int *left_trunc, int *right_trunc)
266 {
267     size_t j;
268     int quote_mode = 0;
269
270     for (j = 0; j < src_len; j++)
271     {
272         size_t op_size;
273         if (j > 0 && src_str[j-1] == '\\')
274         {
275             if (regex_trunc && strchr(REGEX_CHARS "\\", src_str[j]))
276                 strcat(dst_term, "\\");
277             else if (z3958_trunc && strchr(CCL_CHARS "\\", src_str[j]))
278                 strcat(dst_term, "\\");
279             strxcat(dst_term, src_str + j, 1);
280         }
281         else if (src_str[j] == '"')
282             quote_mode = !quote_mode;
283         else if (!quote_mode &&
284                  (op_size = cmp_operator(truncation_aliases,
285                                          src_str + j))
286             )
287         {
288             j += (op_size - 1);  /* j++ in for loop */
289             if (regex_trunc)
290                 strcat(dst_term, ".*");
291             else if (z3958_trunc)
292                 strcat(dst_term, "?");
293             else if (is_first && j == 0)
294                 *left_trunc = 1;
295             else if (is_last && j == src_len - 1)
296                 *right_trunc = 1;
297             else
298             {
299                 cclp->error_code = CCL_ERR_TRUNC_NOT_EMBED;
300                 return -1;
301             }
302         }
303         else if (!quote_mode &&
304                  (op_size = cmp_operator(mask_aliases, src_str + j)))
305         {
306             j += (op_size - 1);  /* j++ in for loop */
307             if (regex_trunc)
308                 strcat(dst_term, ".");
309             else if (z3958_trunc)
310                 strcat(dst_term, "#");
311             else
312             {
313                 cclp->error_code = CCL_ERR_TRUNC_NOT_SINGLE;
314                 return -1;
315             }
316         }
317         else if (src_str[j] != '\\')
318         {
319             if (regex_trunc && strchr(REGEX_CHARS, src_str[j]))
320                 strcat(dst_term, "\\");
321             else if (z3958_trunc && strchr(CCL_CHARS, src_str[j]))
322                 strcat(dst_term, "\\");
323             strxcat(dst_term, src_str + j, 1);
324         }
325     }
326     return 0;
327 }
328
329 /**
330  * search_term: Parse CCL search term.
331  * cclp:   CCL Parser
332  * qa:     Qualifier attributes already applied.
333  * term_list: tokens we accept as terms in context
334  * multi:  whether we accept "multiple" tokens
335  * return: pointer to node(s); NULL on error.
336  */
337 static struct ccl_rpn_node *search_term_x(CCL_parser cclp,
338                                           ccl_qualifier_t *qa,
339                                           int *term_list, int multi)
340 {
341     struct ccl_rpn_node *p_top = 0;
342     struct ccl_token *lookahead = cclp->look_token;
343     int and_list = 0;
344     int auto_group = 0;
345     int or_list = 0;
346     char *attset;
347     const char **truncation_aliases;
348     const char *t_default[2];
349     const char **mask_aliases;
350     const char *m_default[2];
351
352     truncation_aliases =
353         ccl_qual_search_special(cclp->bibset, "truncation");
354     if (!truncation_aliases)
355     {
356         truncation_aliases = t_default;
357         t_default[0] = "?";
358         t_default[1] = 0;
359     }
360
361     mask_aliases =
362         ccl_qual_search_special(cclp->bibset, "mask");
363     if (!mask_aliases)
364     {
365         mask_aliases = m_default;
366         m_default[0] = "#";
367         m_default[1] = 0;
368     }
369
370
371     if (qual_val_type(qa, CCL_BIB1_STR, CCL_BIB1_STR_AND_LIST, 0))
372         and_list = 1;
373     if (qual_val_type(qa, CCL_BIB1_STR, CCL_BIB1_STR_AUTO_GROUP, 0))
374         auto_group = 1;
375     if (qual_val_type(qa, CCL_BIB1_STR, CCL_BIB1_STR_OR_LIST, 0))
376         or_list = 1;
377     while (1)
378     {
379         struct ccl_rpn_node *p;
380         size_t no, i;
381         int is_phrase = 0;
382         int is_ccl_masked = 0;
383         int relation_value = -1;
384         int position_value = -1;
385         int structure_value = -1;
386         int truncation_value = -1;
387         int completeness_value = -1;
388         int len = 0;
389         int left_trunc = 0;
390         int right_trunc = 0;
391         int regex_trunc = 0;
392         int z3958_trunc = 0;
393         size_t max = 200;
394         if (and_list || or_list || !multi)
395             max = 1;
396
397         /* ignore commas when dealing with and-lists .. */
398         if (and_list && lookahead && lookahead->kind == CCL_TOK_COMMA)
399         {
400             lookahead = lookahead->next;
401             ADVANCE;
402             continue;
403         }
404         for (no = 0; no < max && is_term_ok(lookahead->kind, term_list); no++)
405         {
406             int this_is_phrase = 0;
407             for (i = 0; i<lookahead->len; i++)
408                 if (lookahead->name[i] == ' ')
409                     this_is_phrase = 1;
410
411             if (has_ccl_masking(lookahead->name, lookahead->len,
412                                 truncation_aliases,
413                                 mask_aliases))
414                 is_ccl_masked = 1;
415
416             if (auto_group)
417             {
418                 if (no > 0 && (is_phrase || is_phrase != this_is_phrase))
419                     break;
420                 is_phrase = this_is_phrase;
421             }
422             else if (this_is_phrase || no > 0)
423                 is_phrase = 1;
424             len += 1+lookahead->len+lookahead->ws_prefix_len;
425             lookahead = lookahead->next;
426         }
427
428         if (len == 0)
429             break;      /* no more terms . stop . */
430
431         /* create the term node, but wait a moment before adding the term */
432         p = ccl_rpn_node_create(CCL_RPN_TERM);
433         p->u.t.attr_list = NULL;
434         p->u.t.term = NULL;
435         if (qa && qa[0])
436         {
437             const char *n = ccl_qual_get_name(qa[0]);
438             if (n)
439                 p->u.t.qual = xstrdup(n);
440         }
441
442         /* go through all attributes and add them to the attribute list */
443         for (i=0; qa && qa[i]; i++)
444         {
445             struct ccl_rpn_attr *attr;
446
447             for (attr = ccl_qual_get_attr(qa[i]); attr; attr = attr->next)
448                 switch(attr->kind)
449                 {
450                 case CCL_RPN_ATTR_STRING:
451                     ccl_add_attr_string(p, attr->set, attr->type,
452                                         attr->value.str);
453                     break;
454                 case CCL_RPN_ATTR_NUMERIC:
455                     if (attr->value.numeric > 0)
456                     {   /* deal only with REAL attributes (positive) */
457                         switch (attr->type)
458                         {
459                         case CCL_BIB1_REL:
460                             if (relation_value != -1)
461                                 continue;
462                             relation_value = attr->value.numeric;
463                             break;
464                         case CCL_BIB1_POS:
465                             if (position_value != -1)
466                                 continue;
467                             position_value = attr->value.numeric;
468                             break;
469                         case CCL_BIB1_STR:
470                             if (structure_value != -1)
471                                 continue;
472                             structure_value = attr->value.numeric;
473                             break;
474                         case CCL_BIB1_TRU:
475                             if (truncation_value != -1)
476                                 continue;
477                             truncation_value = attr->value.numeric;
478                             break;
479                         case CCL_BIB1_COM:
480                             if (completeness_value != -1)
481                                 continue;
482                             completeness_value = attr->value.numeric;
483                             break;
484                         }
485                         ccl_add_attr_numeric(p, attr->set, attr->type,
486                                              attr->value.numeric);
487                     }
488                 }
489         }
490         attset = 0;
491         if (structure_value == -1 && (
492                 auto_group ||
493                 qual_val_type(qa, CCL_BIB1_STR, CCL_BIB1_STR_WP, &attset))
494             )
495         {
496             if (!is_phrase)
497                 ccl_add_attr_numeric(p, attset, CCL_BIB1_STR, 2);
498             else
499                 ccl_add_attr_numeric(p, attset, CCL_BIB1_STR, 1);
500         }
501
502         if (qual_val_type(qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_REGEX,
503                           &attset))
504         {
505             if (is_ccl_masked)
506                 regex_trunc = 1; /* regex trunc (102) allowed */
507         }
508         else if (qual_val_type(qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_Z3958,
509                           &attset))
510         {
511             if (is_ccl_masked)
512                 z3958_trunc = 1; /* Z39.58 trunc (CCL) trunc allowed */
513         }
514
515         /* make the RPN token */
516         p->u.t.term = (char *)xmalloc(len * 2 + 2);
517         ccl_assert(p->u.t.term);
518         p->u.t.term[0] = '\0';
519         for (i = 0; i<no; i++)
520         {
521             const char *src_str = cclp->look_token->name;
522             size_t src_len = cclp->look_token->len;
523
524             if (p->u.t.term[0] && cclp->look_token->ws_prefix_len)
525             {
526                 strxcat(p->u.t.term, cclp->look_token->ws_prefix_buf,
527                         cclp->look_token->ws_prefix_len);
528             }
529             if (append_term(cclp, src_str, src_len, p->u.t.term, regex_trunc,
530                             z3958_trunc, truncation_aliases, mask_aliases,
531                             i == 0, i == no - 1,
532                             &left_trunc, &right_trunc))
533             {
534                 ccl_rpn_delete(p);
535                 return NULL;
536             }
537             ADVANCE;
538         }
539         /* make the top node point to us.. */
540         if (p_top)
541         {
542             struct ccl_rpn_node *tmp;
543
544             if (or_list)
545                 tmp = ccl_rpn_node_create(CCL_RPN_OR);
546             else if (and_list)
547                 tmp = ccl_rpn_node_create(CCL_RPN_AND);
548             else
549                 tmp = ccl_rpn_node_create(CCL_RPN_AND);
550             tmp->u.p[0] = p_top;
551             tmp->u.p[1] = p;
552
553             p_top = tmp;
554         }
555         else
556             p_top = p;
557
558
559         if (left_trunc && right_trunc)
560         {
561             if (!qual_val_type(qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_BOTH,
562                                 &attset))
563             {
564                 cclp->error_code = CCL_ERR_TRUNC_NOT_BOTH;
565                 ccl_rpn_delete(p);
566                 return NULL;
567             }
568             ccl_add_attr_numeric(p, attset, CCL_BIB1_TRU, 3);
569         }
570         else if (right_trunc)
571         {
572             if (!qual_val_type(qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_RIGHT,
573                                  &attset))
574             {
575                 cclp->error_code = CCL_ERR_TRUNC_NOT_RIGHT;
576                 ccl_rpn_delete(p);
577                 return NULL;
578             }
579             ccl_add_attr_numeric(p, attset, CCL_BIB1_TRU, 1);
580         }
581         else if (left_trunc)
582         {
583             if (!qual_val_type(qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_LEFT,
584                                 &attset))
585             {
586                 cclp->error_code = CCL_ERR_TRUNC_NOT_LEFT;
587                 ccl_rpn_delete(p);
588                 return NULL;
589             }
590             ccl_add_attr_numeric(p, attset, CCL_BIB1_TRU, 2);
591         }
592         else if (regex_trunc)
593         {
594             ccl_add_attr_numeric(p, attset, CCL_BIB1_TRU, 102);
595         }
596         else if (z3958_trunc)
597         {
598             ccl_add_attr_numeric(p, attset, CCL_BIB1_TRU, 104);
599         }
600         else
601         {
602             if (qual_val_type(qa, CCL_BIB1_TRU, CCL_BIB1_TRU_CAN_NONE,
603                                &attset))
604                 ccl_add_attr_numeric(p, attset, CCL_BIB1_TRU, 100);
605         }
606         if (!multi)
607             break;
608     }
609     if (!p_top)
610         cclp->error_code = CCL_ERR_TERM_EXPECTED;
611     return p_top;
612 }
613
614 static struct ccl_rpn_node *search_term(CCL_parser cclp, ccl_qualifier_t *qa)
615 {
616     static int list[] = {CCL_TOK_TERM, CCL_TOK_COMMA, -1};
617     return search_term_x(cclp, qa, list, 0);
618 }
619
620
621 static struct ccl_rpn_node *search_terms2(CCL_parser cclp,
622                                           ccl_qualifier_t *qa)
623 {
624     if (KIND == CCL_TOK_LP)
625     {
626         struct ccl_rpn_node *p;
627         ADVANCE;
628         if (!(p = find_spec(cclp, qa)))
629             return NULL;
630         if (KIND != CCL_TOK_RP)
631         {
632             cclp->error_code = CCL_ERR_RP_EXPECTED;
633             ccl_rpn_delete(p);
634             return NULL;
635         }
636         ADVANCE;
637         return p;
638     }
639     else
640     {
641         static int list[] = {
642             CCL_TOK_TERM, CCL_TOK_COMMA,CCL_TOK_EQ,
643             CCL_TOK_REL, CCL_TOK_SET, -1};
644
645         return search_term_x(cclp, qa, list, 1);
646     }
647 }
648
649
650
651 static
652 struct ccl_rpn_node *qualifiers_order(CCL_parser cclp,
653                                       ccl_qualifier_t *ap, char *attset)
654 {
655     int rel = 0;
656     struct ccl_rpn_node *p;
657
658     if (cclp->look_token->len == 1)
659     {
660         if (cclp->look_token->name[0] == '<')
661             rel = 1;
662         else if (cclp->look_token->name[0] == '=')
663             rel = 3;
664         else if (cclp->look_token->name[0] == '>')
665             rel = 5;
666     }
667     else if (cclp->look_token->len == 2)
668     {
669         if (!memcmp(cclp->look_token->name, "<=", 2))
670             rel = 2;
671         else if (!memcmp(cclp->look_token->name, ">=", 2))
672             rel = 4;
673         else if (!memcmp(cclp->look_token->name, "<>", 2))
674             rel = 6;
675     }
676     if (!rel)
677     {
678         cclp->error_code = CCL_ERR_BAD_RELATION;
679         return NULL;
680     }
681     ADVANCE;  /* skip relation */
682     if (rel == 3 &&
683         qual_val_type(ap, CCL_BIB1_REL, CCL_BIB1_REL_PORDER, 0))
684     {
685         /* allow - inside term and treat it as range _always_ */
686         /* relation is =. Extract "embedded" - to separate terms */
687         if (KIND == CCL_TOK_TERM)
688         {
689             size_t i;
690             for (i = 0; i<cclp->look_token->len; i++)
691             {
692                 if (cclp->look_token->name[i] == '-')
693                     break;
694             }
695
696             if (cclp->look_token->len > 1 && i == 0)
697             {   /*  -xx*/
698                 struct ccl_token *ntoken = ccl_token_add(cclp->look_token);
699
700                 ntoken->kind = CCL_TOK_TERM;
701                 ntoken->name = cclp->look_token->name + 1;
702                 ntoken->len = cclp->look_token->len - 1;
703
704                 cclp->look_token->len = 1;
705                 cclp->look_token->name = "-";
706             }
707             else if (cclp->look_token->len > 1 && i == cclp->look_token->len-1)
708             {   /* xx- */
709                 struct ccl_token *ntoken = ccl_token_add(cclp->look_token);
710
711                 ntoken->kind = CCL_TOK_TERM;
712                 ntoken->name = "-";
713                 ntoken->len = 1;
714
715                 (cclp->look_token->len)--;
716             }
717             else if (cclp->look_token->len > 2 && i < cclp->look_token->len)
718             {   /* xx-yy */
719                 struct ccl_token *ntoken1 = ccl_token_add(cclp->look_token);
720                 struct ccl_token *ntoken2 = ccl_token_add(ntoken1);
721
722                 ntoken1->kind = CCL_TOK_TERM;  /* generate - */
723                 ntoken1->name = "-";
724                 ntoken1->len = 1;
725
726                 ntoken2->kind = CCL_TOK_TERM;  /* generate yy */
727                 ntoken2->name = cclp->look_token->name + (i+1);
728                 ntoken2->len = cclp->look_token->len - (i+1);
729
730                 cclp->look_token->len = i;     /* adjust xx */
731             }
732             else if (i == cclp->look_token->len &&
733                      cclp->look_token->next &&
734                      cclp->look_token->next->kind == CCL_TOK_TERM &&
735                      cclp->look_token->next->len > 1 &&
736                      cclp->look_token->next->name[0] == '-')
737
738             {   /* xx -yy */
739                 /* we _know_ that xx does not have - in it */
740                 struct ccl_token *ntoken = ccl_token_add(cclp->look_token);
741
742                 ntoken->kind = CCL_TOK_TERM;    /* generate - */
743                 ntoken->name = "-";
744                 ntoken->len = 1;
745
746                 (ntoken->next->name)++;        /* adjust yy */
747                 (ntoken->next->len)--;
748             }
749         }
750     }
751
752     if (rel == 3 &&
753         KIND == CCL_TOK_TERM &&
754         cclp->look_token->next && cclp->look_token->next->len == 1 &&
755         cclp->look_token->next->name[0] == '-')
756     {
757         struct ccl_rpn_node *p1;
758         if (!(p1 = search_term(cclp, ap)))
759             return NULL;
760         ADVANCE;                   /* skip '-' */
761         if (KIND == CCL_TOK_TERM)  /* = term - term  ? */
762         {
763             struct ccl_rpn_node *p2;
764
765             if (!(p2 = search_term(cclp, ap)))
766             {
767                 ccl_rpn_delete(p1);
768                 return NULL;
769             }
770             p = ccl_rpn_node_create(CCL_RPN_AND);
771             p->u.p[0] = p1;
772             ccl_add_attr_numeric(p1, attset, CCL_BIB1_REL, 4);
773             p->u.p[1] = p2;
774             ccl_add_attr_numeric(p2, attset, CCL_BIB1_REL, 2);
775             return p;
776         }
777         else                       /* = term -    */
778         {
779             ccl_add_attr_numeric(p1, attset, CCL_BIB1_REL, 4);
780             return p1;
781         }
782     }
783     else if (rel == 3 &&
784              cclp->look_token->len == 1 &&
785              cclp->look_token->name[0] == '-')   /* = - term  ? */
786     {
787         ADVANCE;
788         if (!(p = search_term(cclp, ap)))
789             return NULL;
790         ccl_add_attr_numeric(p, attset, CCL_BIB1_REL, 2);
791         return p;
792     }
793     else
794     {
795         if (!(p = search_terms(cclp, ap)))
796             return NULL;
797         ccl_add_attr_numeric(p, attset, CCL_BIB1_REL, rel);
798         return p;
799     }
800     return NULL;
801 }
802
803 static
804 struct ccl_rpn_node *qualifier_relation(CCL_parser cclp, ccl_qualifier_t *ap)
805 {
806     char *attset;
807
808     if (qual_val_type(ap, CCL_BIB1_REL, CCL_BIB1_REL_ORDER, &attset)
809         || qual_val_type(ap, CCL_BIB1_REL, CCL_BIB1_REL_PORDER, &attset))
810         return qualifiers_order(cclp, ap, attset);
811
812     /* unordered relation */
813     if (KIND != CCL_TOK_EQ)
814     {
815         cclp->error_code = CCL_ERR_EQ_EXPECTED;
816         return NULL;
817     }
818     ADVANCE;
819     return search_terms(cclp, ap);
820 }
821
822 /**
823  * qualifier_list: Parse CCL qualifiers and search terms.
824  * cclp:   CCL Parser
825  * la:     Token pointer to RELATION token.
826  * qa:     Qualifier attributes already applied.
827  * return: pointer to node(s); NULL on error.
828  */
829 static struct ccl_rpn_node *qualifier_list(CCL_parser cclp,
830                                            struct ccl_token *la,
831                                            ccl_qualifier_t *qa)
832 {
833     struct ccl_token *lookahead = cclp->look_token;
834     struct ccl_token *look_start = cclp->look_token;
835     ccl_qualifier_t *ap;
836     struct ccl_rpn_node *node = 0;
837     const char **field_str;
838     int no = 0;
839     int seq = 0;
840     int i;
841     int mode_merge = 1;
842 #if 0
843     if (qa)
844     {
845         cclp->error_code = CCL_ERR_DOUBLE_QUAL;
846         return NULL;
847     }
848 #endif
849     for (lookahead = cclp->look_token; lookahead != la;
850          lookahead=lookahead->next)
851         no++;
852     if (qa)
853         for (i=0; qa[i]; i++)
854             no++;
855     ap = (ccl_qualifier_t *)xmalloc((no ? (no+1) : 2) * sizeof(*ap));
856     ccl_assert(ap);
857
858     field_str = ccl_qual_search_special(cclp->bibset, "field");
859     if (field_str)
860     {
861         if (!strcmp(field_str[0], "or"))
862             mode_merge = 0;
863         else if (!strcmp(field_str[0], "merge"))
864             mode_merge = 1;
865     }
866     if (!mode_merge)
867     {
868         /* consider each field separately and OR */
869         lookahead = look_start;
870         while (lookahead != la)
871         {
872             ap[1] = 0;
873             seq = 0;
874             while ((ap[0] = ccl_qual_search(cclp, lookahead->name,
875                                             lookahead->len, seq)) != 0)
876             {
877                 struct ccl_rpn_node *node_sub;
878                 cclp->look_token = la;
879
880                 node_sub = qualifier_relation(cclp, ap);
881                 if (!node_sub)
882                 {
883                     ccl_rpn_delete(node);
884                     xfree(ap);
885                     return 0;
886                 }
887                 if (node)
888                 {
889                     struct ccl_rpn_node *node_this =
890                         ccl_rpn_node_create(CCL_RPN_OR);
891                     node_this->u.p[0] = node;
892                     node_this->u.p[1] = node_sub;
893                     node = node_this;
894                 }
895                 else
896                     node = node_sub;
897                 seq++;
898             }
899             if (seq == 0)
900             {
901                 cclp->look_token = lookahead;
902                 cclp->error_code = CCL_ERR_UNKNOWN_QUAL;
903                 xfree(ap);
904                 return NULL;
905             }
906             lookahead = lookahead->next;
907             if (lookahead->kind == CCL_TOK_COMMA)
908                 lookahead = lookahead->next;
909         }
910     }
911     else
912     {
913         /* merge attributes from ALL fields - including inherited ones */
914         while (1)
915         {
916             struct ccl_rpn_node *node_sub;
917             int found = 0;
918             lookahead = look_start;
919             for (i = 0; lookahead != la; i++)
920             {
921                 ap[i] = ccl_qual_search(cclp, lookahead->name,
922                                          lookahead->len, seq);
923                 if (ap[i])
924                     found++;
925                 if (!ap[i] && seq > 0)
926                     ap[i] = ccl_qual_search(cclp, lookahead->name,
927                                              lookahead->len, 0);
928                 if (!ap[i])
929                 {
930                     cclp->look_token = lookahead;
931                     cclp->error_code = CCL_ERR_UNKNOWN_QUAL;
932                     xfree(ap);
933                     return NULL;
934                 }
935                 lookahead = lookahead->next;
936                 if (lookahead->kind == CCL_TOK_COMMA)
937                     lookahead = lookahead->next;
938             }
939             if (qa)
940             {
941                 ccl_qualifier_t *qa0 = qa;
942
943                 while (*qa0)
944                     ap[i++] = *qa0++;
945             }
946             ap[i] = NULL;
947
948             if (!found)
949                 break;
950
951             cclp->look_token = lookahead;
952
953             node_sub = qualifier_relation(cclp, ap);
954             if (!node_sub)
955             {
956                 ccl_rpn_delete(node);
957                 break;
958             }
959             if (node)
960             {
961                 struct ccl_rpn_node *node_this =
962                     ccl_rpn_node_create(CCL_RPN_OR);
963                 node_this->u.p[0] = node;
964                 node_this->u.p[1] = node_sub;
965                 node = node_this;
966             }
967             else
968                 node = node_sub;
969             seq++;
970         }
971     }
972     xfree(ap);
973     return node;
974 }
975
976
977 /**
978  * search_terms: Parse CCL search terms - including proximity.
979  * cclp:   CCL Parser
980  * qa:     Qualifier attributes already applied.
981  * return: pointer to node(s); NULL on error.
982  */
983 static struct ccl_rpn_node *search_terms(CCL_parser cclp, ccl_qualifier_t *qa)
984 {
985     static int list[] = {
986         CCL_TOK_TERM, CCL_TOK_COMMA,CCL_TOK_EQ,
987         CCL_TOK_REL, CCL_TOK_SET, -1};
988     struct ccl_rpn_node *p1, *p2, *pn;
989     p1 = search_terms2(cclp, qa);
990     if (!p1)
991         return NULL;
992     while (1)
993     {
994         if (KIND == CCL_TOK_PROX)
995         {
996             struct ccl_rpn_node *p_prox = 0;
997             /* ! word order specified */
998             /* % word order not specified */
999             p_prox = ccl_rpn_node_create(CCL_RPN_TERM);
1000             p_prox->u.t.term = (char *) xmalloc(1 + cclp->look_token->len);
1001             memcpy(p_prox->u.t.term, cclp->look_token->name,
1002                    cclp->look_token->len);
1003             p_prox->u.t.term[cclp->look_token->len] = 0;
1004             p_prox->u.t.attr_list = 0;
1005
1006             ADVANCE;
1007             p2 = search_terms2(cclp, qa);
1008             if (!p2)
1009             {
1010                 ccl_rpn_delete(p1);
1011                 return NULL;
1012             }
1013             pn = ccl_rpn_node_create(CCL_RPN_PROX);
1014             pn->u.p[0] = p1;
1015             pn->u.p[1] = p2;
1016             pn->u.p[2] = p_prox;
1017             p1 = pn;
1018         }
1019         else if (is_term_ok(KIND, list))
1020         {
1021             p2 = search_terms2(cclp, qa);
1022             if (!p2)
1023             {
1024                 ccl_rpn_delete(p1);
1025                 return NULL;
1026             }
1027             pn = ccl_rpn_node_create(CCL_RPN_PROX);
1028             pn->u.p[0] = p1;
1029             pn->u.p[1] = p2;
1030             pn->u.p[2] = 0;
1031             p1 = pn;
1032         }
1033         else
1034             break;
1035     }
1036     return p1;
1037 }
1038
1039 /**
1040  * search_elements: Parse CCL search elements
1041  * cclp:   CCL Parser
1042  * qa:     Qualifier attributes already applied.
1043  * return: pointer to node(s); NULL on error.
1044  */
1045 static struct ccl_rpn_node *search_elements(CCL_parser cclp,
1046                                             ccl_qualifier_t *qa)
1047 {
1048     struct ccl_rpn_node *p1;
1049     struct ccl_token *lookahead;
1050     if (KIND == CCL_TOK_SET)
1051     {
1052         ADVANCE;
1053         if (KIND == CCL_TOK_EQ)
1054             ADVANCE;
1055         if (KIND != CCL_TOK_TERM)
1056         {
1057             cclp->error_code = CCL_ERR_SETNAME_EXPECTED;
1058             return NULL;
1059         }
1060         p1 = ccl_rpn_node_create(CCL_RPN_SET);
1061         p1->u.setname = copy_token_name(cclp->look_token);
1062         ADVANCE;
1063         return p1;
1064     }
1065     lookahead = cclp->look_token;
1066
1067     while (lookahead->kind==CCL_TOK_TERM)
1068     {
1069         lookahead = lookahead->next;
1070         if (lookahead->kind == CCL_TOK_REL || lookahead->kind == CCL_TOK_EQ)
1071             return qualifier_list(cclp, lookahead, qa);
1072         if (lookahead->kind != CCL_TOK_COMMA)
1073             break;
1074         lookahead = lookahead->next;
1075     }
1076     if (qa || lookahead->kind == CCL_TOK_LP)
1077         return search_terms(cclp, qa);
1078     else
1079     {
1080         ccl_qualifier_t qa[2];
1081         struct ccl_rpn_node *node = 0;
1082         int seq;
1083         lookahead = cclp->look_token;
1084
1085         qa[1] = 0;
1086         for(seq = 0; ;seq++)
1087         {
1088             struct ccl_rpn_node *node_sub;
1089             qa[0] = ccl_qual_search(cclp, "term", 4, seq);
1090             if (!qa[0])
1091                 break;
1092
1093             cclp->look_token = lookahead;
1094
1095             node_sub = search_terms(cclp, qa);
1096             if (!node_sub)
1097             {
1098                 ccl_rpn_delete(node);
1099                 return 0;
1100             }
1101             if (node)
1102             {
1103                 struct ccl_rpn_node *node_this =
1104                     ccl_rpn_node_create(CCL_RPN_OR);
1105                 node_this->u.p[0] = node;
1106                 node_this->u.p[1] = node_sub;
1107                 node_this->u.p[2] = 0;
1108                 node = node_this;
1109             }
1110             else
1111                 node = node_sub;
1112         }
1113         if (!node)
1114             node = search_terms(cclp, 0);
1115         return node;
1116     }
1117 }
1118
1119 /**
1120  * find_spec: Parse CCL find specification
1121  * cclp:   CCL Parser
1122  * qa:     Qualifier attributes already applied.
1123  * return: pointer to node(s); NULL on error.
1124  */
1125 static struct ccl_rpn_node *find_spec(CCL_parser cclp, ccl_qualifier_t *qa)
1126 {
1127     struct ccl_rpn_node *p1, *p2, *pn;
1128     if (!(p1 = search_elements(cclp, qa)))
1129         return NULL;
1130     while (1)
1131     {
1132         switch (KIND)
1133         {
1134         case CCL_TOK_AND:
1135             ADVANCE;
1136             p2 = search_elements(cclp, qa);
1137             if (!p2)
1138             {
1139                 ccl_rpn_delete(p1);
1140                 return NULL;
1141             }
1142             pn = ccl_rpn_node_create(CCL_RPN_AND);
1143             pn->u.p[0] = p1;
1144             pn->u.p[1] = p2;
1145             pn->u.p[2] = 0;
1146             p1 = pn;
1147             continue;
1148         case CCL_TOK_OR:
1149             ADVANCE;
1150             p2 = search_elements(cclp, qa);
1151             if (!p2)
1152             {
1153                 ccl_rpn_delete(p1);
1154                 return NULL;
1155             }
1156             pn = ccl_rpn_node_create(CCL_RPN_OR);
1157             pn->u.p[0] = p1;
1158             pn->u.p[1] = p2;
1159             pn->u.p[2] = 0;
1160             p1 = pn;
1161             continue;
1162         case CCL_TOK_NOT:
1163             ADVANCE;
1164             p2 = search_elements(cclp, qa);
1165             if (!p2)
1166             {
1167                 ccl_rpn_delete(p1);
1168                 return NULL;
1169             }
1170             pn = ccl_rpn_node_create(CCL_RPN_NOT);
1171             pn->u.p[0] = p1;
1172             pn->u.p[1] = p2;
1173             pn->u.p[2] = 0;
1174             p1 = pn;
1175             continue;
1176         }
1177         break;
1178     }
1179     return p1;
1180 }
1181
1182 struct ccl_rpn_node *ccl_parser_find_str(CCL_parser cclp, const char *str)
1183 {
1184     struct ccl_rpn_node *p;
1185     struct ccl_token *list = ccl_parser_tokenize(cclp, str);
1186     p = ccl_parser_find_token(cclp, list);
1187     ccl_token_del(list);
1188     return p;
1189 }
1190
1191 struct ccl_rpn_node *ccl_parser_find_token(CCL_parser cclp,
1192                                            struct ccl_token *list)
1193 {
1194     struct ccl_rpn_node *p;
1195
1196     cclp->look_token = list;
1197     p = find_spec(cclp, NULL);
1198     if (p && KIND != CCL_TOK_EOL)
1199     {
1200         if (KIND == CCL_TOK_RP)
1201             cclp->error_code = CCL_ERR_BAD_RP;
1202         else
1203             cclp->error_code = CCL_ERR_OP_EXPECTED;
1204         ccl_rpn_delete(p);
1205         p = NULL;
1206     }
1207     cclp->error_pos = cclp->look_token->name;
1208     if (p)
1209         cclp->error_code = CCL_ERR_OK;
1210     else
1211         cclp->error_code = cclp->error_code;
1212     return p;
1213 }
1214
1215 /**
1216  * ccl_find_str: Parse CCL find - string representation
1217  * bibset:  Bibset to be used for the parsing
1218  * str:     String to be parsed
1219  * error:   Pointer to integer. Holds error no. on completion.
1220  * pos:     Pointer to char position. Holds approximate error position.
1221  * return:  RPN tree on successful completion; NULL otherwise.
1222  */
1223 struct ccl_rpn_node *ccl_find_str(CCL_bibset bibset, const char *str,
1224                                   int *error, int *pos)
1225 {
1226     CCL_parser cclp = ccl_parser_create(bibset);
1227     struct ccl_token *list;
1228     struct ccl_rpn_node *p;
1229
1230     list = ccl_parser_tokenize(cclp, str);
1231     p = ccl_parser_find_token(cclp, list);
1232
1233     *error = cclp->error_code;
1234     if (*error)
1235         *pos = cclp->error_pos - str;
1236     ccl_parser_destroy(cclp);
1237     ccl_token_del(list);
1238     return p;
1239 }
1240
1241 /*
1242  * Local variables:
1243  * c-basic-offset: 4
1244  * c-file-style: "Stroustrup"
1245  * indent-tabs-mode: nil
1246  * End:
1247  * vim: shiftwidth=4 tabstop=8 expandtab
1248  */
1249