2 * Copyright (C) 1994-1999, Index Data
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.19 2000-12-05 10:01:44 adam
8 * Fixed bug regarding user-defined attribute sets.
10 * Revision 1.18 1999/09/07 07:19:21 adam
11 * Work on character mapping. Implemented replace rules.
13 * Revision 1.17 1999/02/02 14:50:55 adam
14 * Updated WIN32 code specific sections. Changed header.
16 * Revision 1.16 1998/05/20 10:12:17 adam
17 * Implemented automatic EXPLAIN database maintenance.
18 * Modified Zebra to work with ASN.1 compiled version of YAZ.
20 * Revision 1.15 1998/03/05 08:45:12 adam
21 * New result set model and modular ranking system. Moved towards
22 * descent server API. System information stored as "SGML" records.
24 * Revision 1.14 1997/10/27 14:33:04 adam
25 * Moved towards generic character mapping depending on "structure"
26 * field in abstract syntax file. Fixed a few memory leaks. Fixed
27 * bug with negative integers when doing searches with relational
30 * Revision 1.13 1997/09/09 13:38:07 adam
31 * Partial port to WIN95/NT.
33 * Revision 1.12 1997/09/05 09:52:32 adam
34 * Extra argument added to function chr_read_maptab (tab path).
36 * Revision 1.11 1996/10/29 14:06:49 adam
37 * Include zebrautl.h instead of alexutil.h.
39 * Revision 1.10 1996/06/04 14:56:12 quinn
42 * Revision 1.9 1996/06/04 14:18:53 quinn
45 * Revision 1.8 1996/06/04 10:18:59 adam
46 * Minor changes - removed include of ctype.h.
48 * Revision 1.7 1995/10/10 12:24:38 adam
49 * Temporary sort files are compressed.
51 * Revision 1.6 1995/09/29 14:01:42 adam
54 * Revision 1.5 1995/09/11 13:09:35 adam
55 * More work on relevance feedback.
57 * Revision 1.4 1995/09/08 14:52:27 adam
58 * Minor changes. Dictionary is lower case now.
60 * Revision 1.3 1995/09/06 16:11:17 adam
61 * Option: only one word key per file.
63 * Revision 1.2 1995/09/04 12:33:42 adam
64 * Various cleanup. YAZ util used instead.
66 * Revision 1.1 1995/09/04 09:10:36 adam
67 * More work on index add/del/update.
68 * Merge sort implemented.
69 * Initial work on z39 server.
88 int key_file_decode (FILE *f)
99 d = ((c&63) << 8) + (getc (f) & 0xff);
102 d = ((c&63) << 8) + (getc (f) & 0xff);
103 d = (d << 8) + (getc (f) & 0xff);
106 d = ((c&63) << 8) + (getc (f) & 0xff);
107 d = (d << 8) + (getc (f) & 0xff);
108 d = (d << 8) + (getc (f) & 0xff);
115 static int read_one (FILE *inf, char *name, char *key, struct it_key *prevk)
122 if ((c=getc(inf)) == EOF)
128 c = key_file_decode (inf);
131 itkey.sysno = c + prevk->sysno;
134 prevk->sysno = itkey.sysno;
137 c = key_file_decode (inf);
138 itkey.seqno = c + prevk->seqno;
139 prevk->seqno = itkey.seqno;
141 memcpy (key+1, &itkey, sizeof(itkey));
145 int main (int argc, char **argv)
149 char *key_fname = NULL;
150 char key_string[IT_MAX_WORD];
161 while ((ret = options ("c:v:", argv, argc, &arg)) != -2)
169 yaz_log_init (yaz_log_mask_str(arg), prog, NULL);
173 if (!(res = res_open (arg)))
175 logf(LOG_FATAL, "Failed to open resource file %s", arg);
181 logf (LOG_FATAL, "Unknown option '-%s'", arg);
187 fprintf (stderr, "kdump [-c config] [-v log] file\n");
191 res = res_open ("zebra.cfg");
192 zm = zebra_maps_open (res);
193 if (!(inf = fopen (key_fname, "r")))
195 logf (LOG_FATAL|LOG_ERRNO, "fopen %s", key_fname);
198 printf ("t rg op sysno seqno txt\n");
199 while (read_one (inf, key_string, key_info, &prevk))
203 char keybuf[IT_MAX_WORD+1];
205 const char *from = key_string;
206 int usedb_type = from[0];
207 int reg_type = from[1];
210 memcpy (&k, 1+key_info, sizeof(k));
215 const char *res = zebra_maps_output (zm, reg_type, &from);
223 printf ("%c %3d %c %7d %5d %s\n", reg_type, usedb_type, op ? 'i':'d',
224 k.sysno, k.seqno, keybuf);
226 zebra_maps_close (zm);
229 logf (LOG_FATAL|LOG_ERRNO, "fclose %s", key_fname);