1 /* This file is part of the Zebra server.
2 Copyright (C) 1994-2010 Index Data
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 #include <idzebra/util.h>
25 #include <yaz/xmalloc.h>
29 #define CF_OPTIMIZE_COMMIT 0
31 static int log_level = 0;
33 #if CF_OPTIMIZE_COMMIT
34 struct map_cache_entity {
43 struct map_cache_entity *map;
48 static struct map_cache *map_cache_init (CFile cf)
50 int mem_max = 2000000;
51 struct map_cache *m_p;
53 m_p = xmalloc (sizeof(*m_p));
55 m_p->max = mem_max / cf->head.block_size;
56 m_p->buf = xmalloc (mem_max);
58 m_p->map = xmalloc (sizeof(*m_p->map) * m_p->max);
62 static int map_cache_cmp_from (const void *p1, const void *p2)
64 return ((struct map_cache_entity*) p1)->from -
65 ((struct map_cache_entity*) p2)->from;
68 static int map_cache_cmp_to(const void *p1, const void *p2)
70 return ((struct map_cache_entity*) p1)->to -
71 ((struct map_cache_entity*) p2)->to;
74 static int map_cache_flush(struct map_cache *m_p)
78 qsort (m_p->map, m_p->no, sizeof(*m_p->map), map_cache_cmp_from);
79 assert (m_p->no < 2 || m_p->map[0].from < m_p->map[1].from);
80 for (i = 0; i<m_p->no; i++)
82 if (mf_read(m_p->cf->block_mf, m_p->map[i].from, 0, 0,
83 m_p->buf + i * m_p->cf->head.block_size) != 1)
85 yaz_log (YLOG_FATAL, "read commit block at position %d",
91 qsort (m_p->map, m_p->no, sizeof(*m_p->map), map_cache_cmp_to);
92 assert (m_p->no < 2 || m_p->map[0].to < m_p->map[1].to);
93 for (i = 0; i<m_p->no; i++)
95 if (mf_write(m_p->cf->rmf, m_p->map[i].to, 0, 0,
96 m_p->buf + m_p->map[i].from * m_p->cf->head.block_size))
103 static int map_cache_del(struct map_cache *m_p)
105 int r = map_cache_flush(m_p);
112 static int map_cache_add(struct map_cache *m_p, int from, int to)
116 m_p->map[i].from = from;
120 return map_cache_flush(m_p);
124 /* CF_OPTIMIZE_COMMIT */
127 static int cf_commit_hash (CFile cf)
133 struct CFile_ph_bucket *p;
134 #if CF_OPTIMIZE_COMMIT
135 struct map_cache *m_p;
138 #if CF_OPTIMIZE_COMMIT
139 m_p = map_cache_init (cf);
142 p = (struct CFile_ph_bucket *) xmalloc (sizeof(*p));
143 hash_bytes = cf->head.hash_size * sizeof(zint);
144 bucket_no = cf->head.first_bucket;
145 for (; bucket_no < cf->head.next_bucket; bucket_no++)
147 if (mf_read (cf->hash_mf, bucket_no, 0, 0, p) != 1)
149 yaz_log (YLOG_FATAL, "read commit hash");
153 for (i = 0; i<HASH_BUCKET && p->vno[i]; i++)
155 #if CF_OPTIMIZE_COMMIT
156 if (map_cache_add(m_p, p->vno[i], p->no[i]))
162 if (mf_read(cf->block_mf, p->vno[i], 0, 0, cf->iobuf) != 1)
164 yaz_log (YLOG_FATAL, "read commit block");
168 if (mf_write(cf->rmf, p->no[i], 0, 0, cf->iobuf))
170 yaz_log (YLOG_FATAL, "write commit block");
178 #if CF_OPTIMIZE_COMMIT
179 if (map_cache_del(m_p))
186 static int cf_commit_flat(CFile cf)
194 #if CF_OPTIMIZE_COMMIT
195 struct map_cache *m_p;
199 #if CF_OPTIMIZE_COMMIT
200 m_p = map_cache_init (cf);
202 fp = (zint *) xmalloc (HASH_BSIZE);
203 for (hno = cf->head.next_bucket; hno < cf->head.flat_bucket; hno++)
205 for (i = 0; i < (int) (HASH_BSIZE/sizeof(zint)); i++)
207 if (!mf_read (cf->hash_mf, hno, 0, 0, fp) &&
208 hno != cf->head.flat_bucket-1)
210 yaz_log (YLOG_FATAL, "read index block hno=" ZINT_FORMAT
211 " (" ZINT_FORMAT "-" ZINT_FORMAT ") commit",
212 hno, cf->head.next_bucket, cf->head.flat_bucket-1);
216 for (i = 0; i < (int) (HASH_BSIZE/sizeof(zint)); i++)
220 #if CF_OPTIMIZE_COMMIT
221 if (map_cache_add(m_p, fp[i], vno))
227 if (mf_read (cf->block_mf, fp[i], 0, 0, cf->iobuf) != 1)
229 yaz_log (YLOG_FATAL, "read data block hno=" ZINT_FORMAT " (" ZINT_FORMAT "-" ZINT_FORMAT ") "
230 "i=%d commit block at " ZINT_FORMAT " (->" ZINT_FORMAT")",
231 hno, cf->head.next_bucket, cf->head.flat_bucket-1,
236 if (mf_write(cf->rmf, vno, 0, 0, cf->iobuf))
247 #if CF_OPTIMIZE_COMMIT
248 if (map_cache_del(m_p))
251 yaz_log(log_level, "cf_commit_flat r=%d", r);
256 int cf_commit(CFile cf)
258 if (cf->bucket_in_memory)
260 yaz_log(YLOG_FATAL, "cf_commit: dirty cache");
263 yaz_log(log_level, "cf_commit: state=%d", cf->head.state);
264 if (cf->head.state == CFILE_STATE_HASH)
265 return cf_commit_hash(cf);
266 else if (cf->head.state == CFILE_STATE_FLAT)
267 return cf_commit_flat(cf);
270 yaz_log(YLOG_FATAL, "cf_commit: bad state=%d", cf->head.state);
278 * c-file-style: "Stroustrup"
279 * indent-tabs-mode: nil
281 * vim: shiftwidth=4 tabstop=8 expandtab