diff options
author | nobody <nobody@localhost> | 2001-06-23 13:14:10 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-06-23 13:14:10 +0800 |
commit | dd277dbef9a0108419304f19b25e3f5dc13bc11a (patch) | |
tree | a4eb5e010ba601de261dc3f9da4dd4b86fcc46fe /libibex/dumpindex.c | |
parent | 72ca61d74b9942040638b628a6f1358e02d23d42 (diff) | |
download | gsoc2013-evolution-PRE_WDFCHANGES.tar gsoc2013-evolution-PRE_WDFCHANGES.tar.gz gsoc2013-evolution-PRE_WDFCHANGES.tar.bz2 gsoc2013-evolution-PRE_WDFCHANGES.tar.lz gsoc2013-evolution-PRE_WDFCHANGES.tar.xz gsoc2013-evolution-PRE_WDFCHANGES.tar.zst gsoc2013-evolution-PRE_WDFCHANGES.zip |
This commit was manufactured by cvs2svn to create tagPRE_WDFCHANGES
'PRE_WDFCHANGES'.
svn path=/tags/PRE_WDFCHANGES/; revision=10430
Diffstat (limited to 'libibex/dumpindex.c')
-rw-r--r-- | libibex/dumpindex.c | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/libibex/dumpindex.c b/libibex/dumpindex.c deleted file mode 100644 index 410a7083d6..0000000000 --- a/libibex/dumpindex.c +++ /dev/null @@ -1,63 +0,0 @@ -/* - Dump the hash tables from an ibex file. - */ - -#include <stdio.h> -#include <stdlib.h> - -#include "ibex_internal.h" - -extern void ibex_hash_dump(struct _IBEXIndex *index); - -static void -index_iterate(struct _IBEXIndex *index) -{ - struct _IBEXCursor *idc; - int len; - char *key; - int total = 0, totallen = 0; - - idc = index->klass->get_cursor(index); - key = idc->klass->next_key(idc, &len); - while (len) { - total++; - totallen += len; - printf("%s\n", key); - g_free(key); - key = idc->klass->next_key(idc, &len); - } - g_free(key); - - idc->klass->close(idc); - - printf("Iterate Totals: %d items, total bytes %d\n", total, totallen); -} - -int main(int argc, char **argv) -{ - ibex *ib; - -#ifdef ENABLE_THREADS - g_thread_init(0); -#endif - - if (argc != 2) { - printf("Usage: %s ibexfile\n", argv[0]); - return 1; - } - ib = ibex_open(argv[1], O_RDONLY, 0); - if (ib == NULL) { - perror("Opening ibex file\n"); - return 1; - } - - ibex_hash_dump(ib->words->wordindex); - ibex_hash_dump(ib->words->nameindex); - - index_iterate(ib->words->wordindex); - index_iterate(ib->words->nameindex); - - ibex_close(ib); - - return 0; -} |