Class PascalFileEntry
- java.lang.Object
-
- com.webcodepro.applecommander.storage.os.pascal.PascalFileEntry
-
-
Constructor Summary
Constructors Constructor Description PascalFileEntry(byte[] fileEntry, PascalFormatDisk disk)Constructor for PascalFileEntry.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanCompile()Indicates that this filetype can be compiled.voiddelete()Delete the file.intgetAddress()Get the address that this file loads at.intgetBlocksUsed()Compute the blocks used.intgetBytesUsedInLastBlock()Get the number of bytes used in files last block.java.util.List<java.lang.String>getFileColumnData(int displayMode)Get the standard file column header information.byte[]getFileData()Get file data.java.lang.StringgetFilename()Return the name of this file.java.util.List<PascalFileEntry>getFiles()Retrieve the list of files in this directory.java.lang.StringgetFiletype()Return the filetype of this file.intgetFirstBlock()Get the block number of the file's 1st block.FormattedDiskgetFormattedDisk()Get the FormattedDisk associated with this FileEntry.intgetLastBlock()Get the block number of the file's last block + 1.intgetMaximumFilenameLength()Return the maximum filename length.java.util.DategetModificationDate()Get the file modification date.intgetSize()Compute the size of this file (in bytes).FileFiltergetSuggestedFilter()Get the suggested FileFilter.booleanisDeleted()Pascal file entries are removed upon deletion, so a file entry need not be marked as deleted.booleanisDirectory()Pascal does not support directories.booleanisLocked()Identify if this file is lockedbooleanneedsAddress()Indicates if this filetype requires an address component.voidsetAddress(int address)Set the address that this file loads at.voidsetBytesUsedInLastBlock(int value)Set the number of bytes used in files last block.voidsetEntryIndex(int index)Remember the index of a newly created file entry.voidsetFileCount(int count)Set the file count in a volume entry.voidsetFileData(byte[] data)Set file data for this file entry.voidsetFilename(java.lang.String filename)Set the name of this file.voidsetFiletype(java.lang.String filetype)Set the filetype.voidsetFirstBlock(int first)Set the block number of the file's 1st block.voidsetLastBlock(int last)Set the block number of the file's last block + 1.voidsetLocked(boolean lock)Set the lock indicator.voidsetModificationDate(java.util.Date date)Set the file modification date.byte[]toBytes()Get the byte[] associated with this FileEntry.
-
-
-
Constructor Detail
-
PascalFileEntry
public PascalFileEntry(byte[] fileEntry, PascalFormatDisk disk)Constructor for PascalFileEntry.
-
-
Method Detail
-
getFirstBlock
public int getFirstBlock()
Get the block number of the file's 1st block.
-
setFirstBlock
public void setFirstBlock(int first)
Set the block number of the file's 1st block.
-
getLastBlock
public int getLastBlock()
Get the block number of the file's last block + 1.
-
setLastBlock
public void setLastBlock(int last)
Set the block number of the file's last block + 1.
-
getFilename
public java.lang.String getFilename()
Return the name of this file.- Specified by:
getFilenamein interfaceFileEntry
-
setFilename
public void setFilename(java.lang.String filename)
Set the name of this file.- Specified by:
setFilenamein interfaceFileEntry
-
getMaximumFilenameLength
public int getMaximumFilenameLength()
Return the maximum filename length.- Specified by:
getMaximumFilenameLengthin interfaceFileEntry
-
getFiletype
public java.lang.String getFiletype()
Return the filetype of this file.- Specified by:
getFiletypein interfaceFileEntry
-
setFiletype
public void setFiletype(java.lang.String filetype)
Set the filetype.- Specified by:
setFiletypein interfaceFileEntry
-
isLocked
public boolean isLocked()
Identify if this file is locked
-
setLocked
public void setLocked(boolean lock)
Set the lock indicator.
-
getBytesUsedInLastBlock
public int getBytesUsedInLastBlock()
Get the number of bytes used in files last block.
-
setBytesUsedInLastBlock
public void setBytesUsedInLastBlock(int value)
Set the number of bytes used in files last block.
-
getSize
public int getSize()
Compute the size of this file (in bytes).
-
getBlocksUsed
public int getBlocksUsed()
Compute the blocks used.
-
isDirectory
public boolean isDirectory()
Pascal does not support directories.- Specified by:
isDirectoryin interfaceFileEntry
-
getFiles
public java.util.List<PascalFileEntry> getFiles()
Retrieve the list of files in this directory. Always returns null, as Pascal does not support directories.
-
isDeleted
public boolean isDeleted()
Pascal file entries are removed upon deletion, so a file entry need not be marked as deleted. But the GUI still has a copy of the file list in memory, so we mark it deleted in delete().
-
getModificationDate
public java.util.Date getModificationDate()
Get the file modification date.
-
setModificationDate
public void setModificationDate(java.util.Date date)
Set the file modification date.
-
getFileColumnData
public java.util.List<java.lang.String> getFileColumnData(int displayMode)
Get the standard file column header information. This default implementation is intended only for standard mode. displayMode is specified in FormattedDisk.- Specified by:
getFileColumnDatain interfaceFileEntry
-
getFileData
public byte[] getFileData()
Get file data. This handles any operating-system specific issues. Currently, the disk itself handles this.- Specified by:
getFileDatain interfaceFileEntry
-
setFileData
public void setFileData(byte[] data) throws DiskFullExceptionSet file data for this file entry. Because the directory entry may have been changed, use this.index to determine which entry to update. author John B. Matthews.- Specified by:
setFileDatain interfaceFileEntry- Throws:
DiskFullException- See Also:
setEntryIndex(int),PascalFormatDisk.createFile()
-
getSuggestedFilter
public FileFilter getSuggestedFilter()
Get the suggested FileFilter. This appears to be operating system specific, so each operating system needs to implement some manner of guessing the appropriate filter.- Specified by:
getSuggestedFilterin interfaceFileEntry
-
getFormattedDisk
public FormattedDisk getFormattedDisk()
Get the FormattedDisk associated with this FileEntry. This is useful to interfaces that need to retrieve the associated disk.- Specified by:
getFormattedDiskin interfaceFileEntry
-
toBytes
public byte[] toBytes()
Get the byte[] associated with this FileEntry. This is need to manipulate the directory as a whole.
-
needsAddress
public boolean needsAddress()
Indicates if this filetype requires an address component. Note that the FormattedDisk also has this method - normally, this will defer to the method on FormattedDisk, as it will be more generic.- Specified by:
needsAddressin interfaceFileEntry
-
setAddress
public void setAddress(int address)
Set the address that this file loads at.- Specified by:
setAddressin interfaceFileEntry
-
getAddress
public int getAddress()
Get the address that this file loads at.- Specified by:
getAddressin interfaceFileEntry
-
canCompile
public boolean canCompile()
Indicates that this filetype can be compiled.- Specified by:
canCompilein interfaceFileEntry
-
setEntryIndex
public void setEntryIndex(int index)
Remember the index of a newly created file entry. Required to update the entry after setFileData, which may change any or all of the new entry's fields. author John B. Matthews
-
setFileCount
public void setFileCount(int count)
Set the file count in a volume entry. Use only on the volume entry: dir.get(0). author John B. Matthews
-
-