2 * Copyright (C) 1995-2002, Index Data
4 * Sebastian Hammer, Adam Dickmeiss
6 * $Id: zrpn.c,v 1.112 2002-04-04 14:14:13 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 (struct zebra_register *reg, int reg_type,
36 struct rpn_char_map_info *map_info)
38 map_info->zm = reg->zebra_maps;
39 map_info->reg_type = reg_type;
40 dict_grep_cmap (reg->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->reg->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->reg->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->reg->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->reg->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->reg->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->reg->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->reg->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, 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->reg->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->reg->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->reg->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->reg->zebra_maps, reg_type,
922 &termp, term_dict + j, space_split, term_dst))
924 strcat (term_dict, ".*)");
925 dict_lookup_grep (zh->reg->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->reg->zebra_maps, reg_type,
931 &termp, term_dict + j, space_split, term_dst))
933 strcat (term_dict, ")");
934 dict_lookup_grep (zh->reg->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->reg->zebra_maps, reg_type,
940 &termp, term_dict + j, space_split, term_dst))
942 strcat (term_dict, ".*)");
943 dict_lookup_grep (zh->reg->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->reg->zebra_maps, reg_type,
951 &termp, term_dict + j, space_split, term_dst))
953 strcat (term_dict, ")");
954 r = dict_lookup_grep (zh->reg->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->reg->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->reg->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->reg->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->reg->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->reg->zebra_maps, reg_type,
989 &termp, term_dict + j, space_split, term_dst))
991 strcat (term_dict, ")");
992 r = dict_lookup_grep (zh->reg->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->reg->zebra_maps, reg_type,
1000 &termp, term_dict + j, space_split, term_dst, 1))
1002 strcat (term_dict, ")");
1003 r = dict_lookup_grep (zh->reg->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->reg->zebra_maps, reg_type,
1011 &termp, term_dict + j, space_split, term_dst, 0))
1013 strcat (term_dict, ")");
1014 r = dict_lookup_grep (zh->reg->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->reg->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.cmp = key_compare_it;
1140 parms.key_size = sizeof (struct it_key);
1141 parms.temp_path = res_get (zh->res, "setTmpDir");
1142 result = rset_create (rset_kind_temp, &parms);
1143 rsfd_result = rset_open (result, RSETF_WRITE);
1147 for (i = 1; i<rset_no; i++)
1156 cmp = key_compare_it (buf[i], buf[i-1]);
1159 more[i-1] = rset_read (rset[i-1], rsfd[i-1],
1160 buf[i-1], &term_index);
1165 if (buf[i-1]->seqno+1 != buf[i]->seqno)
1167 more[i-1] = rset_read (rset[i-1], rsfd[i-1],
1168 buf[i-1], &term_index);
1174 more[i] = rset_read (rset[i], rsfd[i], buf[i],
1181 rset_write (result, rsfd_result, buf[0]);
1182 more[0] = rset_read (*rset, *rsfd, *buf, &term_index);
1185 rset_close (result, rsfd_result);
1187 else if (rset_no == 2)
1189 /* generic proximity case (two input sets only) ... */
1190 rset_temp_parms parms;
1193 logf (LOG_LOG, "generic prox, dist = %d, relation = %d, ordered =%d, exclusion=%d",
1194 distance, relation, ordered, exclusion);
1195 parms.rset_term = rset_term_create (prox_term, length_prox_term,
1197 parms.rset_term->nn = min_nn;
1198 parms.cmp = key_compare_it;
1199 parms.key_size = sizeof (struct it_key);
1200 parms.temp_path = res_get (zh->res, "setTmpDir");
1201 result = rset_create (rset_kind_temp, &parms);
1202 rsfd_result = rset_open (result, RSETF_WRITE);
1204 while (more[0] && more[1])
1206 int cmp = key_compare_it (buf[0], buf[1]);
1208 more[0] = rset_read (rset[0], rsfd[0], buf[0], &term_index);
1210 more[1] = rset_read (rset[1], rsfd[1], buf[1], &term_index);
1213 int sysno = buf[0]->sysno;
1217 seqno[n++] = buf[0]->seqno;
1218 while ((more[0] = rset_read (rset[0], rsfd[0], buf[0],
1220 sysno == buf[0]->sysno)
1222 seqno[n++] = buf[0]->seqno;
1225 for (i = 0; i<n; i++)
1227 int diff = buf[1]->seqno - seqno[i];
1228 int excl = exclusion;
1229 if (!ordered && diff < 0)
1234 if (diff < distance && diff >= 0)
1238 if (diff <= distance && diff >= 0)
1242 if (diff == distance && diff >= 0)
1246 if (diff >= distance && diff >= 0)
1250 if (diff > distance && diff >= 0)
1254 if (diff != distance && diff >= 0)
1260 rset_write (result, rsfd_result, buf[1]);
1264 } while ((more[1] = rset_read (rset[1], rsfd[1], buf[1],
1266 sysno == buf[1]->sysno);
1269 rset_close (result, rsfd_result);
1273 rset_null_parms parms;
1275 parms.rset_term = rset_term_create (prox_term, length_prox_term,
1277 parms.rset_term->nn = 0;
1278 result = rset_create (rset_kind_null, &parms);
1280 for (i = 0; i<rset_no; i++)
1283 rset_close (rset[i], rsfd[i]);
1293 char *normalize_term(ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1294 const char *termz, NMEM stream, unsigned reg_id)
1297 AttrType truncation;
1298 int truncation_value;
1301 attr_init (&truncation, zapt, 5);
1302 truncation_value = attr_find (&truncation, NULL);
1304 switch (truncation_value)
1324 wrbuf = zebra_replace(zh->reg->zebra_maps, reg_id, ex_list,
1325 termz, strlen(termz));
1327 return nmem_strdup(stream, termz);
1330 char *buf = (char*) nmem_malloc (stream, wrbuf_len(wrbuf)+1);
1331 memcpy (buf, wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
1332 buf[wrbuf_len(wrbuf)] = '\0';
1337 static int grep_info_prepare (ZebraHandle zh,
1338 Z_AttributesPlusTerm *zapt,
1339 struct grep_info *grep_info,
1344 int termset_value_numeric;
1345 const char *termset_value_string;
1348 grep_info->term_no = 0;
1350 grep_info->isam_p_size = 0;
1351 grep_info->isam_p_buf = NULL;
1353 grep_info->reg_type = reg_type;
1354 grep_info->termset = 0;
1356 attr_init (&termset, zapt, 8);
1357 termset_value_numeric =
1358 attr_find_ex (&termset, NULL, &termset_value_string);
1359 if (termset_value_numeric != -1)
1362 const char *termset_name = 0;
1363 if (termset_value_numeric != -2)
1366 sprintf (resname, "%d", termset_value_numeric);
1367 termset_name = resname;
1370 termset_name = termset_value_string;
1371 logf (LOG_LOG, "creating termset set %s", termset_name);
1372 grep_info->termset = resultSetAdd (zh, termset_name, 1);
1373 if (!grep_info->termset)
1376 zh->errString = nmem_strdup (stream, termset_name);
1384 static RSET rpn_search_APT_phrase (ZebraHandle zh,
1385 Z_AttributesPlusTerm *zapt,
1386 const char *termz_org,
1387 oid_value attributeSet,
1389 int reg_type, int complete_flag,
1390 const char *rank_type,
1391 int num_bases, char **basenames)
1393 char term_dst[IT_MAX_WORD+1];
1394 RSET rset[60], result;
1395 int i, r, rset_no = 0;
1396 struct grep_info grep_info;
1397 char *termz = normalize_term(zh, zapt, termz_org, stream, reg_type);
1398 const char *termp = termz;
1401 if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1405 logf (LOG_DEBUG, "APT_phrase termp=%s", termp);
1406 grep_info.isam_p_indx = 0;
1407 r = string_term (zh, zapt, &termp, attributeSet, stream, &grep_info,
1408 reg_type, complete_flag, num_bases, basenames,
1412 logf (LOG_DEBUG, "term: %s", term_dst);
1413 rset[rset_no] = rset_trunc (zh, grep_info.isam_p_buf,
1414 grep_info.isam_p_indx, term_dst,
1415 strlen(term_dst), rank_type);
1416 assert (rset[rset_no]);
1417 if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1421 xfree(grep_info.term_no);
1423 xfree (grep_info.isam_p_buf);
1426 rset_null_parms parms;
1428 parms.rset_term = rset_term_create (termz, -1, rank_type);
1429 return rset_create (rset_kind_null, &parms);
1431 else if (rset_no == 1)
1433 result = rpn_prox (zh, rset, rset_no, 1, 0, 3, 1);
1434 for (i = 0; i<rset_no; i++)
1435 rset_delete (rset[i]);
1439 static RSET rpn_search_APT_or_list (ZebraHandle zh,
1440 Z_AttributesPlusTerm *zapt,
1441 const char *termz_org,
1442 oid_value attributeSet,
1444 int reg_type, int complete_flag,
1445 const char *rank_type,
1446 int num_bases, char **basenames)
1448 char term_dst[IT_MAX_WORD+1];
1449 RSET rset[60], result;
1450 int i, r, rset_no = 0;
1451 struct grep_info grep_info;
1452 char *termz = normalize_term(zh, zapt, termz_org, stream, reg_type);
1453 const char *termp = termz;
1455 if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1459 logf (LOG_DEBUG, "APT_or_list termp=%s", termp);
1460 grep_info.isam_p_indx = 0;
1461 r = string_term (zh, zapt, &termp, attributeSet, stream, &grep_info,
1462 reg_type, complete_flag, num_bases, basenames,
1466 logf (LOG_DEBUG, "term: %s", term_dst);
1467 rset[rset_no] = rset_trunc (zh, grep_info.isam_p_buf,
1468 grep_info.isam_p_indx, term_dst,
1469 strlen(term_dst), rank_type);
1470 assert (rset[rset_no]);
1471 if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1475 xfree(grep_info.term_no);
1477 xfree (grep_info.isam_p_buf);
1480 rset_null_parms parms;
1482 parms.rset_term = rset_term_create (termz, -1, rank_type);
1483 return rset_create (rset_kind_null, &parms);
1486 for (i = 1; i<rset_no; i++)
1488 rset_bool_parms bool_parms;
1490 bool_parms.rset_l = result;
1491 bool_parms.rset_r = rset[i];
1492 bool_parms.key_size = sizeof(struct it_key);
1493 bool_parms.cmp = key_compare_it;
1494 result = rset_create (rset_kind_or, &bool_parms);
1499 static RSET rpn_search_APT_and_list (ZebraHandle zh,
1500 Z_AttributesPlusTerm *zapt,
1501 const char *termz_org,
1502 oid_value attributeSet,
1504 int reg_type, int complete_flag,
1505 const char *rank_type,
1506 int num_bases, char **basenames)
1508 char term_dst[IT_MAX_WORD+1];
1509 RSET rset[60], result;
1510 int i, r, rset_no = 0;
1511 struct grep_info grep_info;
1512 char *termz = normalize_term(zh, zapt, termz_org, stream, reg_type);
1513 const char *termp = termz;
1515 if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1519 logf (LOG_DEBUG, "APT_and_list termp=%s", termp);
1520 grep_info.isam_p_indx = 0;
1521 r = string_term (zh, zapt, &termp, attributeSet, stream, &grep_info,
1522 reg_type, complete_flag, num_bases, basenames,
1526 logf (LOG_DEBUG, "term: %s", term_dst);
1527 rset[rset_no] = rset_trunc (zh, grep_info.isam_p_buf,
1528 grep_info.isam_p_indx, term_dst,
1529 strlen(term_dst), rank_type);
1530 assert (rset[rset_no]);
1531 if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1535 xfree(grep_info.term_no);
1537 xfree (grep_info.isam_p_buf);
1540 rset_null_parms parms;
1542 parms.rset_term = rset_term_create (termz, -1, rank_type);
1543 return rset_create (rset_kind_null, &parms);
1546 for (i = 1; i<rset_no; i++)
1548 rset_bool_parms bool_parms;
1550 bool_parms.rset_l = result;
1551 bool_parms.rset_r = rset[i];
1552 bool_parms.key_size = sizeof(struct it_key);
1553 bool_parms.cmp = key_compare_it;
1554 result = rset_create (rset_kind_and, &bool_parms);
1559 static int numeric_relation (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1560 const char **term_sub,
1562 oid_value attributeSet,
1563 struct grep_info *grep_info,
1572 char *term_tmp = term_dict + strlen(term_dict);
1574 attr_init (&relation, zapt, 2);
1575 relation_value = attr_find (&relation, NULL);
1577 logf (LOG_DEBUG, "numeric relation value=%d", relation_value);
1579 if (!term_100 (zh->reg->zebra_maps, reg_type, term_sub, term_tmp, 1,
1582 term_value = atoi (term_tmp);
1583 switch (relation_value)
1586 logf (LOG_DEBUG, "Relation <");
1587 gen_regular_rel (term_tmp, term_value-1, 1);
1590 logf (LOG_DEBUG, "Relation <=");
1591 gen_regular_rel (term_tmp, term_value, 1);
1594 logf (LOG_DEBUG, "Relation >=");
1595 gen_regular_rel (term_tmp, term_value, 0);
1598 logf (LOG_DEBUG, "Relation >");
1599 gen_regular_rel (term_tmp, term_value+1, 0);
1603 logf (LOG_DEBUG, "Relation =");
1604 sprintf (term_tmp, "(0*%d)", term_value);
1606 logf (LOG_DEBUG, "dict_lookup_grep: %s", term_tmp);
1607 r = dict_lookup_grep (zh->reg->dict, term_dict, 0, grep_info, max_pos,
1610 logf (LOG_WARN, "dict_lookup_grep fail, rel=gt: %d", r);
1611 logf (LOG_DEBUG, "%d positions", grep_info->isam_p_indx);
1615 static int numeric_term (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1616 const char **term_sub,
1617 oid_value attributeSet, struct grep_info *grep_info,
1618 int reg_type, int complete_flag,
1619 int num_bases, char **basenames,
1622 char term_dict[2*IT_MAX_WORD+2];
1626 oid_value curAttributeSet = attributeSet;
1628 struct rpn_char_map_info rcmi;
1630 rpn_char_map_prepare (zh->reg, reg_type, &rcmi);
1631 attr_init (&use, zapt, 1);
1632 use_value = attr_find (&use, &curAttributeSet);
1633 logf (LOG_DEBUG, "numeric_term, use value %d", use_value);
1635 if (use_value == -1)
1638 for (base_no = 0; base_no < num_bases; base_no++)
1641 data1_local_attribute *local_attr;
1642 int max_pos, prefix_len = 0;
1645 if ((r=att_getentbyatt (zh, &attp, curAttributeSet, use_value)))
1647 logf (LOG_DEBUG, "att_getentbyatt fail. set=%d use=%d r=%d",
1648 curAttributeSet, use_value, r);
1655 if (zebraExplain_curDatabase (zh->reg->zei, basenames[base_no]))
1657 zh->errCode = 109; /* Database unavailable */
1658 zh->errString = basenames[base_no];
1661 for (local_attr = attp.local_attributes; local_attr;
1662 local_attr = local_attr->next)
1668 ord = zebraExplain_lookupSU (zh->reg->zei, attp.attset_ordinal,
1673 term_dict[prefix_len++] = '|';
1675 term_dict[prefix_len++] = '(';
1677 ord_len = key_SU_encode (ord, ord_buf);
1678 for (i = 0; i<ord_len; i++)
1680 term_dict[prefix_len++] = 1;
1681 term_dict[prefix_len++] = ord_buf[i];
1689 term_dict[prefix_len++] = ')';
1690 term_dict[prefix_len++] = 1;
1691 term_dict[prefix_len++] = reg_type;
1692 logf (LOG_DEBUG, "reg_type = %d", term_dict[prefix_len-1]);
1693 term_dict[prefix_len] = '\0';
1694 if (!numeric_relation (zh, zapt, &termp, term_dict,
1695 attributeSet, grep_info, &max_pos, reg_type,
1700 logf (LOG_DEBUG, "%d positions", grep_info->isam_p_indx);
1704 static RSET rpn_search_APT_numeric (ZebraHandle zh,
1705 Z_AttributesPlusTerm *zapt,
1707 oid_value attributeSet,
1709 int reg_type, int complete_flag,
1710 const char *rank_type,
1711 int num_bases, char **basenames)
1713 char term_dst[IT_MAX_WORD+1];
1714 const char *termp = termz;
1715 RSET rset[60], result;
1716 int i, r, rset_no = 0;
1717 struct grep_info grep_info;
1719 if (grep_info_prepare (zh, zapt, &grep_info, reg_type, stream))
1723 logf (LOG_DEBUG, "APT_numeric termp=%s", termp);
1724 grep_info.isam_p_indx = 0;
1725 r = numeric_term (zh, zapt, &termp, attributeSet, &grep_info,
1726 reg_type, complete_flag, num_bases, basenames,
1730 logf (LOG_DEBUG, "term: %s", term_dst);
1731 rset[rset_no] = rset_trunc (zh, grep_info.isam_p_buf,
1732 grep_info.isam_p_indx, term_dst,
1733 strlen(term_dst), rank_type);
1734 assert (rset[rset_no]);
1735 if (++rset_no >= (int) (sizeof(rset)/sizeof(*rset)))
1739 xfree(grep_info.term_no);
1741 xfree (grep_info.isam_p_buf);
1744 rset_null_parms parms;
1746 parms.rset_term = rset_term_create (term_dst, -1, rank_type);
1747 return rset_create (rset_kind_null, &parms);
1750 for (i = 1; i<rset_no; i++)
1752 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 result = rset_create (rset_kind_and, &bool_parms);
1763 static RSET rpn_search_APT_local (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1765 oid_value attributeSet,
1767 const char *rank_type)
1772 rset_temp_parms parms;
1774 parms.rset_term = rset_term_create (termz, -1, rank_type);
1775 parms.cmp = key_compare_it;
1776 parms.key_size = sizeof (struct it_key);
1777 parms.temp_path = res_get (zh->res, "setTmpDir");
1778 result = rset_create (rset_kind_temp, &parms);
1779 rsfd = rset_open (result, RSETF_WRITE);
1781 key.sysno = atoi (termz);
1785 rset_write (result, rsfd, &key);
1786 rset_close (result, rsfd);
1790 static RSET rpn_sort_spec (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1791 oid_value attributeSet, NMEM stream,
1792 Z_SortKeySpecList *sort_sequence,
1793 const char *rank_type)
1795 rset_null_parms parms;
1797 int sort_relation_value;
1798 AttrType sort_relation_type;
1803 Z_AttributeElement *ae;
1808 attr_init (&sort_relation_type, zapt, 7);
1809 sort_relation_value = attr_find (&sort_relation_type, &attributeSet);
1811 attr_init (&use_type, zapt, 1);
1812 use_value = attr_find (&use_type, &attributeSet);
1814 if (!sort_sequence->specs)
1816 sort_sequence->num_specs = 10;
1817 sort_sequence->specs = (Z_SortKeySpec **)
1818 nmem_malloc (stream, sort_sequence->num_specs *
1819 sizeof(*sort_sequence->specs));
1820 for (i = 0; i<sort_sequence->num_specs; i++)
1821 sort_sequence->specs[i] = 0;
1823 if (zapt->term->which != Z_Term_general)
1826 i = atoi_n ((char *) zapt->term->u.general->buf,
1827 zapt->term->u.general->len);
1828 if (i >= sort_sequence->num_specs)
1830 sprintf (termz, "%d", i);
1832 oe.proto = PROTO_Z3950;
1833 oe.oclass = CLASS_ATTSET;
1834 oe.value = attributeSet;
1835 if (!oid_ent_to_oid (&oe, oid))
1838 sks = (Z_SortKeySpec *) nmem_malloc (stream, sizeof(*sks));
1839 sks->sortElement = (Z_SortElement *)
1840 nmem_malloc (stream, sizeof(*sks->sortElement));
1841 sks->sortElement->which = Z_SortElement_generic;
1842 sk = sks->sortElement->u.generic = (Z_SortKey *)
1843 nmem_malloc (stream, sizeof(*sk));
1844 sk->which = Z_SortKey_sortAttributes;
1845 sk->u.sortAttributes = (Z_SortAttributes *)
1846 nmem_malloc (stream, sizeof(*sk->u.sortAttributes));
1848 sk->u.sortAttributes->id = oid;
1849 sk->u.sortAttributes->list = (Z_AttributeList *)
1850 nmem_malloc (stream, sizeof(*sk->u.sortAttributes->list));
1851 sk->u.sortAttributes->list->num_attributes = 1;
1852 sk->u.sortAttributes->list->attributes = (Z_AttributeElement **)
1853 nmem_malloc (stream, sizeof(*sk->u.sortAttributes->list->attributes));
1854 ae = *sk->u.sortAttributes->list->attributes = (Z_AttributeElement *)
1855 nmem_malloc (stream, sizeof(**sk->u.sortAttributes->list->attributes));
1856 ae->attributeSet = 0;
1857 ae->attributeType = (int *)
1858 nmem_malloc (stream, sizeof(*ae->attributeType));
1859 *ae->attributeType = 1;
1860 ae->which = Z_AttributeValue_numeric;
1861 ae->value.numeric = (int *)
1862 nmem_malloc (stream, sizeof(*ae->value.numeric));
1863 *ae->value.numeric = use_value;
1865 sks->sortRelation = (int *)
1866 nmem_malloc (stream, sizeof(*sks->sortRelation));
1867 if (sort_relation_value == 1)
1868 *sks->sortRelation = Z_SortRelation_ascending;
1869 else if (sort_relation_value == 2)
1870 *sks->sortRelation = Z_SortRelation_descending;
1872 *sks->sortRelation = Z_SortRelation_ascending;
1874 sks->caseSensitivity = (int *)
1875 nmem_malloc (stream, sizeof(*sks->caseSensitivity));
1876 *sks->caseSensitivity = 0;
1879 sks->which = Z_SortKeySpec_null;
1880 sks->u.null = odr_nullval ();
1882 sks->missingValueAction = 0;
1885 sort_sequence->specs[i] = sks;
1887 parms.rset_term = rset_term_create (termz, -1, rank_type);
1888 return rset_create (rset_kind_null, &parms);
1892 static RSET rpn_search_APT (ZebraHandle zh, Z_AttributesPlusTerm *zapt,
1893 oid_value attributeSet, NMEM stream,
1894 Z_SortKeySpecList *sort_sequence,
1895 int num_bases, char **basenames)
1898 char *search_type = NULL;
1899 char rank_type[128];
1902 char termz[IT_MAX_WORD+1];
1904 zebra_maps_attr (zh->reg->zebra_maps, zapt, ®_id, &search_type,
1905 rank_type, &complete_flag, &sort_flag);
1907 logf (LOG_DEBUG, "reg_id=%c", reg_id);
1908 logf (LOG_DEBUG, "complete_flag=%d", complete_flag);
1909 logf (LOG_DEBUG, "search_type=%s", search_type);
1910 logf (LOG_DEBUG, "rank_type=%s", rank_type);
1912 if (zapt->term->which != Z_Term_general)
1917 trans_term (zh, zapt, termz);
1920 return rpn_sort_spec (zh, zapt, attributeSet, stream, sort_sequence,
1923 if (!strcmp (search_type, "phrase"))
1925 return rpn_search_APT_phrase (zh, zapt, termz, attributeSet, stream,
1926 reg_id, complete_flag, rank_type,
1927 num_bases, basenames);
1929 else if (!strcmp (search_type, "and-list"))
1931 return rpn_search_APT_and_list (zh, zapt, termz, attributeSet, stream,
1932 reg_id, complete_flag, rank_type,
1933 num_bases, basenames);
1935 else if (!strcmp (search_type, "or-list"))
1937 return rpn_search_APT_or_list (zh, zapt, termz, attributeSet, stream,
1938 reg_id, complete_flag, rank_type,
1939 num_bases, basenames);
1941 else if (!strcmp (search_type, "local"))
1943 return rpn_search_APT_local (zh, zapt, termz, attributeSet, stream,
1946 else if (!strcmp (search_type, "numeric"))
1948 return rpn_search_APT_numeric (zh, zapt, termz, attributeSet, stream,
1949 reg_id, complete_flag, rank_type,
1950 num_bases, basenames);
1956 static RSET rpn_search_structure (ZebraHandle zh, Z_RPNStructure *zs,
1957 oid_value attributeSet, NMEM stream,
1958 Z_SortKeySpecList *sort_sequence,
1959 int num_bases, char **basenames)
1962 if (zs->which == Z_RPNStructure_complex)
1964 Z_Operator *zop = zs->u.complex->roperator;
1965 rset_bool_parms bool_parms;
1967 bool_parms.rset_l = rpn_search_structure (zh, zs->u.complex->s1,
1968 attributeSet, stream,
1970 num_bases, basenames);
1971 if (bool_parms.rset_l == NULL)
1973 bool_parms.rset_r = rpn_search_structure (zh, zs->u.complex->s2,
1974 attributeSet, stream,
1976 num_bases, basenames);
1977 if (bool_parms.rset_r == NULL)
1979 rset_delete (bool_parms.rset_l);
1982 bool_parms.key_size = sizeof(struct it_key);
1983 bool_parms.cmp = key_compare_it;
1987 case Z_Operator_and:
1988 r = rset_create (rset_kind_and, &bool_parms);
1991 r = rset_create (rset_kind_or, &bool_parms);
1993 case Z_Operator_and_not:
1994 r = rset_create (rset_kind_not, &bool_parms);
1996 case Z_Operator_prox:
1998 if (zop->u.prox->which != Z_ProximityOperator_known)
2004 if (zop->u.prox->which != Z_ProxCode_known)
2012 if (*zop->u.prox->u.known != Z_ProxUnit_word)
2014 char *val = (char *) nmem_malloc (stream, 16);
2016 zh->errString = val;
2017 sprintf (val, "%d", *zop->u.prox->u.known);
2021 if (*zop->u.prox->proximityUnitCode != Z_ProxUnit_word)
2023 char *val = (char *) nmem_malloc (stream, 16);
2025 zh->errString = val;
2026 sprintf (val, "%d", *zop->u.prox->proximityUnitCode);
2034 rsets[0] = bool_parms.rset_l;
2035 rsets[1] = bool_parms.rset_r;
2037 r = rpn_prox (zh, rsets, 2,
2038 *zop->u.prox->ordered,
2039 (!zop->u.prox->exclusion ? 0 :
2040 *zop->u.prox->exclusion),
2041 *zop->u.prox->relationType,
2042 *zop->u.prox->distance);
2043 rset_delete (rsets[0]);
2044 rset_delete (rsets[1]);
2052 else if (zs->which == Z_RPNStructure_simple)
2054 if (zs->u.simple->which == Z_Operand_APT)
2056 logf (LOG_DEBUG, "rpn_search_APT");
2057 r = rpn_search_APT (zh, zs->u.simple->u.attributesPlusTerm,
2058 attributeSet, stream, sort_sequence,
2059 num_bases, basenames);
2061 else if (zs->u.simple->which == Z_Operand_resultSetId)
2063 logf (LOG_DEBUG, "rpn_search_ref");
2064 r = resultSetRef (zh, zs->u.simple->u.resultSetId);
2067 r = rset_create (rset_kind_null, NULL);
2070 nmem_strdup (stream, zs->u.simple->u.resultSetId);
2089 RSET rpn_search (ZebraHandle zh, NMEM nmem,
2090 Z_RPNQuery *rpn, int num_bases, char **basenames,
2091 const char *setname,
2096 oid_value attributeSet;
2097 Z_SortKeySpecList *sort_sequence;
2101 zh->errString = NULL;
2104 sort_sequence = (Z_SortKeySpecList *)
2105 nmem_malloc (nmem, sizeof(*sort_sequence));
2106 sort_sequence->num_specs = 10;
2107 sort_sequence->specs = (Z_SortKeySpec **)
2108 nmem_malloc (nmem, sort_sequence->num_specs *
2109 sizeof(*sort_sequence->specs));
2110 for (i = 0; i<sort_sequence->num_specs; i++)
2111 sort_sequence->specs[i] = 0;
2113 attrset = oid_getentbyoid (rpn->attributeSetId);
2114 attributeSet = attrset->value;
2115 rset = rpn_search_structure (zh, rpn->RPNStructure, attributeSet,
2116 nmem, sort_sequence, num_bases, basenames);
2121 logf (LOG_DEBUG, "search error: %d", zh->errCode);
2123 for (i = 0; sort_sequence->specs[i]; i++)
2125 sort_sequence->num_specs = i;
2127 resultSetRank (zh, sset, rset);
2130 logf (LOG_DEBUG, "resultSetSortSingle in rpn_search");
2131 resultSetSortSingle (zh, nmem, sset, rset,
2132 sort_sequence, &sort_status);
2135 logf (LOG_DEBUG, "resultSetSortSingle status = %d", zh->errCode);
2141 struct scan_info_entry {
2147 struct scan_info_entry *list;
2153 static int scan_handle (char *name, const char *info, int pos, void *client)
2155 int len_prefix, idx;
2156 struct scan_info *scan_info = (struct scan_info *) client;
2158 len_prefix = strlen(scan_info->prefix);
2159 if (memcmp (name, scan_info->prefix, len_prefix))
2161 if (pos > 0) idx = scan_info->after - pos + scan_info->before;
2164 scan_info->list[idx].term = (char *)
2165 odr_malloc (scan_info->odr, strlen(name + len_prefix)+1);
2166 strcpy (scan_info->list[idx].term, name + len_prefix);
2167 assert (*info == sizeof(ISAMS_P));
2168 memcpy (&scan_info->list[idx].isam_p, info+1, sizeof(ISAMS_P));
2172 static void scan_term_untrans (ZebraHandle zh, NMEM stream, int reg_type,
2173 char **dst, const char *src)
2175 char term_dst[1024];
2177 term_untrans (zh, reg_type, term_dst, src);
2179 *dst = (char *) nmem_malloc (stream, strlen(term_dst)+1);
2180 strcpy (*dst, term_dst);
2183 static void count_set (RSET r, int *count)
2191 logf (LOG_DEBUG, "count_set");
2194 rfd = rset_open (r, RSETF_READ);
2195 while (rset_read (r, rfd, &key, &term_index))
2197 if (key.sysno != psysno)
2204 rset_close (r, rfd);
2205 logf (LOG_DEBUG, "%d keys, %d records", kno, *count);
2208 void rpn_scan (ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
2209 oid_value attributeset,
2210 int num_bases, char **basenames,
2211 int *position, int *num_entries, ZebraScanEntry **list,
2215 int pos = *position;
2216 int num = *num_entries;
2220 char termz[IT_MAX_WORD+20];
2223 struct scan_info *scan_info_array;
2224 ZebraScanEntry *glist;
2225 int ords[32], ord_no = 0;
2229 char *search_type = NULL;
2230 char rank_type[128];
2235 if (attributeset == VAL_NONE)
2236 attributeset = VAL_BIB1;
2238 yaz_log (LOG_DEBUG, "position = %d, num = %d set=%d",
2239 pos, num, attributeset);
2241 attr_init (&use, zapt, 1);
2242 use_value = attr_find (&use, &attributeset);
2244 if (zebra_maps_attr (zh->reg->zebra_maps, zapt, ®_id, &search_type,
2245 rank_type, &complete_flag, &sort_flag))
2251 yaz_log (LOG_DEBUG, "use_value = %d", use_value);
2253 if (use_value == -1)
2255 for (base_no = 0; base_no < num_bases && ord_no < 32; base_no++)
2259 data1_local_attribute *local_attr;
2261 if ((r=att_getentbyatt (zh, &attp, attributeset, use_value)))
2263 logf (LOG_DEBUG, "att_getentbyatt fail. set=%d use=%d",
2264 attributeset, use_value);
2272 if (zebraExplain_curDatabase (zh->reg->zei, basenames[base_no]))
2274 zh->errString = basenames[base_no];
2275 zh->errCode = 109; /* Database unavailable */
2279 for (local_attr = attp.local_attributes; local_attr && ord_no < 32;
2280 local_attr = local_attr->next)
2284 ord = zebraExplain_lookupSU (zh->reg->zei, attp.attset_ordinal,
2287 ords[ord_no++] = ord;
2296 /* prepare dictionary scanning */
2299 scan_info_array = (struct scan_info *)
2300 odr_malloc (stream, ord_no * sizeof(*scan_info_array));
2301 for (i = 0; i < ord_no; i++)
2303 int j, prefix_len = 0;
2304 int before_tmp = before, after_tmp = after;
2305 struct scan_info *scan_info = scan_info_array + i;
2306 struct rpn_char_map_info rcmi;
2308 rpn_char_map_prepare (zh->reg, reg_id, &rcmi);
2310 scan_info->before = before;
2311 scan_info->after = after;
2312 scan_info->odr = stream;
2314 scan_info->list = (struct scan_info_entry *)
2315 odr_malloc (stream, (before+after) * sizeof(*scan_info->list));
2316 for (j = 0; j<before+after; j++)
2317 scan_info->list[j].term = NULL;
2319 prefix_len += key_SU_encode (ords[i], termz + prefix_len);
2320 termz[prefix_len++] = reg_id;
2321 termz[prefix_len] = 0;
2322 strcpy (scan_info->prefix, termz);
2324 trans_scan_term (zh, zapt, termz+prefix_len, reg_id);
2326 dict_scan (zh->reg->dict, termz, &before_tmp, &after_tmp,
2327 scan_info, scan_handle);
2329 glist = (ZebraScanEntry *)
2330 odr_malloc (stream, (before+after)*sizeof(*glist));
2332 /* consider terms after main term */
2333 for (i = 0; i < ord_no; i++)
2337 for (i = 0; i<after; i++)
2340 const char *mterm = NULL;
2344 for (j = 0; j < ord_no; j++)
2346 if (ptr[j] < before+after &&
2347 (tst=scan_info_array[j].list[ptr[j]].term) &&
2348 (!mterm || strcmp (tst, mterm) < 0))
2356 scan_term_untrans (zh, stream->mem, reg_id,
2357 &glist[i+before].term, mterm);
2358 rset = rset_trunc (zh, &scan_info_array[j0].list[ptr[j0]].isam_p, 1,
2359 glist[i+before].term, strlen(glist[i+before].term),
2363 for (j = j0+1; j<ord_no; j++)
2365 if (ptr[j] < before+after &&
2366 (tst=scan_info_array[j].list[ptr[j]].term) &&
2367 !strcmp (tst, mterm))
2369 rset_bool_parms bool_parms;
2373 rset_trunc (zh, &scan_info_array[j].list[ptr[j]].isam_p, 1,
2374 glist[i+before].term,
2375 strlen(glist[i+before].term), NULL);
2377 bool_parms.key_size = sizeof(struct it_key);
2378 bool_parms.cmp = key_compare_it;
2379 bool_parms.rset_l = rset;
2380 bool_parms.rset_r = rset2;
2382 rset = rset_create (rset_kind_or, &bool_parms);
2387 count_set (rset, &glist[i+before].occurrences);
2392 *num_entries -= (after-i);
2396 /* consider terms before main term */
2397 for (i = 0; i<ord_no; i++)
2400 for (i = 0; i<before; i++)
2403 const char *mterm = NULL;
2407 for (j = 0; j <ord_no; j++)
2409 if (ptr[j] < before &&
2410 (tst=scan_info_array[j].list[before-1-ptr[j]].term) &&
2411 (!mterm || strcmp (tst, mterm) > 0))
2420 scan_term_untrans (zh, stream->mem, reg_id,
2421 &glist[before-1-i].term, mterm);
2424 (zh, &scan_info_array[j0].list[before-1-ptr[j0]].isam_p, 1,
2425 glist[before-1-i].term, strlen(glist[before-1-i].term),
2430 for (j = j0+1; j<ord_no; j++)
2432 if (ptr[j] < before &&
2433 (tst=scan_info_array[j].list[before-1-ptr[j]].term) &&
2434 !strcmp (tst, mterm))
2436 rset_bool_parms bool_parms;
2439 rset2 = rset_trunc (zh,
2440 &scan_info_array[j].list[before-1-ptr[j]].isam_p, 1,
2441 glist[before-1-i].term,
2442 strlen(glist[before-1-i].term), NULL);
2444 bool_parms.key_size = sizeof(struct it_key);
2445 bool_parms.cmp = key_compare_it;
2446 bool_parms.rset_l = rset;
2447 bool_parms.rset_r = rset2;
2449 rset = rset_create (rset_kind_or, &bool_parms);
2454 count_set (rset, &glist[before-1-i].occurrences);
2464 *list = glist + i; /* list is set to first 'real' entry */
2466 logf (LOG_DEBUG, "position = %d, num_entries = %d",
2467 *position, *num_entries);
2469 logf (LOG_DEBUG, "scan error: %d", zh->errCode);