1 /* $Id: dcompact.c,v 1.13 2005-01-15 19:38:21 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
32 static void dict_copy_page(Dict dict, char *to_p, char *from_p, int *map)
35 short *from_indxp, *to_indxp;
36 char *from_info, *to_info;
38 from_indxp = (short*) ((char*) from_p+DICT_bsize(from_p));
39 to_indxp = (short*) ((char*) to_p+DICT_bsize(to_p));
40 to_info = (char*) to_p + DICT_infoffset;
41 for (i = DICT_nodir (from_p); --i >= 0; )
43 if (*--from_indxp > 0) /* tail string here! */
45 /* string (Dict_char *) DICT_EOS terminated */
46 /* unsigned char length of information */
47 /* char * information */
49 from_info = (char*) from_p + *from_indxp;
50 *--to_indxp = to_info - to_p;
51 slen = (dict_strlen((Dict_char*) from_info)+1)*sizeof(Dict_char);
52 memcpy (to_info, from_info, slen);
61 /* Dict_char sub char */
62 /* unsigned char length of information */
63 /* char * information */
65 *--to_indxp = -(to_info - to_p);
66 from_info = (char*) from_p - *from_indxp;
68 memcpy (&subptr, from_info, sizeof(subptr));
70 from_info += sizeof(Dict_ptr);
71 memcpy (&subchar, from_info, sizeof(subchar));
72 from_info += sizeof(Dict_char);
74 memcpy (to_info, &subptr, sizeof(Dict_ptr));
75 to_info += sizeof(Dict_ptr);
76 memcpy (to_info, &subchar, sizeof(Dict_char));
77 to_info += sizeof(Dict_char);
79 assert (to_info < (char*) to_indxp);
81 memcpy (to_info, from_info, slen);
85 DICT_size(to_p) = to_info - to_p;
87 DICT_nodir(to_p) = no;
90 int dict_copy_compact (BFiles bfs, const char *from_name, const char *to_name)
93 Dict dict_from, dict_to;
95 dict_from = dict_open (bfs, from_name, 0, 0, 0, 4096);
98 map = (int *) xmalloc ((dict_from->head.last+1) * sizeof(*map));
99 for (i = 0; i <= (int) (dict_from->head.last); i++)
101 dict_to = dict_open (bfs, to_name, 0, 1, 1, 4096);
105 map[1] = dict_from->head.page_size;
107 for (i = 1; i < (int) (dict_from->head.last); i++)
112 yaz_log (YLOG_LOG, "map[%d] = %d", i, map[i]);
114 dict_bf_readp (dict_from->dbf, i, &buf);
115 size = ((DICT_size(buf)+sizeof(short)-1)/sizeof(short) +
116 DICT_nodir(buf))*sizeof(short);
117 map[i+1] = map[i] + size;
118 no_dir += DICT_nodir(buf);
121 yaz_log (YLOG_LOG, "map[%d] = %d", i, map[i]);
122 yaz_log (YLOG_LOG, "nodir = %d", no_dir);
124 dict_to->head.root = map[1];
125 dict_to->head.last = map[i];
126 for (i = 1; i< (int) (dict_from->head.last); i++)
129 dict_bf_readp (dict_from->dbf, i, &old_p);
131 yaz_log (YLOG_LOG, "dict_bf_newp no=%d size=%d", map[i],
133 dict_bf_newp (dict_to->dbf, map[i], &new_p, map[i+1] - map[i]);
135 DICT_type(new_p) = 0;
136 DICT_backptr(new_p) = map[i-1];
137 DICT_bsize(new_p) = map[i+1] - map[i];
139 dict_copy_page(dict_from, (char*) new_p, (char*) old_p, map);
141 dict_close (dict_from);
142 dict_close (dict_to);