stasis-aries-wal/src/lladd/pageFile.h

52 lines
1.4 KiB
C
Raw Normal View History

#ifndef __PAGE_FILE_H
#define __PAGE_FILE_H
#include "page.h"
2004-07-27 21:30:54 +00:00
/**
* Write page to disk, including correct LSN. Doing so may require a
* call to logSync(). There is not much that can be done to avoid
* this call right now. In the future, it might make sense to check
* to see if some other page can be kicked, in order to avoid the log
* flush.
*
* This funciton is automatically called immediately before a page is
* evicted from cache. Operation implementors, and normal users
* should never have to call this routine.
*
* @see bufferManager.c for the implementation of pageWrite
*
* @param dat The page to be flushed to disk.
*/
void pageWrite(Page * dat);
/**
Read a page from disk. This bypassess the cache, and should only be
called by bufferManager and blobManager. To retrieve a page under
normal circumstances, use loadPage() instead.
Operation implementors and normal users should never need to call
this routine.
@param ret A page struct, with id set correctly. The rest of this
struct will be overwritten by pageMap.
@see bufferManager.c for the implementation of pageRead.
@todo pageRead and pageWrite should be static, but pageCache needs
to call them.
*/
void pageRead(Page * ret);
/**
@return the number of pages in the store file.
*/
long pageCount();
void openPageFile();
void closePageFile();
2004-07-20 00:15:17 +00:00
void finalize(Page * p);
#endif /* __PAGE_FILE_H */