1 /* $Id: bfile.c,v 1.47 2006-05-10 08:13:17 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
35 #include <yaz/xmalloc.h>
36 #include <idzebra/util.h>
37 #include <idzebra/bfile.h>
44 Zebra_lock_rdwr rdwr_lock;
45 struct CFile_struct *cf;
56 struct BFiles_struct {
57 MFile_area commit_area;
58 MFile_area_struct *register_area;
63 BFiles bfs_create (const char *spec, const char *base)
65 BFiles bfs = (BFiles) xmalloc (sizeof(*bfs));
66 bfs->commit_area = NULL;
70 bfs->base = xstrdup (base);
71 bfs->register_area = mf_init("register", spec, base);
72 if (!bfs->register_area)
80 void bfs_destroy (BFiles bfs)
84 xfree (bfs->cache_fname);
86 mf_destroy (bfs->commit_area);
87 mf_destroy (bfs->register_area);
91 static FILE *open_cache (BFiles bfs, const char *flags)
95 file = fopen (bfs->cache_fname, flags);
99 static void unlink_cache (BFiles bfs)
101 unlink (bfs->cache_fname);
104 ZEBRA_RES bf_cache (BFiles bfs, const char *spec)
108 yaz_log (YLOG_LOG, "enabling shadow spec=%s", spec);
109 if (!bfs->commit_area)
110 bfs->commit_area = mf_init ("shadow", spec, bfs->base);
111 if (bfs->commit_area)
113 bfs->cache_fname = xmalloc (strlen(bfs->commit_area->dirs->name)+
115 strcpy (bfs->cache_fname, bfs->commit_area->dirs->name);
116 strcat (bfs->cache_fname, "/cache");
117 yaz_log (YLOG_LOG, "cache_fname = %s", bfs->cache_fname);
121 yaz_log(YLOG_WARN, "shadow could not be enabled");
126 bfs->commit_area = NULL;
130 int bf_close (BFile bf)
132 zebra_lock_rdwr_destroy (&bf->rdwr_lock);
136 xfree(bf->alloc_buf);
142 #define HEADER_SIZE 256
144 BFile bf_xopen(BFiles bfs, const char *name, int block_size, int wrflag,
145 const char *magic, int *read_version,
146 const char **more_info)
153 BFile bf = bf_open(bfs, name, block_size, wrflag);
157 /* HEADER_SIZE is considered enough for our header */
158 if (bf->block_size < HEADER_SIZE)
159 bf->alloc_buf_size = HEADER_SIZE;
161 bf->alloc_buf_size = bf->block_size;
163 hbuf = bf->alloc_buf = xmalloc(bf->alloc_buf_size);
165 /* fill-in default values */
167 bf->root_block = bf->last_block = HEADER_SIZE / bf->block_size + 1;
168 bf->magic = xstrdup(magic);
170 if (!bf_read(bf, pos, 0, 0, hbuf + pos * bf->block_size))
173 bf->header_dirty = 1;
176 while(hbuf[pos * bf->block_size + i] != '\0')
178 if (i == bf->block_size)
179 { /* end of block at pos reached .. */
180 if (bf->alloc_buf_size < (pos+1) * bf->block_size)
182 /* not room for all in alloc_buf_size */
183 yaz_log(YLOG_WARN, "bad header for %s (3)", magic);
187 /* read next block in header */
189 if (!bf_read(bf, pos, 0, 0, hbuf + pos * bf->block_size))
191 yaz_log(YLOG_WARN, "missing header block %s (4)", magic);
195 i = 0; /* pos within block is reset */
200 if (sscanf(hbuf, "%39s %d " ZINT_FORMAT " " ZINT_FORMAT "%n",
201 read_magic, read_version, &bf->last_block,
202 &bf->free_list, &l) < 4 && l) /* if %n is counted, it's 5 */
204 yaz_log(YLOG_WARN, "bad header for %s (1)", magic);
208 if (strcmp(read_magic, magic))
210 yaz_log(YLOG_WARN, "bad header for %s (2)", magic);
217 *more_info = hbuf + l;
221 int bf_xclose (BFile bf, int version, const char *more_info)
223 if (bf->header_dirty)
226 assert(bf->alloc_buf);
228 sprintf(bf->alloc_buf, "%s %d " ZINT_FORMAT " " ZINT_FORMAT " ",
229 bf->magic, version, bf->last_block, bf->free_list);
231 strcat(bf->alloc_buf, more_info);
234 bf_write(bf, pos, 0, 0, bf->alloc_buf + pos * bf->block_size);
236 if (pos * bf->block_size > strlen(bf->alloc_buf))
243 BFile bf_open (BFiles bfs, const char *name, int block_size, int wflag)
245 BFile bf = (BFile) xmalloc(sizeof(struct BFile_struct));
249 bf->block_size = block_size;
250 bf->header_dirty = 0;
251 if (bfs->commit_area)
255 bf->mf = mf_open (bfs->register_area, name, block_size, 0);
256 bf->cf = cf_open (bf->mf, bfs->commit_area, name, block_size,
262 outf = open_cache(bfs, "ab");
265 yaz_log(YLOG_FATAL|YLOG_ERRNO, "open %s", bfs->cache_fname);
268 fprintf(outf, "%s %d\n", name, block_size);
274 bf->mf = mf_open(bfs->register_area, name, block_size, wflag);
279 yaz_log(YLOG_FATAL, "mf_open failed for %s", name);
283 zebra_lock_rdwr_init(&bf->rdwr_lock);
287 int bf_read (BFile bf, zint no, int offset, int nbytes, void *buf)
291 zebra_lock_rdwr_rlock (&bf->rdwr_lock);
294 if ((r = cf_read (bf->cf, no, offset, nbytes, buf)) == -1)
295 r = mf_read (bf->mf, no, offset, nbytes, buf);
298 r = mf_read (bf->mf, no, offset, nbytes, buf);
299 zebra_lock_rdwr_runlock (&bf->rdwr_lock);
303 int bf_write (BFile bf, zint no, int offset, int nbytes, const void *buf)
306 zebra_lock_rdwr_wlock (&bf->rdwr_lock);
308 r = cf_write (bf->cf, no, offset, nbytes, buf);
310 r = mf_write (bf->mf, no, offset, nbytes, buf);
311 zebra_lock_rdwr_wunlock (&bf->rdwr_lock);
315 int bf_commitExists (BFiles bfs)
319 inf = open_cache (bfs, "rb");
328 void bf_reset (BFiles bfs)
332 mf_reset (bfs->commit_area);
333 mf_reset (bfs->register_area);
336 void bf_commitExec (BFiles bfs)
345 assert (bfs->commit_area);
346 if (!(inf = open_cache (bfs, "rb")))
348 yaz_log (YLOG_LOG, "No commit file");
351 while (fscanf (inf, "%s %d", path, &block_size) == 2)
353 mf = mf_open (bfs->register_area, path, block_size, 1);
354 cf = cf_open (mf, bfs->commit_area, path, block_size, 0, &first_time);
364 void bf_commitClean (BFiles bfs, const char *spec)
374 if (!bfs->commit_area)
376 bf_cache (bfs, spec);
380 if (!(inf = open_cache (bfs, "rb")))
382 while (fscanf (inf, "%s %d", path, &block_size) == 2)
384 mf = mf_open (bfs->register_area, path, block_size, 0);
385 cf = cf_open (mf, bfs->commit_area, path, block_size, 1, &firstTime);
396 int bf_alloc(BFile bf, int no, zint *blocks)
399 assert(bf->alloc_buf);
400 bf->header_dirty = 1;
401 for (i = 0; i < no; i++)
404 blocks[i] = bf->last_block++;
408 const char *cp = buf;
409 memset(buf, '\0', sizeof(buf));
411 blocks[i] = bf->free_list;
412 if (!bf_read(bf, bf->free_list, 0, sizeof(buf), buf))
414 yaz_log(YLOG_WARN, "Bad freelist entry " ZINT_FORMAT,
418 zebra_zint_decode(&cp, &bf->free_list);
424 int bf_free(BFile bf, int no, const zint *blocks)
427 assert(bf->alloc_buf);
428 bf->header_dirty = 1;
429 for (i = 0; i < no; i++)
433 memset(buf, '\0', sizeof(buf));
434 zebra_zint_encode(&cp, bf->free_list);
435 bf->free_list = blocks[i];
436 bf_write(bf, bf->free_list, 0, sizeof(buf), buf);
441 int bfs_register_directory_stat(BFiles bfs, int no, const char **directory,
442 double *used_bytes, double *max_bytes)
444 return mf_area_directory_stat(bfs->register_area, no, directory,
445 used_bytes, max_bytes);
449 int bfs_shadow_directory_stat(BFiles bfs, int no, const char **directory,
450 double *used_bytes, double *max_bytes)
452 if (!bfs->commit_area)
454 return mf_area_directory_stat(bfs->commit_area, no, directory,
455 used_bytes, max_bytes);
460 * indent-tabs-mode: nil
462 * vim: shiftwidth=4 tabstop=8 expandtab