X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=bfile%2Fbfile.c;h=ccaf537223655cb29c4f5ea999431e4c6679e679;hb=2771f5feddda09bed04d609683bf95df053924a4;hp=a160f132f527d4b67c9125ba42f84a05f7aa6004;hpb=805db1945539e97bd09b17d91eefc8eeb1652213;p=idzebra-moved-to-github.git diff --git a/bfile/bfile.c b/bfile/bfile.c index a160f13..ccaf537 100644 --- a/bfile/bfile.c +++ b/bfile/bfile.c @@ -4,7 +4,14 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: bfile.c,v $ - * Revision 1.18 1996-01-02 08:59:06 quinn + * Revision 1.20 1996-03-26 15:59:04 adam + * The directory of the shadow table file can be specified by the new + * bf_lockDir call. + * + * Revision 1.19 1996/02/05 12:28:58 adam + * Removed a LOG_LOG message. + * + * Revision 1.18 1996/01/02 08:59:06 quinn * Changed "commit" setting to "shadow". * * Revision 1.17 1995/12/11 09:03:51 adam @@ -60,6 +67,7 @@ #include #include +#include #include #include @@ -68,6 +76,41 @@ #include "cfile.h" static MFile_area commit_area = NULL; +static char *commit_lockDir = NULL; + +static FILE *open_cache (const char *flags) +{ + char cacheFilename[1024]; + FILE *file; + + sprintf (cacheFilename, "%scache", commit_lockDir ? commit_lockDir : ""); + file = fopen (cacheFilename, flags); + return file; +} + +static void unlink_cache (void) +{ + char cacheFilename[1024]; + + sprintf (cacheFilename, "%scache", commit_lockDir ? commit_lockDir : ""); + unlink (cacheFilename); +} + +void bf_lockDir (const char *lockDir) +{ + size_t len; + + xfree (commit_lockDir); + + if (lockDir == NULL) + lockDir = ""; + len = strlen(lockDir); + commit_lockDir = xmalloc (len+2); + strcpy (commit_lockDir, lockDir); + + if (len > 0 && commit_lockDir[len-1] != '/') + strcpy (commit_lockDir + len, "/"); +} void bf_cache (int enableFlag) { @@ -75,7 +118,9 @@ void bf_cache (int enableFlag) { if (!commit_area) if (res_get (common_resource, "shadow")) + { commit_area = mf_init ("shadow"); + } else { logf (LOG_FATAL, "Shadow area must be defined if commit" @@ -102,17 +147,22 @@ BFile bf_open (const char *name, int block_size, int wflag) if (commit_area) { - FILE *outf; int first_time; - logf (LOG_LOG, "cf,mf_open %s", name); - tmp->mf = mf_open (0, name, block_size, 0); tmp->cf = cf_open (tmp->mf, commit_area, name, block_size, wflag, &first_time); if (first_time) { - outf = fopen ("cache", "a"); + FILE *outf; + + outf = open_cache ("a"); + if (!outf) + { + logf (LOG_FATAL|LOG_ERRNO, "open %scache", + commit_lockDir ? commit_lockDir : ""); + exit (1); + } fprintf (outf, "%s %d\n", name, block_size); fclose (outf); } @@ -151,7 +201,7 @@ int bf_commitExists (void) { FILE *inf; - inf = fopen ("cache", "r"); + inf = open_cache ("r"); if (inf) { fclose (inf); @@ -170,7 +220,7 @@ void bf_commitExec (void) int first_time; assert (commit_area); - if (!(inf = fopen ("cache", "r"))) + if (!(inf = open_cache ("r"))) { logf (LOG_LOG, "No commit file"); return ; @@ -204,7 +254,7 @@ void bf_commitClean (void) mustDisable = 1; } - if (!(inf = fopen ("cache", "r"))) + if (!(inf = open_cache ("r"))) return ; while (fscanf (inf, "%s %d", path, &block_size) == 2) { @@ -215,7 +265,7 @@ void bf_commitClean (void) mf_close (mf); } fclose (inf); - unlink ("cache"); + unlink_cache (); if (mustDisable) bf_cache (0); }