1 /* $Id: mfile.c,v 1.58 2005-01-15 19:38: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
27 * TODO: The size estimates in init may not be accurate due to
28 * only partially written final blocks.
31 #include <sys/types.h>
45 #include <zebra-lock.h>
49 static int scan_areadef(MFile_area ma, const char *ad, const char *base)
52 * If no definition is given, use current directory, unlimited.
54 char dirname[FILENAME_MAX+1];
55 mf_dir **dp = &ma->dirs, *dir = *dp;
62 int i = 0, fact = 1, multi;
65 while (*ad == ' ' || *ad == '\t')
69 if (!yaz_is_abspath(ad) && base)
71 strcpy (dirname, base);
77 if (*ad == ':' && strchr ("+-0123456789", ad[1]))
86 yaz_log (YLOG_WARN, "Missing colon after path: %s", ad0);
91 yaz_log (YLOG_WARN, "Empty path: %s", ad0);
94 while (*ad == ' ' || *ad == '\t')
104 if (*ad < '0' || *ad > '9')
106 yaz_log (YLOG_FATAL, "Missing size after path: %s", ad0);
110 while (*ad >= '0' && *ad <= '9')
111 size = size*10 + (*ad++ - '0');
114 case 'B': case 'b': multi = 1; break;
115 case 'K': case 'k': multi = 1024; break;
116 case 'M': case 'm': multi = 1048576; break;
117 case 'G': case 'g': multi = 1073741824; break;
119 yaz_log (YLOG_FATAL, "Missing unit: %s", ad0);
122 yaz_log (YLOG_FATAL, "Illegal unit: %c in %s", *ad, ad0);
126 *dp = dir = (mf_dir *) xmalloc(sizeof(mf_dir));
128 strcpy(dir->name, dirname);
129 dir->max_bytes = dir->avail_bytes = fact * size * multi;
135 static zint file_position(MFile mf, zint pos, int offset)
138 int c = mf->cur_file;
140 if ((c > 0 && pos <= mf->files[c-1].top) ||
141 (c < mf->no_files -1 && pos > mf->files[c].top))
144 while (c + 1 < mf->no_files && mf->files[c].top < pos)
146 off += mf->files[c].blocks;
149 assert(c < mf->no_files);
152 off = c ? (mf->files[c-1].top + 1) : 0;
153 if (mf->files[c].fd < 0)
155 if ((mf->files[c].fd = open(mf->files[c].path,
157 (O_BINARY|O_RDWR|O_CREAT) :
158 (O_BINARY|O_RDONLY), 0666)) < 0)
160 if (!mf->wr && errno == ENOENT && off == 0)
162 yaz_log (YLOG_WARN|YLOG_ERRNO, "Failed to open %s", mf->files[c].path);
167 if (mfile_seek(mf->files[c].fd, ps * (mfile_off_t) mf->blocksize + offset,
170 yaz_log (YLOG_WARN|YLOG_ERRNO, "Failed to seek in %s", mf->files[c].path);
171 yaz_log(YLOG_WARN, "pos=" ZINT_FORMAT " off=" ZINT_FORMAT " blocksize=%d offset=%d",
172 pos, off, mf->blocksize, offset);
179 static int cmp_part_file(const void *p1, const void *p2)
181 zint d = ((part_file *)p1)->number - ((part_file *)p2)->number;
190 * Create a new area, cotaining metafiles in directories.
191 * Find the part-files in each directory, and inventory the existing metafiles.
193 MFile_area mf_init(const char *name, const char *spec, const char *base)
195 MFile_area ma = (MFile_area) xmalloc(sizeof(*ma));
198 part_file *part_f = 0;
202 char metaname[FILENAME_MAX+1], tmpnam[FILENAME_MAX+1];
204 yaz_log (YLOG_DEBUG, "mf_init(%s)", name);
205 strcpy(ma->name, name);
208 if (scan_areadef(ma, spec, base) < 0)
210 yaz_log (YLOG_WARN, "Failed to access description of '%s'", name);
213 /* look at each directory */
214 for (dirp = ma->dirs; dirp; dirp = dirp->next)
216 if (!(dd = opendir(dirp->name)))
218 yaz_log (YLOG_WARN|YLOG_ERRNO, "Failed to open directory %s",
222 /* look at each file */
223 while ((dent = readdir(dd)))
225 int len = strlen(dent->d_name);
226 const char *cp = strrchr (dent->d_name, '-');
227 if (strchr (".-", *dent->d_name))
229 if (len < 5 || !cp || strcmp (dent->d_name + len - 3, ".mf"))
232 memcpy (metaname, dent->d_name, cp - dent->d_name);
233 metaname[ cp - dent->d_name] = '\0';
235 for (meta_f = ma->mfiles; meta_f; meta_f = meta_f->next)
238 if (!strcmp(meta_f->name, metaname))
240 part_f = &meta_f->files[meta_f->no_files++];
247 meta_f = (meta_file *) xmalloc(sizeof(*meta_f));
248 zebra_mutex_init (&meta_f->mutex);
250 meta_f->next = ma->mfiles;
252 meta_f->cur_file = -1;
253 meta_f->unlink_flag = 0;
255 strcpy(meta_f->name, metaname);
256 part_f = &meta_f->files[0];
257 meta_f->no_files = 1;
259 part_f->number = number;
262 sprintf(tmpnam, "%s/%s", dirp->name, dent->d_name);
263 part_f->path = xstrdup(tmpnam);
265 if ((fd = open(part_f->path, O_BINARY|O_RDONLY)) < 0)
267 yaz_log (YLOG_FATAL|YLOG_ERRNO, "Failed to access %s",
271 if ((part_f->bytes = mfile_seek(fd, 0, SEEK_END)) < 0)
273 yaz_log (YLOG_FATAL|YLOG_ERRNO, "Failed to seek in %s",
281 if (dirp->max_bytes >= 0)
282 dirp->avail_bytes -= part_f->bytes;
286 for (meta_f = ma->mfiles; meta_f; meta_f = meta_f->next)
288 yaz_log (YLOG_DEBUG, "mf_init: %s consists of %d part(s)", meta_f->name,
290 qsort(meta_f->files, meta_f->no_files, sizeof(part_file),
296 void mf_destroy(MFile_area ma)
314 meta_file *m = meta_f;
316 for (i = 0; i<m->no_files; i++)
318 xfree (m->files[i].path);
320 zebra_mutex_destroy (&meta_f->mutex);
321 meta_f = meta_f->next;
327 void mf_reset(MFile_area ma)
337 meta_file *m = meta_f;
340 for (i = 0; i<m->no_files; i++)
342 unlink (m->files[i].path);
343 xfree (m->files[i].path);
345 meta_f = meta_f->next;
353 * If !ma, Use MF_DEFAULT_AREA.
355 MFile mf_open(MFile_area ma, const char *name, int block_size, int wflag)
359 char tmp[FILENAME_MAX+1];
362 yaz_log(YLOG_DEBUG, "mf_open(%s bs=%d, %s)", name, block_size,
363 wflag ? "RW" : "RDONLY");
365 for (mnew = ma->mfiles; mnew; mnew = mnew->next)
366 if (!strcmp(name, mnew->name))
375 mnew = (meta_file *) xmalloc(sizeof(*mnew));
376 strcpy(mnew->name, name);
377 /* allocate one, empty file */
378 zebra_mutex_init (&mnew->mutex);
380 mnew->files[0].bytes = 0;
381 mnew->files[0].blocks = 0;
382 mnew->files[0].top = -1;
383 mnew->files[0].number = 0;
384 mnew->files[0].fd = -1;
385 mnew->unlink_flag = 0;
386 mnew->min_bytes_creat = MF_MIN_BLOCKS_CREAT * block_size;
387 for (dp = ma->dirs; dp && dp->max_bytes >= 0 && dp->avail_bytes <
388 mnew->min_bytes_creat; dp = dp->next);
391 yaz_log (YLOG_FATAL, "Insufficient space for new mfile.");
394 mnew->files[0].dir = dp;
395 sprintf(tmp, "%s/%s-%d.mf", dp->name, mnew->name, 0);
396 mnew->files[0].path = xstrdup(tmp);
398 mnew->next = ma->mfiles;
403 for (i = 0; i < mnew->no_files; i++)
405 if (mnew->files[i].bytes % block_size)
406 mnew->files[i].bytes += block_size - mnew->files[i].bytes %
408 mnew->files[i].blocks = (int) (mnew->files[i].bytes / block_size);
412 mnew->blocksize = block_size;
413 mnew->min_bytes_creat = MF_MIN_BLOCKS_CREAT * block_size;
418 for (i = 0; i < mnew->no_files; i++)
420 mnew->files[i].blocks = (int)(mnew->files[i].bytes / mnew->blocksize);
421 if (i == mnew->no_files - 1)
422 mnew->files[i].top = -1;
425 i ? (mnew->files[i-1].top + mnew->files[i].blocks)
426 : (mnew->files[i].blocks - 1);
434 int mf_close(MFile mf)
438 yaz_log (YLOG_DEBUG, "mf_close(%s)", mf->name);
440 for (i = 0; i < mf->no_files; i++)
442 if (mf->files[i].fd >= 0)
445 fsync(mf->files[i].fd);
447 close(mf->files[i].fd);
448 mf->files[i].fd = -1;
451 unlink(mf->files[i].path);
458 * Read one block from a metafile. Interface mirrors bfile.
460 int mf_read(MFile mf, zint no, int offset, int nbytes, void *buf)
465 zebra_mutex_lock (&mf->mutex);
466 if ((rd = file_position(mf, no, offset)) < 0)
470 zebra_mutex_unlock (&mf->mutex);
475 yaz_log (YLOG_FATAL, "mf_read %s internal error", mf->name);
479 toread = nbytes ? nbytes : mf->blocksize;
480 if ((rd = read(mf->files[mf->cur_file].fd, buf, toread)) < 0)
482 yaz_log (YLOG_FATAL|YLOG_ERRNO, "mf_read: Read failed (%s)",
483 mf->files[mf->cur_file].path);
486 zebra_mutex_unlock (&mf->mutex);
496 int mf_write(MFile mf, zint no, int offset, int nbytes, const void *buf)
502 char tmp[FILENAME_MAX+1];
503 unsigned char dummych = '\xff';
505 zebra_mutex_lock (&mf->mutex);
506 if ((ps = file_position(mf, no, offset)) < 0)
508 yaz_log (YLOG_FATAL, "mf_write %s internal error (1)", mf->name);
511 /* file needs to grow */
512 while (ps >= mf->files[mf->cur_file].blocks)
514 mfile_off_t needed = (ps - mf->files[mf->cur_file].blocks + 1) *
516 /* file overflow - allocate new file */
517 if (mf->files[mf->cur_file].dir->max_bytes >= 0 &&
518 needed > mf->files[mf->cur_file].dir->avail_bytes)
521 if ((nblocks = (int) (mf->files[mf->cur_file].dir->avail_bytes /
524 yaz_log (YLOG_DEBUG, "Capping off file %s at pos " ZINT_FORMAT,
525 mf->files[mf->cur_file].path, nblocks);
526 if ((ps = file_position(mf,
527 (mf->cur_file ? mf->files[mf->cur_file-1].top : 0) +
528 mf->files[mf->cur_file].blocks + nblocks - 1, 0)) < 0)
530 yaz_log (YLOG_FATAL, "mf_write %s internal error (2)",
534 yaz_log (YLOG_DEBUG, "ps = " ZINT_FORMAT, ps);
535 if (write(mf->files[mf->cur_file].fd, &dummych, 1) < 1)
537 yaz_log (YLOG_ERRNO|YLOG_FATAL, "mf_write %s internal error (3)",
541 mf->files[mf->cur_file].blocks += nblocks;
542 mf->files[mf->cur_file].bytes += nblocks * mf->blocksize;
543 mf->files[mf->cur_file].dir->avail_bytes -= nblocks *
547 yaz_log (YLOG_DEBUG, "Creating new file.");
548 for (dp = mf->ma->dirs; dp && dp->max_bytes >= 0 &&
549 dp->avail_bytes < needed; dp = dp->next);
552 yaz_log (YLOG_FATAL, "Cannot allocate more space for %s",
556 mf->files[mf->cur_file].top = (mf->cur_file ?
557 mf->files[mf->cur_file-1].top : -1) +
558 mf->files[mf->cur_file].blocks;
559 mf->files[++(mf->cur_file)].top = -1;
560 mf->files[mf->cur_file].dir = dp;
561 mf->files[mf->cur_file].number =
562 mf->files[mf->cur_file-1].number + 1;
563 mf->files[mf->cur_file].blocks = 0;
564 mf->files[mf->cur_file].bytes = 0;
565 mf->files[mf->cur_file].fd = -1;
566 sprintf(tmp, "%s/%s-" ZINT_FORMAT ".mf", dp->name, mf->name,
567 mf->files[mf->cur_file].number);
568 mf->files[mf->cur_file].path = xstrdup(tmp);
570 /* open new file and position at beginning */
571 if ((ps = file_position(mf, no, offset)) < 0)
573 yaz_log (YLOG_FATAL, "mf_write %s internal error (4)",
580 nblocks = ps - mf->files[mf->cur_file].blocks + 1;
581 mf->files[mf->cur_file].blocks += nblocks;
582 mf->files[mf->cur_file].bytes += nblocks * mf->blocksize;
583 if (mf->files[mf->cur_file].dir->max_bytes >= 0)
584 mf->files[mf->cur_file].dir->avail_bytes -=
585 nblocks * mf->blocksize;
588 towrite = nbytes ? nbytes : mf->blocksize;
589 if (write(mf->files[mf->cur_file].fd, buf, towrite) < towrite)
591 yaz_log (YLOG_FATAL|YLOG_ERRNO, "Write failed for file %s part %d",
592 mf->name, mf->cur_file);
595 zebra_mutex_unlock (&mf->mutex);
600 * Destroy a metafile, unlinking component files. File must be open.
602 int mf_unlink(MFile mf)
609 for (i = 0; i<mf->no_files; i++)
610 unlink(mf->files[i].path);
616 * Unlink the file by name, rather than MFile-handle. File should be closed.
618 int mf_unlink_name(MFile_area ma, const char *name)