X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=bfile%2Fcfile.h;h=ef0a692ddced1b46021c89d5e2fde90134fd17a9;hb=c41c84a497ae744aa825a90f144c85b54f1cd4bb;hp=50801511e867b551d43702367d2b40bf3f7ad930;hpb=d75b9accf5a28bd5d8ffd70bbb33b3e8e009d079;p=idzebra-moved-to-github.git diff --git a/bfile/cfile.h b/bfile/cfile.h index 5080151..ef0a692 100644 --- a/bfile/cfile.h +++ b/bfile/cfile.h @@ -1,26 +1,29 @@ /* - * Copyright (C) 1995, Index Data I/S + * Copyright (C) 1995-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * - * $Log: cfile.h,v $ - * Revision 1.1 1995-11-30 08:33:12 adam - * Started work on commit facility. - * + * $Id: cfile.h,v 1.13 2000-03-20 19:08:35 adam Exp $ */ #ifndef CFILE_H #define CFILE_H -#define HASH_BUCKET 63 +#include + +YAZ_BEGIN_CDECL + +#define HASH_BUCKET 15 + +struct CFile_ph_bucket { /* structure on disc */ + int no[HASH_BUCKET]; /* block number in original file */ + int vno[HASH_BUCKET]; /* block number in shadow file */ + int this_bucket; /* this bucket number */ + int next_bucket; /* next bucket number */ +}; struct CFile_hash_bucket { - struct CFile_ph_bucket { - int no[HASH_BUCKET]; - int vno[HASH_BUCKET]; - int this_bucket; - int next_bucket; - } ph; + struct CFile_ph_bucket ph; int dirty; struct CFile_hash_bucket *h_next, **h_prev; struct CFile_hash_bucket *lru_next, *lru_prev; @@ -28,16 +31,21 @@ struct CFile_hash_bucket { #define HASH_BSIZE sizeof(struct CFile_ph_bucket) +#define CFILE_FLAT 1 + typedef struct CFile_struct { struct CFile_head { - int hash_size; - int next_bucket; - int next_block; - int block_size; + int state; /* 1 = hash, 2 = flat */ + int next_block; /* next free block / last block */ + int block_size; /* mfile/bfile block size */ + int hash_size; /* no of chains in hash table */ + int first_bucket; /* first hash bucket */ + int next_bucket; /* last hash bucket + 1 = first flat bucket */ + int flat_bucket; /* last flat bucket + 1 */ } head; - int block_fd; - int hash_fd; + MFile block_mf; + MFile hash_mf; int *array; struct CFile_hash_bucket **parray; struct CFile_hash_bucket *bucket_lru_front, *bucket_lru_back; @@ -45,14 +53,20 @@ typedef struct CFile_struct int bucket_in_memory; int max_bucket_in_memory; char *iobuf; - MFile mf; + MFile rmf; + int no_hits; + int no_miss; + Zebra_mutex mutex; } *CFile; int cf_close (CFile cf); -CFile cf_open (MFile mf, const char *cname, const char *fname, - int block_size, int wflag, int *firstp); -int cf_read (CFile cf, int no, int offset, int num, void *buf); -int cf_write (CFile cf, int no, int offset, int num, const void *buf); +CFile cf_open (MFile mf, MFile_area area, const char *fname, int block_size, + int wflag, int *firstp); +int cf_read (CFile cf, int no, int offset, int nbytes, void *buf); +int cf_write (CFile cf, int no, int offset, int nbytes, const void *buf); +void cf_unlink (CFile cf); void cf_commit (CFile cf); +YAZ_END_CDECL + #endif