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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
|
/* 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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#ifdef WIN32
#include <io.h>
#endif
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <yaz/xmalloc.h>
#include <idzebra/util.h>
#include <idzebra/bfile.h>
#include "mfile.h"
#include "cfile.h"
struct BFile_struct
{
MFile mf;
Zebra_lock_rdwr rdwr_lock;
struct CFile_struct *cf;
int block_size;
};
struct BFiles_struct {
MFile_area commit_area;
MFile_area register_area;
char *base;
char *cache_fname;
};
BFiles bfs_create (const char *spec, const char *base)
{
BFiles bfs = (BFiles) xmalloc(sizeof(*bfs));
bfs->commit_area = 0;
bfs->base = 0;
bfs->cache_fname = 0;
if (base)
bfs->base = xstrdup(base);
bfs->register_area = mf_init("register", spec, base, 0);
if (!bfs->register_area)
{
bfs_destroy(bfs);
return 0;
}
return bfs;
}
void bfs_destroy(BFiles bfs)
{
if (!bfs)
return;
xfree(bfs->cache_fname);
xfree(bfs->base);
mf_destroy(bfs->commit_area);
mf_destroy(bfs->register_area);
xfree(bfs);
}
static FILE *open_cache(BFiles bfs, const char *flags)
{
return fopen(bfs->cache_fname, flags);
}
static void unlink_cache(BFiles bfs)
{
if (bfs->cache_fname)
unlink(bfs->cache_fname);
}
ZEBRA_RES bf_cache(BFiles bfs, const char *spec)
{
if (spec)
{
yaz_log(YLOG_LOG, "enabling shadow spec=%s", spec);
if (!bfs->commit_area)
bfs->commit_area = mf_init("shadow", spec, bfs->base, 1);
if (bfs->commit_area)
{
bfs->cache_fname = xmalloc(strlen(bfs->commit_area->dirs->name)+
8);
strcpy(bfs->cache_fname, bfs->commit_area->dirs->name);
strcat(bfs->cache_fname, "/cache");
yaz_log(YLOG_LOG, "cache_fname = %s", bfs->cache_fname);
}
else
{
yaz_log(YLOG_WARN, "shadow could not be enabled");
return ZEBRA_FAIL;
}
}
else
bfs->commit_area = 0;
return ZEBRA_OK;
}
int bf_close2(BFile bf)
{
int ret = 0;
zebra_lock_rdwr_destroy(&bf->rdwr_lock);
if (bf->cf)
{
if (cf_close(bf->cf))
ret = -1;
}
if (bf->mf)
{
if (mf_close(bf->mf))
ret = -1;
}
xfree(bf);
return ret;
}
void bf_close(BFile bf)
{
if (bf_close2(bf))
{
zebra_exit("bf_close");
}
}
#define HEADER_SIZE 256
BFile bf_open(BFiles bfs, const char *name, int block_size, int wflag)
{
BFile bf = (BFile) xmalloc(sizeof(*bf));
bf->block_size = block_size;
bf->cf = 0;
bf->mf = 0;
zebra_lock_rdwr_init(&bf->rdwr_lock);
if (bfs->commit_area)
{
int first_time;
bf->mf = mf_open(bfs->register_area, name, block_size, 0);
bf->cf = cf_open(bf->mf, bfs->commit_area, name, block_size,
wflag, &first_time);
if (!bf->cf)
{
yaz_log(YLOG_FATAL, "cf_open failed for %s", name);
bf_close(bf);
return 0;
}
if (first_time)
{
FILE *outf;
outf = open_cache(bfs, "ab");
if (!outf)
{
yaz_log(YLOG_FATAL|YLOG_ERRNO, "open %s", bfs->cache_fname);
bf_close(bf);
return 0;
}
fprintf(outf, "%s %d\n", name, block_size);
if (fclose(outf))
{
yaz_log(YLOG_FATAL|YLOG_ERRNO, "fclose %s", bfs->cache_fname);
bf_close(bf);
return 0;
}
}
}
else
{
bf->mf = mf_open(bfs->register_area, name, block_size, wflag);
}
if (!bf->mf)
{
yaz_log(YLOG_FATAL, "mf_open failed for %s", name);
bf_close(bf);
return 0;
}
return bf;
}
int bf_read(BFile bf, zint no, int offset, int nbytes, void *buf)
{
int ret = bf_read2(bf, no, offset, nbytes, buf);
if (ret == -1)
{
zebra_exit("bf_read");
}
return ret;
}
int bf_read2(BFile bf, zint no, int offset, int nbytes, void *buf)
{
int ret;
zebra_lock_rdwr_rlock(&bf->rdwr_lock);
if (bf->cf)
{
if ((ret = cf_read(bf->cf, no, offset, nbytes, buf)) == 0)
ret = mf_read(bf->mf, no, offset, nbytes, buf);
}
else
ret = mf_read(bf->mf, no, offset, nbytes, buf);
zebra_lock_rdwr_runlock(&bf->rdwr_lock);
return ret;
}
int bf_write(BFile bf, zint no, int offset, int nbytes, const void *buf)
{
int ret = bf_write2(bf, no, offset, nbytes, buf);
if (ret == -1)
{
zebra_exit("bf_write");
}
return ret;
}
int bf_write2(BFile bf, zint no, int offset, int nbytes, const void *buf)
{
int r;
zebra_lock_rdwr_wlock(&bf->rdwr_lock);
if (bf->cf)
r = cf_write(bf->cf, no, offset, nbytes, buf);
else
r = mf_write(bf->mf, no, offset, nbytes, buf);
zebra_lock_rdwr_wunlock(&bf->rdwr_lock);
return r;
}
int bf_commitExists(BFiles bfs)
{
FILE *inf;
inf = open_cache(bfs, "rb");
if (inf)
{
fclose(inf);
return 1;
}
return 0;
}
void bf_reset(BFiles bfs)
{
if (!bfs)
return;
mf_reset(bfs->commit_area, 1);
mf_reset(bfs->register_area, 1);
unlink_cache(bfs);
}
int bf_commitExec(BFiles bfs)
{
FILE *inf;
int block_size;
char path[256];
MFile mf;
CFile cf;
int first_time;
int r = 0;
assert(bfs->commit_area);
if (!(inf = open_cache(bfs, "rb")))
{
yaz_log(YLOG_LOG, "No commit file");
return -1;
}
while (fscanf(inf, "%s %d", path, &block_size) == 2)
{
mf = mf_open(bfs->register_area, path, block_size, 1);
if (!mf)
{
r = -1;
break;
}
cf = cf_open(mf, bfs->commit_area, path, block_size, 0, &first_time);
if (!cf)
{
mf_close(mf);
r = -1;
break;
}
r = cf_commit(cf);
cf_close(cf);
mf_close(mf);
if (r)
break;
}
fclose(inf);
return r;
}
void bf_commitClean(BFiles bfs, const char *spec)
{
int mustDisable = 0;
if (!bfs->commit_area)
{
bf_cache(bfs, spec);
mustDisable = 1;
}
mf_reset(bfs->commit_area, 1);
unlink_cache(bfs);
if (mustDisable)
bf_cache(bfs, 0);
}
int bfs_register_directory_stat(BFiles bfs, int no, const char **directory,
double *used_bytes, double *max_bytes)
{
return mf_area_directory_stat(bfs->register_area, no, directory,
used_bytes, max_bytes);
}
int bfs_shadow_directory_stat(BFiles bfs, int no, const char **directory,
double *used_bytes, double *max_bytes)
{
if (!bfs->commit_area)
return 0;
return mf_area_directory_stat(bfs->commit_area, no, directory,
used_bytes, max_bytes);
}
/* unimplemented functions not in use, but kept to ensure ABI */
void bf_xclose(void) {}
void bf_xopen(void) {}
void bf_alloc(void) {}
void bf_free(void) {}
/*
* Local variables:
* c-basic-offset: 4
* c-file-style: "Stroustrup"
* indent-tabs-mode: nil
* End:
* vim: shiftwidth=4 tabstop=8 expandtab
*/
|