TFATFileSystem

From Ultibo.org
Jump to: navigation, search

Return to Unit FATFS


Description


To be documented

Class definitions



[Expand]

TFATFileSystem = class(TFileSystem)


Function declarations



[Expand]
constructor TFATFileSystem.Create(ADriver:TFileSysDriver; AVolume:TDiskVolume; ADrive:TDiskDrive);
Description: To be documented


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


[Expand]
function TFATFileSystem.InfoLock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.InfoUnlock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.NameLock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.NameUnlock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.ReadLock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.ReadUnlock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.WriteLock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.WriteUnlock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.ClusterLock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.ClusterUnlock:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.IsRemovable:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.GetHardError:Boolean;
Description: To be documented


[Expand]
procedure TFATFileSystem.SetHardError(AValue:Boolean);
Description: To be documented


[Expand]
function TFATFileSystem.GetCleanShutdown:Boolean;
Description: To be documented


[Expand]
procedure TFATFileSystem.SetCleanShutdown(AValue:Boolean);
Description: To be documented


[Expand]
function TFATFileSystem.GetVolumeFlags:LongWord;
Description: Get the volume flags from cluster zero of the FAT


[Expand]
function TFATFileSystem.SetVolumeFlags(AFlags:LongWord):Boolean;
Description: Set the volume flags in cluster zero of the FAT


[Expand]
function TFATFileSystem.UpdateInfoSector:Boolean;
Description: Update the FAT32 Info Sector with current values


[Expand]
function TFATFileSystem.FillCluster(ACluster:LongWord; AValue:Byte):Boolean;
Description: Fill one cluster with the supplied value


[Expand]
function TFATFileSystem.ReadCluster(ACluster:LongWord; var ABuffer):Boolean;
Description: Read one Cluster from the Volume or Drive using Cache


[Expand]
function TFATFileSystem.WriteCluster(ACluster:LongWord; const ABuffer):Boolean;
Description: Write one Cluster to the Volume or Drive using Cache


[Expand]
function TFATFileSystem.GetNextFreeCluster:LongWord;
Description: To be documented


[Expand]
function TFATFileSystem.GetFreeClusterCount:LongWord;
Description: To be documented


[Expand]
function TFATFileSystem.SetNextFreeCluster(ACluster:LongWord):Boolean;
Description: Sets the last free cluster in the info sector on FAT32


[Expand]
function TFATFileSystem.SetFreeClusterCount(ACount:LongWord):Boolean;
Description: Sets the free cluster count in the info sector on FAT32


[Expand]
function TFATFileSystem.GetStartCluster(AEntry:TDiskEntry):LongWord;
Description: Get the starting cluster number or zero for FAT12/16 root


[Expand]
function TFATFileSystem.GetParentCluster(AParent:TDiskEntry):LongWord;
Description: Get the starting cluster number of the supplied parent or zero for root


[Expand]
function TFATFileSystem.CheckClusterBlock(ACluster,ANext:LongWord):Boolean;
Description: Check if 2 clusters are in the same block for SetCluster commit


[Expand]
function TFATFileSystem.GetNextChainCluster(AParent:LongWord):LongWord;
Description: Get the next cluster in the chain after the supplied cluster


[Expand]
function TFATFileSystem.GetLastChainCluster(AParent:LongWord):LongWord;
Description: Get the last cluster in the chain of the supplied cluster


[Expand]
function TFATFileSystem.GetChainClusterCount(AParent:LongWord):LongWord;
Description: Get the cluster count in the chain of the supplied cluster


[Expand]
function TFATFileSystem.GetCluster(ACluster:LongWord):LongWord;
Description: To be documented


[Expand]
function TFATFileSystem.SetCluster(ACluster,AValue:LongWord; ACommit:Boolean):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.AllocCluster(AParent:LongWord; var ACluster:LongWord; ACount:LongWord):Boolean;
Description: Allocate count clusters from next free


[Expand]
function TFATFileSystem.ReleaseCluster(AParent,ACluster:LongWord):Boolean;
Description: Release this cluster and all clusters to the end of the chain


[Expand]
function TFATFileSystem.CheckDirectoryRoot(AParent:TDiskEntry):Boolean;
Description: Check for the FAT12/16 Root directory


[Expand]
function TFATFileSystem.CheckDirectoryStart(AParent:TDiskEntry):Boolean;
Description: Check that the start cluster/sector of the directory is valid


[Expand]
function TFATFileSystem.GetFirstDirectorySector(AParent:TDiskEntry; var ASector:LongWord):Boolean;
Description: Returns the First Sector of the Directory entries for the parent


[Expand]
function TFATFileSystem.GetNextDirectorySector(AParent:TDiskEntry; var ASector:LongWord; AWrite:Boolean):Boolean;
Description: Returns the Next Sector of the Directory entries for the parent


[Expand]
function TFATFileSystem.GetDirectorySectorCount(AParent:TDiskEntry; AWrite:Boolean):LongWord;
Description: Returns the Sector Count per block of Directory entries for the parent


[Expand]
function TFATFileSystem.GetDirectorySectorOffset(AParent:TDiskEntry):LongWord;
Description: Returns the Sector Offset of Directory entries for the parent


[Expand]
function TFATFileSystem.AllocDirectory(AParent:TDiskEntry; ACount:Byte; var AOffset,ASector:LongWord):Boolean;
Description: Allocate Count contiguous Directories from free in the Parent entries


[Expand]
function TFATFileSystem.ReleaseDirectory(AParent:TDiskEntry; ACount:Byte; AOffset,ASector:LongWord):Boolean;
Description: Release Count contiguous Directories to free in the Parent entries


[Expand]
function TFATFileSystem.GetBlockShiftCount(ASize:Word; AType:TFATType):Word;
Description: From the table get the block shift count value for this sector size


[Expand]
function TFATFileSystem.GetSectorShiftCount(ASectorsPerCluster:LongWord):Word;
Description: Calculate the sector shift count for sector to cluster conversion


[Expand]
function TFATFileSystem.GetClusterShiftCount(AClusterSize:LongWord):Word;
Description: Calculate the cluster shift count for cluster to bytes conversion


[Expand]
function TFATFileSystem.GetEntriesPerBlock(ASize:Word; AType:TFATType):LongWord;
Description: From the table get the entries per block value for this sector size


[Expand]
function TFATFileSystem.GetSectorsPerBlock(ASize:Word; AType:TFATType):LongWord;
Description: From the table get the sectors per block value for this sector size


[Expand]
procedure TFATFileSystem.ReadConvert(ADirectory:PFATDirectory);
Description: To be documented


[Expand]
procedure TFATFileSystem.WriteConvert(ADirectory:PFATDirectory);
Description: To be documented


[Expand]
function TFATFileSystem.NameToEntry(AName:Pointer; AEntry:TFATDiskEntry; AShort:Boolean):Boolean;
Description: Loads an Entry from a Name


[Expand]
function TFATFileSystem.EntryToName(AEntry:TFATDiskEntry; AName:Pointer; AShort:Boolean):Boolean;
Description: Loads a Name from an Entry


[Expand]
function TFATFileSystem.BufferToName(ABuffer:Pointer; var AName:String):Boolean;
Description: Converts a Long Name Buffer to a String


[Expand]
function TFATFileSystem.NameToBuffer(const AName:String; ABuffer:Pointer):Boolean;
Description: Converts a String to a Long Name Buffer


[Expand]
function TFATFileSystem.DirectoryToBuffer(ADirectory,ABuffer:Pointer; ACount,AChecksum:Byte; ALast:Boolean):Boolean;
Description: Loads a Long Name buffer from a Directory entry


[Expand]
function TFATFileSystem.BufferToDirectory(ABuffer,ADirectory:Pointer; ACount,AChecksum:Byte; ALast:Boolean):Boolean;
Description: Loads a Directory entry from a Long Name Buffer


[Expand]
function TFATFileSystem.DirectoryToEntry(ADirectory:Pointer; AEntry:TFATDiskEntry; AShort:Boolean):Boolean;
Description: Loads an Entry from a Directory entry


[Expand]
function TFATFileSystem.EntryToDirectory(AEntry:TFATDiskEntry; ADirectory:Pointer; AShort:Boolean):Boolean;
Description: Loads a Directory entry from an Entry


[Expand]
function TFATFileSystem.FATTypeToFileSysType(AFATType:TFATType):TFileSysType;
Description: To be documented


[Expand]
function TFATFileSystem.LoadMaxFile:Integer;
Description: To be documented


[Expand]
function TFATFileSystem.LoadMaxPath:Integer;
Description: To be documented


[Expand]
function TFATFileSystem.LoadAttributes:LongWord;
Description: To be documented


[Expand]
function TFATFileSystem.LoadMaxAttributes:LongWord;
Description: Load the Maximum File Attributes (FileSetAttr)


[Expand]
function TFATFileSystem.LoadMinFileTime:TFileTime; override;
Description: Load the Minimum File Time value (WriteTime/CreateTime/AccessTime)


[Expand]
function TFATFileSystem.LoadSystemName:String;
Description: Load System Name from Boot Sector


[Expand]
function TFATFileSystem.LoadVolumeName:String;
Description: Load Volume Name from Boot Sector


[Expand]
function TFATFileSystem.LoadVolumeSerial:LongWord;
Description: Load Volume Serial from Boot Sector


[Expand]
function TFATFileSystem.LoadFileSysType:TFileSysType;
Description: To be documented


[Expand]
function TFATFileSystem.SetVolumeName(const AName:String):Boolean;
Description: Set Volume Name in Boot Sector


[Expand]
function TFATFileSystem.SetVolumeSerial(ASerial:LongWord):Boolean;
Description: Set Volume Serial in Boot Sector


[Expand]
function TFATFileSystem.ReadEntry(AParent,AEntry:TDiskEntry; var ABuffer; const AStart:Int64; ACount:LongWord; var AOffset,AValue:LongWord):Integer;
Description: To be documented


[Expand]
function TFATFileSystem.WriteEntry(AParent,AEntry:TDiskEntry; const ABuffer; const AStart:Int64; ACount:LongWord; var AOffset,AValue:LongWord):Integer;
Description: To be documented


[Expand]
function TFATFileSystem.LoadTables:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.LoadBlocks:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.LoadEntries(AParent:TDiskEntry):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.LoadTable(ATableNo:LongWord):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.LoadBlock(ABlockNo:LongWord):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.LoadEntry(AParent:TDiskEntry; ABuffer:Pointer; var ABlockOffset,AEntryOffset,ABlockSector,AEntrySector:LongWord):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.LoadLong(AParent:TDiskEntry; ABuffer:Pointer; var ABlockOffset,AEntryOffset,ABlockSector,AEntrySector:LongWord):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.AddEntry(AParent:TDiskEntry; const AName:String; AAttributes:LongWord; AReference:Boolean):TDiskEntry;
Description: To be documented


[Expand]
function TFATFileSystem.AddEntryEx(AParent:TDiskEntry; const AName,AAltName:String; AAttributes:LongWord; AReference:Boolean):TDiskEntry;
Description: To be documented


[Expand]
function TFATFileSystem.RemoveEntry(AParent,AEntry:TDiskEntry):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.RenameEntry(AParent,AEntry:TDiskEntry; const AName:String):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.RenameEntryEx(AParent,AEntry:TDiskEntry; const AAltName:String):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.MoveEntry(ASource,ADest,AEntry:TDiskEntry):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.SetBlock(ABlock:TDiskBlock):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.SetEntry(AParent,AEntry:TDiskEntry):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.SetLong(AParent,AEntry:TDiskEntry):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.SizeEntry(AParent,AEntry:TDiskEntry; const ASize:Int64):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.GetBlock(ABlockNo:LongWord):TDiskBlock;
Description: To be documented


[Expand]
function TFATFileSystem.GetBlockEx(ABlockNo:LongWord; AWrite:Boolean):TDiskBlock;
Description: To be documented


[Expand]
function TFATFileSystem.CheckName(const AName:String):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.CountName(const AName:String):Byte;
Description: To be documented


[Expand]
function TFATFileSystem.CompareName(const AName,AMatch:String; AWildcard:Boolean):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.ChecksumName(AEntry:TDiskEntry):Byte;
Description: To be documented


[Expand]
function TFATFileSystem.GenerateName(AParent,AEntry:TDiskEntry; const AName:String):String;
Description: To be documented


[Expand]
function TFATFileSystem.GetNameFlags(const AName:String):LongWord;
Description: To be documented


[Expand]
function TFATFileSystem.CheckFlagName(const AName:String):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.ValidateName(AName:Pointer):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.ValidateDirectory(ADirectory:Pointer):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.FileSystemInit:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.MountFileSystem:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.DismountFileSystem:Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.InitializeFileSystem(ASectorsPerCluster:LongWord; AFileSysType:TFileSysType):Boolean;
Description: To be documented


[Expand]
function TFATFileSystem.GetDriveLabel:String;
Description: Get Volume Label from Root Directory and Boot Sector


[Expand]
function TFATFileSystem.SetDriveLabel(const ALabel:String):Boolean;
Description: Set Volume Label in Root Directory and Boot Sector


[Expand]
function TFATFileSystem.SetDriveSerial(ASerial:LongWord):Boolean;
Description: Set Volume Serial in Boot Sector


[Expand]
function TFATFileSystem.GetDriveFreeSpaceEx:Int64;
Description: Calculate Free space from FAT (or FileSysInfo for FAT32)


[Expand]
function TFATFileSystem.GetDriveTotalSpaceEx:Int64;
Description: Calculate Total space from internal FAT data


[Expand]
function TFATFileSystem.GetDriveInformation(var AClusterSize:LongWord; var ATotalClusterCount,AFreeClusterCount:Int64):Boolean;
Description: Get Drive Information from internal FAT data


Return to Unit Reference