TNTFSDiskAttribute
From Ultibo.org
Return to Unit NTFSClass
Description
To be documented
Class definitions
[Expand]
TNTFSDiskAttribute = class(TListObject)
Function declarations
[Expand]
constructor TNTFSDiskAttribute.Create(ALocalLock:TMutexHandle; AParent:TNTFSDiskRecord);
Description: To be documented
[Expand]
function TNTFSDiskAttribute.GetItemsLock:TSynchronizerHandle;
Description: To be documented
[Expand]
function TNTFSDiskAttribute.GetIndexLock:TSynchronizerHandle;
Description: To be documented
[Expand]
function TNTFSDiskAttribute.GetExtendedsLock:TSynchronizerHandle;
Description: To be documented
[Expand]
procedure TNTFSDiskAttribute.SetIsCompressed(AValue:Boolean);
Description: To be documented
[Expand]
procedure TNTFSDiskAttribute.SetAttributeName(const AAttributeName:String);
Description: To be documented
[Expand]
function TNTFSDiskAttribute.Compare(AAttribute:TNTFSDiskAttribute):Integer;
Description: Compare attribute by type, name and vcn for sort order
[Expand]
function TNTFSDiskAttribute.CreateRuns(ANew:Boolean):TNTFSDiskRuns;
Description: To be documented
[Expand]
function TNTFSDiskAttribute.CreateItems(ANew:Boolean):TNTFSDiskItems;
Description: To be documented
[Expand]
function TNTFSDiskAttribute.GetRecord(AInstance:Integer):TNTFSDiskRecord;
Description: Used by TNTFSDiskRecord.GetRecord methods to enumerate records within a list
[Expand]
function TNTFSDiskAttribute.GetAttribute(AType:LongWord; const AName:String; AInstance:Integer):TNTFSDiskAttribute;
Description: Used by TNTFSDiskRecord.GetAttribute methods to enumerate attributes within a list
[Expand]
function TNTFSDiskAttribute.GetRunCount(const AVCN:Int64; var AStartVCN,ACount:Int64):Boolean;
Description: Get the count of clusters from the supplied VCN to the end of the attributes runs
[Expand]
function TNTFSDiskAttribute.GetRunLength(const AVCN:Int64; var AStartVCN,ALength:Int64):Boolean;
Description: Get the count of clusters from the supplied VCN to the end of run containing the VCN
[Expand]
function TNTFSDiskAttribute.GetRunByUnit(const AUnit:Int64; var AStartVCN:Int64):TNTFSDiskRun;
Description: Get the run containing the supplied compression unit
[Expand]
function TNTFSDiskAttribute.GetRunByCluster(const ACluster:Int64; var AStartVCN:Int64):TNTFSDiskRun;
Description: Get the run containing the supplied cluster
[Expand]
function TNTFSDiskAttribute.CreateRun(ANew:Boolean):TNTFSDiskRun;
Description: Create a run, add to list do not update attribute
[Expand]
function TNTFSDiskAttribute.DestroyRun(ARun:TNTFSDiskRun):Boolean;
Description: Remove the run from the list and free, do not update attribute
[Expand]
function TNTFSDiskAttribute.NewRun(const AStart,ALength:Int64):TNTFSDiskRun;
Description: Create a run, insert in list and update attribute
[Expand]
function TNTFSDiskAttribute.InsertRun(APrev:TNTFSDiskRun; const AStart,ALength:Int64):TNTFSDiskRun;
Description: Create a run, insert in list and update attribute
[Expand]
function TNTFSDiskAttribute.GetRun(const AVCN:Int64; var AStartVCN:Int64):TNTFSDiskRun;
Description: Get the run containing the supplied VCN
[Expand]
function TNTFSDiskAttribute.MergeRun(ARun:TNTFSDiskRun):Boolean;
Description: Merge the run with the next run in the list and delete the merged run
[Expand]
function TNTFSDiskAttribute.SplitRun(ARun:TNTFSDiskRun; const ALength:Int64):Boolean;
Description: Split the run at the supplied length and insert a new run in the list
[Expand]
function TNTFSDiskAttribute.RemoveRun(ARun:TNTFSDiskRun):Boolean;
Description: Remove the run from the list, free and update attribute
[Expand]
function TNTFSDiskAttribute.MoveRun(ADest:TNTFSDiskAttribute; ARun:TNTFSDiskRun):Boolean;
Description: Remove the run from the list and insert in the list of passed attribute
[Expand]
function TNTFSDiskAttribute.GetItemByAttribute(AAttribute:TNTFSDiskAttribute):TNTFSDiskItem;
Description: Get the item which references the supplied attribute
[Expand]
function TNTFSDiskAttribute.CreateItem(ANew:Boolean):TNTFSDiskItem;
Description: Create an item, add to end of list do not update attribute
[Expand]
function TNTFSDiskAttribute.DestroyItem(AItem:TNTFSDiskItem):Boolean;
Description: Remove the item from the list and free, do not update attribute
[Expand]
function TNTFSDiskAttribute.NewItem(AAttribute:TNTFSDiskAttribute):TNTFSDiskItem;
Description: Create an item, insert in sorted list and update attribute
[Expand]
function TNTFSDiskAttribute.GetItem(AType:LongWord; const AName:String; AInstance:Integer):TNTFSDiskItem;
Description: Get an item by type, name and instance
[Expand]
function TNTFSDiskAttribute.RemoveItem(AItem:TNTFSDiskItem):Boolean;
Description: Remove the item from the list, free and update attribute
[Expand]
function TNTFSDiskAttribute.MoveItem(AItem:TNTFSDiskItem; AAttribute:TNTFSDiskAttribute):Boolean;
Description: Remove the item from the list and reinsert with the new parent reference
[Expand]
function TNTFSDiskAttribute.RenameItem(AItem:TNTFSDiskItem; AAttribute:TNTFSDiskAttribute):Boolean;
Description: Remove the item from the list and reinsert with the new name
[Expand]
function TNTFSDiskAttribute.CreateIndex(AVersion,ASector:Word):Boolean;
Description: Create an index, setup properties do not update attribute
[Expand]
function TNTFSDiskAttribute.NewIndex(AVersion,ASector:Word; AType,ARule,ASize,AOffset:LongWord):Boolean;
Description: Create an index, setup properties and update attribute
[Expand]
function TNTFSDiskAttribute.BaseReference:Int64;
Description: Returns parent reference when no base record is assigned (ie parent record is the base)
[Expand]
function TNTFSDiskAttribute.DataOffset:Word;
Description: Data Offset is supplied even if no data exists
[Expand]
function TNTFSDiskAttribute.AttributeNameOffset:Word;
Description: Name Offset is supplied even if no name exists
[Expand]
function TNTFSDiskAttribute.CalculatedSize(AVersion:Word):LongWord;
Description: To be documented
[Expand]
function TNTFSDiskAttribute.CalculatedDataSize(AVersion:Word):LongWord;
Description: Calculated Data Size is the actual size of the data following the attribute header
[Expand]
function TNTFSDiskAttribute.CalculatedStreamSize(AVersion:Word):Int64;
Description: Calculated Stream Size is the actual size of the data stream of the attribute
[Expand]
function TNTFSDiskAttribute.CalculatedStreamUsed(AVersion:Word):Int64;
Description: Calculated Stream Used is the actual allocated size of the data stream in a compressed attribute
[Expand]
function TNTFSDiskAttribute.CoalesceRun(ARun:TNTFSDiskRun):Boolean;
Description: Coalesce all runs in the list starting at the supplied run or first if not supplied
[Expand]
function TNTFSDiskAttribute.UpdateRun(ARun:TNTFSDiskRun):Boolean;
Description: Update all runs in the list starting at the supplied run or first if not supplied
[Expand]
function TNTFSDiskAttribute.UpdateKey(AKey:TNTFSDiskKey):Boolean;
Description: To be documented
[Expand]
function TNTFSDiskAttribute.UpdateItem(AItem:TNTFSDiskItem):Boolean;
Description: To be documented
[Expand]
function TNTFSDiskAttribute.UpdateEntry(AEntry:TNTFSDiskEntry):Boolean;
Description: To be documented
[Expand]
function TNTFSDiskAttribute.UpdateAttribute(AEntry:TNTFSDiskEntry):Boolean;
Description: To be documented
[Expand]
function TNTFSDiskAttribute.ReadRuns(ABuffer:Pointer; var AOffset:LongWord; AVersion:Word):Boolean;
Description: Read the attribute data runs from the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskAttribute.WriteRuns(ABuffer:Pointer; var AOffset:LongWord; AVersion:Word):Boolean;
Description: Write the attribute data runs to the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskAttribute.ReadItems(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
Description: Read the attribute data items from the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskAttribute.WriteItems(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
Description: Write the attribute data items to the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskAttribute.ReadData(ABuffer:Pointer; var AOffset:LongWord; AVersion:Word):Boolean;
Description: Read the resident attribute data from the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskAttribute.WriteData(ABuffer:Pointer; var AOffset:LongWord; AVersion:Word):Boolean;
Description: Write the resident attribute data to the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskAttribute.ReadAttribute(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
Description: Read the attribute header and resident attribute data or data runs from the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskAttribute.WriteAttribute(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
Description: Write the attribute header and resident attribute data or data runs to the supplied buffer at the supplied offset
Return to Unit Reference