X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Finvstat.c;h=0a76d95941884c326d14f5ed358bca88d844d037;hb=e505b6cf2a7f6821264d82cd2e8869b2be38d0b2;hp=a02a1a6aa18c7c8d1f541e7eb4ee456f45c9608b;hpb=a8b86c35a39ce9eb5279c46dd99ef7e91b83fb7b;p=idzebra-moved-to-github.git diff --git a/index/invstat.c b/index/invstat.c index a02a1a6..0a76d95 100644 --- a/index/invstat.c +++ b/index/invstat.c @@ -1,4 +1,4 @@ -/* $Id: invstat.c,v 1.38 2004-08-06 12:55:01 adam Exp $ +/* $Id: invstat.c,v 1.42 2004-11-19 10:26:57 heikki Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Index Data Aps @@ -63,7 +63,7 @@ static void print_dict_item (ZebraMaps zm, const char *s, zint count, *to++ = *res++; } *to = '\0'; - /* yaz_log (LOG_LOG, "%s", keybuf); */ + /* yaz_log (YLOG_LOG, "%s", keybuf); */ printf("%10" ZINT_FORMAT0 " %s %d.%d - %d.%d\n", count, keybuf, firstsys,firstseq, lastsys,lastseq); } @@ -97,32 +97,11 @@ static int inv_stat_handle (char *name, const char *info, int pos, while (isams_pp_read(pp, &key)) { occurx++; -#if IT_KEY_NEW -#else - stat_info->cksum = stat_info->cksum * 65509 + - key.sysno + 11 * key.seqno; - if (-1==firstsys) - { - firstseq=key.seqno; - firstsys=key.sysno; - } - lastsys=key.sysno; - lastseq=key.seqno; -#endif } assert (occurx == occur); stat_info->no_isam_entries[0] += occur; isams_pp_close (pp); } - if (stat_info->zh->reg->isam) - { - ISPT ispt; - - ispt = is_position (stat_info->zh->reg->isam, (int) isam_p); - occur = is_numkeys (ispt); - stat_info->no_isam_entries[is_type(isam_p)] += occur; - is_pt_free (ispt); - } if (stat_info->zh->reg->isamc) { ISAMC_PP pp; @@ -134,18 +113,6 @@ static int inv_stat_handle (char *name, const char *info, int pos, while (isc_pp_read(pp, &key)) { occurx++; -#if IT_KEY_NEW -#else - stat_info->cksum = stat_info->cksum * 65509 + - key.sysno + 11 * key.seqno; - if (-1==firstsys) - { - firstseq=key.seqno; - firstsys=key.sysno; - } - lastsys=key.sysno; - lastseq=key.seqno; -#endif } assert (occurx == occur); stat_info->no_isam_entries[isc_type(isam_p)] += occur; @@ -160,23 +127,11 @@ static int inv_stat_handle (char *name, const char *info, int pos, int size; int blocks; - pp = isamb_pp_open_x(stat_info->zh->reg->isamb, isam_p, &level); + pp = isamb_pp_open_x(stat_info->zh->reg->isamb, isam_p, &level, 0); while (isamb_pp_read(pp, &key)) { occur++; -#if IT_KEY_NEW -#else - stat_info->cksum = stat_info->cksum * 65509 + - key.sysno + 11 * key.seqno; - if (-1==firstsys) - { - firstseq=key.seqno; - firstsys=key.sysno; - } - lastsys=key.sysno; - lastseq=key.seqno; -#endif } isamb_pp_close_x (pp, &size, &blocks); stat_info->isamb_blocks[cat] += blocks;