mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-11-25 16:34:00 +00:00
tidying
This commit is contained in:
parent
8db6489649
commit
113917e278
@ -79,8 +79,8 @@ public class DirectoryHeader
|
|||||||
|
|
||||||
int blockNo = ptr / BLOCK_SIZE;
|
int blockNo = ptr / BLOCK_SIZE;
|
||||||
text.append (String.format ("Block ............ %04X%n", blockNo));
|
text.append (String.format ("Block ............ %04X%n", blockNo));
|
||||||
text.append (String.format ("Entry ............ %02X%n",
|
text.append (
|
||||||
(ptr - blockNo * BLOCK_SIZE - 4) / 39));
|
String.format ("Entry ............ %02X%n", ((ptr % BLOCK_SIZE) - 4) / 39 + 1));
|
||||||
|
|
||||||
text.append (String.format ("Storage type ..... %02X %s%n", storageType,
|
text.append (String.format ("Storage type ..... %02X %s%n", storageType,
|
||||||
ProdosDisk.storageTypes[storageType]));
|
ProdosDisk.storageTypes[storageType]));
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
package com.bytezone.diskbrowser.prodos.write;
|
package com.bytezone.diskbrowser.prodos.write;
|
||||||
|
|
||||||
import static com.bytezone.diskbrowser.prodos.ProdosConstants.BLOCK_SIZE;
|
import static com.bytezone.diskbrowser.prodos.ProdosConstants.BLOCK_SIZE;
|
||||||
|
import static com.bytezone.diskbrowser.prodos.ProdosConstants.ENTRY_SIZE;
|
||||||
|
import static com.bytezone.diskbrowser.prodos.ProdosConstants.SAPLING;
|
||||||
|
import static com.bytezone.diskbrowser.prodos.ProdosConstants.SEEDLING;
|
||||||
|
import static com.bytezone.diskbrowser.prodos.ProdosConstants.TREE;
|
||||||
import static com.bytezone.diskbrowser.prodos.write.ProdosDisk.UNDERLINE;
|
import static com.bytezone.diskbrowser.prodos.write.ProdosDisk.UNDERLINE;
|
||||||
import static com.bytezone.diskbrowser.utilities.Utility.getAppleDate;
|
import static com.bytezone.diskbrowser.utilities.Utility.getAppleDate;
|
||||||
import static com.bytezone.diskbrowser.utilities.Utility.putAppleDate;
|
import static com.bytezone.diskbrowser.utilities.Utility.putAppleDate;
|
||||||
@ -15,13 +19,9 @@ import java.time.LocalDateTime;
|
|||||||
public class FileEntry
|
public class FileEntry
|
||||||
// -----------------------------------------------------------------------------------//
|
// -----------------------------------------------------------------------------------//
|
||||||
{
|
{
|
||||||
private static final int SEEDLING = 0x01;
|
private final ProdosDisk disk;
|
||||||
private static final int SAPLING = 0x02;
|
private final byte[] buffer;
|
||||||
private static final int TREE = 0x03;
|
private final int ptr;
|
||||||
|
|
||||||
ProdosDisk disk;
|
|
||||||
byte[] buffer;
|
|
||||||
int ptr;
|
|
||||||
|
|
||||||
String fileName;
|
String fileName;
|
||||||
byte storageType;
|
byte storageType;
|
||||||
@ -49,6 +49,20 @@ public class FileEntry
|
|||||||
this.ptr = ptr;
|
this.ptr = ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
int getBlockNo ()
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
{
|
||||||
|
return ptr / BLOCK_SIZE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
int getEntryNo ()
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
{
|
||||||
|
return (((ptr % BLOCK_SIZE) - 4) / ENTRY_SIZE + 1);
|
||||||
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
void read ()
|
void read ()
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
@ -307,8 +321,8 @@ public class FileEntry
|
|||||||
text.append (UNDERLINE);
|
text.append (UNDERLINE);
|
||||||
int blockNo = ptr / BLOCK_SIZE;
|
int blockNo = ptr / BLOCK_SIZE;
|
||||||
text.append (String.format ("Block ............ %04X%n", blockNo));
|
text.append (String.format ("Block ............ %04X%n", blockNo));
|
||||||
text.append (String.format ("Entry ............ %02X%n",
|
text.append (
|
||||||
(ptr - blockNo * BLOCK_SIZE - 4) / 39));
|
String.format ("Entry ............ %02X%n", ((ptr % BLOCK_SIZE) - 4) / 39 + 1));
|
||||||
text.append (String.format ("Storage type ..... %02X %s%n", storageType,
|
text.append (String.format ("Storage type ..... %02X %s%n", storageType,
|
||||||
ProdosDisk.storageTypes[storageType]));
|
ProdosDisk.storageTypes[storageType]));
|
||||||
text.append (String.format ("Name length ...... %02X%n", fileName.length ()));
|
text.append (String.format ("Name length ...... %02X%n", fileName.length ()));
|
||||||
|
@ -22,10 +22,9 @@ public class ProdosDisk
|
|||||||
{
|
{
|
||||||
static final String UNDERLINE = "------------------------------------------------\n";
|
static final String UNDERLINE = "------------------------------------------------\n";
|
||||||
|
|
||||||
// static final int BLOCK_SIZE = 512;
|
|
||||||
private static final int CATALOG_SIZE = 4;
|
private static final int CATALOG_SIZE = 4;
|
||||||
// static final int ENTRY_SIZE = 0x27;
|
|
||||||
private static final int BITS_PER_BLOCK = 8 * BLOCK_SIZE;
|
private static final int BITS_PER_BLOCK = 8 * BLOCK_SIZE;
|
||||||
|
|
||||||
static final String[] storageTypes =
|
static final String[] storageTypes =
|
||||||
{ "Deleted", "Seedling", "Sapling", "Tree", "", "", "", "", "", "", "", "", "",
|
{ "Deleted", "Seedling", "Sapling", "Tree", "", "", "", "", "", "", "", "", "",
|
||||||
"Subdirectory", "Subdirectory Header", "Volume Directory Header" };
|
"Subdirectory", "Subdirectory Header", "Volume Directory Header" };
|
||||||
@ -125,7 +124,7 @@ public class ProdosDisk
|
|||||||
{
|
{
|
||||||
// split the full path into an array of subdirectories and a file name
|
// split the full path into an array of subdirectories and a file name
|
||||||
String[] subdirectories;
|
String[] subdirectories;
|
||||||
String fileName = "";
|
String fileName;
|
||||||
|
|
||||||
int pos = path.lastIndexOf ('/');
|
int pos = path.lastIndexOf ('/');
|
||||||
if (pos > 0)
|
if (pos > 0)
|
||||||
@ -160,7 +159,7 @@ public class ProdosDisk
|
|||||||
return null; // throw something?
|
return null; // throw something?
|
||||||
}
|
}
|
||||||
|
|
||||||
// create the file in the current catalog block
|
// create a file entry in the current catalog block
|
||||||
fileEntry = findFreeSlot (catalogBlockNo);
|
fileEntry = findFreeSlot (catalogBlockNo);
|
||||||
|
|
||||||
if (fileEntry != null)
|
if (fileEntry != null)
|
||||||
@ -168,7 +167,7 @@ public class ProdosDisk
|
|||||||
fileEntry.fileName = fileName;
|
fileEntry.fileName = fileName;
|
||||||
fileEntry.version = 0x00;
|
fileEntry.version = 0x00;
|
||||||
fileEntry.minVersion = 0x00;
|
fileEntry.minVersion = 0x00;
|
||||||
fileEntry.headerPointer = catalogBlockNo;
|
fileEntry.headerPointer = catalogBlockNo; // block containing catalog header
|
||||||
fileEntry.fileType = type;
|
fileEntry.fileType = type;
|
||||||
fileEntry.auxType = auxType;
|
fileEntry.auxType = auxType;
|
||||||
fileEntry.creationDate = created;
|
fileEntry.creationDate = created;
|
||||||
@ -182,7 +181,7 @@ public class ProdosDisk
|
|||||||
return fileEntry;
|
return fileEntry;
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null; // should be impossible
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
@ -193,6 +192,8 @@ public class ProdosDisk
|
|||||||
volumeDirectoryHeader.write ();
|
volumeDirectoryHeader.write ();
|
||||||
for (SubdirectoryHeader subdirectoryHeader : subdirectoryHeaders.values ())
|
for (SubdirectoryHeader subdirectoryHeader : subdirectoryHeaders.values ())
|
||||||
subdirectoryHeader.write ();
|
subdirectoryHeader.write ();
|
||||||
|
|
||||||
|
System.out.println (this);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
@ -240,13 +241,18 @@ public class ProdosDisk
|
|||||||
throws DiskFullException, VolumeCatalogFullException
|
throws DiskFullException, VolumeCatalogFullException
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
{
|
{
|
||||||
|
// this will return a new, empty file entry, or throw an exception
|
||||||
FileEntry fileEntry = findFreeSlot (blockNo);
|
FileEntry fileEntry = findFreeSlot (blockNo);
|
||||||
|
|
||||||
if (fileEntry != null)
|
if (fileEntry == null) // should be impossible
|
||||||
{
|
{
|
||||||
|
System.out.println ("failed");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
fileEntry.storageType = SUBDIRECTORY;
|
fileEntry.storageType = SUBDIRECTORY;
|
||||||
fileEntry.fileName = name;
|
fileEntry.fileName = name;
|
||||||
fileEntry.keyPointer = allocateNextBlock ();
|
fileEntry.keyPointer = allocateNextBlock (); // allocate block for the subdirectory header
|
||||||
fileEntry.blocksUsed = 1;
|
fileEntry.blocksUsed = 1;
|
||||||
fileEntry.eof = BLOCK_SIZE;
|
fileEntry.eof = BLOCK_SIZE;
|
||||||
fileEntry.fileType = FILE_TYPE_DIRECTORY;
|
fileEntry.fileType = FILE_TYPE_DIRECTORY;
|
||||||
@ -260,12 +266,11 @@ public class ProdosDisk
|
|||||||
|
|
||||||
SubdirectoryHeader subdirectoryHeader =
|
SubdirectoryHeader subdirectoryHeader =
|
||||||
new SubdirectoryHeader (this, buffer, fileEntry.keyPointer * BLOCK_SIZE + 4);
|
new SubdirectoryHeader (this, buffer, fileEntry.keyPointer * BLOCK_SIZE + 4);
|
||||||
|
|
||||||
subdirectoryHeader.fileName = name;
|
subdirectoryHeader.fileName = name;
|
||||||
subdirectoryHeader.creationDate = LocalDateTime.now ();
|
subdirectoryHeader.creationDate = LocalDateTime.now ();
|
||||||
subdirectoryHeader.fileCount = 0;
|
subdirectoryHeader.fileCount = 0;
|
||||||
subdirectoryHeader.parentPointer = fileEntry.ptr / BLOCK_SIZE;
|
subdirectoryHeader.setParentDetails (fileEntry);
|
||||||
subdirectoryHeader.parentEntry =
|
|
||||||
(byte) (((fileEntry.ptr % BLOCK_SIZE) - 4) / ENTRY_SIZE + 1);
|
|
||||||
|
|
||||||
subdirectoryHeader.write ();
|
subdirectoryHeader.write ();
|
||||||
|
|
||||||
@ -274,11 +279,6 @@ public class ProdosDisk
|
|||||||
return fileEntry;
|
return fileEntry;
|
||||||
}
|
}
|
||||||
|
|
||||||
System.out.println ("failed");
|
|
||||||
|
|
||||||
return null; // no empty slots found
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
private void updateFileCount (int catalogBlock)
|
private void updateFileCount (int catalogBlock)
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
@ -385,4 +385,25 @@ public class ProdosDisk
|
|||||||
{
|
{
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
@Override
|
||||||
|
public String toString ()
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
{
|
||||||
|
StringBuilder text = new StringBuilder ();
|
||||||
|
|
||||||
|
text.append (volumeDirectoryHeader);
|
||||||
|
text.append ("\n");
|
||||||
|
|
||||||
|
for (SubdirectoryHeader subdirectoryHeader : subdirectoryHeaders.values ())
|
||||||
|
{
|
||||||
|
text.append (subdirectoryHeader);
|
||||||
|
text.append ("\n");
|
||||||
|
text.append (subdirectoryHeader.getParentFileEntry ());
|
||||||
|
text.append ("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return text.toString ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,9 +12,9 @@ import java.time.LocalDateTime;
|
|||||||
public class SubdirectoryHeader extends DirectoryHeader
|
public class SubdirectoryHeader extends DirectoryHeader
|
||||||
// -----------------------------------------------------------------------------------//
|
// -----------------------------------------------------------------------------------//
|
||||||
{
|
{
|
||||||
int parentPointer;
|
private int parentPointer;
|
||||||
byte parentEntry;
|
private byte parentEntry;
|
||||||
byte parentEntryLength = ENTRY_SIZE;
|
private byte parentEntryLength;
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
public SubdirectoryHeader (ProdosDisk disk, byte[] buffer, int ptr)
|
public SubdirectoryHeader (ProdosDisk disk, byte[] buffer, int ptr)
|
||||||
@ -27,12 +27,30 @@ public class SubdirectoryHeader extends DirectoryHeader
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
void updateParentFileEntry ()
|
void setParentDetails (FileEntry fileEntry)
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
{
|
||||||
|
parentPointer = fileEntry.getBlockNo ();
|
||||||
|
parentEntry = (byte) fileEntry.getEntryNo ();
|
||||||
|
parentEntryLength = ENTRY_SIZE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
FileEntry getParentFileEntry ()
|
||||||
// ---------------------------------------------------------------------------------//
|
// ---------------------------------------------------------------------------------//
|
||||||
{
|
{
|
||||||
FileEntry fileEntry = new FileEntry (disk, buffer,
|
FileEntry fileEntry = new FileEntry (disk, buffer,
|
||||||
parentPointer * BLOCK_SIZE + (parentEntry - 1) * ENTRY_SIZE + 4);
|
parentPointer * BLOCK_SIZE + (parentEntry - 1) * ENTRY_SIZE + 4);
|
||||||
fileEntry.read ();
|
fileEntry.read ();
|
||||||
|
|
||||||
|
return fileEntry;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
void updateParentFileEntry ()
|
||||||
|
// ---------------------------------------------------------------------------------//
|
||||||
|
{
|
||||||
|
FileEntry fileEntry = getParentFileEntry ();
|
||||||
fileEntry.blocksUsed++;
|
fileEntry.blocksUsed++;
|
||||||
fileEntry.eof += BLOCK_SIZE;
|
fileEntry.eof += BLOCK_SIZE;
|
||||||
fileEntry.modifiedDate = LocalDateTime.now ();
|
fileEntry.modifiedDate = LocalDateTime.now ();
|
||||||
@ -85,7 +103,7 @@ public class SubdirectoryHeader extends DirectoryHeader
|
|||||||
text.append ("Subdirectory Header\n");
|
text.append ("Subdirectory Header\n");
|
||||||
text.append (UNDERLINE);
|
text.append (UNDERLINE);
|
||||||
text.append (super.toString ());
|
text.append (super.toString ());
|
||||||
text.append (String.format ("Parent pointer ... %d%n", parentPointer));
|
text.append (String.format ("Parent pointer ... %04X%n", parentPointer));
|
||||||
text.append (String.format ("Parent entry ..... %02X%n", parentEntry));
|
text.append (String.format ("Parent entry ..... %02X%n", parentEntry));
|
||||||
text.append (String.format ("PE length ........ %02X%n", parentEntryLength));
|
text.append (String.format ("PE length ........ %02X%n", parentEntryLength));
|
||||||
text.append (UNDERLINE);
|
text.append (UNDERLINE);
|
||||||
|
@ -53,7 +53,7 @@ public class VolumeDirectoryHeader extends DirectoryHeader
|
|||||||
text.append ("Volume Directory Header\n");
|
text.append ("Volume Directory Header\n");
|
||||||
text.append (UNDERLINE);
|
text.append (UNDERLINE);
|
||||||
text.append (super.toString ());
|
text.append (super.toString ());
|
||||||
text.append (String.format ("Bitmap pointer ... %d%n", bitMapPointer));
|
text.append (String.format ("Bitmap pointer ... %02X%n", bitMapPointer));
|
||||||
text.append (String.format ("Total blocks ..... %d%n", totalBlocks));
|
text.append (String.format ("Total blocks ..... %d%n", totalBlocks));
|
||||||
text.append (UNDERLINE);
|
text.append (UNDERLINE);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user