TNTFSDiskRecord
From Ultibo.org
Return to Unit NTFSClass
Description
To be documented
Class definitions
[Expand]
TNTFSDiskRecord = class(TBtreeObject)
Function declarations
[Expand]
constructor TNTFSDiskRecord.Create(ALocalLock:TMutexHandle; ABase:TNTFSDiskRecord);
Description: To be documented
[Expand]
function TNTFSDiskRecord.CreateLinks(ANew:Boolean):TNTFSEntryList;
Description: To be documented
[Expand]
function TNTFSDiskRecord.CreateStreams(ANew:Boolean):TNTFSEntryList;
Description: To be documented
[Expand]
function TNTFSDiskRecord.CreateRecords(ANew:Boolean):TNTFSRecordList;
Description: To be documented
[Expand]
function TNTFSDiskRecord.CreateAttributes(AVersion:Word; ANew:Boolean):TNTFSDiskAttributes;
Description: To be documented
[Expand]
function TNTFSDiskRecord.CreateLink(AAttribute,AAlternate:TNTFSDiskAttribute; ANew:Boolean):TNTFSDiskEntry;
Description: Create a link, add to list do not update Record
[Expand]
function TNTFSDiskRecord.DestroyLink(ALink:TNTFSDiskEntry):Boolean;
Description: Remove the link from list and free but do not update record
[Expand]
function TNTFSDiskRecord.NewLink(AAttribute,AAlternate:TNTFSDiskAttribute):TNTFSDiskEntry;
Description: Create a link, add to list and update Record
[Expand]
function TNTFSDiskRecord.GetLink(AAttribute:TNTFSDiskAttribute):TNTFSDiskEntry;
Description: Request is propogated to base record to contain all links within one record
[Expand]
function TNTFSDiskRecord.DeleteLink(ALink:TNTFSDiskEntry):Boolean;
Description: Remove the link from list and update record but do not free
[Expand]
function TNTFSDiskRecord.RenameLink(ALink:TNTFSDiskEntry; AAttribute,AAlternate:TNTFSDiskAttribute):Boolean;
Description: Update the link with new attribute and alternate and update Record
[Expand]
function TNTFSDiskRecord.CreateStream(AAttribute:TNTFSDiskAttribute; ANew:Boolean):TNTFSDiskEntry;
Description: Create a stream, add to list do not update Record
[Expand]
function TNTFSDiskRecord.DestroyStream(AStream:TNTFSDiskEntry):Boolean;
Description: Remove the stream from list and free but do not update record
[Expand]
function TNTFSDiskRecord.NewStream(AAttribute:TNTFSDiskAttribute):TNTFSDiskEntry;
Description: Create a stream, add to list and update Record
[Expand]
function TNTFSDiskRecord.GetStream(AAttribute:TNTFSDiskAttribute):TNTFSDiskEntry;
Description: To be documented
[Expand]
function TNTFSDiskRecord.DeleteStream(AStream:TNTFSDiskEntry):Boolean;
Description: Remove the stream from list and update record but do not free
[Expand]
function TNTFSDiskRecord.GetFileNameByKey(AKey:TNTFSAttributeKey):TNTFSDiskAttribute;
Description: Get the attribute referenced by the supplied key (Checks base and extension records)
[Expand]
function TNTFSDiskRecord.GetFileNameByName(const AName:String; AInstance:Integer):TNTFSDiskAttribute;
Description: Get the attribute referenced by the supplied name (Checks base and extension records)
[Expand]
function TNTFSDiskRecord.GetFileNameByParent(const AName:String; const AParent:Int64; AInstance:Integer):TNTFSDiskAttribute;
Description: Get the attribute referenced by the supplied name and parent (Checks base and extension records)
[Expand]
function TNTFSDiskRecord.GetFileNameByNameSpace(const AName:String; const AParent:Int64; ANameSpace:Byte; AInstance:Integer):TNTFSDiskAttribute;
Description: Get the attribute referenced by the supplied name, parent and namespace (Checks base and extension records)
[Expand]
function TNTFSDiskRecord.GetRecord(AInstance:Integer):TNTFSDiskRecord;
Description: To be documented
[Expand]
function TNTFSDiskRecord.GetRecordByFree(AFree:LongWord; AExclude:Boolean):TNTFSDiskRecord;
Description: To be documented
[Expand]
function TNTFSDiskRecord.GetRecordByReference(const AFileReference:Int64):TNTFSDiskRecord;
Description: To be documented
[Expand]
function TNTFSDiskRecord.AddRecord(ARecord:TNTFSDiskRecord):Boolean;
Description: To be documented
[Expand]
function TNTFSDiskRecord.RemoveRecord(ARecord:TNTFSDiskRecord):Boolean;
Description: To be documented
[Expand]
function TNTFSDiskRecord.GetAttributeByItem(AItem:TNTFSDiskItem):TNTFSDiskAttribute;
Description: To be documented
[Expand]
function TNTFSDiskRecord.GetAttributeByStatus(AInclude,AExclude:Word; AInstance:Integer):TNTFSDiskAttribute;
Description: Get the next attribute whose status matches the supplied masks
[Expand]
function TNTFSDiskRecord.GetAttributeByVCN(AAttribute:TNTFSDiskAttribute; const AVCN:Int64; var AInstance:LongWord):TNTFSDiskAttribute;
Description: Get the attribute containing the supplied vcn, passed attribute supplies the name and type
[Expand]
function TNTFSDiskRecord.GetAttributeByUnit(AAttribute:TNTFSDiskAttribute; const AUnit:Int64; var AInstance:LongWord):TNTFSDiskAttribute;
Description: Get the attribute containing the supplied compression unit, passed attribute supplies the name, type and unit size
[Expand]
function TNTFSDiskRecord.CreateAttribute(AType:LongWord; AVersion:Word; ANew:Boolean):TNTFSDiskAttribute;
Description: Create an attribute, add to end of list do not update record
[Expand]
function TNTFSDiskRecord.DestroyAttribute(AAttribute:TNTFSDiskAttribute):Boolean;
Description: Remove the atttribute from the list and free, do not update record
[Expand]
function TNTFSDiskRecord.NewAttribute(APrevious:TNTFSDiskAttribute; AType:LongWord; const AName:String; AVersion:Word):TNTFSDiskAttribute;
Description: Create an attribute, insert in sorted list and update record
[Expand]
function TNTFSDiskRecord.GetAttribute(AType:LongWord; const AName:String; AInstance:Integer):TNTFSDiskAttribute;
Description: To be documented
[Expand]
function TNTFSDiskRecord.RemoveAttribute(AAttribute:TNTFSDiskAttribute):Boolean;
Description: Remove the attribute from the list, free and update record
[Expand]
function TNTFSDiskRecord.MoveAttribute(ADest:TNTFSDiskRecord; AAttribute:TNTFSDiskAttribute):Boolean;
Description: Remove the attribute from the list and insert in the list of the dest record
[Expand]
function TNTFSDiskRecord.RenameAttribute(AAttribute:TNTFSDiskAttribute; const AName:String):Boolean;
Description: Remove the attribute from the list and reinsert in the list with the new name
[Expand]
function TNTFSDiskRecord.FileReference:Int64;
Description: Build a File Reference from the RecordNumber and SequenceNumber
[Expand]
function TNTFSDiskRecord.RecordFree:LongWord;
Description: Determine the free space remaining in the record
[Expand]
function TNTFSDiskRecord.AttributeSize(AVersion:Word; AType:LongWord):LongWord;
Description: Determine the maximum size of this type of attribute in this record
[Expand]
function TNTFSDiskRecord.CalculatedSize(AVersion:Word):LongWord;
Description: To be documented
[Expand]
function TNTFSDiskRecord.CalculatedOffset(AVersion:Word):Word;
Description: Determine the attribute offset for this record based on version
[Expand]
function TNTFSDiskRecord.CalculatedSequenceOffset(AVersion:Word):Word;
Description: Determine the update sequence offset for this record based on version
[Expand]
function TNTFSDiskRecord.CalculatedSequenceLength(ASectorSize:Word):Word;
Description: Determine the update sequence length for this record based on sector size
[Expand]
function TNTFSDiskRecord.CalculatedStreamUsed(AVersion:Word; AAttribute:TNTFSDiskAttribute):Int64;
Description: Calculated Stream Used is the actual allocated size of the data stream in a compressed attribute
[Expand]
function TNTFSDiskRecord.ReadAttributes(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
Description: Read the record attributes from the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskRecord.WriteAttributes(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
Description: Write the record attributes to the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskRecord.ReadRecord(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word; AFree:Boolean):Boolean;
Description: Read the entry record from the supplied buffer at the supplied offset
[Expand]
function TNTFSDiskRecord.WriteRecord(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
Description: Write the file record to the supplied buffer at the supplied offset
Return to Unit Reference