/* * Copyright 2000, International Business Machines Corporation and others. * All Rights Reserved. * * This software has been released under the terms of the IBM Public * License. For details, see the LICENSE file in the top-level source * directory or online at http://www.openafs.org/dl/license10.html */ #ifndef AFS_CHUNKOPS #define AFS_CHUNKOPS 1 /* macros to compute useful numbers from offsets. AFS_CHUNK gives the chunk number for a given offset; AFS_CHUNKOFFSET gives the offset into the chunk and AFS_CHUNKBASE gives the byte offset of the base of the chunk. AFS_CHUNKSIZE gives the size of the chunk containing an offset. AFS_CHUNKTOBASE converts a chunk # to a base position. Chunks are 0 based and go up by exactly 1, covering the file. The other fields are internal and shouldn't be used */ /* basic parameters */ #ifdef AFS_NOCHUNKING #define AFS_OTHERCSIZE 0x10000 #define AFS_LOGCHUNK 16 #define AFS_FIRSTCSIZE 0x40000000 #else /* AFS_NOCHUNKING */ extern afs_int32 afs_OtherCSize, afs_LogChunk, afs_FirstCSize; #define AFS_OTHERCSIZE (afs_OtherCSize) #define AFS_LOGCHUNK (afs_LogChunk) #define AFS_FIRSTCSIZE (afs_FirstCSize) #define AFS_DEFAULTCSIZE 0x10000 #define AFS_DEFAULTLSIZE 16 #endif /* AFS_NOCHUNKING */ #define AFS_MINCHUNK 13 /* 8k is minimum */ #define AFS_MAXCHUNK 18 /* 256K is maximum */ #ifdef notdef extern int afs_ChunkOffset(), afs_Chunk(), afs_ChunkBase(), afs_ChunkSize(), afs_ChunkToBase(), afs_ChunkToSize(); /* macros */ #define AFS_CHUNKOFFSET(x) afs_ChunkOffset(x) #define AFS_CHUNK(x) afs_Chunk(x) #define AFS_CHUNKBASE(x) afs_ChunkBase(x) #define AFS_CHUNKSIZE(x) afs_ChunkSize(x) #define AFS_CHUNKTOBASE(x) afs_ChunkToBase(x) #define AFS_CHUNKTOSIZE(x) afs_ChunkToSize(x) #endif #define AFS_CHUNKOFFSET(offset) ((offset < afs_FirstCSize) ? offset : \ ((offset - afs_FirstCSize) & (afs_OtherCSize - 1))) #define AFS_CHUNK(offset) ((offset < afs_FirstCSize) ? 0 : \ (((offset - afs_FirstCSize) >> afs_LogChunk) + 1)) #define AFS_CHUNKBASE(offset) ((offset < afs_FirstCSize) ? 0 : \ (((offset - afs_FirstCSize) & ~(afs_OtherCSize - 1)) + afs_FirstCSize)) #define AFS_CHUNKSIZE(offset) ((offset < afs_FirstCSize) ? afs_FirstCSize : \ afs_OtherCSize) #define AFS_CHUNKTOBASE(chunk) ((chunk == 0) ? 0 : \ (afs_FirstCSize + ((chunk - 1) << afs_LogChunk))) #define AFS_CHUNKTOSIZE(chunk) ((chunk == 0) ? afs_FirstCSize : afs_OtherCSize) /* sizes are a power of two */ #define AFS_SETCHUNKSIZE(chunk) { afs_LogChunk = chunk; \ afs_FirstCSize = afs_OtherCSize = (1 << chunk); } extern void afs_CacheTruncateDaemon(); /* * Functions exported by a cache type */ extern struct afs_cacheOps *afs_cacheType; struct afs_cacheOps { void *(*open)(); int (*truncate)(); int (*fread)(); int (*fwrite)(); int (*close)(); int (*vread)(); int (*vwrite)(); int (*FetchProc)(); int (*StoreProc)(); struct dcache *(*GetDSlot)(); struct volume *(*GetVolSlot)(); int (*HandleLink)(); }; /* Ideally we should have used consistent naming - like COP_OPEN, COP_TRUNCATE, etc. */ #define afs_CFileOpen(inode) (void *)(*(afs_cacheType->open))(inode) #define afs_CFileTruncate(handle, size) (*(afs_cacheType->truncate))((handle), size) #define afs_CFileRead(file, offset, data, size) (*(afs_cacheType->fread))(file, offset, data, size) #define afs_CFileWrite(file, offset, data, size) (*(afs_cacheType->fwrite))(file, offset, data, size) #define afs_CFileClose(handle) (*(afs_cacheType->close))(handle) #define afs_GetDSlot(slot, adc) (*(afs_cacheType->GetDSlot))(slot, adc) #define afs_GetVolSlot() (*(afs_cacheType->GetVolSlot))() #define afs_HandleLink(avc, areq) (*(afs_cacheType->HandleLink))(avc, areq) #define afs_CacheFetchProc(call, file, base, adc, avc, toxfer, xfered) \ (*(afs_cacheType->FetchProc))(call, file, base, adc, avc, toxfer, xfered) #define afs_CacheStoreProc(call, file, bytes, avc, wake, toxfer, xfered) \ (*(afs_cacheType->StoreProc))(call, file, bytes, avc, wake, toxfer, xfered) #endif /* AFS_CHUNKOPS */