X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=index%2Frank1.c;h=89f845560c48eb2bd8f2b4cbc5ffaf12c8bd33d9;hp=84d41592a1bc4671d8cae7f85eb22751f7d76663;hb=2b1851bd5565e3d21f9cf9a37661a584c063b75f;hpb=ef696645cc3b7e0f4027008d1dc589c0f0f90c1f diff --git a/index/rank1.c b/index/rank1.c index 84d4159..89f8455 100644 --- a/index/rank1.c +++ b/index/rank1.c @@ -4,7 +4,16 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: rank1.c,v $ - * Revision 1.5 1999-05-26 07:49:13 adam + * Revision 1.8 2002-04-04 14:14:13 adam + * Multiple registers (alpha early) + * + * Revision 1.7 2001/11/14 22:06:27 adam + * Rank-weight may be controlled via query. + * + * Revision 1.6 2000/03/15 15:00:30 adam + * First work on threaded version. + * + * Revision 1.5 1999/05/26 07:49:13 adam * C++ compilation. * * Revision 1.4 1999/02/02 14:51:01 adam @@ -30,7 +39,7 @@ #include #endif -#include "zserver.h" +#include "index.h" struct rank_class_info { int dummy; @@ -41,6 +50,7 @@ struct rank_term_info { int global_occur; int global_inv; int rank_flag; + int rank_weight; }; struct rank_set_info { @@ -62,7 +72,7 @@ static int log2_int (unsigned g) * create: Creates/Initialises this rank handler. This routine is * called exactly once. The routine returns the class_handle. */ -static void *create (ZebraHandle zh) +static void *create (struct zebra_register *reg) { struct rank_class_info *ci = (struct rank_class_info *) xmalloc (sizeof(*ci)); @@ -76,7 +86,7 @@ static void *create (ZebraHandle zh) * when the handler is no longer needed - i.e. when the server * dies. The class_handle was previously returned by create. */ -static void destroy (ZebraHandle zh, void *class_handle) +static void destroy (struct zebra_register *reg, void *class_handle) { struct rank_class_info *ci = (struct rank_class_info *) class_handle; @@ -90,7 +100,7 @@ static void destroy (ZebraHandle zh, void *class_handle) * each result set. The returned handle is a "set handle" and * will be used in each of the handlers below. */ -static void *begin (ZebraHandle zh, void *class_handle, RSET rset) +static void *begin (struct zebra_register *reg, void *class_handle, RSET rset) { struct rank_set_info *si = (struct rank_set_info *) xmalloc (sizeof(*si)); int i; @@ -103,9 +113,12 @@ static void *begin (ZebraHandle zh, void *class_handle, RSET rset) for (i = 0; i < si->no_entries; i++) { int g = rset->rset_terms[i]->nn; - if (!strcmp (rset->rset_terms[i]->flags, "rank")) + if (!strncmp (rset->rset_terms[i]->flags, "rank,", 5)) { + yaz_log (LOG_LOG, "%s", rset->rset_terms[i]->flags); si->entries[i].rank_flag = 1; + si->entries[i].rank_weight = atoi (rset->rset_terms[i]->flags+5); + yaz_log (LOG_LOG, "i=%d weight=%d", i, si->entries[i].rank_weight); (si->no_rank_entries)++; } else @@ -122,7 +135,7 @@ static void *begin (ZebraHandle zh, void *class_handle, RSET rset) * end: Terminates ranking process. Called after a result set * has been ranked. */ -static void end (ZebraHandle zh, void *set_handle) +static void end (struct zebra_register *reg, void *set_handle) { struct rank_set_info *si = (struct rank_set_info *) set_handle; logf (LOG_DEBUG, "rank-1 end"); @@ -160,10 +173,11 @@ static int calc (void *set_handle, int sysno) return -1; for (i = 0; i < si->no_entries; i++) if (si->entries[i].rank_flag && (lo = si->entries[i].local_occur)) - score += (8+log2_int (lo)) * si->entries[i].global_inv; - score *= 34; + score += (8+log2_int (lo)) * si->entries[i].global_inv * + si->entries[i].rank_weight; divisor = si->no_rank_entries * (8+log2_int (si->last_pos/si->no_entries)); score = score / divisor; + yaz_log (LOG_LOG, "score=%d", score); if (score > 1000) score = 1000; for (i = 0; i < si->no_entries; i++)