X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=bfile%2Fcfile.c;h=5b27f49ba1928d8da4e89f84f910326fe0393045;hb=a20e59c5087fb92c419f2330c786367f9ce8ccd2;hp=542b0966a403b3e43bacd63977cc94dd34fb1722;hpb=bceca936710690858ea162e7bc22de819f0e280f;p=idzebra-moved-to-github.git diff --git a/bfile/cfile.c b/bfile/cfile.c index 542b096..5b27f49 100644 --- a/bfile/cfile.c +++ b/bfile/cfile.c @@ -1,10 +1,16 @@ /* - * Copyright (C) 1995-1999, Index Data ApS + * Copyright (C) 1995-2000, Index Data ApS * All rights reserved. - * Sebastian Hammer, Adam Dickmeiss * * $Log: cfile.c,v $ - * Revision 1.24 1999-05-12 13:08:06 adam + * Revision 1.26 2000-03-20 19:08:35 adam + * Added remote record import using Z39.50 extended services and Segment + * Requests. + * + * Revision 1.25 1999/05/26 07:49:12 adam + * C++ compilation. + * + * Revision 1.24 1999/05/12 13:08:06 adam * First version of ISAMS. * * Revision 1.23 1998/10/15 13:09:29 adam @@ -99,7 +105,7 @@ static int write_head (CFile cf) if (!tab) return 0; - while (left >= HASH_BSIZE) + while (left >= (int) HASH_BSIZE) { mf_write (cf->hash_mf, bno++, 0, 0, tab); tab += HASH_BSIZE; @@ -118,7 +124,7 @@ static int read_head (CFile cf) if (!tab) return 0; - while (left >= HASH_BSIZE) + while (left >= (int) HASH_BSIZE) { mf_read (cf->hash_mf, bno++, 0, 0, tab); tab += HASH_BSIZE; @@ -166,7 +172,7 @@ CFile cf_open (MFile mf, MFile_area area, const char *fname, cf->head.next_block = 1; if (wflag) mf_write (cf->hash_mf, 0, 0, sizeof(cf->head), &cf->head); - cf->array = xmalloc (hash_bytes); + cf->array = (int *) xmalloc (hash_bytes); for (i = 0; ihead.hash_size; i++) cf->array[i] = 0; if (wflag) @@ -181,14 +187,15 @@ CFile cf_open (MFile mf, MFile_area area, const char *fname, assert (cf->head.next_bucket > 0); assert (cf->head.next_block > 0); if (cf->head.state == 1) - cf->array = xmalloc (hash_bytes); + cf->array = (int *) xmalloc (hash_bytes); else cf->array = NULL; read_head (cf); } if (cf->head.state == 1) { - cf->parray = xmalloc (cf->head.hash_size * sizeof(*cf->parray)); + cf->parray = (struct CFile_hash_bucket **) + xmalloc (cf->head.hash_size * sizeof(*cf->parray)); for (i = 0; ihead.hash_size; i++) cf->parray[i] = NULL; } @@ -198,10 +205,11 @@ CFile cf_open (MFile mf, MFile_area area, const char *fname, cf->bucket_in_memory = 0; cf->max_bucket_in_memory = 100; cf->dirty = 0; - cf->iobuf = xmalloc (cf->head.block_size); + cf->iobuf = (char *) xmalloc (cf->head.block_size); memset (cf->iobuf, 0, cf->head.block_size); cf->no_hits = 0; cf->no_miss = 0; + zebra_mutex_init (&cf->mutex); return cf; } @@ -256,7 +264,7 @@ static struct CFile_hash_bucket *alloc_bucket (CFile cf, int block_no, int hno) flush_bucket (cf, 1); assert (cf->bucket_in_memory < cf->max_bucket_in_memory); ++(cf->bucket_in_memory); - p = xmalloc (sizeof(*p)); + p = (struct CFile_hash_bucket *) xmalloc (sizeof(*p)); p->lru_next = NULL; p->lru_prev = cf->bucket_lru_front; @@ -393,7 +401,7 @@ static void cf_moveto_flat (CFile cf) assert (cf->head.state == 1); flush_bucket (cf, -1); assert (cf->bucket_in_memory == 0); - p = xmalloc (sizeof(*p)); + p = (struct CFile_hash_bucket *) xmalloc (sizeof(*p)); for (i = cf->head.first_bucket; i < cf->head.next_bucket; i++) { if (!mf_read (cf->hash_mf, i, 0, 0, &p->ph)) @@ -511,8 +519,13 @@ int cf_read (CFile cf, int no, int offset, int nbytes, void *buf) int block; assert (cf); + zebra_mutex_lock (&cf->mutex); if (!(block = cf_lookup (cf, no))) + { + zebra_mutex_unlock (&cf->mutex); return -1; + } + zebra_mutex_unlock (&cf->mutex); if (!mf_read (cf->block_mf, block, offset, nbytes, buf)) { logf (LOG_FATAL|LOG_ERRNO, "cf_read no=%d, block=%d", no, block); @@ -526,6 +539,7 @@ int cf_write (CFile cf, int no, int offset, int nbytes, const void *buf) int block; assert (cf); + zebra_mutex_lock (&cf->mutex); if (!(block = cf_lookup (cf, no))) { block = cf_new (cf, no); @@ -538,6 +552,7 @@ int cf_write (CFile cf, int no, int offset, int nbytes, const void *buf) nbytes = 0; } } + zebra_mutex_unlock (&cf->mutex); if (mf_write (cf->block_mf, block, offset, nbytes, buf)) { logf (LOG_FATAL|LOG_ERRNO, "cf_write no=%d, block=%d", no, block); @@ -562,6 +577,7 @@ int cf_close (CFile cf) xfree (cf->array); xfree (cf->parray); xfree (cf->iobuf); + zebra_mutex_destroy (&cf->mutex); xfree (cf); return 0; }