dmolony-DiskBrowser/src/com/bytezone/diskbrowser/applefile/PascalSegment.java

148 lines
5.9 KiB
Java
Raw Normal View History

2015-06-01 09:35:51 +00:00
package com.bytezone.diskbrowser.applefile;
import java.util.ArrayList;
import java.util.List;
2016-02-24 21:11:14 +00:00
import com.bytezone.diskbrowser.utilities.FileFormatException;
import com.bytezone.diskbrowser.utilities.HexFormatter;
2015-06-01 09:35:51 +00:00
public class PascalSegment extends AbstractFile implements PascalConstants
{
2016-02-29 01:54:44 +00:00
private final int segmentNoHeader;
private int segmentNoBody;
2016-07-18 08:55:32 +00:00
2015-06-01 09:35:51 +00:00
public final int blockNo;
public final int size;
2016-07-18 08:55:32 +00:00
2016-02-29 01:54:44 +00:00
private final int segKind;
private final int textAddress;
private final int machineType;
private final int version;
private final int intrinsSegs1;
private final int intrinsSegs2;
private final int slot;
private int totalProcedures;
2016-07-18 08:55:32 +00:00
private List<PascalProcedure> procedures;
2015-06-01 09:35:51 +00:00
public PascalSegment (String name, byte[] fullBuffer, int seq)
{
2016-07-18 08:55:32 +00:00
super (name, fullBuffer); // sets this.buffer to the full buffer temporarily
2015-06-01 09:35:51 +00:00
this.slot = seq;
this.blockNo = HexFormatter.intValue (fullBuffer[seq * 4], fullBuffer[seq * 4 + 1]);
this.size = HexFormatter.intValue (fullBuffer[seq * 4 + 2], fullBuffer[seq * 4 + 3]);
2016-07-18 08:55:32 +00:00
2016-08-02 10:37:27 +00:00
segKind = HexFormatter.intValue (fullBuffer[0xC0 + seq * 2],
fullBuffer[0xC0 + seq * 2 + 1]);
2016-08-03 11:32:47 +00:00
2016-08-02 10:37:27 +00:00
textAddress = HexFormatter.intValue (fullBuffer[0xE0 + seq * 2],
fullBuffer[0xE0 + seq * 2 + 1]);
2016-08-03 11:32:47 +00:00
this.segmentNoHeader = fullBuffer[0x100 + seq * 2] & 0xFF;
2015-06-01 09:35:51 +00:00
int flags = fullBuffer[0x101 + seq * 2] & 0xFF;
machineType = flags & 0x0F;
version = (flags & 0xD0) >> 5;
2016-08-02 10:37:27 +00:00
intrinsSegs1 = HexFormatter.intValue (fullBuffer[0x120 + seq * 4],
fullBuffer[0x120 + seq * 4 + 1]);
2016-02-29 01:54:44 +00:00
intrinsSegs2 = HexFormatter.intValue (fullBuffer[0x120 + seq * 4 + 2],
fullBuffer[0x120 + seq * 4 + 3]);
2015-06-01 09:35:51 +00:00
int offset = blockNo * 512;
2016-08-02 10:37:27 +00:00
// System.out.printf ("Seq:%d, block:%d, size:%d, seg:%d, kind:%d, address:%d %n", seq,
// blockNo, size, segmentNoHeader, segKind, textAddress);
// System.out.println (HexFormatter.format (fullBuffer));
2015-06-01 09:35:51 +00:00
if (offset < fullBuffer.length)
{
2016-02-29 01:54:44 +00:00
buffer = new byte[size]; // replaces this.buffer with the segment buffer only
2015-06-01 09:35:51 +00:00
System.arraycopy (fullBuffer, blockNo * 512, buffer, 0, size);
totalProcedures = buffer[size - 1] & 0xFF;
segmentNoBody = buffer[size - 2] & 0xFF;
2016-07-18 08:55:32 +00:00
if (segmentNoHeader == 0)
System.out.printf ("Zero segment header in %s seq %d%n", name, seq);
else if (segmentNoBody != segmentNoHeader)
2015-06-01 09:35:51 +00:00
System.out.println ("Segment number mismatch : " + segmentNoBody + " / "
2016-08-02 10:37:27 +00:00
+ segmentNoHeader);
2015-06-01 09:35:51 +00:00
}
else
{
2016-08-03 11:32:47 +00:00
// System.out.printf ("Error in blocksize %,d > %,d for pascal disk%n", offset,
// fullBuffer.length);
2015-06-01 09:35:51 +00:00
throw new FileFormatException ("Error in PascalSegment");
}
}
private void buildProcedureList ()
{
procedures = new ArrayList<PascalProcedure> (totalProcedures);
for (int i = 1; i <= totalProcedures; i++)
procedures.add (new PascalProcedure (buffer, i));
}
public String toText ()
{
2016-08-02 10:37:27 +00:00
return String
2016-08-03 11:32:47 +00:00
.format (" %2d %02X %04X %,6d %-8s %-15s %3d %02X %d %d %d %d",
2016-08-02 10:37:27 +00:00
slot, blockNo, size, size, name, SegmentKind[segKind], textAddress,
segmentNoHeader, machineType, version, intrinsSegs1, intrinsSegs2);
2015-06-01 09:35:51 +00:00
}
@Override
public String getText ()
{
if (procedures == null)
buildProcedureList ();
StringBuilder text = new StringBuilder ();
String title = "Segment - " + name;
text.append (title + "\n"
2016-08-02 10:37:27 +00:00
+ "===============================".substring (0, title.length ()) + "\n\n");
2016-08-03 11:32:47 +00:00
String warning = segmentNoBody == segmentNoHeader ? ""
: String.format (" (%02X in header)", segmentNoHeader);
2015-06-01 09:35:51 +00:00
text.append (String.format ("Address........ %02X%n", blockNo));
text.append (String.format ("Length......... %04X%n", buffer.length));
text.append (String.format ("Machine type... %d%n", machineType));
text.append (String.format ("Version........ %d%n", version));
2016-08-03 11:32:47 +00:00
text.append (String.format ("Segment........ %02X%s%n", segmentNoBody, warning));
2015-06-01 09:35:51 +00:00
text.append (String.format ("Total procs.... %d%n", procedures.size ()));
text.append ("\nProcedure Dictionary\n====================\n\n");
int len = procedures.size () * 2 + 2;
if (false)
text.append (HexFormatter.format (buffer, buffer.length - len, len) + "\n\n");
text.append ("Proc Offset Lvl Entry Exit Parm Data Proc header\n");
text.append ("---- ------ --- ----- ---- ---- ---- --------------------\n");
for (PascalProcedure procedure : procedures)
{
if (procedure.valid)
{
int address = size - procedure.slot * 2 - 2;
2016-08-03 11:32:47 +00:00
text.append (String
.format (" %3d %04X %3d %04X %04X %04X %04X (%04X - %04X = %04X)%n",
procedure.procedureNo, procedure.offset, procedure.procLevel,
procedure.codeStart, procedure.codeEnd, procedure.parmSize,
procedure.dataSize, address, procedure.offset,
procedure.procOffset));
2015-06-01 09:35:51 +00:00
}
else
2016-08-03 11:32:47 +00:00
text.append (String.format (" %3d %04X%n", procedure.slot, procedure.offset));
2015-06-01 09:35:51 +00:00
}
text.append ("\nStrings\n=======\n");
for (PascalProcedure pp : procedures)
{
List<PascalCodeStatement> strings = pp.extractStrings ();
for (PascalCodeStatement cs : strings)
2016-08-02 10:37:27 +00:00
text.append (String.format (" %2d %04X %s%n", pp.procedureNo, cs.ptr,
cs.text));
2015-06-01 09:35:51 +00:00
}
for (PascalProcedure procedure : procedures)
if (procedure.valid)
text.append (procedure);
return text.toString ();
}
}