2 * Copyright (C) 1995-2002, Index Data
4 * Sebastian Hammer, Adam Dickmeiss
6 * $Id: zrpn.c,v 1.109 2002-02-18 11:46:58 adam Exp $
24 struct rpn_char_map_info {
29 static const char **rpn_char_map_handler (void *vp, const char **from, int len)
31 struct rpn_char_map_info *p = (struct rpn_char_map_info *) vp;
32 return zebra_maps_input (p->zm, p->reg_type, from, len);
35 static void rpn_char_map_prepare (ZebraHandle zh, int reg_type,
36 struct rpn_char_map_info *map_info)
38 map_info->zm = zh->service->zebra_maps;
39 map_info->reg_type = reg_type;
40 dict_grep_cmap (zh->service->dict, map_info, rpn_char_map_handler);
47 Z_AttributesPlusTerm *zapt;
50 static int attr_find_ex (AttrType *src, oid_value *attributeSetP,
51 const char **string_value)
56 num_attributes = src->zapt->attributes->num_attributes;
58 num_attributes = src->zapt->num_attributes;
60 while (src->major < num_attributes)
62 Z_AttributeElement *element;
65 element = src->zapt->attributes->attributes[src->major];
67 element = src->zapt->attributeList[src->major];
69 if (src->type == *element->attributeType)
71 switch (element->which)
73 case Z_AttributeValue_numeric:
75 if (element->attributeSet && attributeSetP)
79 attrset = oid_getentbyoid (element->attributeSet);
80 *attributeSetP = attrset->value;
82 return *element->value.numeric;
84 case Z_AttributeValue_complex:
85 if (src->minor >= element->value.complex->num_list)
87 if (element->value.complex->list[src->minor]->which ==
88 Z_StringOrNumeric_numeric)
91 if (element->attributeSet && attributeSetP)
95 attrset = oid_getentbyoid (element->attributeSet);
96 *attributeSetP = attrset->value;
99 *element->value.complex->list[src->minor-1]->u.numeric;
101 else if (element->value.complex->list[src->minor]->which ==
102 Z_StringOrNumeric_string)
108 element->value.complex->list[src->minor-1]->u.string;
122 static int attr_find (AttrType *src, oid_value *attributeSetP)
124 return attr_find_ex (src, attributeSetP, 0);
127 static void attr_init (AttrType *src, Z_AttributesPlusTerm *zapt,
150 static void term_untrans (ZebraHandle zh, int reg_type,
151 char *dst, const char *src)
155 const char *cp = zebra_maps_output (zh->service->zebra_maps,
166 static void add_isam_p (const char *name, const char *info,
169 if (p->isam_p_indx == p->isam_p_size)
171 ISAMS_P *new_isam_p_buf;
175 p->isam_p_size = 2*p->isam_p_size + 100;
176 new_isam_p_buf = (ISAMS_P *) xmalloc (sizeof(*new_isam_p_buf) *
180 memcpy (new_isam_p_buf, p->isam_p_buf,
181 p->isam_p_indx * sizeof(*p->isam_p_buf));
182 xfree (p->isam_p_buf);
184 p->isam_p_buf = new_isam_p_buf;
187 new_term_no = (int *) xmalloc (sizeof(*new_term_no) *
191 memcpy (new_term_no, p->isam_p_buf,
192 p->isam_p_indx * sizeof(*p->term_no));
195 p->term_no = new_term_no;
198 assert (*info == sizeof(*p->isam_p_buf));
199 memcpy (p->isam_p_buf + p->isam_p_indx, info+1, sizeof(*p->isam_p_buf));
208 int len = key_SU_decode (&su_code, name);
210 term_untrans (p->zh, p->reg_type, term_tmp, name+len+1);
211 logf (LOG_LOG, "grep: %d %c %s", su_code, name[len], term_tmp);
212 zebraExplain_lookup_ord (p->zh->service->zei,
213 su_code, &db, &set, &use);
214 logf (LOG_LOG, "grep: set=%d use=%d db=%s", set, use, db);
216 resultSetAddTerm (p->zh, p->termset, name[len], db,
223 static int grep_handle (char *name, const char *info, void *p)
225 add_isam_p (name, info, (struct grep_info *) p);
229 static int term_pre (ZebraMaps zebra_maps, int reg_type, const char **src,
230 const char *ct1, const char *ct2)
232 const char *s1, *s0 = *src;
235 /* skip white space */
238 if (ct1 && strchr (ct1, *s0))
240 if (ct2 && strchr (ct2, *s0))
243 map = zebra_maps_input (zebra_maps, reg_type, &s1, strlen(s1));
244 if (**map != *CHR_SPACE)
252 /* term_100: handle term, where trunc=none (no operators at all) */
253 static int term_100 (ZebraMaps zebra_maps, int reg_type,
254 const char **src, char *dst, int space_split,
262 const char *space_start = 0;
263 const char *space_end = 0;
265 if (!term_pre (zebra_maps, reg_type, src, NULL, NULL))
271 map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
274 if (**map == *CHR_SPACE)
277 else /* complete subfield only. */
279 if (**map == *CHR_SPACE)
280 { /* save space mapping for later .. */
285 else if (space_start)
286 { /* reload last space */
287 while (space_start < space_end)
289 if (!isalnum (*space_start) && *space_start != '-')
291 dst_term[j++] = *space_start;
292 dst[i++] = *space_start++;
295 space_start = space_end = 0;
298 /* add non-space char */
301 if (!isalnum (*s1) && *s1 != '-')
313 /* term_101: handle term, where trunc=Process # */
314 static int term_101 (ZebraMaps zebra_maps, int reg_type,
315 const char **src, char *dst, int space_split,
323 if (!term_pre (zebra_maps, reg_type, src, "#", "#"))
332 dst_term[j++] = *s0++;
337 map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
338 if (space_split && **map == *CHR_SPACE)
350 dst_term[j++] = '\0';
355 /* term_103: handle term, where trunc=re-2 (regular expressions) */
356 static int term_103 (ZebraMaps zebra_maps, int reg_type, const char **src,
357 char *dst, int *errors, int space_split,
365 if (!term_pre (zebra_maps, reg_type, src, "^\\()[].*+?|", "("))
368 if (errors && *s0 == '+' && s0[1] && s0[2] == '+' && s0[3] &&
371 *errors = s0[1] - '0';
378 if (strchr ("^\\()[].*+?|-", *s0))
386 map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
387 if (**map == *CHR_SPACE)
404 /* term_103: handle term, where trunc=re-1 (regular expressions) */
405 static int term_102 (ZebraMaps zebra_maps, int reg_type, const char **src,
406 char *dst, int space_split, char *dst_term)
408 return term_103 (zebra_maps, reg_type, src, dst, NULL, space_split,
413 /* term_104: handle term, where trunc=Process # and ! */
414 static int term_104 (ZebraMaps zebra_maps, int reg_type,
415 const char **src, char *dst, int space_split,
423 if (!term_pre (zebra_maps, reg_type, src, "#!", "#!"))
432 dst_term[j++] = *s0++;
437 dst_term[j++] = *s0++;
441 map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
442 if (space_split && **map == *CHR_SPACE)
454 dst_term[j++] = '\0';
459 /* term_105/106: handle term, where trunc=Process * and ! and right trunc */
460 static int term_105 (ZebraMaps zebra_maps, int reg_type,
461 const char **src, char *dst, int space_split,
462 char *dst_term, int right_truncate)
469 if (!term_pre (zebra_maps, reg_type, src, "*!", "*!"))
478 dst_term[j++] = *s0++;
483 dst_term[j++] = *s0++;
487 map = zebra_maps_input (zebra_maps, reg_type, &s0, strlen(s0));
488 if (space_split && **map == *CHR_SPACE)
506 dst_term[j++] = '\0';
512 /* gen_regular_rel - generate regular expression from relation
513 * val: border value (inclusive)
514 * islt: 1 if <=; 0 if >=.
516 static void gen_regular_rel (char *dst, int val, int islt)
523 logf (LOG_DEBUG, "gen_regular_rel. val=%d, islt=%d", val, islt);
527 strcpy (dst, "(-[0-9]+|(");
535 strcpy (dst, "([0-9]+|-(");
536 dst_p = strlen (dst);
546 dst_p = strlen (dst);
547 sprintf (numstr, "%d", val);
548 for (w = strlen(numstr); --w >= 0; pos++)
567 strcpy (dst + dst_p, numstr);
568 dst_p = strlen(dst) - pos - 1;
596 for (i = 0; i<pos; i++)
609 /* match everything less than 10^(pos-1) */
611 for (i=1; i<pos; i++)
612 strcat (dst, "[0-9]?");
616 /* match everything greater than 10^pos */
617 for (i = 0; i <= pos; i++)
618 strcat (dst, "[0-9]");
619 strcat (dst, "[0-9]*");
624 void string_rel_add_char (char **term_p, const char *src, int *indx)
626 if (src[*indx] == '\\')
627 *(*term_p)++ = src[(*indx)++];
628 *(*term_p)++ = src[(*indx)++];
632 * > abc ([b-].*|a[c-].*|ab[d-].*|abc.+)
633 * ([^-a].*|a[^-b].*ab[^-c].*|abc.+)
634 * >= abc ([b-].*|a[c-].*|ab[c-].*)
635 * ([^-a].*|a[^-b].*|ab[c-].*)
636 * < abc ([-0].*|a[-a].*|ab[-b].*)
637 * ([^a-].*|a[^b-].*|ab[^c-].*)
638 * <= abc ([-0].*|a[-a].*|ab[-b].*|abc)
639 * ([^a-].*|a[^b-].*|ab[^c-].*|abc)
641 static int string_relation (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
642 const char **term_sub, char *term_dict,
643 oid_value attributeSet,
644 int reg_type, int space_split, char *term_dst)
649 char *term_tmp = term_dict + strlen(term_dict);
650 char term_component[256];
652 attr_init (&relation, zapt, 2);
653 relation_value = attr_find (&relation, NULL);
655 logf (LOG_DEBUG, "string relation value=%d", relation_value);
656 switch (relation_value)
659 if (!term_100 (zh->service->zebra_maps, reg_type,
660 term_sub, term_component,
661 space_split, term_dst))
663 logf (LOG_DEBUG, "Relation <");
666 for (i = 0; term_component[i]; )
673 string_rel_add_char (&term_tmp, term_component, &j);
678 string_rel_add_char (&term_tmp, term_component, &i);
689 if (!term_100 (zh->service->zebra_maps, reg_type,
690 term_sub, term_component,
691 space_split, term_dst))
693 logf (LOG_DEBUG, "Relation <=");
696 for (i = 0; term_component[i]; )
701 string_rel_add_char (&term_tmp, term_component, &j);
705 string_rel_add_char (&term_tmp, term_component, &i);
714 for (i = 0; term_component[i]; )
715 string_rel_add_char (&term_tmp, term_component, &i);
720 if (!term_100 (zh->service->zebra_maps, reg_type,
721 term_sub, term_component, space_split, term_dst))
723 logf (LOG_DEBUG, "Relation >");
726 for (i = 0; term_component[i];)
731 string_rel_add_char (&term_tmp, term_component, &j);
736 string_rel_add_char (&term_tmp, term_component, &i);
744 for (i = 0; term_component[i];)
745 string_rel_add_char (&term_tmp, term_component, &i);
752 if (!term_100 (zh->service->zebra_maps, reg_type, term_sub,
753 term_component, space_split, term_dst))
755 logf (LOG_DEBUG, "Relation >=");
758 for (i = 0; term_component[i];)
765 string_rel_add_char (&term_tmp, term_component, &j);
768 if (term_component[i+1])
772 string_rel_add_char (&term_tmp, term_component, &i);
776 string_rel_add_char (&term_tmp, term_component, &i);
788 logf (LOG_DEBUG, "Relation =");
789 if (!term_100 (zh->service->zebra_maps, reg_type, term_sub,
790 term_component, space_split, term_dst))
792 strcat (term_tmp, "(");
793 strcat (term_tmp, term_component);
794 strcat (term_tmp, ")");
799 static int string_term (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
800 const char **term_sub,
801 oid_value attributeSet, NMEM stream,
802 struct grep_info *grep_info,
803 int reg_type, int complete_flag,
804 int num_bases, char **basenames,
807 char term_dict[2*IT_MAX_WORD+4000];
810 int truncation_value;
813 oid_value curAttributeSet = attributeSet;
815 struct rpn_char_map_info rcmi;
816 int space_split = complete_flag ? 0 : 1;
818 rpn_char_map_prepare (zh, reg_type, &rcmi);
819 attr_init (&use, zapt, 1);
820 use_value = attr_find (&use, &curAttributeSet);
821 logf (LOG_DEBUG, "string_term, use value %d", use_value);
822 attr_init (&truncation, zapt, 5);
823 truncation_value = attr_find (&truncation, NULL);
824 logf (LOG_DEBUG, "truncation value %d", truncation_value);
829 for (base_no = 0; base_no < num_bases; base_no++)
832 data1_local_attribute *local_attr;
833 int max_pos, prefix_len = 0;
836 if ((r=att_getentbyatt (zh, &attp, curAttributeSet, use_value)))
838 logf (LOG_DEBUG, "att_getentbyatt fail. set=%d use=%d r=%d",
839 curAttributeSet, use_value, r);
843 sprintf (val_str, "%d", use_value);
845 zh->errString = nmem_strdup (stream, val_str);
850 struct oident oident;
852 oident.proto = PROTO_Z3950;
853 oident.oclass = CLASS_ATTSET;
854 oident.value = curAttributeSet;
855 oid_ent_to_oid (&oident, oid);
858 zh->errString = nmem_strdup (stream, oident.desc);
862 if (zebraExplain_curDatabase (zh->service->zei, basenames[base_no]))
864 zh->errCode = 109; /* Database unavailable */
865 zh->errString = basenames[base_no];
868 for (local_attr = attp.local_attributes; local_attr;
869 local_attr = local_attr->next)
875 ord = zebraExplain_lookupSU (zh->service->zei, attp.attset_ordinal,
880 term_dict[prefix_len++] = '|';
882 term_dict[prefix_len++] = '(';
884 ord_len = key_SU_encode (ord, ord_buf);
885 for (i = 0; i<ord_len; i++)
887 term_dict[prefix_len++] = 1;
888 term_dict[prefix_len++] = ord_buf[i];
894 sprintf (val_str, "%d", use_value);
896 zh->errString = nmem_strdup (stream, val_str);
899 term_dict[prefix_len++] = ')';
900 term_dict[prefix_len++] = 1;
901 term_dict[prefix_len++] = reg_type;
902 logf (LOG_DEBUG, "reg_type = %d", term_dict[prefix_len-1]);
903 term_dict[prefix_len] = '\0';
905 switch (truncation_value)
907 case -1: /* not specified */
908 case 100: /* do not truncate */
909 if (!string_relation (zh, zapt, &termp, term_dict,
911 reg_type, space_split, term_dst))
913 logf (LOG_DEBUG, "dict_lookup_grep: %s", term_dict+prefix_len);
914 r = dict_lookup_grep (zh->service->dict, term_dict, 0,
915 grep_info, &max_pos, 0, grep_handle);
917 logf (LOG_WARN, "dict_lookup_grep fail, rel=gt: %d", r);
919 case 1: /* right truncation */
920 term_dict[j++] = '(';
921 if (!term_100 (zh->service->zebra_maps, reg_type,
922 &termp, term_dict + j, space_split, term_dst))
924 strcat (term_dict, ".*)");
925 dict_lookup_grep (zh->service->dict, term_dict, 0, grep_info,
926 &max_pos, 0, grep_handle);
928 case 2: /* keft truncation */
929 term_dict[j++] = '('; term_dict[j++] = '.'; term_dict[j++] = '*';
930 if (!term_100 (zh->service->zebra_maps, reg_type,
931 &termp, term_dict + j, space_split, term_dst))
933 strcat (term_dict, ")");
934 dict_lookup_grep (zh->service->dict, term_dict, 0, grep_info,
935 &max_pos, 0, grep_handle);
937 case 3: /* left&right truncation */
938 term_dict[j++] = '('; term_dict[j++] = '.'; term_dict[j++] = '*';
939 if (!term_100 (zh->service->zebra_maps, reg_type,
940 &termp, term_dict + j, space_split, term_dst))
942 strcat (term_dict, ".*)");
943 dict_lookup_grep (zh->service->dict, term_dict, 0, grep_info,
944 &max_pos, 0, grep_handle);
948 case 101: /* process # in term */
949 term_dict[j++] = '(';
950 if (!term_101 (zh->service->zebra_maps, reg_type,
951 &termp, term_dict + j, space_split, term_dst))
953 strcat (term_dict, ")");
954 r = dict_lookup_grep (zh->service->dict, term_dict, 0, grep_info,
955 &max_pos, 0, grep_handle);
957 logf (LOG_WARN, "dict_lookup_grep err, trunc=#: %d", r);
959 case 102: /* Regexp-1 */
960 term_dict[j++] = '(';
961 if (!term_102 (zh->service->zebra_maps, reg_type,
962 &termp, term_dict + j, space_split, term_dst))
964 strcat (term_dict, ")");
965 logf (LOG_DEBUG, "Regexp-1 tolerance=%d", r);
966 r = dict_lookup_grep (zh->service->dict, term_dict, 0, grep_info,
967 &max_pos, 0, grep_handle);
969 logf (LOG_WARN, "dict_lookup_grep err, trunc=regular: %d",
972 case 103: /* Regexp-2 */
974 term_dict[j++] = '(';
975 if (!term_103 (zh->service->zebra_maps, reg_type,
976 &termp, term_dict + j, &r, space_split, term_dst))
978 strcat (term_dict, ")");
979 logf (LOG_DEBUG, "Regexp-2 tolerance=%d", r);
980 r = dict_lookup_grep (zh->service->dict, term_dict, r, grep_info,
981 &max_pos, 2, grep_handle);
983 logf (LOG_WARN, "dict_lookup_grep err, trunc=eregular: %d",
986 case 104: /* process # and ! in term */
987 term_dict[j++] = '(';
988 if (!term_104 (zh->service->zebra_maps, reg_type,
989 &termp, term_dict + j, space_split, term_dst))
991 strcat (term_dict, ")");
992 r = dict_lookup_grep (zh->service->dict, term_dict, 0, grep_info,
993 &max_pos, 0, grep_handle);
995 logf (LOG_WARN, "dict_lookup_grep err, trunc=#/!: %d", r);
997 case 105: /* process * and ! in term */
998 term_dict[j++] = '(';
999 if (!term_105 (zh->service->zebra_maps, reg_type,
1000 &termp, term_dict + j, space_split, term_dst, 1))
1002 strcat (term_dict, ")");
1003 r = dict_lookup_grep (zh->service->dict, term_dict, 0, grep_info,
1004 &max_pos, 0, grep_handle);
1006 logf (LOG_WARN, "dict_lookup_grep err, trunc=*/!: %d", r);
1008 case 106: /* process * and ! in term */
1009 term_dict[j++] = '(';
1010 if (!term_105 (zh->service->zebra_maps, reg_type,
1011 &termp, term_dict + j, space_split, term_dst, 0))
1013 strcat (term_dict, ")");
1014 r = dict_lookup_grep (zh->service->dict, term_dict, 0, grep_info,
1015 &max_pos, 0, grep_handle);
1017 logf (LOG_WARN, "dict_lookup_grep err, trunc=*/!: %d", r);
1022 logf (LOG_DEBUG, "%d positions", grep_info->isam_p_indx);
1026 static void trans_term (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1030 Z_Term *term = zapt->term;
1032 sizez = term->u.general->len;
1033 if (sizez > IT_MAX_WORD-1)
1034 sizez = IT_MAX_WORD-1;
1035 memcpy (termz, term->u.general->buf, sizez);
1036 termz[sizez] = '\0';
1039 static void trans_scan_term (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1040 char *termz, int reg_type)
1042 Z_Term *term = zapt->term;
1044 const char *cp = (const char *) term->u.general->buf;
1045 const char *cp_end = cp + term->u.general->len;
1048 const char *space_map = NULL;
1051 while ((len = (cp_end - cp)) > 0)
1053 map = zebra_maps_input (zh->service->zebra_maps, reg_type, &cp, len);
1054 if (**map == *CHR_SPACE)
1059 for (src = space_map; *src; src++)
1062 for (src = *map; *src; src++)
1069 static RSET rpn_prox (ZebraHandle zh, RSET *rset, int rset_no,
1070 int ordered, int exclusion, int relation, int distance)
1075 struct it_key **buf;
1077 char prox_term[1024];
1078 int length_prox_term = 0;
1079 int min_nn = 10000000;
1081 const char *flags = NULL;
1083 rsfd = (RSFD *) xmalloc (sizeof(*rsfd)*rset_no);
1084 more = (int *) xmalloc (sizeof(*more)*rset_no);
1085 buf = (struct it_key **) xmalloc (sizeof(*buf)*rset_no);
1088 for (i = 0; i<rset_no; i++)
1091 for (j = 0; j<rset[i]->no_rset_terms; j++)
1093 const char *nflags = rset[i]->rset_terms[j]->flags;
1094 char *term = rset[i]->rset_terms[j]->name;
1095 int lterm = strlen(term);
1096 if (lterm + length_prox_term < sizeof(prox_term)-1)
1098 if (length_prox_term)
1099 prox_term[length_prox_term++] = ' ';
1100 strcpy (prox_term + length_prox_term, term);
1101 length_prox_term += lterm;
1103 if (min_nn > rset[i]->rset_terms[j]->nn)
1104 min_nn = rset[i]->rset_terms[j]->nn;
1108 for (i = 0; i<rset_no; i++)
1113 for (i = 0; i<rset_no; i++)
1115 buf[i] = (struct it_key *) xmalloc (sizeof(**buf));
1116 rsfd[i] = rset_open (rset[i], RSETF_READ);
1117 if (!(more[i] = rset_read (rset[i], rsfd[i], buf[i], &term_index)))
1122 /* at least one is empty ... return null set */
1123 rset_null_parms parms;
1125 parms.rset_term = rset_term_create (prox_term, length_prox_term,
1127 parms.rset_term->nn = 0;
1128 result = rset_create (rset_kind_null, &parms);
1130 else if (ordered && relation == 3 && exclusion == 0 && distance == 1)
1132 /* special proximity case = phrase search ... */
1133 rset_temp_parms parms;
1136 parms.rset_term = rset_term_create (prox_term, length_prox_term,
1138 parms.rset_term->nn = min_nn;
1139 parms.key_size = sizeof (struct it_key);
1140 parms.temp_path = res_get (zh->service->res, "setTmpDir");
1141 result = rset_create (rset_kind_temp, &parms);
1142 rsfd_result = rset_open (result, RSETF_WRITE);
1146 for (i = 1; i<rset_no; i++)
1155 cmp = key_compare_it (buf[i], buf[i-1]);
1158 more[i-1] = rset_read (rset[i-1], rsfd[i-1],
1159 buf[i-1], &term_index);
1164 if (buf[i-1]->seqno+1 != buf[i]->seqno)
1166 more[i-1] = rset_read (rset[i-1], rsfd[i-1],
1167 buf[i-1], &term_index);
1173 more[i] = rset_read (rset[i], rsfd[i], buf[i],
1180 rset_write (result, rsfd_result, buf[0]);
1181 more[0] = rset_read (*rset, *rsfd, *buf, &term_index);
1184 rset_close (result, rsfd_result);
1186 else if (rset_no == 2)
1188 /* generic proximity case (two input sets only) ... */
1189 rset_temp_parms parms;
1192 logf (LOG_LOG, "generic prox, dist = %d, relation = %d, ordered =%d, exclusion=%d",
1193 distance, relation, ordered, exclusion);
1194 parms.rset_term = rset_term_create (prox_term, length_prox_term,
1196 parms.rset_term->nn = min_nn;
1197 parms.key_size = sizeof (struct it_key);
1198 parms.temp_path = res_get (zh->service->res, "setTmpDir");
1199 result = rset_create (rset_kind_temp, &parms);
1200 rsfd_result = rset_open (result, RSETF_WRITE);
1202 while (more[0] && more[1])
1204 int cmp = key_compare_it (buf[0], buf[1]);
1206 more[0] = rset_read (rset[0], rsfd[0], buf[0], &term_index);
1208 more[1] = rset_read (rset[1], rsfd[1], buf[1], &term_index);
1211 int sysno = buf[0]->sysno;
1215 seqno[n++] = buf[0]->seqno;
1216 while ((more[0] = rset_read (rset[0], rsfd[0], buf[0],
1218 sysno == buf[0]->sysno)
1220 seqno[n++] = buf[0]->seqno;
1223 for (i = 0; i<n; i++)
1225 int diff = buf[1]->seqno - seqno[i];
1226 int excl = exclusion;
1227 if (!ordered && diff < 0)
1232 if (diff < distance && diff >= 0)
1236 if (diff <= distance && diff >= 0)
1240 if (diff == distance && diff >= 0)
1244 if (diff >= distance && diff >= 0)
1248 if (diff > distance && diff >= 0)
1252 if (diff != distance && diff >= 0)
1258 rset_write (result, rsfd_result, buf[1]);
1262 } while ((more[1] = rset_read (rset[1], rsfd[1], buf[1],
1264 sysno == buf[1]->sysno);
1267 rset_close (result, rsfd_result);
1271 rset_null_parms parms;
1273 parms.rset_term = rset_term_create (prox_term, length_prox_term,
1275 parms.rset_term->nn = 0;
1276 result = rset_create (rset_kind_null, &parms);
1278 for (i = 0; i<rset_no; i++)
1281 rset_close (rset[i], rsfd[i]);
1291 char *normalize_term(ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1292 const char *termz, NMEM stream, unsigned reg_id)
1295 AttrType truncation;
1296 int truncation_value;
1299 attr_init (&truncation, zapt, 5);
1300 truncation_value = attr_find (&truncation, NULL);
1302 switch (truncation_value)
1322 wrbuf = zebra_replace(zh->service->zebra_maps, reg_id, ex_list,
1323 termz, strlen(termz));
1325 return nmem_strdup(stream, termz);
1328 char *buf = (char*) nmem_malloc (stream, wrbuf_len(wrbuf)+1);
1329 memcpy (buf, wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
1330 buf[wrbuf_len(wrbuf)] = '\0';
1335 static int grep_info_prepare (ZebraHandle zh,
1336 Z_AttributesPlusTerm *zapt,
1337 struct grep_info *grep_info,
1342 int termset_value_numeric;
1343 const char *termset_value_string;
1346 grep_info->term_no = 0;
1348 grep_info->isam_p_size = 0;
1349 grep_info->isam_p_buf = NULL;
1351 grep_info->reg_type = reg_type;
1352 grep_info->termset = 0;
1354 attr_init (&termset, zapt, 8);
1355 termset_value_numeric =
1356 attr_find_ex (&termset, NULL, &termset_value_string);
1357 if (termset_value_numeric != -1)
1360 const char *termset_name = 0;
1361 if (termset_value_numeric != -2)
1364 sprintf (resname, "%d", termset_value_numeric);
1365 termset_name = resname;
1368 termset_name = termset_value_string;
1369 logf (LOG_LOG, "creating termset set %s", termset_name);
1370 grep_info->termset = resultSetAdd (zh, termset_name, 1);
1371 if (!grep_info->termset)
1374 zh->errString = nmem_strdup (stream, termset_name);
1382 static RSET rpn_search_APT_phrase (ZebraHandle zh,
1383 Z_AttributesPlusTerm *zapt,
1384 const char *termz_org,
1385 oid_value attributeSet,
1387 int reg_type, int complete_flag,
1388 const char *rank_type,
1389 int num_bases, char **basenames)
1391 char term_dst[IT_MAX_WORD+1];
1392 RSET rset[60], result;
1393 int i, r, rset_no = 0;
1394 struct grep_info grep_info;
1395 char *termz = normalize_term(zh, zapt, termz_org, stream, reg_type);
1396 const char *termp = termz;
1398 if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1402 logf (LOG_DEBUG, "APT_phrase termp=%s", termp);
1403 grep_info.isam_p_indx = 0;
1404 r = string_term (zh, zapt, &termp, attributeSet, stream, &grep_info,
1405 reg_type, complete_flag, num_bases, basenames,
1409 logf (LOG_DEBUG, "term: %s", term_dst);
1410 rset[rset_no] = rset_trunc (zh, grep_info.isam_p_buf,
1411 grep_info.isam_p_indx, term_dst,
1412 strlen(term_dst), rank_type);
1413 assert (rset[rset_no]);
1414 if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1418 xfree(grep_info.term_no);
1420 xfree (grep_info.isam_p_buf);
1423 rset_null_parms parms;
1425 parms.rset_term = rset_term_create (term_dst, -1, rank_type);
1426 return rset_create (rset_kind_null, &parms);
1428 else if (rset_no == 1)
1430 result = rpn_prox (zh, rset, rset_no, 1, 0, 3, 1);
1431 for (i = 0; i<rset_no; i++)
1432 rset_delete (rset[i]);
1436 static RSET rpn_search_APT_or_list (ZebraHandle zh,
1437 Z_AttributesPlusTerm *zapt,
1438 const char *termz_org,
1439 oid_value attributeSet,
1441 int reg_type, int complete_flag,
1442 const char *rank_type,
1443 int num_bases, char **basenames)
1445 char term_dst[IT_MAX_WORD+1];
1446 RSET rset[60], result;
1447 int i, r, rset_no = 0;
1448 struct grep_info grep_info;
1449 char *termz = normalize_term(zh, zapt, termz_org, stream, reg_type);
1450 const char *termp = termz;
1452 if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1456 logf (LOG_DEBUG, "APT_or_list termp=%s", termp);
1457 grep_info.isam_p_indx = 0;
1458 r = string_term (zh, zapt, &termp, attributeSet, stream, &grep_info,
1459 reg_type, complete_flag, num_bases, basenames,
1463 logf (LOG_DEBUG, "term: %s", term_dst);
1464 rset[rset_no] = rset_trunc (zh, grep_info.isam_p_buf,
1465 grep_info.isam_p_indx, term_dst,
1466 strlen(term_dst), rank_type);
1467 assert (rset[rset_no]);
1468 if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1472 xfree(grep_info.term_no);
1474 xfree (grep_info.isam_p_buf);
1477 rset_null_parms parms;
1479 parms.rset_term = rset_term_create (term_dst, -1, rank_type);
1480 return rset_create (rset_kind_null, &parms);
1483 for (i = 1; i<rset_no; i++)
1485 rset_bool_parms bool_parms;
1487 bool_parms.rset_l = result;
1488 bool_parms.rset_r = rset[i];
1489 bool_parms.key_size = sizeof(struct it_key);
1490 bool_parms.cmp = key_compare_it;
1491 result = rset_create (rset_kind_or, &bool_parms);
1496 static RSET rpn_search_APT_and_list (ZebraHandle zh,
1497 Z_AttributesPlusTerm *zapt,
1498 const char *termz_org,
1499 oid_value attributeSet,
1501 int reg_type, int complete_flag,
1502 const char *rank_type,
1503 int num_bases, char **basenames)
1505 char term_dst[IT_MAX_WORD+1];
1506 RSET rset[60], result;
1507 int i, r, rset_no = 0;
1508 struct grep_info grep_info;
1509 char *termz = normalize_term(zh, zapt, termz_org, stream, reg_type);
1510 const char *termp = termz;
1512 if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1516 logf (LOG_DEBUG, "APT_and_list termp=%s", termp);
1517 grep_info.isam_p_indx = 0;
1518 r = string_term (zh, zapt, &termp, attributeSet, stream, &grep_info,
1519 reg_type, complete_flag, num_bases, basenames,
1523 logf (LOG_DEBUG, "term: %s", term_dst);
1524 rset[rset_no] = rset_trunc (zh, grep_info.isam_p_buf,
1525 grep_info.isam_p_indx, term_dst,
1526 strlen(term_dst), rank_type);
1527 assert (rset[rset_no]);
1528 if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1532 xfree(grep_info.term_no);
1534 xfree (grep_info.isam_p_buf);
1537 rset_null_parms parms;
1539 parms.rset_term = rset_term_create (term_dst, -1, rank_type);
1540 return rset_create (rset_kind_null, &parms);
1543 for (i = 1; i<rset_no; i++)
1545 rset_bool_parms bool_parms;
1547 bool_parms.rset_l = result;
1548 bool_parms.rset_r = rset[i];
1549 bool_parms.key_size = sizeof(struct it_key);
1550 bool_parms.cmp = key_compare_it;
1551 result = rset_create (rset_kind_and, &bool_parms);
1556 static int numeric_relation (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1557 const char **term_sub,
1559 oid_value attributeSet,
1560 struct grep_info *grep_info,
1569 char *term_tmp = term_dict + strlen(term_dict);
1571 attr_init (&relation, zapt, 2);
1572 relation_value = attr_find (&relation, NULL);
1574 logf (LOG_DEBUG, "numeric relation value=%d", relation_value);
1576 if (!term_100 (zh->service->zebra_maps, reg_type, term_sub, term_tmp, 1,
1579 term_value = atoi (term_tmp);
1580 switch (relation_value)
1583 logf (LOG_DEBUG, "Relation <");
1584 gen_regular_rel (term_tmp, term_value-1, 1);
1587 logf (LOG_DEBUG, "Relation <=");
1588 gen_regular_rel (term_tmp, term_value, 1);
1591 logf (LOG_DEBUG, "Relation >=");
1592 gen_regular_rel (term_tmp, term_value, 0);
1595 logf (LOG_DEBUG, "Relation >");
1596 gen_regular_rel (term_tmp, term_value+1, 0);
1600 logf (LOG_DEBUG, "Relation =");
1601 sprintf (term_tmp, "(0*%d)", term_value);
1603 logf (LOG_DEBUG, "dict_lookup_grep: %s", term_tmp);
1604 r = dict_lookup_grep (zh->service->dict, term_dict, 0, grep_info, max_pos,
1607 logf (LOG_WARN, "dict_lookup_grep fail, rel=gt: %d", r);
1608 logf (LOG_DEBUG, "%d positions", grep_info->isam_p_indx);
1612 static int numeric_term (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1613 const char **term_sub,
1614 oid_value attributeSet, struct grep_info *grep_info,
1615 int reg_type, int complete_flag,
1616 int num_bases, char **basenames,
1619 char term_dict[2*IT_MAX_WORD+2];
1623 oid_value curAttributeSet = attributeSet;
1625 struct rpn_char_map_info rcmi;
1627 rpn_char_map_prepare (zh, reg_type, &rcmi);
1628 attr_init (&use, zapt, 1);
1629 use_value = attr_find (&use, &curAttributeSet);
1630 logf (LOG_DEBUG, "numeric_term, use value %d", use_value);
1632 if (use_value == -1)
1635 for (base_no = 0; base_no < num_bases; base_no++)
1638 data1_local_attribute *local_attr;
1639 int max_pos, prefix_len = 0;
1642 if ((r=att_getentbyatt (zh, &attp, curAttributeSet, use_value)))
1644 logf (LOG_DEBUG, "att_getentbyatt fail. set=%d use=%d r=%d",
1645 curAttributeSet, use_value, r);
1652 if (zebraExplain_curDatabase (zh->service->zei, basenames[base_no]))
1654 zh->errCode = 109; /* Database unavailable */
1655 zh->errString = basenames[base_no];
1658 for (local_attr = attp.local_attributes; local_attr;
1659 local_attr = local_attr->next)
1665 ord = zebraExplain_lookupSU (zh->service->zei, attp.attset_ordinal,
1670 term_dict[prefix_len++] = '|';
1672 term_dict[prefix_len++] = '(';
1674 ord_len = key_SU_encode (ord, ord_buf);
1675 for (i = 0; i<ord_len; i++)
1677 term_dict[prefix_len++] = 1;
1678 term_dict[prefix_len++] = ord_buf[i];
1686 term_dict[prefix_len++] = ')';
1687 term_dict[prefix_len++] = 1;
1688 term_dict[prefix_len++] = reg_type;
1689 logf (LOG_DEBUG, "reg_type = %d", term_dict[prefix_len-1]);
1690 term_dict[prefix_len] = '\0';
1691 if (!numeric_relation (zh, zapt, &termp, term_dict,
1692 attributeSet, grep_info, &max_pos, reg_type,
1697 logf (LOG_DEBUG, "%d positions", grep_info->isam_p_indx);
1701 static RSET rpn_search_APT_numeric (ZebraHandle zh,
1702 Z_AttributesPlusTerm *zapt,
1704 oid_value attributeSet,
1706 int reg_type, int complete_flag,
1707 const char *rank_type,
1708 int num_bases, char **basenames)
1710 char term_dst[IT_MAX_WORD+1];
1711 const char *termp = termz;
1712 RSET rset[60], result;
1713 int i, r, rset_no = 0;
1714 struct grep_info grep_info;
1716 if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1720 logf (LOG_DEBUG, "APT_numeric termp=%s", termp);
1721 grep_info.isam_p_indx = 0;
1722 r = numeric_term (zh, zapt, &termp, attributeSet, &grep_info,
1723 reg_type, complete_flag, num_bases, basenames,
1727 logf (LOG_DEBUG, "term: %s", term_dst);
1728 rset[rset_no] = rset_trunc (zh, grep_info.isam_p_buf,
1729 grep_info.isam_p_indx, term_dst,
1730 strlen(term_dst), rank_type);
1731 assert (rset[rset_no]);
1732 if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1736 xfree(grep_info.term_no);
1738 xfree (grep_info.isam_p_buf);
1741 rset_null_parms parms;
1743 parms.rset_term = rset_term_create (term_dst, -1, rank_type);
1744 return rset_create (rset_kind_null, &parms);
1747 for (i = 1; i<rset_no; i++)
1749 rset_bool_parms bool_parms;
1751 bool_parms.rset_l = result;
1752 bool_parms.rset_r = rset[i];
1753 bool_parms.key_size = sizeof(struct it_key);
1754 bool_parms.cmp = key_compare_it;
1755 result = rset_create (rset_kind_and, &bool_parms);
1760 static RSET rpn_search_APT_local (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1762 oid_value attributeSet,
1764 const char *rank_type)
1769 rset_temp_parms parms;
1771 parms.rset_term = rset_term_create (termz, -1, rank_type);
1772 parms.key_size = sizeof (struct it_key);
1773 parms.temp_path = res_get (zh->service->res, "setTmpDir");
1774 result = rset_create (rset_kind_temp, &parms);
1775 rsfd = rset_open (result, RSETF_WRITE);
1777 key.sysno = atoi (termz);
1781 rset_write (result, rsfd, &key);
1782 rset_close (result, rsfd);
1786 static RSET rpn_sort_spec (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1787 oid_value attributeSet, NMEM stream,
1788 Z_SortKeySpecList *sort_sequence,
1789 const char *rank_type)
1791 rset_null_parms parms;
1793 int sort_relation_value;
1794 AttrType sort_relation_type;
1799 Z_AttributeElement *ae;
1803 attr_init (&sort_relation_type, zapt, 7);
1804 sort_relation_value = attr_find (&sort_relation_type, &attributeSet);
1806 attr_init (&use_type, zapt, 1);
1807 use_value = attr_find (&use_type, &attributeSet);
1809 if (!sort_sequence->specs)
1811 sort_sequence->num_specs = 10;
1812 sort_sequence->specs = (Z_SortKeySpec **)
1813 nmem_malloc (stream, sort_sequence->num_specs *
1814 sizeof(*sort_sequence->specs));
1815 for (i = 0; i<sort_sequence->num_specs; i++)
1816 sort_sequence->specs[i] = 0;
1818 if (zapt->term->which != Z_Term_general)
1821 i = atoi_n ((char *) zapt->term->u.general->buf,
1822 zapt->term->u.general->len);
1823 if (i >= sort_sequence->num_specs)
1826 oe.proto = PROTO_Z3950;
1827 oe.oclass = CLASS_ATTSET;
1828 oe.value = attributeSet;
1829 if (!oid_ent_to_oid (&oe, oid))
1832 sks = (Z_SortKeySpec *) nmem_malloc (stream, sizeof(*sks));
1833 sks->sortElement = (Z_SortElement *)
1834 nmem_malloc (stream, sizeof(*sks->sortElement));
1835 sks->sortElement->which = Z_SortElement_generic;
1836 sk = sks->sortElement->u.generic = (Z_SortKey *)
1837 nmem_malloc (stream, sizeof(*sk));
1838 sk->which = Z_SortKey_sortAttributes;
1839 sk->u.sortAttributes = (Z_SortAttributes *)
1840 nmem_malloc (stream, sizeof(*sk->u.sortAttributes));
1842 sk->u.sortAttributes->id = oid;
1843 sk->u.sortAttributes->list = (Z_AttributeList *)
1844 nmem_malloc (stream, sizeof(*sk->u.sortAttributes->list));
1845 sk->u.sortAttributes->list->num_attributes = 1;
1846 sk->u.sortAttributes->list->attributes = (Z_AttributeElement **)
1847 nmem_malloc (stream, sizeof(*sk->u.sortAttributes->list->attributes));
1848 ae = *sk->u.sortAttributes->list->attributes = (Z_AttributeElement *)
1849 nmem_malloc (stream, sizeof(**sk->u.sortAttributes->list->attributes));
1850 ae->attributeSet = 0;
1851 ae->attributeType = (int *)
1852 nmem_malloc (stream, sizeof(*ae->attributeType));
1853 *ae->attributeType = 1;
1854 ae->which = Z_AttributeValue_numeric;
1855 ae->value.numeric = (int *)
1856 nmem_malloc (stream, sizeof(*ae->value.numeric));
1857 *ae->value.numeric = use_value;
1859 sks->sortRelation = (int *)
1860 nmem_malloc (stream, sizeof(*sks->sortRelation));
1861 if (sort_relation_value == 1)
1862 *sks->sortRelation = Z_SortRelation_ascending;
1863 else if (sort_relation_value == 2)
1864 *sks->sortRelation = Z_SortRelation_descending;
1866 *sks->sortRelation = Z_SortRelation_ascending;
1868 sks->caseSensitivity = (int *)
1869 nmem_malloc (stream, sizeof(*sks->caseSensitivity));
1870 *sks->caseSensitivity = 0;
1873 sks->which = Z_SortKeySpec_null;
1874 sks->u.null = odr_nullval ();
1876 sks->missingValueAction = 0;
1879 sort_sequence->specs[i] = sks;
1881 parms.rset_term = rset_term_create ("", -1, rank_type);
1882 return rset_create (rset_kind_null, &parms);
1886 static RSET rpn_search_APT (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1887 oid_value attributeSet, NMEM stream,
1888 Z_SortKeySpecList *sort_sequence,
1889 int num_bases, char **basenames)
1892 char *search_type = NULL;
1893 char rank_type[128];
1896 char termz[IT_MAX_WORD+1];
1898 zebra_maps_attr (zh->service->zebra_maps, zapt, ®_id, &search_type,
1899 rank_type, &complete_flag, &sort_flag);
1901 logf (LOG_DEBUG, "reg_id=%c", reg_id);
1902 logf (LOG_DEBUG, "complete_flag=%d", complete_flag);
1903 logf (LOG_DEBUG, "search_type=%s", search_type);
1904 logf (LOG_DEBUG, "rank_type=%s", rank_type);
1906 if (zapt->term->which != Z_Term_general)
1911 trans_term (zh, zapt, termz);
1914 return rpn_sort_spec (zh, zapt, attributeSet, stream, sort_sequence,
1917 if (!strcmp (search_type, "phrase"))
1919 return rpn_search_APT_phrase (zh, zapt, termz, attributeSet, stream,
1920 reg_id, complete_flag, rank_type,
1921 num_bases, basenames);
1923 else if (!strcmp (search_type, "and-list"))
1925 return rpn_search_APT_and_list (zh, zapt, termz, attributeSet, stream,
1926 reg_id, complete_flag, rank_type,
1927 num_bases, basenames);
1929 else if (!strcmp (search_type, "or-list"))
1931 return rpn_search_APT_or_list (zh, zapt, termz, attributeSet, stream,
1932 reg_id, complete_flag, rank_type,
1933 num_bases, basenames);
1935 else if (!strcmp (search_type, "local"))
1937 return rpn_search_APT_local (zh, zapt, termz, attributeSet, stream,
1940 else if (!strcmp (search_type, "numeric"))
1942 return rpn_search_APT_numeric (zh, zapt, termz, attributeSet, stream,
1943 reg_id, complete_flag, rank_type,
1944 num_bases, basenames);
1950 static RSET rpn_search_structure (ZebraHandle zh, Z_RPNStructure *zs,
1951 oid_value attributeSet, NMEM stream,
1952 Z_SortKeySpecList *sort_sequence,
1953 int num_bases, char **basenames)
1956 if (zs->which == Z_RPNStructure_complex)
1958 Z_Operator *zop = zs->u.complex->roperator;
1959 rset_bool_parms bool_parms;
1961 bool_parms.rset_l = rpn_search_structure (zh, zs->u.complex->s1,
1962 attributeSet, stream,
1964 num_bases, basenames);
1965 if (bool_parms.rset_l == NULL)
1967 bool_parms.rset_r = rpn_search_structure (zh, zs->u.complex->s2,
1968 attributeSet, stream,
1970 num_bases, basenames);
1971 if (bool_parms.rset_r == NULL)
1973 rset_delete (bool_parms.rset_l);
1976 bool_parms.key_size = sizeof(struct it_key);
1977 bool_parms.cmp = key_compare_it;
1981 case Z_Operator_and:
1982 r = rset_create (rset_kind_and, &bool_parms);
1985 r = rset_create (rset_kind_or, &bool_parms);
1987 case Z_Operator_and_not:
1988 r = rset_create (rset_kind_not, &bool_parms);
1990 case Z_Operator_prox:
1992 if (zop->u.prox->which != Z_ProximityOperator_known)
1998 if (zop->u.prox->which != Z_ProxCode_known)
2006 if (*zop->u.prox->u.known != Z_ProxUnit_word)
2008 char *val = (char *) nmem_malloc (stream, 16);
2010 zh->errString = val;
2011 sprintf (val, "%d", *zop->u.prox->u.known);
2015 if (*zop->u.prox->proximityUnitCode != Z_ProxUnit_word)
2017 char *val = (char *) nmem_malloc (stream, 16);
2019 zh->errString = val;
2020 sprintf (val, "%d", *zop->u.prox->proximityUnitCode);
2028 rsets[0] = bool_parms.rset_l;
2029 rsets[1] = bool_parms.rset_r;
2031 r = rpn_prox (zh, rsets, 2,
2032 *zop->u.prox->ordered,
2033 (!zop->u.prox->exclusion ? 0 :
2034 *zop->u.prox->exclusion),
2035 *zop->u.prox->relationType,
2036 *zop->u.prox->distance);
2037 rset_delete (rsets[0]);
2038 rset_delete (rsets[1]);
2046 else if (zs->which == Z_RPNStructure_simple)
2048 if (zs->u.simple->which == Z_Operand_APT)
2050 logf (LOG_DEBUG, "rpn_search_APT");
2051 r = rpn_search_APT (zh, zs->u.simple->u.attributesPlusTerm,
2052 attributeSet, stream, sort_sequence,
2053 num_bases, basenames);
2055 else if (zs->u.simple->which == Z_Operand_resultSetId)
2057 logf (LOG_DEBUG, "rpn_search_ref");
2058 r = resultSetRef (zh, zs->u.simple->u.resultSetId);
2061 r = rset_create (rset_kind_null, NULL);
2064 nmem_strdup (stream, zs->u.simple->u.resultSetId);
2083 RSET rpn_search (ZebraHandle zh, NMEM nmem,
2084 Z_RPNQuery *rpn, int num_bases, char **basenames,
2085 const char *setname,
2090 oid_value attributeSet;
2091 Z_SortKeySpecList *sort_sequence;
2095 zh->errString = NULL;
2098 sort_sequence = (Z_SortKeySpecList *)
2099 nmem_malloc (nmem, sizeof(*sort_sequence));
2100 sort_sequence->num_specs = 10;
2101 sort_sequence->specs = (Z_SortKeySpec **)
2102 nmem_malloc (nmem, sort_sequence->num_specs *
2103 sizeof(*sort_sequence->specs));
2104 for (i = 0; i<sort_sequence->num_specs; i++)
2105 sort_sequence->specs[i] = 0;
2107 attrset = oid_getentbyoid (rpn->attributeSetId);
2108 attributeSet = attrset->value;
2109 rset = rpn_search_structure (zh, rpn->RPNStructure, attributeSet,
2110 nmem, sort_sequence, num_bases, basenames);
2115 logf (LOG_DEBUG, "search error: %d", zh->errCode);
2117 for (i = 0; sort_sequence->specs[i]; i++)
2119 sort_sequence->num_specs = i;
2121 resultSetRank (zh, sset, rset);
2124 logf (LOG_DEBUG, "resultSetSortSingle in rpn_search");
2125 resultSetSortSingle (zh, nmem, sset, rset,
2126 sort_sequence, &sort_status);
2129 logf (LOG_DEBUG, "resultSetSortSingle status = %d", zh->errCode);
2135 struct scan_info_entry {
2141 struct scan_info_entry *list;
2147 static int scan_handle (char *name, const char *info, int pos, void *client)
2149 int len_prefix, idx;
2150 struct scan_info *scan_info = (struct scan_info *) client;
2152 len_prefix = strlen(scan_info->prefix);
2153 if (memcmp (name, scan_info->prefix, len_prefix))
2155 if (pos > 0) idx = scan_info->after - pos + scan_info->before;
2158 scan_info->list[idx].term = (char *)
2159 odr_malloc (scan_info->odr, strlen(name + len_prefix)+1);
2160 strcpy (scan_info->list[idx].term, name + len_prefix);
2161 assert (*info == sizeof(ISAMS_P));
2162 memcpy (&scan_info->list[idx].isam_p, info+1, sizeof(ISAMS_P));
2166 static void scan_term_untrans (ZebraHandle zh, NMEM stream, int reg_type,
2167 char **dst, const char *src)
2169 char term_dst[1024];
2171 term_untrans (zh, reg_type, term_dst, src);
2173 *dst = (char *) nmem_malloc (stream, strlen(term_dst)+1);
2174 strcpy (*dst, term_dst);
2177 static void count_set (RSET r, int *count)
2185 logf (LOG_DEBUG, "count_set");
2188 rfd = rset_open (r, RSETF_READ);
2189 while (rset_read (r, rfd, &key, &term_index))
2191 if (key.sysno != psysno)
2198 rset_close (r, rfd);
2199 logf (LOG_DEBUG, "%d keys, %d records", kno, *count);
2202 void rpn_scan (ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
2203 oid_value attributeset,
2204 int num_bases, char **basenames,
2205 int *position, int *num_entries, ZebraScanEntry **list,
2209 int pos = *position;
2210 int num = *num_entries;
2214 char termz[IT_MAX_WORD+20];
2217 struct scan_info *scan_info_array;
2218 ZebraScanEntry *glist;
2219 int ords[32], ord_no = 0;
2223 char *search_type = NULL;
2224 char rank_type[128];
2229 if (attributeset == VAL_NONE)
2230 attributeset = VAL_BIB1;
2232 yaz_log (LOG_DEBUG, "position = %d, num = %d set=%d",
2233 pos, num, attributeset);
2235 attr_init (&use, zapt, 1);
2236 use_value = attr_find (&use, &attributeset);
2238 if (zebra_maps_attr (zh->service->zebra_maps, zapt, ®_id, &search_type,
2239 rank_type, &complete_flag, &sort_flag))
2245 yaz_log (LOG_DEBUG, "use_value = %d", use_value);
2247 if (use_value == -1)
2249 for (base_no = 0; base_no < num_bases && ord_no < 32; base_no++)
2253 data1_local_attribute *local_attr;
2255 if ((r=att_getentbyatt (zh, &attp, attributeset, use_value)))
2257 logf (LOG_DEBUG, "att_getentbyatt fail. set=%d use=%d",
2258 attributeset, use_value);
2266 if (zebraExplain_curDatabase (zh->service->zei, basenames[base_no]))
2268 zh->errString = basenames[base_no];
2269 zh->errCode = 109; /* Database unavailable */
2273 for (local_attr = attp.local_attributes; local_attr && ord_no < 32;
2274 local_attr = local_attr->next)
2278 ord = zebraExplain_lookupSU (zh->service->zei, attp.attset_ordinal,
2281 ords[ord_no++] = ord;
2290 /* prepare dictionary scanning */
2293 scan_info_array = (struct scan_info *)
2294 odr_malloc (stream, ord_no * sizeof(*scan_info_array));
2295 for (i = 0; i < ord_no; i++)
2297 int j, prefix_len = 0;
2298 int before_tmp = before, after_tmp = after;
2299 struct scan_info *scan_info = scan_info_array + i;
2300 struct rpn_char_map_info rcmi;
2302 rpn_char_map_prepare (zh, reg_id, &rcmi);
2304 scan_info->before = before;
2305 scan_info->after = after;
2306 scan_info->odr = stream;
2308 scan_info->list = (struct scan_info_entry *)
2309 odr_malloc (stream, (before+after) * sizeof(*scan_info->list));
2310 for (j = 0; j<before+after; j++)
2311 scan_info->list[j].term = NULL;
2313 prefix_len += key_SU_encode (ords[i], termz + prefix_len);
2314 termz[prefix_len++] = reg_id;
2315 termz[prefix_len] = 0;
2316 strcpy (scan_info->prefix, termz);
2318 trans_scan_term (zh, zapt, termz+prefix_len, reg_id);
2320 dict_scan (zh->service->dict, termz, &before_tmp, &after_tmp,
2321 scan_info, scan_handle);
2323 glist = (ZebraScanEntry *)
2324 odr_malloc (stream, (before+after)*sizeof(*glist));
2326 /* consider terms after main term */
2327 for (i = 0; i < ord_no; i++)
2331 for (i = 0; i<after; i++)
2334 const char *mterm = NULL;
2338 for (j = 0; j < ord_no; j++)
2340 if (ptr[j] < before+after &&
2341 (tst=scan_info_array[j].list[ptr[j]].term) &&
2342 (!mterm || strcmp (tst, mterm) < 0))
2350 scan_term_untrans (zh, stream->mem, reg_id,
2351 &glist[i+before].term, mterm);
2352 rset = rset_trunc (zh, &scan_info_array[j0].list[ptr[j0]].isam_p, 1,
2353 glist[i+before].term, strlen(glist[i+before].term),
2357 for (j = j0+1; j<ord_no; j++)
2359 if (ptr[j] < before+after &&
2360 (tst=scan_info_array[j].list[ptr[j]].term) &&
2361 !strcmp (tst, mterm))
2363 rset_bool_parms bool_parms;
2367 rset_trunc (zh, &scan_info_array[j].list[ptr[j]].isam_p, 1,
2368 glist[i+before].term,
2369 strlen(glist[i+before].term), NULL);
2371 bool_parms.key_size = sizeof(struct it_key);
2372 bool_parms.cmp = key_compare_it;
2373 bool_parms.rset_l = rset;
2374 bool_parms.rset_r = rset2;
2376 rset = rset_create (rset_kind_or, &bool_parms);
2381 count_set (rset, &glist[i+before].occurrences);
2386 *num_entries -= (after-i);
2390 /* consider terms before main term */
2391 for (i = 0; i<ord_no; i++)
2394 for (i = 0; i<before; i++)
2397 const char *mterm = NULL;
2401 for (j = 0; j <ord_no; j++)
2403 if (ptr[j] < before &&
2404 (tst=scan_info_array[j].list[before-1-ptr[j]].term) &&
2405 (!mterm || strcmp (tst, mterm) > 0))
2414 scan_term_untrans (zh, stream->mem, reg_id,
2415 &glist[before-1-i].term, mterm);
2418 (zh, &scan_info_array[j0].list[before-1-ptr[j0]].isam_p, 1,
2419 glist[before-1-i].term, strlen(glist[before-1-i].term),
2424 for (j = j0+1; j<ord_no; j++)
2426 if (ptr[j] < before &&
2427 (tst=scan_info_array[j].list[before-1-ptr[j]].term) &&
2428 !strcmp (tst, mterm))
2430 rset_bool_parms bool_parms;
2433 rset2 = rset_trunc (zh,
2434 &scan_info_array[j].list[before-1-ptr[j]].isam_p, 1,
2435 glist[before-1-i].term,
2436 strlen(glist[before-1-i].term), NULL);
2438 bool_parms.key_size = sizeof(struct it_key);
2439 bool_parms.cmp = key_compare_it;
2440 bool_parms.rset_l = rset;
2441 bool_parms.rset_r = rset2;
2443 rset = rset_create (rset_kind_or, &bool_parms);
2448 count_set (rset, &glist[before-1-i].occurrences);
2458 *list = glist + i; /* list is set to first 'real' entry */
2460 logf (LOG_DEBUG, "position = %d, num_entries = %d",
2461 *position, *num_entries);
2463 logf (LOG_DEBUG, "scan error: %d", zh->errCode);