1 /* $Id: bfile.c,v 1.41 2005-04-15 10:47:47 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
33 #include <yaz/xmalloc.h>
34 #include <idzebra/util.h>
35 #include <idzebra/bfile.h>
42 Zebra_lock_rdwr rdwr_lock;
43 struct CFile_struct *cf;
54 struct BFiles_struct {
55 MFile_area commit_area;
56 MFile_area_struct *register_area;
61 BFiles bfs_create (const char *spec, const char *base)
63 BFiles bfs = (BFiles) xmalloc (sizeof(*bfs));
64 bfs->commit_area = NULL;
68 bfs->base = xstrdup (base);
69 bfs->register_area = mf_init("register", spec, base);
70 if (!bfs->register_area)
78 void bfs_destroy (BFiles bfs)
82 xfree (bfs->cache_fname);
84 mf_destroy (bfs->commit_area);
85 mf_destroy (bfs->register_area);
89 static FILE *open_cache (BFiles bfs, const char *flags)
93 file = fopen (bfs->cache_fname, flags);
97 static void unlink_cache (BFiles bfs)
99 unlink (bfs->cache_fname);
102 void bf_cache (BFiles bfs, const char *spec)
106 yaz_log (YLOG_LOG, "enabling cache spec=%s", spec);
107 if (!bfs->commit_area)
108 bfs->commit_area = mf_init ("shadow", spec, bfs->base);
109 if (bfs->commit_area)
111 bfs->cache_fname = xmalloc (strlen(bfs->commit_area->dirs->name)+
113 strcpy (bfs->cache_fname, bfs->commit_area->dirs->name);
114 strcat (bfs->cache_fname, "/cache");
115 yaz_log (YLOG_LOG, "cache_fname = %s", bfs->cache_fname);
119 bfs->commit_area = NULL;
122 int bf_close (BFile bf)
124 zebra_lock_rdwr_destroy (&bf->rdwr_lock);
128 xfree(bf->alloc_buf);
134 #define HEADER_SIZE 256
136 BFile bf_xopen(BFiles bfs, const char *name, int block_size, int wrflag,
137 const char *magic, int *read_version,
138 const char **more_info)
145 BFile bf = bf_open(bfs, name, block_size, wrflag);
149 /* HEADER_SIZE is considered enough for our header */
150 if (bf->alloc_buf_size < HEADER_SIZE)
151 bf->alloc_buf_size = HEADER_SIZE;
153 bf->alloc_buf_size = bf->block_size;
155 hbuf = bf->alloc_buf = xmalloc(bf->alloc_buf_size);
157 /* fill-in default values */
159 bf->root_block = bf->last_block = HEADER_SIZE / bf->block_size + 1;
160 bf->magic = xstrdup(magic);
162 if (!bf_read(bf, pos, 0, 0, hbuf + pos * bf->block_size))
165 bf->header_dirty = 1;
168 while(hbuf[pos * bf->block_size + i] != '\0')
170 if (i == bf->block_size)
171 { /* end of block at pos reached .. */
172 if (bf->alloc_buf_size < (pos+1) * bf->block_size)
174 /* not room for all in alloc_buf_size */
175 yaz_log(YLOG_WARN, "bad header for %s (3)", magic);
179 /* read next block in header */
181 if (!bf_read(bf, pos, 0, 0, hbuf + pos * bf->block_size))
183 yaz_log(YLOG_WARN, "missing header block %s (4)", magic);
187 i = 0; /* pos within block is reset */
192 if (sscanf(hbuf, "%39s %d " ZINT_FORMAT " " ZINT_FORMAT "%n",
193 read_magic, read_version, &bf->last_block,
194 &bf->free_list, &l) < 4 && l) /* if %n is counted, it's 5 */
196 yaz_log(YLOG_WARN, "bad header for %s (1)", magic);
200 if (strcmp(read_magic, magic))
202 yaz_log(YLOG_WARN, "bad header for %s (2)", magic);
207 *more_info = hbuf + l;
211 int bf_xclose (BFile bf, int version, const char *more_info)
213 if (bf->header_dirty)
215 assert(bf->alloc_buf);
218 sprintf(bf->alloc_buf, "%s %d " ZINT_FORMAT " " ZINT_FORMAT " ",
219 bf->magic, version, bf->last_block, bf->free_list);
221 strcat(bf->alloc_buf, more_info);
224 bf_write(bf, pos, 0, 0, bf->alloc_buf + pos * bf->block_size);
226 if (pos * bf->block_size > strlen(bf->alloc_buf))
233 BFile bf_open (BFiles bfs, const char *name, int block_size, int wflag)
235 BFile bf = (BFile) xmalloc(sizeof(struct BFile_struct));
239 bf->block_size = block_size;
240 bf->header_dirty = 0;
241 if (bfs->commit_area)
245 bf->mf = mf_open (bfs->register_area, name, block_size, 0);
246 bf->cf = cf_open (bf->mf, bfs->commit_area, name, block_size,
252 outf = open_cache(bfs, "ab");
255 yaz_log(YLOG_FATAL|YLOG_ERRNO, "open %s", bfs->cache_fname);
258 fprintf(outf, "%s %d\n", name, block_size);
264 bf->mf = mf_open(bfs->register_area, name, block_size, wflag);
269 yaz_log(YLOG_FATAL, "mf_open failed for %s", name);
273 zebra_lock_rdwr_init(&bf->rdwr_lock);
277 int bf_read (BFile bf, zint no, int offset, int nbytes, void *buf)
281 zebra_lock_rdwr_rlock (&bf->rdwr_lock);
284 if ((r = cf_read (bf->cf, no, offset, nbytes, buf)) == -1)
285 r = mf_read (bf->mf, no, offset, nbytes, buf);
288 r = mf_read (bf->mf, no, offset, nbytes, buf);
289 zebra_lock_rdwr_runlock (&bf->rdwr_lock);
293 int bf_write (BFile bf, zint no, int offset, int nbytes, const void *buf)
296 zebra_lock_rdwr_wlock (&bf->rdwr_lock);
298 r = cf_write (bf->cf, no, offset, nbytes, buf);
300 r = mf_write (bf->mf, no, offset, nbytes, buf);
301 zebra_lock_rdwr_wunlock (&bf->rdwr_lock);
305 int bf_commitExists (BFiles bfs)
309 inf = open_cache (bfs, "rb");
318 void bf_reset (BFiles bfs)
322 mf_reset (bfs->commit_area);
323 mf_reset (bfs->register_area);
326 void bf_commitExec (BFiles bfs)
335 assert (bfs->commit_area);
336 if (!(inf = open_cache (bfs, "rb")))
338 yaz_log (YLOG_LOG, "No commit file");
341 while (fscanf (inf, "%s %d", path, &block_size) == 2)
343 mf = mf_open (bfs->register_area, path, block_size, 1);
344 cf = cf_open (mf, bfs->commit_area, path, block_size, 0, &first_time);
354 void bf_commitClean (BFiles bfs, const char *spec)
364 if (!bfs->commit_area)
366 bf_cache (bfs, spec);
370 if (!(inf = open_cache (bfs, "rb")))
372 while (fscanf (inf, "%s %d", path, &block_size) == 2)
374 mf = mf_open (bfs->register_area, path, block_size, 0);
375 cf = cf_open (mf, bfs->commit_area, path, block_size, 1, &firstTime);
386 int bf_alloc(BFile bf, int no, zint *blocks)
389 assert(bf->alloc_buf);
390 bf->header_dirty = 1;
391 for (i = 0; i < no; i++)
394 blocks[i] = bf->last_block++;
398 const char *cp = buf;
399 memset(buf, '\0', sizeof(buf));
401 blocks[i] = bf->free_list;
402 if (!bf_read(bf, bf->free_list, 0, sizeof(buf), buf))
404 yaz_log(YLOG_WARN, "Bad freelist entry " ZINT_FORMAT,
408 zebra_zint_decode(&cp, &bf->free_list);
414 int bf_free(BFile bf, int no, const zint *blocks)
417 assert(bf->alloc_buf);
418 bf->header_dirty = 1;
419 for (i = 0; i < no; i++)
423 memset(buf, '\0', sizeof(buf));
424 zebra_zint_encode(&cp, bf->free_list);
425 bf->free_list = blocks[i];
426 bf_write(bf, bf->free_list, 0, sizeof(buf), buf);