X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=bfile%2Fbfile.c;h=5c0dec20603211b7888feb530b6997a84e9cfb9c;hb=5b4dcfcb99600327a11b58de4fec33003dc4d816;hp=ee8e7074a0b3067615a4b85a04f1d4e64cd3c0b1;hpb=fd12cf9b8e16c109f3c0f7aedb0e0efd65209e16;p=idzebra-moved-to-github.git diff --git a/bfile/bfile.c b/bfile/bfile.c index ee8e707..5c0dec2 100644 --- a/bfile/bfile.c +++ b/bfile/bfile.c @@ -1,10 +1,22 @@ /* - * Copyright (C) 1994-1997, Index Data I/S + * Copyright (C) 1994-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: bfile.c,v $ - * Revision 1.24 1997-09-18 08:59:16 adam + * Revision 1.28 1999-05-12 13:08:05 adam + * First version of ISAMS. + * + * Revision 1.27 1999/02/02 14:50:01 adam + * Updated WIN32 code specific sections. Changed header. + * + * Revision 1.26 1998/02/17 10:32:52 adam + * Fixed bug: binary files weren't opened with flag b on NT. + * + * Revision 1.25 1997/10/27 14:25:38 adam + * Fixed memory leaks. + * + * Revision 1.24 1997/09/18 08:59:16 adam * Extra generic handle for the character mapping routines. * * Revision 1.23 1997/09/17 12:19:06 adam @@ -82,7 +94,7 @@ #include #include #include -#ifdef WINDOWS +#ifdef WIN32 #include #else #include @@ -109,6 +121,7 @@ BFiles bfs_create (const char *spec) void bfs_destroy (BFiles bfs) { + xfree (bfs->lockDir); mf_destroy (bfs->commit_area); mf_destroy (bfs->register_area); xfree (bfs); @@ -184,7 +197,7 @@ BFile bf_open (BFiles bfs, const char *name, int block_size, int wflag) { FILE *outf; - outf = open_cache (bfs, "a"); + outf = open_cache (bfs, "ab"); if (!outf) { logf (LOG_FATAL|LOG_ERRNO, "open %scache", @@ -209,27 +222,27 @@ BFile bf_open (BFiles bfs, const char *name, int block_size, int wflag) return(tmp); } -int bf_read (BFile bf, int no, int offset, int num, void *buf) +int bf_read (BFile bf, int no, int offset, int nbytes, void *buf) { int r; - if (bf->cf && (r=cf_read (bf->cf, no, offset, num, buf)) != -1) + if (bf->cf && (r=cf_read (bf->cf, no, offset, nbytes, buf)) != -1) return r; - return mf_read (bf->mf, no, offset, num, buf); + return mf_read (bf->mf, no, offset, nbytes, buf); } -int bf_write (BFile bf, int no, int offset, int num, const void *buf) +int bf_write (BFile bf, int no, int offset, int nbytes, const void *buf) { if (bf->cf) - return cf_write (bf->cf, no, offset, num, buf); - return mf_write (bf->mf, no, offset, num, buf); + return cf_write (bf->cf, no, offset, nbytes, buf); + return mf_write (bf->mf, no, offset, nbytes, buf); } int bf_commitExists (BFiles bfs) { FILE *inf; - inf = open_cache (bfs, "r"); + inf = open_cache (bfs, "rb"); if (inf) { fclose (inf); @@ -248,7 +261,7 @@ void bf_commitExec (BFiles bfs) int first_time; assert (bfs->commit_area); - if (!(inf = open_cache (bfs, "r"))) + if (!(inf = open_cache (bfs, "rb"))) { logf (LOG_LOG, "No commit file"); return ; @@ -282,7 +295,7 @@ void bf_commitClean (BFiles bfs, const char *spec) mustDisable = 1; } - if (!(inf = open_cache (bfs, "r"))) + if (!(inf = open_cache (bfs, "rb"))) return ; while (fscanf (inf, "%s %d", path, &block_size) == 2) {