Using proper nmems for more rsets around the system,
[idzebra-moved-to-github.git] / index / zrpn.c
1 /* $Id: zrpn.c,v 1.148 2004-08-31 14:43:41 heikki Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
3    Index Data Aps
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23
24 #include <stdio.h>
25 #include <assert.h>
26 #ifdef WIN32
27 #include <io.h>
28 #else
29 #include <unistd.h>
30 #endif
31 #include <ctype.h>
32
33 #include "index.h"
34 #include <zebra_xpath.h>
35
36 #include <charmap.h>
37 #include <rstemp.h>
38 #include <rsnull.h>
39 #include <rsbool.h>
40 #include <rsmultior.h>
41 #include <rsbetween.h>
42 #include <rsprox.h>
43
44 struct rpn_char_map_info {
45     ZebraMaps zm;
46     int reg_type;
47 };
48
49 typedef struct {
50     int type;
51     int major;
52     int minor;
53     Z_AttributesPlusTerm *zapt;
54 } AttrType;
55
56
57 static const char **rpn_char_map_handler (void *vp, const char **from, int len)
58 {
59     struct rpn_char_map_info *p = (struct rpn_char_map_info *) vp;
60     const char **out = zebra_maps_input (p->zm, p->reg_type, from, len);
61 #if 0
62     if (out && *out)
63     {
64         const char *outp = *out;
65         yaz_log (LOG_LOG, "---");
66         while (*outp)
67         {
68             yaz_log (LOG_LOG, "%02X", *outp);
69             outp++;
70         }
71     }
72 #endif
73     return out;
74 }
75
76 static void rpn_char_map_prepare (struct zebra_register *reg, int reg_type,
77                                   struct rpn_char_map_info *map_info)
78 {
79     map_info->zm = reg->zebra_maps;
80     map_info->reg_type = reg_type;
81     dict_grep_cmap (reg->dict, map_info, rpn_char_map_handler);
82 }
83
84 static int attr_find_ex (AttrType *src, oid_value *attributeSetP,
85                          const char **string_value)
86 {
87     int num_attributes;
88
89     num_attributes = src->zapt->attributes->num_attributes;
90     while (src->major < num_attributes)
91     {
92         Z_AttributeElement *element;
93
94         element = src->zapt->attributes->attributes[src->major];
95         if (src->type == *element->attributeType)
96         {
97             switch (element->which) 
98             {
99             case Z_AttributeValue_numeric:
100                 ++(src->major);
101                 if (element->attributeSet && attributeSetP)
102                 {
103                     oident *attrset;
104
105                     attrset = oid_getentbyoid (element->attributeSet);
106                     *attributeSetP = attrset->value;
107                 }
108                 return *element->value.numeric;
109                 break;
110             case Z_AttributeValue_complex:
111                 if (src->minor >= element->value.complex->num_list)
112                     break;
113                 if (element->attributeSet && attributeSetP)
114                 {
115                     oident *attrset;
116                     
117                     attrset = oid_getentbyoid (element->attributeSet);
118                     *attributeSetP = attrset->value;
119                 }
120                 if (element->value.complex->list[src->minor]->which ==  
121                     Z_StringOrNumeric_numeric)
122                 {
123                     ++(src->minor);
124                     return
125                         *element->value.complex->list[src->minor-1]->u.numeric;
126                 }
127                 else if (element->value.complex->list[src->minor]->which ==  
128                          Z_StringOrNumeric_string)
129                 {
130                     if (!string_value)
131                         break;
132                     ++(src->minor);
133                     *string_value = 
134                         element->value.complex->list[src->minor-1]->u.string;
135                     return -2;
136                 }
137                 else
138                     break;
139             default:
140                 assert (0);
141             }
142         }
143         ++(src->major);
144     }
145     return -1;
146 }
147
148 static int attr_find (AttrType *src, oid_value *attributeSetP)
149 {
150     return attr_find_ex (src, attributeSetP, 0);
151 }
152
153 static void attr_init (AttrType *src, Z_AttributesPlusTerm *zapt,
154                        int type)
155 {
156     src->zapt = zapt;
157     src->type = type;
158     src->major = 0;
159     src->minor = 0;
160 }
161
162 #define TERM_COUNT        
163        
164 struct grep_info {        
165 #ifdef TERM_COUNT        
166     int *term_no;        
167 #endif        
168     ISAMC_P *isam_p_buf;
169     int isam_p_size;        
170     int isam_p_indx;
171     ZebraHandle zh;
172     int reg_type;
173     ZebraSet termset;
174 };        
175
176 static void term_untrans  (ZebraHandle zh, int reg_type,
177                            char *dst, const char *src)
178 {
179     int len = 0;
180     while (*src)
181     {
182         const char *cp = zebra_maps_output (zh->reg->zebra_maps,
183                                             reg_type, &src);
184         if (!cp && len < IT_MAX_WORD-1)
185             dst[len++] = *src++;
186         else
187             while (*cp && len < IT_MAX_WORD-1)
188                 dst[len++] = *cp++;
189     }
190     dst[len] = '\0';
191 }
192
193 static void add_isam_p (const char *name, const char *info,
194                         struct grep_info *p)
195 {
196     if (p->isam_p_indx == p->isam_p_size)
197     {
198         ISAMC_P *new_isam_p_buf;
199 #ifdef TERM_COUNT        
200         int *new_term_no;        
201 #endif
202         p->isam_p_size = 2*p->isam_p_size + 100;
203         new_isam_p_buf = (ISAMC_P *) xmalloc (sizeof(*new_isam_p_buf) *
204                                              p->isam_p_size);
205         if (p->isam_p_buf)
206         {
207             memcpy (new_isam_p_buf, p->isam_p_buf,
208                     p->isam_p_indx * sizeof(*p->isam_p_buf));
209             xfree (p->isam_p_buf);
210         }
211         p->isam_p_buf = new_isam_p_buf;
212
213 #ifdef TERM_COUNT
214         new_term_no = (int *) xmalloc (sizeof(*new_term_no) *
215                                        p->isam_p_size);
216         if (p->term_no)
217         {
218             memcpy (new_term_no, p->isam_p_buf,
219                     p->isam_p_indx * sizeof(*p->term_no));
220             xfree (p->term_no);
221         }
222         p->term_no = new_term_no;
223 #endif
224     }
225     assert (*info == sizeof(*p->isam_p_buf));
226     memcpy (p->isam_p_buf + p->isam_p_indx, info+1, sizeof(*p->isam_p_buf));
227
228 #if 1
229     if (p->termset)
230     {
231         const char *db;
232         int set, use;
233         char term_tmp[IT_MAX_WORD];
234         int su_code = 0;
235         int len = key_SU_decode (&su_code, name);
236         
237         term_untrans  (p->zh, p->reg_type, term_tmp, name+len+1);
238         logf (LOG_LOG, "grep: %d %c %s", su_code, name[len], term_tmp);
239         zebraExplain_lookup_ord (p->zh->reg->zei,
240                                  su_code, &db, &set, &use);
241         logf (LOG_LOG, "grep:  set=%d use=%d db=%s", set, use, db);
242         
243         resultSetAddTerm (p->zh, p->termset, name[len], db,
244                           set, use, term_tmp);
245     }
246 #endif
247     (p->isam_p_indx)++;
248 }
249
250 static int grep_handle (char *name, const char *info, void *p)
251 {
252     add_isam_p (name, info, (struct grep_info *) p);
253     return 0;
254 }
255
256 static int term_pre (ZebraMaps zebra_maps, int reg_type, const char **src,
257                      const char *ct1, const char *ct2)
258 {
259     const char *s1, *s0 = *src;
260     const char **map;
261
262     /* skip white space */
263     while (*s0)
264     {
265         if (ct1 && strchr (ct1, *s0))
266             break;
267         if (ct2 && strchr (ct2, *s0))
268             break;
269         s1 = s0;
270         map = zebra_maps_input (zebra_maps, reg_type, &s1, strlen(s1));
271         if (**map != *CHR_SPACE)
272             break;
273         s0 = s1;
274     }
275     *src = s0;
276     return *s0;
277 }
278
279 #define REGEX_CHARS " []()|.*+?!"
280
281 /* term_100: handle term, where trunc=none (no operators at all) */
282 static int term_100 (ZebraMaps zebra_maps, int reg_type,
283                      const char **src, char *dst, int space_split,
284                      char *dst_term)
285 {
286     const char *s0, *s1;
287     const char **map;
288     int i = 0;
289     int j = 0;
290
291     const char *space_start = 0;
292     const char *space_end = 0;
293
294     if (!term_pre (zebra_maps, reg_type, src, NULL, NULL))
295         return 0;
296     s0 = *src;
297     while (*s0)
298     {
299         s1 = s0;
300         map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
301         if (space_split)
302         {
303             if (**map == *CHR_SPACE)
304                 break;
305         }
306         else  /* complete subfield only. */
307         {
308             if (**map == *CHR_SPACE)
309             {   /* save space mapping for later  .. */
310                 space_start = s1;
311                 space_end = s0;
312                 continue;
313             }
314             else if (space_start)
315             {   /* reload last space */
316                 while (space_start < space_end)
317                 {
318                     if (strchr (REGEX_CHARS, *space_start))
319                         dst[i++] = '\\';
320                     dst_term[j++] = *space_start;
321                     dst[i++] = *space_start++;
322                 }
323                 /* and reset */
324                 space_start = space_end = 0;
325             }
326         }
327         /* add non-space char */
328         while (s1 < s0)
329         {
330             if (strchr(REGEX_CHARS, *s1))
331                 dst[i++] = '\\';
332             dst_term[j++] = *s1;
333             dst[i++] = *s1++;
334         }
335     }
336     dst[i] = '\0';
337     dst_term[j] = '\0';
338     *src = s0;
339     return i;
340 }
341
342 /* term_101: handle term, where trunc=Process # */
343 static int term_101 (ZebraMaps zebra_maps, int reg_type,
344                      const char **src, char *dst, int space_split,
345                      char *dst_term)
346 {
347     const char *s0, *s1;
348     const char **map;
349     int i = 0;
350     int j = 0;
351
352     if (!term_pre (zebra_maps, reg_type, src, "#", "#"))
353         return 0;
354     s0 = *src;
355     while (*s0)
356     {
357         if (*s0 == '#')
358         {
359             dst[i++] = '.';
360             dst[i++] = '*';
361             dst_term[j++] = *s0++;
362         }
363         else
364         {
365             s1 = s0;
366             map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
367             if (space_split && **map == *CHR_SPACE)
368                 break;
369             while (s1 < s0)
370             {
371                 if (strchr(REGEX_CHARS, *s1))
372                     dst[i++] = '\\';
373                 dst_term[j++] = *s1;
374                 dst[i++] = *s1++;
375             }
376         }
377     }
378     dst[i] = '\0';
379     dst_term[j++] = '\0';
380     *src = s0;
381     return i;
382 }
383
384 /* term_103: handle term, where trunc=re-2 (regular expressions) */
385 static int term_103 (ZebraMaps zebra_maps, int reg_type, const char **src,
386                      char *dst, int *errors, int space_split,
387                      char *dst_term)
388 {
389     int i = 0;
390     int j = 0;
391     const char *s0, *s1;
392     const char **map;
393
394     if (!term_pre (zebra_maps, reg_type, src, "^\\()[].*+?|", "("))
395         return 0;
396     s0 = *src;
397     if (errors && *s0 == '+' && s0[1] && s0[2] == '+' && s0[3] &&
398         isdigit (s0[1]))
399     {
400         *errors = s0[1] - '0';
401         s0 += 3;
402         if (*errors > 3)
403             *errors = 3;
404     }
405     while (*s0)
406     {
407         if (strchr ("^\\()[].*+?|-", *s0))
408         {
409             dst_term[j++] = *s0;
410             dst[i++] = *s0++;
411         }
412         else
413         {
414             s1 = s0;
415             map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
416             if (**map == *CHR_SPACE)
417                 break;
418             while (s1 < s0)
419             {
420                 if (strchr(REGEX_CHARS, *s1))
421                     dst[i++] = '\\';
422                 dst_term[j++] = *s1;
423                 dst[i++] = *s1++;
424             }
425         }
426     }
427     dst[i] = '\0';
428     dst_term[j] = '\0';
429     *src = s0;
430     return i;
431 }
432
433 /* term_103: handle term, where trunc=re-1 (regular expressions) */
434 static int term_102 (ZebraMaps zebra_maps, int reg_type, const char **src,
435                      char *dst, int space_split, char *dst_term)
436 {
437     return term_103 (zebra_maps, reg_type, src, dst, NULL, space_split,
438                      dst_term);
439 }
440
441
442 /* term_104: handle term, where trunc=Process # and ! */
443 static int term_104 (ZebraMaps zebra_maps, int reg_type,
444                      const char **src, char *dst, int space_split,
445                      char *dst_term)
446 {
447     const char *s0, *s1;
448     const char **map;
449     int i = 0;
450     int j = 0;
451
452     if (!term_pre (zebra_maps, reg_type, src, "?*#", "?*#"))
453         return 0;
454     s0 = *src;
455     while (*s0)
456     {
457         if (*s0 == '?')
458         {
459             dst_term[j++] = *s0++;
460             if (*s0 >= '0' && *s0 <= '9')
461             {
462                 int limit = 0;
463                 while (*s0 >= '0' && *s0 <= '9')
464                 {
465                     limit = limit * 10 + (*s0 - '0');
466                     dst_term[j++] = *s0++;
467                 }
468                 if (limit > 20)
469                     limit = 20;
470                 while (--limit >= 0)
471                 {
472                     dst[i++] = '.';
473                     dst[i++] = '?';
474                 }
475             }
476             else
477             {
478                 dst[i++] = '.';
479                 dst[i++] = '*';
480             }
481         }
482         else if (*s0 == '*')
483         {
484             dst[i++] = '.';
485             dst[i++] = '*';
486             dst_term[j++] = *s0++;
487         }
488         else if (*s0 == '#')
489         {
490             dst[i++] = '.';
491             dst_term[j++] = *s0++;
492         }
493         {
494             s1 = s0;
495             map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
496             if (space_split && **map == *CHR_SPACE)
497                 break;
498             while (s1 < s0)
499             {
500                 if (strchr(REGEX_CHARS, *s1))
501                     dst[i++] = '\\';
502                 dst_term[j++] = *s1;
503                 dst[i++] = *s1++;
504             }
505         }
506     }
507     dst[i] = '\0';
508     dst_term[j++] = '\0';
509     *src = s0;
510     return i;
511 }
512
513 /* term_105/106: handle term, where trunc=Process * and ! and right trunc */
514 static int term_105 (ZebraMaps zebra_maps, int reg_type,
515                      const char **src, char *dst, int space_split,
516                      char *dst_term, int right_truncate)
517 {
518     const char *s0, *s1;
519     const char **map;
520     int i = 0;
521     int j = 0;
522
523     if (!term_pre (zebra_maps, reg_type, src, "*!", "*!"))
524         return 0;
525     s0 = *src;
526     while (*s0)
527     {
528         if (*s0 == '*')
529         {
530             dst[i++] = '.';
531             dst[i++] = '*';
532             dst_term[j++] = *s0++;
533         }
534         else if (*s0 == '!')
535         {
536             dst[i++] = '.';
537             dst_term[j++] = *s0++;
538         }
539         {
540             s1 = s0;
541             map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
542             if (space_split && **map == *CHR_SPACE)
543                 break;
544             while (s1 < s0)
545             {
546                 if (strchr(REGEX_CHARS, *s1))
547                     dst[i++] = '\\';
548                 dst_term[j++] = *s1;
549                 dst[i++] = *s1++;
550             }
551         }
552     }
553     if (right_truncate)
554     {
555         dst[i++] = '.';
556         dst[i++] = '*';
557     }
558     dst[i] = '\0';
559     
560     dst_term[j++] = '\0';
561     *src = s0;
562     return i;
563 }
564
565
566 /* gen_regular_rel - generate regular expression from relation
567  *  val:     border value (inclusive)
568  *  islt:    1 if <=; 0 if >=.
569  */
570 static void gen_regular_rel (char *dst, int val, int islt)
571 {
572     int dst_p;
573     int w, d, i;
574     int pos = 0;
575     char numstr[20];
576
577     logf (LOG_DEBUG, "gen_regular_rel. val=%d, islt=%d", val, islt);
578     if (val >= 0)
579     {
580         if (islt)
581             strcpy (dst, "(-[0-9]+|(");
582         else
583             strcpy (dst, "((");
584     } 
585     else
586     {
587         if (!islt)
588         {
589             strcpy (dst, "([0-9]+|-(");
590             dst_p = strlen (dst);
591             islt = 1;
592         }
593         else
594         {
595             strcpy (dst, "(-(");
596             islt = 0;
597         }
598         val = -val;
599     }
600     dst_p = strlen (dst);
601     sprintf (numstr, "%d", val);
602     for (w = strlen(numstr); --w >= 0; pos++)
603     {
604         d = numstr[w];
605         if (pos > 0)
606         {
607             if (islt)
608             {
609                 if (d == '0')
610                     continue;
611                 d--;
612             } 
613             else
614             {
615                 if (d == '9')
616                     continue;
617                 d++;
618             }
619         }
620         
621         strcpy (dst + dst_p, numstr);
622         dst_p = strlen(dst) - pos - 1;
623
624         if (islt)
625         {
626             if (d != '0')
627             {
628                 dst[dst_p++] = '[';
629                 dst[dst_p++] = '0';
630                 dst[dst_p++] = '-';
631                 dst[dst_p++] = d;
632                 dst[dst_p++] = ']';
633             }
634             else
635                 dst[dst_p++] = d;
636         }
637         else
638         {
639             if (d != '9')
640             { 
641                 dst[dst_p++] = '[';
642                 dst[dst_p++] = d;
643                 dst[dst_p++] = '-';
644                 dst[dst_p++] = '9';
645                 dst[dst_p++] = ']';
646             }
647             else
648                 dst[dst_p++] = d;
649         }
650         for (i = 0; i<pos; i++)
651         {
652             dst[dst_p++] = '[';
653             dst[dst_p++] = '0';
654             dst[dst_p++] = '-';
655             dst[dst_p++] = '9';
656             dst[dst_p++] = ']';
657         }
658         dst[dst_p++] = '|';
659     }
660     dst[dst_p] = '\0';
661     if (islt)
662     {
663         /* match everything less than 10^(pos-1) */
664         strcat (dst, "0*");
665         for (i=1; i<pos; i++)
666             strcat (dst, "[0-9]?");
667     }
668     else
669     {
670         /* match everything greater than 10^pos */
671         for (i = 0; i <= pos; i++)
672             strcat (dst, "[0-9]");
673         strcat (dst, "[0-9]*");
674     }
675     strcat (dst, "))");
676 }
677
678 void string_rel_add_char (char **term_p, const char *src, int *indx)
679 {
680     if (src[*indx] == '\\')
681         *(*term_p)++ = src[(*indx)++];
682     *(*term_p)++ = src[(*indx)++];
683 }
684
685 /*
686  *   >  abc     ([b-].*|a[c-].*|ab[d-].*|abc.+)
687  *              ([^-a].*|a[^-b].*ab[^-c].*|abc.+)
688  *   >= abc     ([b-].*|a[c-].*|ab[c-].*)
689  *              ([^-a].*|a[^-b].*|ab[c-].*)
690  *   <  abc     ([-0].*|a[-a].*|ab[-b].*)
691  *              ([^a-].*|a[^b-].*|ab[^c-].*)
692  *   <= abc     ([-0].*|a[-a].*|ab[-b].*|abc)
693  *              ([^a-].*|a[^b-].*|ab[^c-].*|abc)
694  */
695 static int string_relation (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
696                             const char **term_sub, char *term_dict,
697                             oid_value attributeSet,
698                             int reg_type, int space_split, char *term_dst)
699 {
700     AttrType relation;
701     int relation_value;
702     int i;
703     char *term_tmp = term_dict + strlen(term_dict);
704     char term_component[2*IT_MAX_WORD+20];
705
706     attr_init (&relation, zapt, 2);
707     relation_value = attr_find (&relation, NULL);
708
709     logf (LOG_DEBUG, "string relation value=%d", relation_value);
710     switch (relation_value)
711     {
712     case 1:
713         if (!term_100 (zh->reg->zebra_maps, reg_type,
714                        term_sub, term_component,
715                        space_split, term_dst))
716             return 0;
717         logf (LOG_DEBUG, "Relation <");
718         
719         *term_tmp++ = '(';
720         for (i = 0; term_component[i]; )
721         {
722             int j = 0;
723
724             if (i)
725                 *term_tmp++ = '|';
726             while (j < i)
727                 string_rel_add_char (&term_tmp, term_component, &j);
728
729             *term_tmp++ = '[';
730
731             *term_tmp++ = '^';
732             string_rel_add_char (&term_tmp, term_component, &i);
733             *term_tmp++ = '-';
734
735             *term_tmp++ = ']';
736             *term_tmp++ = '.';
737             *term_tmp++ = '*';
738
739             if ((term_tmp - term_dict) > IT_MAX_WORD)
740                 break;
741         }
742         *term_tmp++ = ')';
743         *term_tmp = '\0';
744         break;
745     case 2:
746         if (!term_100 (zh->reg->zebra_maps, reg_type,
747                        term_sub, term_component,
748                        space_split, term_dst))
749             return 0;
750         logf (LOG_DEBUG, "Relation <=");
751
752         *term_tmp++ = '(';
753         for (i = 0; term_component[i]; )
754         {
755             int j = 0;
756
757             while (j < i)
758                 string_rel_add_char (&term_tmp, term_component, &j);
759             *term_tmp++ = '[';
760
761             *term_tmp++ = '^';
762             string_rel_add_char (&term_tmp, term_component, &i);
763             *term_tmp++ = '-';
764
765             *term_tmp++ = ']';
766             *term_tmp++ = '.';
767             *term_tmp++ = '*';
768
769             *term_tmp++ = '|';
770
771             if ((term_tmp - term_dict) > IT_MAX_WORD)
772                 break;
773         }
774         for (i = 0; term_component[i]; )
775             string_rel_add_char (&term_tmp, term_component, &i);
776         *term_tmp++ = ')';
777         *term_tmp = '\0';
778         break;
779     case 5:
780         if (!term_100 (zh->reg->zebra_maps, reg_type,
781                        term_sub, term_component, space_split, term_dst))
782             return 0;
783         logf (LOG_DEBUG, "Relation >");
784
785         *term_tmp++ = '(';
786         for (i = 0; term_component[i];)
787         {
788             int j = 0;
789
790             while (j < i)
791                 string_rel_add_char (&term_tmp, term_component, &j);
792             *term_tmp++ = '[';
793             
794             *term_tmp++ = '^';
795             *term_tmp++ = '-';
796             string_rel_add_char (&term_tmp, term_component, &i);
797
798             *term_tmp++ = ']';
799             *term_tmp++ = '.';
800             *term_tmp++ = '*';
801
802             *term_tmp++ = '|';
803
804             if ((term_tmp - term_dict) > IT_MAX_WORD)
805                 break;
806         }
807         for (i = 0; term_component[i];)
808             string_rel_add_char (&term_tmp, term_component, &i);
809         *term_tmp++ = '.';
810         *term_tmp++ = '+';
811         *term_tmp++ = ')';
812         *term_tmp = '\0';
813         break;
814     case 4:
815         if (!term_100 (zh->reg->zebra_maps, reg_type, term_sub,
816                        term_component, space_split, term_dst))
817             return 0;
818         logf (LOG_DEBUG, "Relation >=");
819
820         *term_tmp++ = '(';
821         for (i = 0; term_component[i];)
822         {
823             int j = 0;
824
825             if (i)
826                 *term_tmp++ = '|';
827             while (j < i)
828                 string_rel_add_char (&term_tmp, term_component, &j);
829             *term_tmp++ = '[';
830
831             if (term_component[i+1])
832             {
833                 *term_tmp++ = '^';
834                 *term_tmp++ = '-';
835                 string_rel_add_char (&term_tmp, term_component, &i);
836             }
837             else
838             {
839                 string_rel_add_char (&term_tmp, term_component, &i);
840                 *term_tmp++ = '-';
841             }
842             *term_tmp++ = ']';
843             *term_tmp++ = '.';
844             *term_tmp++ = '*';
845
846             if ((term_tmp - term_dict) > IT_MAX_WORD)
847                 break;
848         }
849         *term_tmp++ = ')';
850         *term_tmp = '\0';
851         break;
852     case 3:
853     default:
854         logf (LOG_DEBUG, "Relation =");
855         if (!term_100 (zh->reg->zebra_maps, reg_type, term_sub,
856                        term_component, space_split, term_dst))
857             return 0;
858         strcat (term_tmp, "(");
859         strcat (term_tmp, term_component);
860         strcat (term_tmp, ")");
861     }
862     return 1;
863 }
864
865 static int string_term (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
866                         const char **term_sub, 
867                         oid_value attributeSet, NMEM stream,
868                         struct grep_info *grep_info,
869                         int reg_type, int complete_flag,
870                         int num_bases, char **basenames,
871                         char *term_dst, int xpath_use);
872
873 static RSET term_trunc (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
874                         const char **term_sub, 
875                         oid_value attributeSet, NMEM stream,
876                         struct grep_info *grep_info,
877                         int reg_type, int complete_flag,
878                         int num_bases, char **basenames,
879                         char *term_dst,
880                         const char *rank_type, int xpath_use,
881                         NMEM rset_nmem)
882 {
883     int r;
884     grep_info->isam_p_indx = 0;
885     r = string_term (zh, zapt, term_sub, attributeSet, stream, grep_info,
886                      reg_type, complete_flag, num_bases, basenames,
887                      term_dst, xpath_use);
888     if (r < 1)
889         return 0;
890     logf (LOG_DEBUG, "term: %s", term_dst);
891     return rset_trunc (zh, grep_info->isam_p_buf,
892                        grep_info->isam_p_indx, term_dst,
893                        strlen(term_dst), rank_type, 1 /* preserve pos */,
894                        zapt->term->which, rset_nmem);
895 }
896
897
898 static int string_term (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
899                         const char **term_sub, 
900                         oid_value attributeSet, NMEM stream,
901                         struct grep_info *grep_info,
902                         int reg_type, int complete_flag,
903                         int num_bases, char **basenames,
904                         char *term_dst, int xpath_use)
905 {
906     char term_dict[2*IT_MAX_WORD+4000];
907     int j, r, base_no;
908     AttrType truncation;
909     int truncation_value;
910     AttrType use;
911     int use_value;
912     const char *use_string = 0;
913     oid_value curAttributeSet = attributeSet;
914     const char *termp;
915     struct rpn_char_map_info rcmi;
916     int space_split = complete_flag ? 0 : 1;
917
918     int bases_ok = 0;     /* no of databases with OK attribute */
919     int errCode = 0;      /* err code (if any is not OK) */
920     char *errString = 0;  /* addinfo */
921
922     rpn_char_map_prepare (zh->reg, reg_type, &rcmi);
923     attr_init (&use, zapt, 1);
924     use_value = attr_find_ex (&use, &curAttributeSet, &use_string);
925     logf (LOG_DEBUG, "string_term, use value %d", use_value);
926     attr_init (&truncation, zapt, 5);
927     truncation_value = attr_find (&truncation, NULL);
928     logf (LOG_DEBUG, "truncation value %d", truncation_value);
929
930     if (use_value == -1)    /* no attribute - assumy "any" */
931         use_value = 1016;
932     for (base_no = 0; base_no < num_bases; base_no++)
933     {
934         attent attp;
935         data1_local_attribute id_xpath_attr;
936         data1_local_attribute *local_attr;
937         int max_pos, prefix_len = 0;
938
939         termp = *term_sub;
940
941         if (zebraExplain_curDatabase (zh->reg->zei, basenames[base_no]))
942         {
943             zh->errCode = 109; /* Database unavailable */
944             zh->errString = basenames[base_no];
945             return -1;
946         }
947         if (xpath_use > 0 && use_value == -2) 
948         {
949             use_value = xpath_use;
950             attp.local_attributes = &id_xpath_attr;
951             attp.attset_ordinal = VAL_IDXPATH;
952             id_xpath_attr.next = 0;
953             id_xpath_attr.local = use_value;
954         }
955         else if (curAttributeSet == VAL_IDXPATH)
956         {
957             attp.local_attributes = &id_xpath_attr;
958             attp.attset_ordinal = VAL_IDXPATH;
959             id_xpath_attr.next = 0;
960             id_xpath_attr.local = use_value;
961         }
962         else
963         {
964             if ((r=att_getentbyatt (zh, &attp, curAttributeSet, use_value,
965                                             use_string)))
966             {
967                 logf (LOG_DEBUG, "att_getentbyatt fail. set=%d use=%d r=%d",
968                       curAttributeSet, use_value, r);
969                 if (r == -1)
970                 {
971                     /* set was found, but value wasn't defined */
972                     errCode = 114;
973                     if (use_string)
974                         errString = nmem_strdup(stream, use_string);
975                     else
976                     {
977                         char val_str[32];
978                         sprintf (val_str, "%d", use_value);
979                         errString = nmem_strdup (stream, val_str);
980                     }
981                 }
982                 else
983                 {
984                     int oid[OID_SIZE];
985                     struct oident oident;
986                     
987                     oident.proto = PROTO_Z3950;
988                     oident.oclass = CLASS_ATTSET;
989                     oident.value = curAttributeSet;
990                     oid_ent_to_oid (&oident, oid);
991                     
992                     errCode = 121;
993                     errString = nmem_strdup (stream, oident.desc);
994                 }
995                 continue;
996             }
997         }
998         for (local_attr = attp.local_attributes; local_attr;
999              local_attr = local_attr->next)
1000         {
1001             int ord;
1002             char ord_buf[32];
1003             int i, ord_len;
1004             
1005             ord = zebraExplain_lookupSU (zh->reg->zei, attp.attset_ordinal,
1006                                          local_attr->local);
1007             if (ord < 0)
1008                 continue;
1009             if (prefix_len)
1010                 term_dict[prefix_len++] = '|';
1011             else
1012                 term_dict[prefix_len++] = '(';
1013             
1014             ord_len = key_SU_encode (ord, ord_buf);
1015             for (i = 0; i<ord_len; i++)
1016             {
1017                 term_dict[prefix_len++] = 1;
1018                 term_dict[prefix_len++] = ord_buf[i];
1019             }
1020         }
1021         if (!prefix_len)
1022         {
1023 #if 1
1024             bases_ok++;
1025 #else
1026             char val_str[32];
1027             sprintf (val_str, "%d", use_value);
1028             errCode = 114;
1029             errString = nmem_strdup (stream, val_str);
1030 #endif
1031             continue;
1032         }
1033         bases_ok++; /* this has OK attributes */
1034
1035         term_dict[prefix_len++] = ')';
1036         term_dict[prefix_len++] = 1;
1037         term_dict[prefix_len++] = reg_type;
1038         logf (LOG_DEBUG, "reg_type = %d", term_dict[prefix_len-1]);
1039         term_dict[prefix_len] = '\0';
1040         j = prefix_len;
1041         switch (truncation_value)
1042         {
1043         case -1:         /* not specified */
1044         case 100:        /* do not truncate */
1045             if (!string_relation (zh, zapt, &termp, term_dict,
1046                                   attributeSet,
1047                                   reg_type, space_split, term_dst))
1048                 return 0;
1049             logf (LOG_LOG, "dict_lookup_grep: %s", term_dict+prefix_len);
1050             r = dict_lookup_grep (zh->reg->dict, term_dict, 0,
1051                                   grep_info, &max_pos, 0, grep_handle);
1052             if (r)
1053                 logf (LOG_WARN, "dict_lookup_grep fail %d", r);
1054             break;
1055         case 1:          /* right truncation */
1056             term_dict[j++] = '(';
1057             if (!term_100 (zh->reg->zebra_maps, reg_type,
1058                            &termp, term_dict + j, space_split, term_dst))
1059                 return 0;
1060             strcat (term_dict, ".*)");
1061             dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info,
1062                               &max_pos, 0, grep_handle);
1063             break;
1064         case 2:          /* keft truncation */
1065             term_dict[j++] = '('; term_dict[j++] = '.'; term_dict[j++] = '*';
1066             if (!term_100 (zh->reg->zebra_maps, reg_type,
1067                            &termp, term_dict + j, space_split, term_dst))
1068                 return 0;
1069             strcat (term_dict, ")");
1070             dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info,
1071                               &max_pos, 0, grep_handle);
1072             break;
1073         case 3:          /* left&right truncation */
1074             term_dict[j++] = '('; term_dict[j++] = '.'; term_dict[j++] = '*';
1075             if (!term_100 (zh->reg->zebra_maps, reg_type,
1076                            &termp, term_dict + j, space_split, term_dst))
1077                 return 0;
1078             strcat (term_dict, ".*)");
1079             dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info,
1080                               &max_pos, 0, grep_handle);
1081             break;
1082             zh->errCode = 120;
1083             return -1;
1084         case 101:        /* process # in term */
1085             term_dict[j++] = '(';
1086             if (!term_101 (zh->reg->zebra_maps, reg_type,
1087                            &termp, term_dict + j, space_split, term_dst))
1088                 return 0;
1089             strcat (term_dict, ")");
1090             r = dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info,
1091                                   &max_pos, 0, grep_handle);
1092             if (r)
1093                 logf (LOG_WARN, "dict_lookup_grep err, trunc=#: %d", r);
1094             break;
1095         case 102:        /* Regexp-1 */
1096             term_dict[j++] = '(';
1097             if (!term_102 (zh->reg->zebra_maps, reg_type,
1098                            &termp, term_dict + j, space_split, term_dst))
1099                 return 0;
1100             strcat (term_dict, ")");
1101             logf (LOG_DEBUG, "Regexp-1 tolerance=%d", r);
1102             r = dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info,
1103                                   &max_pos, 0, grep_handle);
1104             if (r)
1105                 logf (LOG_WARN, "dict_lookup_grep err, trunc=regular: %d",
1106                       r);
1107             break;
1108         case 103:       /* Regexp-2 */
1109             r = 1;
1110             term_dict[j++] = '(';
1111             if (!term_103 (zh->reg->zebra_maps, reg_type,
1112                            &termp, term_dict + j, &r, space_split, term_dst))
1113                 return 0;
1114             strcat (term_dict, ")");
1115             logf (LOG_DEBUG, "Regexp-2 tolerance=%d", r);
1116             r = dict_lookup_grep (zh->reg->dict, term_dict, r, grep_info,
1117                                   &max_pos, 2, grep_handle);
1118             if (r)
1119                 logf (LOG_WARN, "dict_lookup_grep err, trunc=eregular: %d",
1120                       r);
1121             break;
1122         case 104:        /* process # and ! in term */
1123             term_dict[j++] = '(';
1124             if (!term_104 (zh->reg->zebra_maps, reg_type,
1125                            &termp, term_dict + j, space_split, term_dst))
1126                 return 0;
1127             strcat (term_dict, ")");
1128             r = dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info,
1129                                   &max_pos, 0, grep_handle);
1130             if (r)
1131                 logf (LOG_WARN, "dict_lookup_grep err, trunc=#/!: %d", r);
1132             break;
1133         case 105:        /* process * and ! in term */
1134             term_dict[j++] = '(';
1135             if (!term_105 (zh->reg->zebra_maps, reg_type,
1136                            &termp, term_dict + j, space_split, term_dst, 1))
1137                 return 0;
1138             strcat (term_dict, ")");
1139             r = dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info,
1140                                   &max_pos, 0, grep_handle);
1141             if (r)
1142                 logf (LOG_WARN, "dict_lookup_grep err, trunc=*/!: %d", r);
1143             break;
1144         case 106:        /* process * and ! in term */
1145             term_dict[j++] = '(';
1146             if (!term_105 (zh->reg->zebra_maps, reg_type,
1147                            &termp, term_dict + j, space_split, term_dst, 0))
1148                 return 0;
1149             strcat (term_dict, ")");
1150             r = dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info,
1151                                   &max_pos, 0, grep_handle);
1152             if (r)
1153                 logf (LOG_WARN, "dict_lookup_grep err, trunc=*/!: %d", r);
1154             break;
1155         }
1156     }
1157     if (!bases_ok)
1158     {
1159         zh->errCode = errCode;
1160         zh->errString = errString;
1161         return -1;
1162     }
1163     *term_sub = termp;
1164     logf (LOG_DEBUG, "%d positions", grep_info->isam_p_indx);
1165     return 1;
1166 }
1167
1168
1169 /* convert APT search term to UTF8 */
1170 static int zapt_term_to_utf8 (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1171                               char *termz)
1172 {
1173     size_t sizez;
1174     Z_Term *term = zapt->term;
1175
1176     switch (term->which)
1177     {
1178     case Z_Term_general:
1179         if (zh->iconv_to_utf8 != 0)
1180         {
1181             char *inbuf = term->u.general->buf;
1182             size_t inleft = term->u.general->len;
1183             char *outbuf = termz;
1184             size_t outleft = IT_MAX_WORD-1;
1185             size_t ret;
1186
1187             ret = yaz_iconv(zh->iconv_to_utf8, &inbuf, &inleft,
1188                         &outbuf, &outleft);
1189             if (ret == (size_t)(-1))
1190             {
1191                 ret = yaz_iconv(zh->iconv_to_utf8, 0, 0, 0, 0);
1192                 zh->errCode = 125;
1193                 return -1;
1194             }
1195             *outbuf = 0;
1196         }
1197         else
1198         {
1199             sizez = term->u.general->len;
1200             if (sizez > IT_MAX_WORD-1)
1201                 sizez = IT_MAX_WORD-1;
1202             memcpy (termz, term->u.general->buf, sizez);
1203             termz[sizez] = '\0';
1204         }
1205         break;
1206     case Z_Term_characterString:
1207         sizez = strlen(term->u.characterString);
1208         if (sizez > IT_MAX_WORD-1)
1209             sizez = IT_MAX_WORD-1;
1210         memcpy (termz, term->u.characterString, sizez);
1211         termz[sizez] = '\0';
1212         break;
1213     default:
1214         zh->errCode = 124;
1215         return -1;
1216     }
1217     return 0;
1218 }
1219
1220 /* convert APT SCAN term to internal cmap */
1221 static int trans_scan_term (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1222                             char *termz, int reg_type)
1223 {
1224     char termz0[IT_MAX_WORD];
1225
1226     if (zapt_term_to_utf8(zh, zapt, termz0))
1227         return -1;    /* error */
1228     else
1229     {
1230         const char **map;
1231         const char *cp = (const char *) termz0;
1232         const char *cp_end = cp + strlen(cp);
1233         const char *src;
1234         int i = 0;
1235         const char *space_map = NULL;
1236         int len;
1237             
1238         while ((len = (cp_end - cp)) > 0)
1239         {
1240             map = zebra_maps_input (zh->reg->zebra_maps, reg_type, &cp, len);
1241             if (**map == *CHR_SPACE)
1242                 space_map = *map;
1243             else
1244             {
1245                 if (i && space_map)
1246                     for (src = space_map; *src; src++)
1247                         termz[i++] = *src;
1248                 space_map = NULL;
1249                 for (src = *map; *src; src++)
1250                     termz[i++] = *src;
1251             }
1252         }
1253         termz[i] = '\0';
1254     }
1255     return 0;
1256 }
1257
1258 char *normalize_term(ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1259                      const char *termz, NMEM stream, unsigned reg_id)
1260 {
1261     WRBUF wrbuf = 0;
1262     AttrType truncation;
1263     int truncation_value;
1264     char *ex_list = 0;
1265
1266     attr_init (&truncation, zapt, 5);
1267     truncation_value = attr_find (&truncation, NULL);
1268
1269     switch (truncation_value)
1270     {
1271     default:
1272         ex_list = "";
1273         break;
1274     case 101:
1275         ex_list = "#";
1276         break;
1277     case 102:
1278     case 103:
1279         ex_list = 0;
1280         break;
1281     case 104:
1282         ex_list = "!#";
1283         break;
1284     case 105:
1285         ex_list = "!*";
1286         break;
1287     }
1288     if (ex_list)
1289         wrbuf = zebra_replace(zh->reg->zebra_maps, reg_id, ex_list,
1290                               termz, strlen(termz));
1291     if (!wrbuf)
1292         return nmem_strdup(stream, termz);
1293     else
1294     {
1295         char *buf = (char*) nmem_malloc (stream, wrbuf_len(wrbuf)+1);
1296         memcpy (buf, wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
1297         buf[wrbuf_len(wrbuf)] = '\0';
1298         return buf;
1299     }
1300 }
1301
1302 static void grep_info_delete (struct grep_info *grep_info)
1303 {
1304 #ifdef TERM_COUNT
1305     xfree(grep_info->term_no);
1306 #endif
1307     xfree (grep_info->isam_p_buf);
1308 }
1309
1310 static int grep_info_prepare (ZebraHandle zh,
1311                               Z_AttributesPlusTerm *zapt,
1312                               struct grep_info *grep_info,
1313                               int reg_type,
1314                               NMEM stream)
1315 {
1316     AttrType termset;
1317     int termset_value_numeric;
1318     const char *termset_value_string;
1319
1320 #ifdef TERM_COUNT
1321     grep_info->term_no = 0;
1322 #endif
1323     grep_info->isam_p_size = 0;
1324     grep_info->isam_p_buf = NULL;
1325     grep_info->zh = zh;
1326     grep_info->reg_type = reg_type;
1327     grep_info->termset = 0;
1328
1329     if (!zapt)
1330         return 0;
1331     attr_init (&termset, zapt, 8);
1332     termset_value_numeric =
1333         attr_find_ex (&termset, NULL, &termset_value_string);
1334     if (termset_value_numeric != -1)
1335     {
1336         char resname[32];
1337         const char *termset_name = 0;
1338         if (termset_value_numeric != -2)
1339         {
1340     
1341             sprintf (resname, "%d", termset_value_numeric);
1342             termset_name = resname;
1343         }
1344         else
1345             termset_name = termset_value_string;
1346         logf (LOG_LOG, "creating termset set %s", termset_name);
1347         grep_info->termset = resultSetAdd (zh, termset_name, 1);
1348         if (!grep_info->termset)
1349         {
1350             zh->errCode = 128;
1351             zh->errString = nmem_strdup (stream, termset_name);
1352             return -1;
1353         }
1354     }
1355     return 0;
1356 }
1357                                
1358
1359 static RSET rpn_search_APT_phrase (ZebraHandle zh,
1360                                    Z_AttributesPlusTerm *zapt,
1361                                    const char *termz_org,
1362                                    oid_value attributeSet,
1363                                    NMEM stream,
1364                                    int reg_type, int complete_flag,
1365                                    const char *rank_type, int xpath_use,
1366                                    int num_bases, char **basenames, 
1367                                    NMEM rset_nmem)
1368 {
1369     char term_dst[IT_MAX_WORD+1];
1370     RSET rset[60], result;
1371     int rset_no = 0;
1372     struct grep_info grep_info;
1373     char *termz = normalize_term(zh, zapt, termz_org, stream, reg_type);
1374     const char *termp = termz;
1375
1376     *term_dst = 0;
1377     if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1378         return 0;
1379     while (1)
1380     { 
1381         logf (LOG_DEBUG, "APT_phrase termp=%s", termp);
1382         rset[rset_no] = term_trunc (zh, zapt, &termp, attributeSet,
1383                                     stream, &grep_info,
1384                                     reg_type, complete_flag,
1385                                     num_bases, basenames,
1386                                     term_dst, rank_type,
1387                                     xpath_use,rset_nmem);
1388         if (!rset[rset_no])
1389             break;
1390         if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1391             break;
1392     }
1393     grep_info_delete (&grep_info);
1394     if (rset_no == 0)
1395         return rsnull_create (NULL);  /* FIXME - Use a proper nmem */
1396     else if (rset_no == 1)
1397         return (rset[0]);
1398     else
1399         result = rsprox_create( NULL, /* FIXME - use a proper nmem */
1400                        sizeof(struct it_key), key_compare_it, key_get_seq,
1401                        rset_no, rset,
1402                        1 /* ordered */, 0 /* exclusion */,
1403                        3 /* relation */, 1 /* distance */);
1404     return result;
1405 }
1406
1407 static RSET rpn_search_APT_or_list (ZebraHandle zh,
1408                                     Z_AttributesPlusTerm *zapt,
1409                                     const char *termz_org,
1410                                     oid_value attributeSet,
1411                                     NMEM stream,
1412                                     int reg_type, int complete_flag,
1413                                     const char *rank_type,
1414                                     int xpath_use,
1415                                     int num_bases, char **basenames,
1416                                     NMEM rset_nmem)
1417 {
1418     char term_dst[IT_MAX_WORD+1];
1419     RSET rset[60];
1420     int rset_no = 0;
1421     struct grep_info grep_info;
1422     char *termz = normalize_term(zh, zapt, termz_org, stream, reg_type);
1423     const char *termp = termz;
1424
1425     if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1426         return 0;
1427     while (1)
1428     { 
1429         logf (LOG_DEBUG, "APT_or_list termp=%s", termp);
1430         rset[rset_no] = term_trunc (zh, zapt, &termp, attributeSet,
1431                                     stream, &grep_info,
1432                                     reg_type, complete_flag,
1433                                     num_bases, basenames,
1434                                     term_dst, rank_type,
1435                                     xpath_use,rset_nmem);
1436         if (!rset[rset_no])
1437             break;
1438         if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1439             break;
1440     }
1441     grep_info_delete (&grep_info);
1442     if (rset_no == 0)
1443         return rsnull_create (rset_nmem);  
1444     return rsmultior_create(rset_nmem,  
1445                             sizeof(struct it_key),
1446                             key_compare_it, 
1447                             rset_no, rset);
1448
1449 #if 0    
1450     /* The old code, kept for reference. May be deleted soon */
1451     result = rset[0];
1452     for (i = 1; i<rset_no; i++)
1453     {  
1454         rset_bool_parms bool_parms;
1455         bool_parms.rset_l = result;
1456         bool_parms.rset_r = rset[i];
1457         bool_parms.key_size = sizeof(struct it_key);
1458         bool_parms.cmp = key_compare_it;
1459         bool_parms.log_item = key_logdump_txt;
1460         result = rset_create (rset_kind_or, &bool_parms);
1461     }
1462     return result;
1463 #endif
1464 }
1465
1466 static RSET rpn_search_APT_and_list (ZebraHandle zh,
1467                                      Z_AttributesPlusTerm *zapt,
1468                                      const char *termz_org,
1469                                      oid_value attributeSet,
1470                                      NMEM stream,
1471                                      int reg_type, int complete_flag,
1472                                      const char *rank_type, 
1473                                      int xpath_use,
1474                                      int num_bases, char **basenames,
1475                                      NMEM rset_nmem)
1476 {
1477     char term_dst[IT_MAX_WORD+1];
1478     RSET rset[60], result;
1479     int i, rset_no = 0;
1480     struct grep_info grep_info;
1481     char *termz = normalize_term(zh, zapt, termz_org, stream, reg_type);
1482     const char *termp = termz;
1483
1484     if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1485         return 0;
1486     while (1)
1487     { 
1488         logf (LOG_DEBUG, "APT_and_list termp=%s", termp);
1489         rset[rset_no] = term_trunc (zh, zapt, &termp, attributeSet,
1490                                     stream, &grep_info,
1491                                     reg_type, complete_flag,
1492                                     num_bases, basenames,
1493                                     term_dst, rank_type,
1494                                     xpath_use, rset_nmem);
1495         if (!rset[rset_no])
1496             break;
1497         assert (rset[rset_no]);
1498         if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1499             break;
1500     }
1501     grep_info_delete (&grep_info);
1502     if (rset_no == 0)
1503         return rsnull_create (rset_nmem); 
1504     result = rset[0];
1505     /* FIXME - Use a proper rsmultiand */
1506     for (i = 1; i<rset_no; i++)
1507     {
1508         /*
1509         rset_bool_parms bool_parms;
1510         bool_parms.rset_l = result;
1511         bool_parms.rset_r = rset[i];
1512         bool_parms.key_size = sizeof(struct it_key);
1513         bool_parms.cmp = key_compare_it;
1514         bool_parms.log_item = key_logdump_txt;
1515         result = rset_create (rset_kind_and, &bool_parms);
1516         */
1517         result= rsbool_create_and(NULL, /* FIXME - use a proper nmem */
1518                 sizeof(struct it_key), key_compare_it,
1519                 result, rset[i], key_logdump_txt );
1520     }
1521     return result;
1522 }
1523
1524 static int numeric_relation (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1525                              const char **term_sub,
1526                              char *term_dict,
1527                              oid_value attributeSet,
1528                              struct grep_info *grep_info,
1529                              int *max_pos,
1530                              int reg_type,
1531                              char *term_dst)
1532 {
1533     AttrType relation;
1534     int relation_value;
1535     int term_value;
1536     int r;
1537     char *term_tmp = term_dict + strlen(term_dict);
1538
1539     attr_init (&relation, zapt, 2);
1540     relation_value = attr_find (&relation, NULL);
1541
1542     logf (LOG_DEBUG, "numeric relation value=%d", relation_value);
1543
1544     if (!term_100 (zh->reg->zebra_maps, reg_type, term_sub, term_tmp, 1,
1545                    term_dst))
1546         return 0;
1547     term_value = atoi (term_tmp);
1548     switch (relation_value)
1549     {
1550     case 1:
1551         logf (LOG_DEBUG, "Relation <");
1552         gen_regular_rel (term_tmp, term_value-1, 1);
1553         break;
1554     case 2:
1555         logf (LOG_DEBUG, "Relation <=");
1556         gen_regular_rel (term_tmp, term_value, 1);
1557         break;
1558     case 4:
1559         logf (LOG_DEBUG, "Relation >=");
1560         gen_regular_rel (term_tmp, term_value, 0);
1561         break;
1562     case 5:
1563         logf (LOG_DEBUG, "Relation >");
1564         gen_regular_rel (term_tmp, term_value+1, 0);
1565         break;
1566     case 3:
1567     default:
1568         logf (LOG_DEBUG, "Relation =");
1569         sprintf (term_tmp, "(0*%d)", term_value);
1570     }
1571     logf (LOG_DEBUG, "dict_lookup_grep: %s", term_tmp);
1572     r = dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info, max_pos,
1573                           0, grep_handle);
1574     if (r)
1575         logf (LOG_WARN, "dict_lookup_grep fail, rel=gt: %d", r);
1576     logf (LOG_DEBUG, "%d positions", grep_info->isam_p_indx);
1577     return 1;
1578 }
1579
1580 static int numeric_term (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1581                          const char **term_sub, 
1582                          oid_value attributeSet, struct grep_info *grep_info,
1583                          int reg_type, int complete_flag,
1584                          int num_bases, char **basenames,
1585                          char *term_dst, int xpath_use, NMEM stream)
1586 {
1587     char term_dict[2*IT_MAX_WORD+2];
1588     int r, base_no;
1589     AttrType use;
1590     int use_value;
1591     const char *use_string = 0;
1592     oid_value curAttributeSet = attributeSet;
1593     const char *termp;
1594     struct rpn_char_map_info rcmi;
1595
1596     int bases_ok = 0;     /* no of databases with OK attribute */
1597     int errCode = 0;      /* err code (if any is not OK) */
1598     char *errString = 0;  /* addinfo */
1599
1600     rpn_char_map_prepare (zh->reg, reg_type, &rcmi);
1601     attr_init (&use, zapt, 1);
1602     use_value = attr_find_ex (&use, &curAttributeSet, &use_string);
1603
1604     if (use_value == -1)
1605         use_value = 1016;
1606
1607     for (base_no = 0; base_no < num_bases; base_no++)
1608     {
1609         attent attp;
1610         data1_local_attribute id_xpath_attr;
1611         data1_local_attribute *local_attr;
1612         int max_pos, prefix_len = 0;
1613
1614         termp = *term_sub;
1615         if (use_value == -2)  /* string attribute (assume IDXPATH/any) */
1616         {
1617             use_value = xpath_use;
1618             attp.local_attributes = &id_xpath_attr;
1619             attp.attset_ordinal = VAL_IDXPATH;
1620             id_xpath_attr.next = 0;
1621             id_xpath_attr.local = use_value;
1622         }
1623         else if (curAttributeSet == VAL_IDXPATH)
1624         {
1625             attp.local_attributes = &id_xpath_attr;
1626             attp.attset_ordinal = VAL_IDXPATH;
1627             id_xpath_attr.next = 0;
1628             id_xpath_attr.local = use_value;
1629         }
1630         else
1631         {
1632             if ((r=att_getentbyatt (zh, &attp, curAttributeSet, use_value,
1633                                             use_string)))
1634             {
1635                 logf (LOG_DEBUG, "att_getentbyatt fail. set=%d use=%d r=%d",
1636                       curAttributeSet, use_value, r);
1637                 if (r == -1)
1638                 {
1639                     char val_str[32];
1640                     sprintf (val_str, "%d", use_value);
1641                     errString = nmem_strdup (stream, val_str);
1642                     errCode = 114;
1643                 }
1644                 else
1645                     errCode = 121;
1646                 continue;
1647             }
1648         }
1649         if (zebraExplain_curDatabase (zh->reg->zei, basenames[base_no]))
1650         {
1651             zh->errCode = 109; /* Database unavailable */
1652             zh->errString = basenames[base_no];
1653             return -1;
1654         }
1655         for (local_attr = attp.local_attributes; local_attr;
1656              local_attr = local_attr->next)
1657         {
1658             int ord;
1659             char ord_buf[32];
1660             int i, ord_len;
1661
1662             ord = zebraExplain_lookupSU (zh->reg->zei, attp.attset_ordinal,
1663                                           local_attr->local);
1664             if (ord < 0)
1665                 continue;
1666             if (prefix_len)
1667                 term_dict[prefix_len++] = '|';
1668             else
1669                 term_dict[prefix_len++] = '(';
1670
1671             ord_len = key_SU_encode (ord, ord_buf);
1672             for (i = 0; i<ord_len; i++)
1673             {
1674                 term_dict[prefix_len++] = 1;
1675                 term_dict[prefix_len++] = ord_buf[i];
1676             }
1677         }
1678         if (!prefix_len)
1679         {
1680             char val_str[32];
1681             sprintf (val_str, "%d", use_value);
1682             errCode = 114;
1683             errString = nmem_strdup (stream, val_str);
1684             continue;
1685         }
1686         bases_ok++;
1687         term_dict[prefix_len++] = ')';        
1688         term_dict[prefix_len++] = 1;
1689         term_dict[prefix_len++] = reg_type;
1690         logf (LOG_DEBUG, "reg_type = %d", term_dict[prefix_len-1]);
1691         term_dict[prefix_len] = '\0';
1692         if (!numeric_relation (zh, zapt, &termp, term_dict,
1693                                attributeSet, grep_info, &max_pos, reg_type,
1694                                term_dst))
1695             return 0;
1696     }
1697     if (!bases_ok)
1698     {
1699         zh->errCode = errCode;
1700         zh->errString = errString;
1701         return -1;
1702     }
1703     *term_sub = termp;
1704     logf (LOG_DEBUG, "%d positions", grep_info->isam_p_indx);
1705     return 1;
1706 }
1707
1708 static RSET rpn_search_APT_numeric (ZebraHandle zh,
1709                                     Z_AttributesPlusTerm *zapt,
1710                                     const char *termz,
1711                                     oid_value attributeSet,
1712                                     NMEM stream,
1713                                     int reg_type, int complete_flag,
1714                                     const char *rank_type, int xpath_use,
1715                                     int num_bases, char **basenames,
1716                                     NMEM rset_nmem)
1717 {
1718     char term_dst[IT_MAX_WORD+1];
1719     const char *termp = termz;
1720     RSET rset[60], result;
1721     int i, r, rset_no = 0;
1722     struct grep_info grep_info;
1723
1724     if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1725         return 0;
1726     while (1)
1727     { 
1728         logf (LOG_DEBUG, "APT_numeric termp=%s", termp);
1729         grep_info.isam_p_indx = 0;
1730         r = numeric_term (zh, zapt, &termp, attributeSet, &grep_info,
1731                           reg_type, complete_flag, num_bases, basenames,
1732                           term_dst, xpath_use,
1733                           stream);
1734         if (r < 1)
1735             break;
1736         logf (LOG_DEBUG, "term: %s", term_dst);
1737         rset[rset_no] = rset_trunc (zh, grep_info.isam_p_buf,
1738                                     grep_info.isam_p_indx, term_dst,
1739                                     strlen(term_dst), rank_type,
1740                                     0 /* preserve position */,
1741                                     zapt->term->which, rset_nmem);
1742         assert (rset[rset_no]);
1743         if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1744             break;
1745     }
1746     grep_info_delete (&grep_info);
1747     if (rset_no == 0)
1748         return rsnull_create (rset_nmem); 
1749     result = rset[0];
1750     for (i = 1; i<rset_no; i++)
1751     {
1752         /*
1753         rset_bool_parms bool_parms;
1754         bool_parms.rset_l = result;
1755         bool_parms.rset_r = rset[i];
1756         bool_parms.key_size = sizeof(struct it_key);
1757         bool_parms.cmp = key_compare_it;
1758         bool_parms.log_item = key_logdump_txt;
1759         result = rset_create (rset_kind_and, &bool_parms);
1760         */
1761         /* FIXME - Use a proper multi-and */
1762         result= rsbool_create_and(NULL, /* FIXME - use a proper nmem */
1763                 sizeof(struct it_key), key_compare_it,
1764                 result, rset[i], key_logdump_txt );
1765     }
1766     return result;
1767 }
1768
1769 static RSET rpn_search_APT_local (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1770                                   const char *termz,
1771                                   oid_value attributeSet,
1772                                   NMEM stream,
1773                                   const char *rank_type, NMEM rset_nmem)
1774 {
1775     RSET result;
1776     RSFD rsfd;
1777     struct it_key key;
1778     int sys;
1779     /*
1780     rset_temp_parms parms;
1781
1782     parms.cmp = key_compare_it;
1783     parms.key_size = sizeof (struct it_key);
1784     parms.temp_path = res_get (zh->res, "setTmpDir");
1785     result = rset_create (rset_kind_temp, &parms);
1786     */
1787     result = rstemp_create( rset_nmem,
1788                      sizeof (struct it_key), key_compare_it,
1789                      res_get (zh->res, "setTmpDir") );
1790     rsfd = rset_open (result, RSETF_WRITE);
1791
1792     sys = atoi(termz);
1793     if (sys <= 0)
1794         sys = 1;
1795 #if IT_KEY_NEW
1796     key.mem[0] = sys;
1797     key.mem[1] = 1;
1798     key.len = 2;
1799 #else
1800     key.sysno = sys;
1801     key.seqno = 1;
1802     if (key.sysno <= 0)
1803         key.sysno = 1;
1804 #endif
1805     rset_write (rsfd, &key);
1806     rset_close (rsfd);
1807     return result;
1808 }
1809
1810 static RSET rpn_sort_spec (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1811                            oid_value attributeSet, NMEM stream,
1812                            Z_SortKeySpecList *sort_sequence,
1813                            const char *rank_type)
1814 {
1815     int i;
1816     int sort_relation_value;
1817     AttrType sort_relation_type;
1818     int use_value;
1819     AttrType use_type;
1820     Z_SortKeySpec *sks;
1821     Z_SortKey *sk;
1822     Z_AttributeElement *ae;
1823     int oid[OID_SIZE];
1824     oident oe;
1825     char termz[20];
1826     
1827     attr_init (&sort_relation_type, zapt, 7);
1828     sort_relation_value = attr_find (&sort_relation_type, &attributeSet);
1829
1830     attr_init (&use_type, zapt, 1);
1831     use_value = attr_find (&use_type, &attributeSet);
1832
1833     if (!sort_sequence->specs)
1834     {
1835         sort_sequence->num_specs = 10;
1836         sort_sequence->specs = (Z_SortKeySpec **)
1837             nmem_malloc (stream, sort_sequence->num_specs *
1838                          sizeof(*sort_sequence->specs));
1839         for (i = 0; i<sort_sequence->num_specs; i++)
1840             sort_sequence->specs[i] = 0;
1841     }
1842     if (zapt->term->which != Z_Term_general)
1843         i = 0;
1844     else
1845         i = atoi_n ((char *) zapt->term->u.general->buf,
1846                     zapt->term->u.general->len);
1847     if (i >= sort_sequence->num_specs)
1848         i = 0;
1849     sprintf (termz, "%d", i);
1850
1851     oe.proto = PROTO_Z3950;
1852     oe.oclass = CLASS_ATTSET;
1853     oe.value = attributeSet;
1854     if (!oid_ent_to_oid (&oe, oid))
1855         return 0;
1856
1857     sks = (Z_SortKeySpec *) nmem_malloc (stream, sizeof(*sks));
1858     sks->sortElement = (Z_SortElement *)
1859         nmem_malloc (stream, sizeof(*sks->sortElement));
1860     sks->sortElement->which = Z_SortElement_generic;
1861     sk = sks->sortElement->u.generic = (Z_SortKey *)
1862         nmem_malloc (stream, sizeof(*sk));
1863     sk->which = Z_SortKey_sortAttributes;
1864     sk->u.sortAttributes = (Z_SortAttributes *)
1865         nmem_malloc (stream, sizeof(*sk->u.sortAttributes));
1866
1867     sk->u.sortAttributes->id = oid;
1868     sk->u.sortAttributes->list = (Z_AttributeList *)
1869         nmem_malloc (stream, sizeof(*sk->u.sortAttributes->list));
1870     sk->u.sortAttributes->list->num_attributes = 1;
1871     sk->u.sortAttributes->list->attributes = (Z_AttributeElement **)
1872         nmem_malloc (stream, sizeof(*sk->u.sortAttributes->list->attributes));
1873     ae = *sk->u.sortAttributes->list->attributes = (Z_AttributeElement *)
1874         nmem_malloc (stream, sizeof(**sk->u.sortAttributes->list->attributes));
1875     ae->attributeSet = 0;
1876     ae->attributeType = (int *)
1877         nmem_malloc (stream, sizeof(*ae->attributeType));
1878     *ae->attributeType = 1;
1879     ae->which = Z_AttributeValue_numeric;
1880     ae->value.numeric = (int *)
1881         nmem_malloc (stream, sizeof(*ae->value.numeric));
1882     *ae->value.numeric = use_value;
1883
1884     sks->sortRelation = (int *)
1885         nmem_malloc (stream, sizeof(*sks->sortRelation));
1886     if (sort_relation_value == 1)
1887         *sks->sortRelation = Z_SortKeySpec_ascending;
1888     else if (sort_relation_value == 2)
1889         *sks->sortRelation = Z_SortKeySpec_descending;
1890     else 
1891         *sks->sortRelation = Z_SortKeySpec_ascending;
1892
1893     sks->caseSensitivity = (int *)
1894         nmem_malloc (stream, sizeof(*sks->caseSensitivity));
1895     *sks->caseSensitivity = 0;
1896
1897     sks->which = Z_SortKeySpec_null;
1898     sks->u.null = odr_nullval ();
1899     sort_sequence->specs[i] = sks;
1900     return rsnull_create (NULL);  /* FIXME - Use a proper nmem */
1901 }
1902
1903
1904 static int parse_xpath(ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1905                        oid_value attributeSet,
1906                        struct xpath_location_step *xpath, int max, NMEM mem)
1907 {
1908     oid_value curAttributeSet = attributeSet;
1909     AttrType use;
1910     const char *use_string = 0;
1911     
1912     attr_init (&use, zapt, 1);
1913     attr_find_ex (&use, &curAttributeSet, &use_string);
1914
1915     if (!use_string || *use_string != '/')
1916         return -1;
1917
1918     return zebra_parse_xpath_str(use_string, xpath, max, mem);
1919 }
1920  
1921                
1922
1923 static RSET xpath_trunc(ZebraHandle zh, NMEM stream,
1924                         int reg_type, const char *term, int use,
1925                         oid_value curAttributeSet, NMEM rset_nmem)
1926 {
1927     RSET rset;
1928     struct grep_info grep_info;
1929     char term_dict[2048];
1930     char ord_buf[32];
1931     int prefix_len = 0;
1932     int ord = zebraExplain_lookupSU (zh->reg->zei, curAttributeSet, use);
1933     int ord_len, i, r, max_pos;
1934     int term_type = Z_Term_characterString;
1935     const char *flags = "void";
1936
1937     if (grep_info_prepare (zh, 0 /* zapt */, &grep_info, '0', stream))
1938         return rsnull_create (rset_nmem);
1939
1940     if (ord < 0)
1941         return rsnull_create (rset_nmem);
1942     if (prefix_len)
1943         term_dict[prefix_len++] = '|';
1944     else
1945         term_dict[prefix_len++] = '(';
1946     
1947     ord_len = key_SU_encode (ord, ord_buf);
1948     for (i = 0; i<ord_len; i++)
1949     {
1950         term_dict[prefix_len++] = 1;
1951         term_dict[prefix_len++] = ord_buf[i];
1952     }
1953     term_dict[prefix_len++] = ')';
1954     term_dict[prefix_len++] = 1;
1955     term_dict[prefix_len++] = reg_type;
1956     
1957     strcpy (term_dict+prefix_len, term);
1958     
1959     grep_info.isam_p_indx = 0;
1960     r = dict_lookup_grep (zh->reg->dict, term_dict, 0,
1961                           &grep_info, &max_pos, 0, grep_handle);
1962     yaz_log (LOG_LOG, "%s %d positions", term,
1963              grep_info.isam_p_indx);
1964     rset = rset_trunc (zh, grep_info.isam_p_buf,
1965                        grep_info.isam_p_indx, term, strlen(term),
1966                        flags, 1, term_type,rset_nmem);
1967     grep_info_delete (&grep_info);
1968     return rset;
1969 }
1970
1971 static RSET rpn_search_xpath (ZebraHandle zh,
1972                               oid_value attributeSet,
1973                               int num_bases, char **basenames,
1974                               NMEM stream, const char *rank_type, RSET rset,
1975                               int xpath_len, struct xpath_location_step *xpath,
1976                               NMEM rset_nmem)
1977 {
1978     oid_value curAttributeSet = attributeSet;
1979     int base_no;
1980     int i;
1981
1982     if (xpath_len < 0)
1983         return rset;
1984
1985     yaz_log (LOG_LOG, "len=%d", xpath_len);
1986     for (i = 0; i<xpath_len; i++)
1987     {
1988         yaz_log (LOG_LOG, "XPATH %d %s", i, xpath[i].part);
1989
1990     }
1991
1992     curAttributeSet = VAL_IDXPATH;
1993
1994     /*
1995       //a    ->    a/.*
1996       //a/b  ->    b/a/.*
1997       /a     ->    a/
1998       /a/b   ->    b/a/
1999
2000       /      ->    none
2001
2002    a[@attr=value]/b[@other=othervalue]
2003
2004  /e/@a val      range(e/,range(@a,freetext(w,1015,val),@a),e/)
2005  /a/b val       range(b/a/,freetext(w,1016,val),b/a/)
2006  /a/b/@c val    range(b/a/,range(@c,freetext(w,1016,val),@c),b/a/)
2007  /a/b[@c=y] val range(b/a/,freetext(w,1016,val),b/a/,@c=y)
2008  /a[@c=y]/b val range(a/,range(b/a/,freetext(w,1016,val),b/a/),a/,@c=y)
2009  /a[@c=x]/b[@c=y] range(a/,range(b/a/,freetext(w,1016,val),b/a/,@c=y),a/,@c=x)
2010       
2011     */
2012
2013     dict_grep_cmap (zh->reg->dict, 0, 0);
2014
2015     for (base_no = 0; base_no < num_bases; base_no++)
2016     {
2017         int level = xpath_len;
2018         int first_path = 1;
2019         
2020         if (zebraExplain_curDatabase (zh->reg->zei, basenames[base_no]))
2021         {
2022             zh->errCode = 109; /* Database unavailable */
2023             zh->errString = basenames[base_no];
2024             return rset;
2025         }
2026         while (--level >= 0)
2027         {
2028             char xpath_rev[128];
2029             int i, len;
2030             RSET rset_start_tag = 0, rset_end_tag = 0, rset_attr = 0;
2031
2032             *xpath_rev = 0;
2033             len = 0;
2034             for (i = level; i >= 1; --i)
2035             {
2036                 const char *cp = xpath[i].part;
2037                 if (*cp)
2038                 {
2039                     for (;*cp; cp++)
2040                         if (*cp == '*')
2041                         {
2042                             memcpy (xpath_rev + len, "[^/]*", 5);
2043                             len += 5;
2044                         }
2045                         else if (*cp == ' ')
2046                         {
2047
2048                             xpath_rev[len++] = 1;
2049                             xpath_rev[len++] = ' ';
2050                         }
2051
2052                         else
2053                             xpath_rev[len++] = *cp;
2054                     xpath_rev[len++] = '/';
2055                 }
2056                 else if (i == 1)  /* // case */
2057                 {
2058                     xpath_rev[len++] = '.';
2059                     xpath_rev[len++] = '*';
2060                 }
2061             }
2062             xpath_rev[len] = 0;
2063
2064             if (xpath[level].predicate &&
2065                 xpath[level].predicate->which == XPATH_PREDICATE_RELATION &&
2066                 xpath[level].predicate->u.relation.name[0])
2067             {
2068                 WRBUF wbuf = wrbuf_alloc();
2069                 wrbuf_puts(wbuf, xpath[level].predicate->u.relation.name+1);
2070                 if (xpath[level].predicate->u.relation.value)
2071                 {
2072                     const char *cp = xpath[level].predicate->u.relation.value;
2073                     wrbuf_putc(wbuf, '=');
2074                     
2075                     while (*cp)
2076                     {
2077                         if (strchr(REGEX_CHARS, *cp))
2078                             wrbuf_putc(wbuf, '\\');
2079                         wrbuf_putc(wbuf, *cp);
2080                         cp++;
2081                     }
2082                 }
2083                 wrbuf_puts(wbuf, "");
2084                 rset_attr = xpath_trunc (
2085                     zh, stream, '0', wrbuf_buf(wbuf), 3, 
2086                     curAttributeSet,rset_nmem);
2087                 wrbuf_free(wbuf, 1);
2088             } 
2089             else 
2090             {
2091                 if (!first_path)
2092                     continue;
2093             }
2094             yaz_log (LOG_LOG, "xpath_rev (%d) = %s", level, xpath_rev);
2095             if (strlen(xpath_rev))
2096             {
2097                 rset_start_tag = xpath_trunc(zh, stream, '0', 
2098                         xpath_rev, 1, curAttributeSet, rset_nmem);
2099             
2100                 rset_end_tag = xpath_trunc(zh, stream, '0', 
2101                         xpath_rev, 2, curAttributeSet, rset_nmem);
2102
2103                 /*
2104                 parms.key_size = sizeof(struct it_key);
2105                 parms.cmp = key_compare_it;
2106                 parms.rset_l = rset_start_tag;
2107                 parms.rset_m = rset;
2108                 parms.rset_r = rset_end_tag;
2109                 parms.rset_attr = rset_attr;
2110                 parms.printer = key_print_it;
2111                 rset = rset_create (rset_kind_between, &parms);
2112                 */
2113                 rset=rsbetween_create( rset_nmem,
2114                         sizeof(struct it_key), key_compare_it,
2115                         rset_start_tag, rset, rset_end_tag, rset_attr,
2116                         key_print_it );
2117             }
2118             first_path = 0;
2119         }
2120     }
2121
2122     return rset;
2123 }
2124
2125
2126
2127 static RSET rpn_search_APT (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
2128                             oid_value attributeSet, NMEM stream,
2129                             Z_SortKeySpecList *sort_sequence,
2130                             int num_bases, char **basenames, 
2131                             NMEM rset_nmem)
2132 {
2133     unsigned reg_id;
2134     char *search_type = NULL;
2135     char rank_type[128];
2136     int complete_flag;
2137     int sort_flag;
2138     char termz[IT_MAX_WORD+1];
2139     RSET rset = 0;
2140     int xpath_len;
2141     int xpath_use = 0;
2142     struct xpath_location_step xpath[10];
2143
2144     zebra_maps_attr (zh->reg->zebra_maps, zapt, &reg_id, &search_type,
2145                      rank_type, &complete_flag, &sort_flag);
2146     
2147     logf (LOG_DEBUG, "reg_id=%c", reg_id);
2148     logf (LOG_DEBUG, "complete_flag=%d", complete_flag);
2149     logf (LOG_DEBUG, "search_type=%s", search_type);
2150     logf (LOG_DEBUG, "rank_type=%s", rank_type);
2151
2152     if (zapt_term_to_utf8(zh, zapt, termz))
2153         return 0;
2154
2155     if (sort_flag)
2156         return rpn_sort_spec (zh, zapt, attributeSet, stream, sort_sequence,
2157                               rank_type);
2158     xpath_len = parse_xpath(zh, zapt, attributeSet, xpath, 10, stream);
2159     if (xpath_len >= 0)
2160     {
2161         xpath_use = 1016;
2162         if (xpath[xpath_len-1].part[0] == '@')
2163             xpath_use = 1015;
2164     }
2165
2166     if (!strcmp (search_type, "phrase"))
2167     {
2168         rset = rpn_search_APT_phrase (zh, zapt, termz, attributeSet, stream,
2169                                       reg_id, complete_flag, rank_type,
2170                                       xpath_use,
2171                                       num_bases, basenames, rset_nmem);
2172     }
2173     else if (!strcmp (search_type, "and-list"))
2174     {
2175         rset = rpn_search_APT_and_list (zh, zapt, termz, attributeSet, stream,
2176                                         reg_id, complete_flag, rank_type,
2177                                         xpath_use,
2178                                         num_bases, basenames, rset_nmem);
2179     }
2180     else if (!strcmp (search_type, "or-list"))
2181     {
2182         rset = rpn_search_APT_or_list (zh, zapt, termz, attributeSet, stream,
2183                                        reg_id, complete_flag, rank_type,
2184                                        xpath_use,
2185                                        num_bases, basenames, rset_nmem);
2186     }
2187     else if (!strcmp (search_type, "local"))
2188     {
2189         rset = rpn_search_APT_local (zh, zapt, termz, attributeSet, stream,
2190                                      rank_type, rset_nmem);
2191     }
2192     else if (!strcmp (search_type, "numeric"))
2193     {
2194         rset = rpn_search_APT_numeric (zh, zapt, termz, attributeSet, stream,
2195                                        reg_id, complete_flag, rank_type,
2196                                        xpath_use,
2197                                        num_bases, basenames, rset_nmem);
2198     }
2199     else if (!strcmp (search_type, "always"))
2200     {
2201         rset = 0;
2202     }
2203     else
2204         zh->errCode = 118;
2205     return rpn_search_xpath (zh, attributeSet, num_bases, basenames,
2206                              stream, rank_type, rset, 
2207                              xpath_len, xpath, rset_nmem);
2208 }
2209
2210 static RSET rpn_search_structure (ZebraHandle zh, Z_RPNStructure *zs,
2211                                   oid_value attributeSet, 
2212                                   NMEM stream, NMEM rset_nmem,
2213                                   Z_SortKeySpecList *sort_sequence,
2214                                   int num_bases, char **basenames)
2215 {
2216     RSET r = NULL;
2217     if (zs->which == Z_RPNStructure_complex)
2218     {
2219         Z_Operator *zop = zs->u.complex->roperator;
2220         RSET rset_l;
2221         RSET rset_r;
2222
2223         rset_l = rpn_search_structure (zh, zs->u.complex->s1,
2224                                        attributeSet, stream, rset_nmem,
2225                                        sort_sequence,
2226                                        num_bases, basenames);
2227         if (rset_l == NULL)
2228             return NULL;
2229         rset_r = rpn_search_structure (zh, zs->u.complex->s2,
2230                                        attributeSet, stream, rset_nmem,
2231                                        sort_sequence,
2232                                        num_bases, basenames);
2233         if (rset_r == NULL)
2234         {
2235             rset_delete (rset_l);
2236             return NULL;
2237         }
2238
2239         switch (zop->which)
2240         {
2241         case Z_Operator_and:
2242             r = rsbool_create_and( rset_nmem,
2243                     sizeof(struct it_key),  key_compare_it,
2244                     rset_l, rset_r, key_logdump_txt );
2245             break;
2246         case Z_Operator_or:
2247             r = rsbool_create_or( rset_nmem,
2248                     sizeof(struct it_key),  key_compare_it,
2249                     rset_l, rset_r, key_logdump_txt );
2250             break;
2251         case Z_Operator_and_not:
2252             r = rsbool_create_not( rset_nmem,
2253                     sizeof(struct it_key),  key_compare_it,
2254                     rset_l, rset_r, key_logdump_txt );
2255             break;
2256         case Z_Operator_prox:
2257             if (zop->u.prox->which != Z_ProximityOperator_known)
2258             {
2259                 zh->errCode = 132;
2260                 return NULL;
2261             }
2262             if (*zop->u.prox->u.known != Z_ProxUnit_word)
2263             {
2264                 char *val = (char *) nmem_malloc (stream, 16);
2265                 zh->errCode = 132;
2266                 zh->errString = val;
2267                 sprintf (val, "%d", *zop->u.prox->u.known);
2268                 return NULL;
2269             }
2270             else
2271             {
2272                 /* new / old prox */
2273                 RSET twosets[2];
2274                 
2275                 twosets[0] = rset_l;
2276                 twosets[1] = rset_r;
2277                 r=rsprox_create(rset_nmem,
2278                          sizeof(struct it_key), key_compare_it,
2279                          key_get_seq, 
2280                          2, twosets, 
2281                          *zop->u.prox->ordered,
2282                          (!zop->u.prox->exclusion ? 
2283                               0 : *zop->u.prox->exclusion),
2284                          *zop->u.prox->relationType,
2285                          *zop->u.prox->distance );
2286                 /*
2287                 parms.rset = twosets;
2288                 parms.rset_no = 2;
2289                 parms.ordered = *zop->u.prox->ordered;
2290                 parms.exclusion = (!zop->u.prox->exclusion ? 0 :
2291                                    *zop->u.prox->exclusion);
2292                 parms.relation = *zop->u.prox->relationType;
2293                 parms.distance = *zop->u.prox->distance;
2294                 parms.key_size = sizeof(struct it_key);
2295                 parms.cmp = key_compare_it;
2296                 parms.getseq = key_get_seq;
2297                 parms.log_item = key_logdump_txt;
2298                 r = rset_create(rset_kind_prox, &parms);
2299                 */
2300             }
2301             break;
2302         default:
2303             zh->errCode = 110;
2304             return NULL;
2305         }
2306     }
2307     else if (zs->which == Z_RPNStructure_simple)
2308     {
2309         if (zs->u.simple->which == Z_Operand_APT)
2310         {
2311             logf (LOG_DEBUG, "rpn_search_APT");
2312             r = rpn_search_APT (zh, zs->u.simple->u.attributesPlusTerm,
2313                                 attributeSet, stream, sort_sequence,
2314                                 num_bases, basenames,rset_nmem);
2315         }
2316         else if (zs->u.simple->which == Z_Operand_resultSetId)
2317         {
2318             logf (LOG_DEBUG, "rpn_search_ref");
2319             r = resultSetRef (zh, zs->u.simple->u.resultSetId);
2320             if (!r)
2321             {
2322                 r = rsnull_create (rset_nmem);
2323                 zh->errCode = 30;
2324                 zh->errString =
2325                     nmem_strdup (stream, zs->u.simple->u.resultSetId);
2326                 return 0;
2327             }
2328             else
2329                 rset_dup(r);
2330         }
2331         else
2332         {
2333             zh->errCode = 3;
2334             return 0;
2335         }
2336     }
2337     else
2338     {
2339         zh->errCode = 3;
2340         return 0;
2341     }
2342     return r;
2343 }
2344
2345
2346 RSET rpn_search (ZebraHandle zh, NMEM nmem, NMEM rset_nmem,
2347                  Z_RPNQuery *rpn, int num_bases, char **basenames, 
2348                  const char *setname,
2349                  ZebraSet sset)
2350 {
2351     RSET rset;
2352     oident *attrset;
2353     oid_value attributeSet;
2354     Z_SortKeySpecList *sort_sequence;
2355     int sort_status, i;
2356
2357     zh->errCode = 0;
2358     zh->errString = NULL;
2359     zh->hits = 0;
2360
2361     sort_sequence = (Z_SortKeySpecList *)
2362         nmem_malloc (nmem, sizeof(*sort_sequence));
2363     sort_sequence->num_specs = 10;
2364     sort_sequence->specs = (Z_SortKeySpec **)
2365         nmem_malloc (nmem, sort_sequence->num_specs *
2366                      sizeof(*sort_sequence->specs));
2367     for (i = 0; i<sort_sequence->num_specs; i++)
2368         sort_sequence->specs[i] = 0;
2369     
2370     attrset = oid_getentbyoid (rpn->attributeSetId);
2371     attributeSet = attrset->value;
2372     rset = rpn_search_structure (zh, rpn->RPNStructure, attributeSet,
2373                                  nmem, rset_nmem,
2374                                  sort_sequence, num_bases, basenames);
2375     if (!rset)
2376         return 0;
2377
2378     if (zh->errCode)
2379         logf (LOG_DEBUG, "search error: %d", zh->errCode);
2380     
2381     for (i = 0; sort_sequence->specs[i]; i++)
2382         ;
2383     sort_sequence->num_specs = i;
2384     if (!i)
2385         resultSetRank (zh, sset, rset);
2386     else
2387     {
2388         logf (LOG_DEBUG, "resultSetSortSingle in rpn_search");
2389         resultSetSortSingle (zh, nmem, sset, rset,
2390                              sort_sequence, &sort_status);
2391         if (zh->errCode)
2392         {
2393             logf (LOG_DEBUG, "resultSetSortSingle status = %d", zh->errCode);
2394         }
2395     }
2396     return rset;
2397 }
2398
2399 struct scan_info_entry {
2400     char *term;
2401     ISAMC_P isam_p;
2402 };
2403
2404 struct scan_info {
2405     struct scan_info_entry *list;
2406     ODR odr;
2407     int before, after;
2408     char prefix[20];
2409 };
2410
2411 static int scan_handle (char *name, const char *info, int pos, void *client)
2412 {
2413     int len_prefix, idx;
2414     struct scan_info *scan_info = (struct scan_info *) client;
2415
2416     len_prefix = strlen(scan_info->prefix);
2417     if (memcmp (name, scan_info->prefix, len_prefix))
2418         return 1;
2419     if (pos > 0)        idx = scan_info->after - pos + scan_info->before;
2420     else
2421         idx = - pos - 1;
2422     scan_info->list[idx].term = (char *)
2423         odr_malloc (scan_info->odr, strlen(name + len_prefix)+1);
2424     strcpy (scan_info->list[idx].term, name + len_prefix);
2425     assert (*info == sizeof(ISAMC_P));
2426     memcpy (&scan_info->list[idx].isam_p, info+1, sizeof(ISAMC_P));
2427     return 0;
2428 }
2429
2430 static void scan_term_untrans (ZebraHandle zh, NMEM stream, int reg_type,
2431                                char **dst, const char *src)
2432 {
2433     char term_src[IT_MAX_WORD];
2434     char term_dst[IT_MAX_WORD];
2435     
2436     term_untrans (zh, reg_type, term_src, src);
2437
2438     if (zh->iconv_from_utf8 != 0)
2439     {
2440         int len;
2441         char *inbuf = term_src;
2442         size_t inleft = strlen(term_src);
2443         char *outbuf = term_dst;
2444         size_t outleft = sizeof(term_dst)-1;
2445         size_t ret;
2446         
2447         ret = yaz_iconv (zh->iconv_from_utf8, &inbuf, &inleft,
2448                          &outbuf, &outleft);
2449         if (ret == (size_t)(-1))
2450             len = 0;
2451         else
2452             len = outbuf - term_dst;
2453         *dst = nmem_malloc (stream, len + 1);
2454         if (len > 0)
2455             memcpy (*dst, term_dst, len);
2456         (*dst)[len] = '\0';
2457     }
2458     else
2459         *dst = nmem_strdup (stream, term_src);
2460 }
2461
2462 static void count_set (RSET r, int *count)
2463 {
2464     zint psysno = 0;
2465     int kno = 0;
2466     struct it_key key;
2467     RSFD rfd;
2468
2469     logf (LOG_DEBUG, "count_set");
2470
2471     *count = 0;
2472     rfd = rset_open (r, RSETF_READ);
2473     while (rset_read (rfd, &key))
2474     {
2475 #if IT_KEY_NEW
2476         if (key.mem[0] != psysno)
2477         {
2478             psysno = key.mem[0];
2479             (*count)++;
2480         }
2481 #else
2482         if (key.sysno != psysno)
2483         {
2484             psysno = key.sysno;
2485             (*count)++;
2486         }
2487 #endif
2488         kno++;
2489     }
2490     rset_close (rfd);
2491     logf (LOG_DEBUG, "%d keys, %d records", kno, *count);
2492 }
2493
2494 void rpn_scan (ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
2495                oid_value attributeset,
2496                int num_bases, char **basenames,
2497                int *position, int *num_entries, ZebraScanEntry **list,
2498                int *is_partial, RSET limit_set, int return_zero)
2499 {
2500     int i;
2501     int pos = *position;
2502     int num = *num_entries;
2503     int before;
2504     int after;
2505     int base_no;
2506     char termz[IT_MAX_WORD+20];
2507     AttrType use;
2508     int use_value;
2509     const char *use_string = 0;
2510     struct scan_info *scan_info_array;
2511     ZebraScanEntry *glist;
2512     int ords[32], ord_no = 0;
2513     int ptr[32];
2514
2515     int bases_ok = 0;     /* no of databases with OK attribute */
2516     int errCode = 0;      /* err code (if any is not OK) */
2517     char *errString = 0;  /* addinfo */
2518
2519     unsigned reg_id;
2520     char *search_type = NULL;
2521     char rank_type[128];
2522     int complete_flag;
2523     int sort_flag;
2524     NMEM rset_nmem=NULL; 
2525
2526     *list = 0;
2527
2528     if (attributeset == VAL_NONE)
2529         attributeset = VAL_BIB1;
2530
2531     if (!limit_set)
2532     {
2533         AttrType termset;
2534         int termset_value_numeric;
2535         const char *termset_value_string;
2536         attr_init (&termset, zapt, 8);
2537         termset_value_numeric =
2538             attr_find_ex (&termset, NULL, &termset_value_string);
2539         if (termset_value_numeric != -1)
2540         {
2541             char resname[32];
2542             const char *termset_name = 0;
2543             
2544             if (termset_value_numeric != -2)
2545             {
2546                 
2547                 sprintf (resname, "%d", termset_value_numeric);
2548                 termset_name = resname;
2549             }
2550             else
2551                 termset_name = termset_value_string;
2552             
2553             limit_set = resultSetRef (zh, termset_name);
2554         }
2555     }
2556         
2557     yaz_log (LOG_DEBUG, "position = %d, num = %d set=%d",
2558              pos, num, attributeset);
2559         
2560     attr_init (&use, zapt, 1);
2561     use_value = attr_find_ex (&use, &attributeset, &use_string);
2562
2563     if (zebra_maps_attr (zh->reg->zebra_maps, zapt, &reg_id, &search_type,
2564                          rank_type, &complete_flag, &sort_flag))
2565     {
2566         *num_entries = 0;
2567         zh->errCode = 113;
2568         return ;
2569     }
2570     yaz_log (LOG_DEBUG, "use_value = %d", use_value);
2571
2572     if (use_value == -1)
2573         use_value = 1016;
2574     for (base_no = 0; base_no < num_bases && ord_no < 32; base_no++)
2575     {
2576         int r;
2577         attent attp;
2578         data1_local_attribute *local_attr;
2579
2580         if ((r=att_getentbyatt (zh, &attp, attributeset, use_value,
2581                                 use_string)))
2582         {
2583             logf (LOG_DEBUG, "att_getentbyatt fail. set=%d use=%d",
2584                   attributeset, use_value);
2585             if (r == -1)
2586             {
2587                 char val_str[32];
2588                 sprintf (val_str, "%d", use_value);
2589                 errCode = 114;
2590                 errString = odr_strdup (stream, val_str);
2591             }   
2592             else
2593                 errCode = 121;
2594             continue;
2595         }
2596         if (zebraExplain_curDatabase (zh->reg->zei, basenames[base_no]))
2597         {
2598             zh->errString = basenames[base_no];
2599             zh->errCode = 109; /* Database unavailable */
2600             *num_entries = 0;
2601             return;
2602         }
2603         bases_ok++;
2604         for (local_attr = attp.local_attributes; local_attr && ord_no < 32;
2605              local_attr = local_attr->next)
2606         {
2607             int ord;
2608
2609             ord = zebraExplain_lookupSU (zh->reg->zei, attp.attset_ordinal,
2610                                          local_attr->local);
2611             if (ord > 0)
2612                 ords[ord_no++] = ord;
2613         }
2614     }
2615     if (!bases_ok && errCode)
2616     {
2617         zh->errCode = errCode;
2618         zh->errString = errString;
2619         *num_entries = 0;
2620     }
2621     if (ord_no == 0)
2622     {
2623         char val_str[32];
2624         sprintf (val_str, "%d", use_value);
2625         zh->errCode = 114;
2626         zh->errString = odr_strdup (stream, val_str);
2627
2628         *num_entries = 0;
2629         return;
2630     }
2631     /* prepare dictionary scanning */
2632     before = pos-1;
2633     after = 1+num-pos;
2634     scan_info_array = (struct scan_info *)
2635         odr_malloc (stream, ord_no * sizeof(*scan_info_array));
2636     for (i = 0; i < ord_no; i++)
2637     {
2638         int j, prefix_len = 0;
2639         int before_tmp = before, after_tmp = after;
2640         struct scan_info *scan_info = scan_info_array + i;
2641         struct rpn_char_map_info rcmi;
2642
2643         rpn_char_map_prepare (zh->reg, reg_id, &rcmi);
2644
2645         scan_info->before = before;
2646         scan_info->after = after;
2647         scan_info->odr = stream;
2648
2649         scan_info->list = (struct scan_info_entry *)
2650             odr_malloc (stream, (before+after) * sizeof(*scan_info->list));
2651         for (j = 0; j<before+after; j++)
2652             scan_info->list[j].term = NULL;
2653
2654         prefix_len += key_SU_encode (ords[i], termz + prefix_len);
2655         termz[prefix_len++] = reg_id;
2656         termz[prefix_len] = 0;
2657         strcpy (scan_info->prefix, termz);
2658
2659         if (trans_scan_term (zh, zapt, termz+prefix_len, reg_id))
2660             return ;
2661                     
2662         dict_scan (zh->reg->dict, termz, &before_tmp, &after_tmp,
2663                    scan_info, scan_handle);
2664     }
2665     glist = (ZebraScanEntry *)
2666         odr_malloc (stream, (before+after)*sizeof(*glist));
2667
2668     rset_nmem=nmem_create();
2669
2670     /* consider terms after main term */
2671     for (i = 0; i < ord_no; i++)
2672         ptr[i] = before;
2673     
2674     *is_partial = 0;
2675     for (i = 0; i<after; i++)
2676     {
2677         int j, j0 = -1;
2678         const char *mterm = NULL;
2679         const char *tst;
2680         RSET rset;
2681         
2682         for (j = 0; j < ord_no; j++)
2683         {
2684             if (ptr[j] < before+after &&
2685                 (tst=scan_info_array[j].list[ptr[j]].term) &&
2686                 (!mterm || strcmp (tst, mterm) < 0))
2687             {
2688                 j0 = j;
2689                 mterm = tst;
2690             }
2691         }
2692         if (j0 == -1)
2693             break;
2694         scan_term_untrans (zh, stream->mem, reg_id,
2695                            &glist[i+before].term, mterm);
2696         rset = rset_trunc (zh, &scan_info_array[j0].list[ptr[j0]].isam_p, 1,
2697                            glist[i+before].term, strlen(glist[i+before].term),
2698                            NULL, 0, zapt->term->which, rset_nmem);
2699
2700         ptr[j0]++;
2701         for (j = j0+1; j<ord_no; j++)
2702         {
2703             if (ptr[j] < before+after &&
2704                 (tst=scan_info_array[j].list[ptr[j]].term) &&
2705                 !strcmp (tst, mterm))
2706             {
2707                 RSET rset2;
2708
2709                 rset2 =
2710                    rset_trunc (zh, &scan_info_array[j].list[ptr[j]].isam_p, 1,
2711                                glist[i+before].term,
2712                                strlen(glist[i+before].term), NULL, 0,
2713                                zapt->term->which,rset_nmem);
2714                 rset = rsbool_create_or(rset_nmem, 
2715                             sizeof(struct it_key), key_compare_it,
2716                             rset, rset2, key_logdump_txt);
2717
2718                 ptr[j]++;
2719             }
2720         }
2721         if (limit_set)
2722             rset = rsbool_create_and(rset_nmem,
2723                             sizeof(struct it_key), key_compare_it,
2724                             rset, rset_dup(limit_set), 
2725                             key_logdump_txt);
2726         count_set (rset, &glist[i+before].occurrences);
2727         rset_delete (rset);
2728     }
2729     if (i < after)
2730     {
2731         *num_entries -= (after-i);
2732         *is_partial = 1;
2733     }
2734
2735     /* consider terms before main term */
2736     for (i = 0; i<ord_no; i++)
2737         ptr[i] = 0;
2738
2739     for (i = 0; i<before; i++)
2740     {
2741         int j, j0 = -1;
2742         const char *mterm = NULL;
2743         const char *tst;
2744         RSET rset;
2745         
2746         for (j = 0; j <ord_no; j++)
2747         {
2748             if (ptr[j] < before &&
2749                 (tst=scan_info_array[j].list[before-1-ptr[j]].term) &&
2750                 (!mterm || strcmp (tst, mterm) > 0))
2751             {
2752                 j0 = j;
2753                 mterm = tst;
2754             }
2755         }
2756         if (j0 == -1)
2757             break;
2758
2759         scan_term_untrans (zh, stream->mem, reg_id,
2760                            &glist[before-1-i].term, mterm);
2761
2762         rset = rset_trunc
2763                (zh, &scan_info_array[j0].list[before-1-ptr[j0]].isam_p, 1,
2764                 glist[before-1-i].term, strlen(glist[before-1-i].term),
2765                 NULL, 0, zapt->term->which,rset_nmem);
2766
2767         ptr[j0]++;
2768
2769         for (j = j0+1; j<ord_no; j++)
2770         {
2771             if (ptr[j] < before &&
2772                 (tst=scan_info_array[j].list[before-1-ptr[j]].term) &&
2773                 !strcmp (tst, mterm))
2774             {
2775                 RSET rset2;
2776
2777                 rset2 = rset_trunc (zh,
2778                          &scan_info_array[j].list[before-1-ptr[j]].isam_p, 1,
2779                                     glist[before-1-i].term,
2780                                     strlen(glist[before-1-i].term), NULL, 0,
2781                                     zapt->term->which, rset_nmem);
2782                 rset = rsbool_create_and(rset_nmem,
2783                             sizeof(struct it_key), key_compare_it,
2784                             rset, rset2,
2785                             key_logdump_txt);
2786                 ptr[j]++;
2787             }
2788         }
2789         if (limit_set)
2790             rset = rsbool_create_and(rset_nmem,
2791                             sizeof(struct it_key), key_compare_it,
2792                             rset, rset_dup(limit_set),
2793                             key_logdump_txt);
2794         count_set (rset, &glist[before-1-i].occurrences);
2795         rset_delete (rset);
2796     }
2797     i = before-i;
2798     if (i)
2799     {
2800         *is_partial = 1;
2801         *position -= i;
2802         *num_entries -= i;
2803     }
2804
2805     nmem_destroy(rset_nmem);
2806     *list = glist + i;               /* list is set to first 'real' entry */
2807     
2808     logf (LOG_DEBUG, "position = %d, num_entries = %d",
2809           *position, *num_entries);
2810     if (zh->errCode)
2811         logf (LOG_DEBUG, "scan error: %d", zh->errCode);
2812 }
2813