TCache

From Ultibo.org
Jump to: navigation, search

Return to Unit Filesystem


Description


To be documented

Class definitions



[Expand]

TCache = class(TObject)


Function declarations



[Expand]
constructor TCache.Create(ADriver:TFileSysDriver);
Description: To be documented


[Expand]
destructor TCache.Destroy;
Description: To be documented


[Expand]
function TCache.AcquireLock:Boolean;
Description: To be documented


[Expand]
function TCache.ReleaseLock:Boolean;
Description: To be documented


[Expand]
function TCache.AddPage(APage:TCachePage):Boolean;
Description: Add a new page to the Page list and the Empty list


[Expand]
function TCache.RemovePage(APage:TCachePage):Boolean;
Description: Remove a Page from the Page list and any other lists then Free the Page


[Expand]
function TCache.AddEmpty(APage:TCachePage):Boolean;
Description: Add a Page to the Empty list, removing from other lists if needed


[Expand]
function TCache.AddClean(APage:TCachePage):Boolean;
Description: Add a Page to the Clean list, removing from other lists if needed


[Expand]
function TCache.AddDirty(APage:TCachePage):Boolean;
Description: Add a Page to the Dirty list, removing from other lists if needed


[Expand]
function TCache.AddUnknown(APage:TCachePage):Boolean;
Description: Make a Page Unknown by removing from any other lists if needed


[Expand]
function TCache.UpdateClean(APage:TCachePage):Boolean;
Description: Move a Page to the end of the Clean list


[Expand]
function TCache.UpdateDirty(APage:TCachePage):Boolean;
Description: Move a Page to the end of the Dirty list


[Expand]
function TCache.RoundPageSize(APageSize:LongWord):LongWord;
Description: Round Page Size to the power of 2 of Sector Size


[Expand]
function TCache.RoundCacheSize(ACacheSize,APageSize:LongWord):LongWord;
Description: Round Cache Size to the next multiple of Page Size


[Expand]
function TCache.LinkPage(APage:TCachePage):Boolean;
Description: Link APage to PrevPage,NextPage siblings and Adjust FirstPage/LastPage


[Expand]
function TCache.UnlinkPage(APage:TCachePage):Boolean;
Description: Unlink APage from PrevPage,NextPage Siblings and Adjust FirstPage/LastPage


[Expand]
function TCache.LinkEmpty(APage:TCachePage):Boolean;
Description: Link APage to PrevLink,NextLink siblings and Adjust FirstEmpty/LastEmpty


[Expand]
function TCache.UnlinkEmpty(APage:TCachePage):Boolean;
Description: Unlink APage from PrevLink,NextLink Siblings and Adjust FirstEmpty/LastEmpty


[Expand]
function TCache.LinkClean(APage:TCachePage):Boolean;
Description: Link APage to PrevLink,NextLink siblings and Adjust FirstClean/LastClean


[Expand]
function TCache.UnlinkClean(APage:TCachePage):Boolean;
Description: Unlink APage from PrevLink,NextLink Siblings and Adjust FirstClean/LastClean


[Expand]
function TCache.LinkDirty(APage:TCachePage):Boolean;
Description: Link APage to PrevLink,NextLink siblings and Adjust FirstDirty/LastDirty


[Expand]
function TCache.UnlinkDirty(APage:TCachePage):Boolean;
Description: Unlink APage from PrevLink,NextLink Siblings and Adjust FirstDirty/LastDirty


[Expand]
function TCache.PrepareDeviceWrite(ADevice:TDiskDevice; APage:TCachePage; ASector,ACount:LongWord):Boolean;
Description: Prepare a Cache Page for Write by ensuring that required sectors are cached


[Expand]
function TCache.CalculateDevicePage(ADevice:TDiskDevice; ASector:LongWord; var ACount:LongWord):Boolean;
Description: Calculate the number of sectors remaining in a page given the starting sector


[Expand]
function TCache.OpenCache(ACacheSize,APageSize:LongWord; ACacheMode:TCacheMode):Boolean;
Description: Allocate the Memory, Create the Empty Pages and Open Cache


[Expand]
function TCache.CloseCache:Boolean;
Description: Flush all Dirty Pages, Release the Memory and Close the Cache


[Expand]
function TCache.DeviceRead(ADevice:TDiskDevice; ASector,ACount:LongWord; var ABuffer):Boolean;
Description: Read Data from the Physical Device using either Cached or Direct access


[Expand]
function TCache.DeviceWrite(ADevice:TDiskDevice; ASector,ACount:LongWord; const ABuffer):Boolean;
Description: Write Data to the Physical Device using either Cached or Direct access


[Expand]
function TCache.DeviceErase(ADevice:TDiskDevice; ASector,ACount:LongWord):Boolean;
Description: Erase Data from the Physical Device and update cached pages accordingly


[Expand]
function TCache.GetDevicePage(ADevice:TDiskDevice; ASector:LongWord):TCachePage;
Description: Get the Clean or Dirty Page that contains this Sector on this Device


[Expand]
function TCache.GetEmptyPage:TCachePage;
Description: Get the First Empty Page, Discard First Clean Page if none Empty


[Expand]
function TCache.AllocDevicePage(ADevice:TDiskDevice; ASector:LongWord; AWrite:Boolean):TCachePage;
Description: Allocate an Empty Page to the Device and mark as Clean or Dirty


[Expand]
function TCache.DiscardPage(APage:TCachePage):Boolean;
Description: Return a Clean Page to Empty


[Expand]
function TCache.DiscardCache(AFirst,AAll:Boolean):Boolean;
Description: Find any Clean Pages older than CacheTimeout and Discard them


[Expand]
function TCache.ReleaseDevicePages(ADevice:TDiskDevice):Boolean;
Description: Return all Clean or Dirty Pages on the Device to Empty


[Expand]
function TCache.FlushPage(APage:TCachePage):Boolean;
Description: Return a Dirty Page to Clean


[Expand]
function TCache.FlushPageEx(APage:TCachePage):Boolean;
Description: Return a Dirty Page to Clean if it is older than CacheTimeout


[Expand]
function TCache.FlushCache(AFirst,AAll:Boolean):Boolean;
Description: Find any Dirty Pages older than CacheTimeout and Flush them


[Expand]
function TCache.CheckTimer:Boolean;
Description: To be documented


[Expand]
function TCache.ProcessTimer:Boolean;
Description: To be documented


[Expand]
function TCache.SchedulePage(APage:TCachePage; ATimeout:LongWord):Boolean;
Description: To be documented


[Expand]
function TCache.UnschedulePage(APage:TCachePage):Boolean;
Description: To be documented


Return to Unit Reference