1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
/* This file is part of the Zebra server.
Copyright (C) Index Data
Zebra is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.
Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#if HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <stdlib.h>
#include <idzebra/util.h>
#include <yaz/xmalloc.h>
#include "mfile.h"
#include "cfile.h"
#define CF_OPTIMIZE_COMMIT 0
static int log_level = 0;
#if CF_OPTIMIZE_COMMIT
struct map_cache_entity {
int from;
int to;
};
struct map_cache {
int max;
int no;
struct map_cache_entity *map;
char *buf;
CFile cf;
};
static struct map_cache *map_cache_init (CFile cf)
{
int mem_max = 2000000;
struct map_cache *m_p;
m_p = xmalloc (sizeof(*m_p));
m_p->cf = cf;
m_p->max = mem_max / cf->head.block_size;
m_p->buf = xmalloc (mem_max);
m_p->no = 0;
m_p->map = xmalloc (sizeof(*m_p->map) * m_p->max);
return m_p;
}
static int map_cache_cmp_from (const void *p1, const void *p2)
{
return ((struct map_cache_entity*) p1)->from -
((struct map_cache_entity*) p2)->from;
}
static int map_cache_cmp_to(const void *p1, const void *p2)
{
return ((struct map_cache_entity*) p1)->to -
((struct map_cache_entity*) p2)->to;
}
static int map_cache_flush(struct map_cache *m_p)
{
int i;
qsort (m_p->map, m_p->no, sizeof(*m_p->map), map_cache_cmp_from);
assert (m_p->no < 2 || m_p->map[0].from < m_p->map[1].from);
for (i = 0; i<m_p->no; i++)
{
if (mf_read(m_p->cf->block_mf, m_p->map[i].from, 0, 0,
m_p->buf + i * m_p->cf->head.block_size) != 1)
{
yaz_log (YLOG_FATAL, "read commit block at position %d",
m_p->map[i].from);
return -1;
}
m_p->map[i].from = i;
}
qsort (m_p->map, m_p->no, sizeof(*m_p->map), map_cache_cmp_to);
assert (m_p->no < 2 || m_p->map[0].to < m_p->map[1].to);
for (i = 0; i<m_p->no; i++)
{
if (mf_write(m_p->cf->rmf, m_p->map[i].to, 0, 0,
m_p->buf + m_p->map[i].from * m_p->cf->head.block_size))
return -1;
}
m_p->no = 0;
return 0;
}
static int map_cache_del(struct map_cache *m_p)
{
int r = map_cache_flush(m_p);
xfree (m_p->map);
xfree (m_p->buf);
xfree (m_p);
return r;
}
static int map_cache_add(struct map_cache *m_p, int from, int to)
{
int i = m_p->no;
m_p->map[i].from = from;
m_p->map[i].to = to;
m_p->no = ++i;
if (i == m_p->max)
return map_cache_flush(m_p);
return 0;
}
/* CF_OPTIMIZE_COMMIT */
#endif
static int cf_commit_hash (CFile cf)
{
int r = 0;
int i;
zint bucket_no;
struct CFile_ph_bucket *p;
#if CF_OPTIMIZE_COMMIT
struct map_cache *m_p;
#endif
#if CF_OPTIMIZE_COMMIT
m_p = map_cache_init (cf);
#endif
p = (struct CFile_ph_bucket *) xmalloc (sizeof(*p));
bucket_no = cf->head.first_bucket;
for (; bucket_no < cf->head.next_bucket; bucket_no++)
{
if (mf_read (cf->hash_mf, bucket_no, 0, 0, p) != 1)
{
yaz_log (YLOG_FATAL, "read commit hash");
r = -1;
goto out;
}
for (i = 0; i<HASH_BUCKET && p->vno[i]; i++)
{
#if CF_OPTIMIZE_COMMIT
if (map_cache_add(m_p, p->vno[i], p->no[i]))
{
r = -1;
goto out;
}
#else
if (mf_read(cf->block_mf, p->vno[i], 0, 0, cf->iobuf) != 1)
{
yaz_log (YLOG_FATAL, "read commit block");
r = -1;
goto out;
}
if (mf_write(cf->rmf, p->no[i], 0, 0, cf->iobuf))
{
yaz_log (YLOG_FATAL, "write commit block");
r = -1;
goto out;
}
#endif
}
}
out:
#if CF_OPTIMIZE_COMMIT
if (map_cache_del(m_p))
r = -1;
#endif
xfree(p);
return r;
}
static int cf_commit_flat(CFile cf)
{
zint *fp;
zint hno;
int i;
int r = 0;
zint vno = 0;
#if CF_OPTIMIZE_COMMIT
struct map_cache *m_p;
#endif
#if CF_OPTIMIZE_COMMIT
m_p = map_cache_init (cf);
#endif
fp = (zint *) xmalloc (HASH_BSIZE);
for (hno = cf->head.next_bucket; hno < cf->head.flat_bucket; hno++)
{
for (i = 0; i < (int) (HASH_BSIZE/sizeof(zint)); i++)
fp[i] = 0;
if (!mf_read (cf->hash_mf, hno, 0, 0, fp) &&
hno != cf->head.flat_bucket-1)
{
yaz_log (YLOG_FATAL, "read index block hno=" ZINT_FORMAT
" (" ZINT_FORMAT "-" ZINT_FORMAT ") commit",
hno, cf->head.next_bucket, cf->head.flat_bucket-1);
r = -1;
goto out;
}
for (i = 0; i < (int) (HASH_BSIZE/sizeof(zint)); i++)
{
if (fp[i])
{
#if CF_OPTIMIZE_COMMIT
if (map_cache_add(m_p, fp[i], vno))
{
r = -1;
goto out;
}
#else
if (mf_read (cf->block_mf, fp[i], 0, 0, cf->iobuf) != 1)
{
yaz_log (YLOG_FATAL, "read data block hno=" ZINT_FORMAT " (" ZINT_FORMAT "-" ZINT_FORMAT ") "
"i=%d commit block at " ZINT_FORMAT " (->" ZINT_FORMAT")",
hno, cf->head.next_bucket, cf->head.flat_bucket-1,
i, fp[i], vno);
r = -1;
goto out;
}
if (mf_write(cf->rmf, vno, 0, 0, cf->iobuf))
{
r = -1;
goto out;
}
#endif
}
vno++;
}
}
out:
#if CF_OPTIMIZE_COMMIT
if (map_cache_del(m_p))
r = -1;
#endif
yaz_log(log_level, "cf_commit_flat r=%d", r);
xfree(fp);
return r;
}
int cf_commit(CFile cf)
{
if (cf->bucket_in_memory)
{
yaz_log(YLOG_FATAL, "cf_commit: dirty cache");
return -1;
}
yaz_log(log_level, "cf_commit: state=%d", cf->head.state);
if (cf->head.state == CFILE_STATE_HASH)
return cf_commit_hash(cf);
else if (cf->head.state == CFILE_STATE_FLAT)
return cf_commit_flat(cf);
else
{
yaz_log(YLOG_FATAL, "cf_commit: bad state=%d", cf->head.state);
return -1;
}
}
/*
* Local variables:
* c-basic-offset: 4
* c-file-style: "Stroustrup"
* indent-tabs-mode: nil
* End:
* vim: shiftwidth=4 tabstop=8 expandtab
*/
|