1 /* $Id: kdump.c,v 1.28 2005-01-15 19:38:26 adam Exp $
2 Copyright (C) 1995-2005
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra. If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
38 int main(int argc, char **argv)
44 /* old kdumper.. must be updated to use new codec .. */
45 int key_file_decode (FILE *f)
56 d = ((c&63) << 8) + (getc (f) & 0xff);
59 d = ((c&63) << 8) + (getc (f) & 0xff);
60 d = (d << 8) + (getc (f) & 0xff);
63 d = ((c&63) << 8) + (getc (f) & 0xff);
64 d = (d << 8) + (getc (f) & 0xff);
65 d = (d << 8) + (getc (f) & 0xff);
75 static int read_one (FILE *inf, char *name, char *key, struct it_key *prevk)
82 if ((c=getc(inf)) == EOF)
88 c = key_file_decode (inf);
91 itkey.sysno = c + prevk->sysno;
94 prevk->sysno = itkey.sysno;
97 c = key_file_decode (inf);
98 itkey.seqno = c + prevk->seqno;
99 prevk->seqno = itkey.seqno;
101 memcpy (key+1, &itkey, sizeof(itkey));
106 int main (int argc, char **argv)
110 char *key_fname = NULL;
111 char key_string[IT_MAX_WORD];
122 while ((ret = options ("c:v:", argv, argc, &arg)) != -2)
130 yaz_log_init (yaz_log_mask_str(arg), prog, NULL);
134 if (!(res = res_open (arg, 0, 0)))
136 yaz_log(YLOG_FATAL, "Failed to open resource file %s", arg);
142 yaz_log (YLOG_FATAL, "Unknown option '-%s'", arg);
148 fprintf (stderr, "kdump [-c config] [-v log] file\n");
152 res = res_open ("zebra.cfg", 0, 0);
153 zm = zebra_maps_open (res, 0);
154 if (!(inf = fopen (key_fname, "r")))
156 yaz_log (YLOG_FATAL|YLOG_ERRNO, "fopen %s", key_fname);
159 printf ("t rg op sysno seqno txt\n");
160 while (read_one (inf, key_string, key_info, &prevk))
164 char keybuf[IT_MAX_WORD+1];
166 const char *from = key_string;
167 int usedb_type = from[0];
168 int reg_type = from[1];
171 memcpy (&k, 1+key_info, sizeof(k));
176 const char *res = zebra_maps_output (zm, reg_type, &from);
184 printf ("%c %3d %c %7d %5d %s\n", reg_type, usedb_type, op ? 'i':'d',
185 k.sysno, k.seqno, keybuf);
187 zebra_maps_close (zm);
190 yaz_log (YLOG_FATAL|YLOG_ERRNO, "fclose %s", key_fname);