X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=index%2Fzrpn.c;h=24a7ae71f60dd83f239a6e601f651f1999173d46;hb=f3f90b5f1606d7d609fcad38cc583eea9da61d98;hp=7ba5d3ffb5b3536add984695bc48f3b187f2e87a;hpb=040a8961a659f7768fac348093bb807c413d785f;p=idzebra-moved-to-github.git diff --git a/index/zrpn.c b/index/zrpn.c index 7ba5d3f..24a7ae7 100644 --- a/index/zrpn.c +++ b/index/zrpn.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: zrpn.c,v $ - * Revision 1.34 1995-11-16 17:00:56 adam + * Revision 1.35 1995-11-27 09:29:00 adam + * Bug fixes regarding conversion to regular expressions. + * + * Revision 1.34 1995/11/16 17:00:56 adam * Better logging of rpn query. * * Revision 1.33 1995/11/01 13:58:28 quinn @@ -655,9 +658,8 @@ static int trunc_term (ZServerInfo *zi, Z_AttributesPlusTerm *zapt, { case -1: /* not specified */ case 100: /* do not truncate */ - strcat (term_dict, "("); - strcat (term_dict, term_sub); - strcat (term_dict, ")"); + sprintf (term_dict + strlen(term_dict), + "([]%d %s)", strlen(term_sub), term_sub); logf (LOG_DEBUG, "dict_lookup_grep: %s", term_dict); r = dict_lookup_grep (zi->wordDict, term_dict, 0, grep_info, &max_pos, grep_handle); @@ -665,8 +667,8 @@ static int trunc_term (ZServerInfo *zi, Z_AttributesPlusTerm *zapt, logf (LOG_WARN, "dict_lookup_grep err, trunc=none:%d", r); break; case 1: /* right truncation */ - strcat (term_dict, term_sub); - strcat (term_dict, ".*"); + sprintf (term_dict + strlen(term_dict), + "([]%d %s.*)", strlen(term_sub), term_sub); dict_lookup_grep (zi->wordDict, term_dict, 0, grep_info, &max_pos, grep_handle); break; @@ -675,17 +677,20 @@ static int trunc_term (ZServerInfo *zi, Z_AttributesPlusTerm *zapt, zi->errCode = 120; return -1; case 101: /* process # in term */ - for (j = strlen(term_dict), i = 0; term_sub[i] && i < 2; i++) - term_dict[j++] = term_sub[i]; - for (; term_sub[i]; i++) - if (term_sub[i] == '#') + strcat (term_dict, "("); + j = strlen(term_dict); + for (i=0; term_sub[i]; i++) + if (i > 2 && term_sub[i] == '#') { term_dict[j++] = '.'; term_dict[j++] = '*'; } else + { + term_dict[j++] = '\\'; term_dict[j++] = term_sub[i]; - term_dict[j] = '\0'; + } + strcpy (term_dict+j, ")"); r = dict_lookup_grep (zi->wordDict, term_dict, 0, grep_info, &max_pos, grep_handle); if (r) @@ -693,9 +698,7 @@ static int trunc_term (ZServerInfo *zi, Z_AttributesPlusTerm *zapt, r); break; case 102: /* regular expression */ - strcat (term_dict, "("); - strcat (term_dict, term_sub); - strcat (term_dict, ")"); + sprintf (term_dict + strlen(term_dict), "(%s)", term_sub); logf (LOG_DEBUG, "dict_lookup_grep: %s", term_dict); r = dict_lookup_grep (zi->wordDict, term_dict, 0, grep_info, &max_pos, grep_handle);