2 * Copyright (C) 1994-1999, Index Data
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.7 1999-02-02 14:51:06 adam
8 * Updated WIN32 code specific sections. Changed header.
10 * Revision 1.6 1998/01/12 15:04:08 adam
11 * The test option (-s) only uses read-lock (and not write lock).
13 * Revision 1.5 1997/09/17 12:19:17 adam
14 * Zebra version corresponds to YAZ version 1.4.
15 * Changed Zebra server so that it doesn't depend on global common_resource.
17 * Revision 1.4 1997/09/09 13:38:08 adam
18 * Partial port to WIN95/NT.
20 * Revision 1.3 1996/06/04 10:19:00 adam
21 * Minor changes - removed include of ctype.h.
23 * Revision 1.2 1996/05/14 14:04:34 adam
24 * In zebraidx, the 'stat' command is improved. Statistics about ISAM/DICT
27 * Revision 1.1 1995/12/06 12:41:26 adam
28 * New command 'stat' for the index program.
29 * Filenames can be read from stdin by specifying '-'.
30 * Bug fix/enhancement of the transformation from terms to regular
31 * expressons in the search engine.
43 void rec_prstat (Records records)
50 records->head.no_records);
52 for (i = 0; i< REC_BLOCK_TYPES; i++)
54 logf (LOG_LOG, "Record blocks of size %d",
55 records->head.block_size[i]);
57 " Used/Total/Bytes used %d/%d/%d",
58 records->head.block_used[i], records->head.block_last[i]-1,
59 records->head.block_used[i] * records->head.block_size[i]);
61 records->head.block_used[i] * records->head.block_size[i];
64 "Total size of record index in bytes %8d",
65 records->head.total_bytes);
67 "Total size with overhead %8d", total_bytes);