Files
Aaru/Aaru.Images/AppleNIB/Read.cs

281 lines
11 KiB
C#
Raw Normal View History

// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Read.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Disk image plugins.
//
// --[ Description ] ----------------------------------------------------------
//
// Reads Apple nibbelized disk images.
//
// --[ License ] --------------------------------------------------------------
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
2020-12-31 23:08:23 +00:00
// Copyright © 2011-2021 Natalia Portillo
// ****************************************************************************/
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Exceptions;
using Aaru.CommonTypes.Interfaces;
using Aaru.Console;
using Aaru.Decoders.Floppy;
2020-02-27 00:33:26 +00:00
namespace Aaru.DiscImages
{
2020-07-22 13:20:25 +01:00
public sealed partial class AppleNib
2017-12-19 20:33:03 +00:00
{
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public ErrorNumber Open(IFilter imageFilter)
2017-12-19 20:33:03 +00:00
{
Stream stream = imageFilter.GetDataForkStream();
stream.Seek(0, SeekOrigin.Begin);
2020-02-29 18:03:35 +00:00
if(stream.Length < 512)
return ErrorNumber.InvalidArgument;
2017-12-19 20:33:03 +00:00
byte[] buffer = new byte[stream.Length];
stream.Read(buffer, 0, buffer.Length);
2020-02-27 23:48:41 +00:00
AaruConsole.DebugWriteLine("Apple NIB Plugin", "Decoding whole image");
2017-12-19 20:33:03 +00:00
List<Apple2.RawTrack> tracks = Apple2.MarshalDisk(buffer);
2020-02-27 23:48:41 +00:00
AaruConsole.DebugWriteLine("Apple NIB Plugin", "Got {0} tracks", tracks.Count);
2017-12-19 20:33:03 +00:00
Dictionary<ulong, Apple2.RawSector> rawSectors = new();
2017-12-19 20:33:03 +00:00
int spt = 0;
2017-12-19 20:33:03 +00:00
bool allTracksEqual = true;
2020-02-29 18:03:35 +00:00
2018-06-22 08:08:38 +01:00
for(int i = 1; i < tracks.Count; i++)
allTracksEqual &= tracks[i - 1].sectors.Length == tracks[i].sectors.Length;
2017-12-19 20:33:03 +00:00
2020-02-29 18:03:35 +00:00
if(allTracksEqual)
spt = tracks[0].sectors.Length;
2017-12-19 20:33:03 +00:00
bool skewed = spt == 16;
2020-07-20 21:11:32 +01:00
ulong[] skewing = _proDosSkewing;
2017-12-19 20:33:03 +00:00
// Detect ProDOS skewed disks
if(skewed)
2021-08-17 21:23:10 +01:00
foreach(bool isDos in from sector in tracks[17].sectors
where sector.addressField.sector.SequenceEqual(new byte[]
{
170, 170
}) select Apple2.DecodeSector(sector) into sector0 where sector0 != null
select sector0[0x01] == 17 && sector0[0x02] < 16 && sector0[0x27] <= 122 &&
sector0[0x34] == 35 && sector0[0x35] == 16 && sector0[0x36] == 0 &&
sector0[0x37] == 1)
2017-12-19 20:33:03 +00:00
{
2020-02-29 18:03:35 +00:00
if(isDos)
2020-07-20 21:11:32 +01:00
skewing = _dosSkewing;
2020-02-27 23:48:41 +00:00
AaruConsole.DebugWriteLine("Apple NIB Plugin", "Using {0}DOS skewing",
2020-07-20 21:11:32 +01:00
skewing.SequenceEqual(_dosSkewing) ? "" : "Pro");
2017-12-19 20:33:03 +00:00
}
for(int i = 0; i < tracks.Count; i++)
foreach(Apple2.RawSector sector in tracks[i].sectors)
if(skewed && spt != 0)
{
ulong sectorNo = (ulong)((((sector.addressField.sector[0] & 0x55) << 1) |
2018-06-22 08:08:38 +01:00
(sector.addressField.sector[1] & 0x55)) & 0xFF);
2020-02-29 18:03:35 +00:00
2020-02-27 23:48:41 +00:00
AaruConsole.DebugWriteLine("Apple NIB Plugin",
2020-02-29 18:03:35 +00:00
"Hardware sector {0} of track {1} goes to logical sector {2}",
sectorNo, i, skewing[sectorNo] + (ulong)(i * spt));
2018-06-22 08:08:38 +01:00
rawSectors.Add(skewing[sectorNo] + (ulong)(i * spt), sector);
2020-07-20 21:11:32 +01:00
_imageInfo.Sectors++;
2017-12-19 20:33:03 +00:00
}
else
{
2020-07-20 21:11:32 +01:00
rawSectors.Add(_imageInfo.Sectors, sector);
_imageInfo.Sectors++;
2017-12-19 20:33:03 +00:00
}
2020-07-20 21:11:32 +01:00
AaruConsole.DebugWriteLine("Apple NIB Plugin", "Got {0} sectors", _imageInfo.Sectors);
2017-12-19 20:33:03 +00:00
2020-02-27 23:48:41 +00:00
AaruConsole.DebugWriteLine("Apple NIB Plugin", "Cooking sectors");
2017-12-19 20:33:03 +00:00
2020-07-20 21:11:32 +01:00
_longSectors = new Dictionary<ulong, byte[]>();
_cookedSectors = new Dictionary<ulong, byte[]>();
_addressFields = new Dictionary<ulong, byte[]>();
2017-12-19 20:33:03 +00:00
foreach(KeyValuePair<ulong, Apple2.RawSector> kvp in rawSectors)
{
byte[] cooked = Apple2.DecodeSector(kvp.Value);
byte[] raw = Apple2.MarshalSector(kvp.Value);
byte[] addr = Apple2.MarshalAddressField(kvp.Value.addressField);
2020-07-20 21:11:32 +01:00
_longSectors.Add(kvp.Key, raw);
_cookedSectors.Add(kvp.Key, cooked);
_addressFields.Add(kvp.Key, addr);
2017-12-19 20:33:03 +00:00
}
_imageInfo.ImageSize = (ulong)imageFilter.DataForkLength;
_imageInfo.CreationTime = imageFilter.CreationTime;
_imageInfo.LastModificationTime = imageFilter.LastWriteTime;
_imageInfo.MediaTitle = Path.GetFileNameWithoutExtension(imageFilter.Filename);
2020-02-29 18:03:35 +00:00
2020-07-20 21:11:32 +01:00
if(_imageInfo.Sectors == 455)
_imageInfo.MediaType = MediaType.Apple32SS;
else if(_imageInfo.Sectors == 560)
_imageInfo.MediaType = MediaType.Apple33SS;
2020-02-29 18:03:35 +00:00
else
2020-07-20 21:11:32 +01:00
_imageInfo.MediaType = MediaType.Unknown;
2020-02-29 18:03:35 +00:00
2020-07-20 21:11:32 +01:00
_imageInfo.SectorSize = 256;
_imageInfo.XmlMediaType = XmlMediaType.BlockMedia;
_imageInfo.ReadableSectorTags.Add(SectorTagType.FloppyAddressMark);
2020-02-29 18:03:35 +00:00
2020-07-20 21:11:32 +01:00
switch(_imageInfo.MediaType)
2017-12-19 20:33:03 +00:00
{
case MediaType.Apple32SS:
2020-07-20 21:11:32 +01:00
_imageInfo.Cylinders = 35;
_imageInfo.Heads = 1;
_imageInfo.SectorsPerTrack = 13;
2020-02-29 18:03:35 +00:00
2017-12-19 20:33:03 +00:00
break;
case MediaType.Apple33SS:
2020-07-20 21:11:32 +01:00
_imageInfo.Cylinders = 35;
_imageInfo.Heads = 1;
_imageInfo.SectorsPerTrack = 16;
2020-02-29 18:03:35 +00:00
2017-12-19 20:33:03 +00:00
break;
}
return ErrorNumber.NoError;
2017-12-19 20:33:03 +00:00
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public ErrorNumber ReadSector(ulong sectorAddress, out byte[] buffer)
2017-12-19 20:33:03 +00:00
{
buffer = null;
2017-12-19 20:33:03 +00:00
if(sectorAddress > _imageInfo.Sectors - 1)
return ErrorNumber.OutOfRange;
2020-02-29 18:03:35 +00:00
return _cookedSectors.TryGetValue(sectorAddress, out buffer) ? ErrorNumber.NoError
: ErrorNumber.SectorNotFound;
2017-12-19 20:33:03 +00:00
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public ErrorNumber ReadSectors(ulong sectorAddress, uint length, out byte[] buffer)
2017-12-19 20:33:03 +00:00
{
buffer = null;
2020-07-20 21:11:32 +01:00
if(sectorAddress > _imageInfo.Sectors - 1)
return ErrorNumber.OutOfRange;
2017-12-19 20:33:03 +00:00
2020-07-20 21:11:32 +01:00
if(sectorAddress + length > _imageInfo.Sectors)
return ErrorNumber.OutOfRange;
2017-12-19 20:33:03 +00:00
2020-02-29 18:03:35 +00:00
var ms = new MemoryStream();
2017-12-19 20:33:03 +00:00
for(uint i = 0; i < length; i++)
{
ErrorNumber errno = ReadSector(sectorAddress + i, out byte[] sector);
if(errno != ErrorNumber.NoError)
return errno;
2017-12-19 20:33:03 +00:00
ms.Write(sector, 0, sector.Length);
}
buffer = ms.ToArray();
return ErrorNumber.NoError;
2017-12-19 20:33:03 +00:00
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public byte[] ReadSectorTag(ulong sectorAddress, SectorTagType tag)
2017-12-19 20:33:03 +00:00
{
2020-07-20 21:11:32 +01:00
if(sectorAddress > _imageInfo.Sectors - 1)
2017-12-19 20:33:03 +00:00
throw new ArgumentOutOfRangeException(nameof(sectorAddress),
$"Sector address {sectorAddress} not found");
2017-12-19 20:33:03 +00:00
if(tag != SectorTagType.FloppyAddressMark)
throw new FeatureUnsupportedImageException($"Tag {tag} not supported by image format");
2017-12-19 20:33:03 +00:00
2020-07-20 21:11:32 +01:00
_addressFields.TryGetValue(sectorAddress, out byte[] temp);
2020-02-29 18:03:35 +00:00
2017-12-19 20:33:03 +00:00
return temp;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public byte[] ReadSectorsTag(ulong sectorAddress, uint length, SectorTagType tag)
2017-12-19 20:33:03 +00:00
{
2020-07-20 21:11:32 +01:00
if(sectorAddress > _imageInfo.Sectors - 1)
2017-12-19 20:33:03 +00:00
throw new ArgumentOutOfRangeException(nameof(sectorAddress),
$"Sector address {sectorAddress} not found");
2017-12-19 20:33:03 +00:00
2020-07-20 21:11:32 +01:00
if(sectorAddress + length > _imageInfo.Sectors)
2017-12-19 20:33:03 +00:00
throw new ArgumentOutOfRangeException(nameof(length), "Requested more sectors than available");
if(tag != SectorTagType.FloppyAddressMark)
throw new FeatureUnsupportedImageException($"Tag {tag} not supported by image format");
2017-12-19 20:33:03 +00:00
2020-02-29 18:03:35 +00:00
var ms = new MemoryStream();
2017-12-19 20:33:03 +00:00
for(uint i = 0; i < length; i++)
{
byte[] sector = ReadSectorTag(sectorAddress + i, tag);
ms.Write(sector, 0, sector.Length);
}
return ms.ToArray();
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public byte[] ReadSectorLong(ulong sectorAddress)
2017-12-19 20:33:03 +00:00
{
2020-07-20 21:11:32 +01:00
if(sectorAddress > _imageInfo.Sectors - 1)
2017-12-19 20:33:03 +00:00
throw new ArgumentOutOfRangeException(nameof(sectorAddress),
$"Sector address {sectorAddress} not found");
2017-12-19 20:33:03 +00:00
2020-07-20 21:11:32 +01:00
_longSectors.TryGetValue(sectorAddress, out byte[] temp);
2020-02-29 18:03:35 +00:00
2017-12-19 20:33:03 +00:00
return temp;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public byte[] ReadSectorsLong(ulong sectorAddress, uint length)
2017-12-19 20:33:03 +00:00
{
2020-07-20 21:11:32 +01:00
if(sectorAddress > _imageInfo.Sectors - 1)
2017-12-19 20:33:03 +00:00
throw new ArgumentOutOfRangeException(nameof(sectorAddress),
$"Sector address {sectorAddress} not found");
2017-12-19 20:33:03 +00:00
2020-07-20 21:11:32 +01:00
if(sectorAddress + length > _imageInfo.Sectors)
2017-12-19 20:33:03 +00:00
throw new ArgumentOutOfRangeException(nameof(length), "Requested more sectors than available");
2020-02-29 18:03:35 +00:00
var ms = new MemoryStream();
2017-12-19 20:33:03 +00:00
for(uint i = 0; i < length; i++)
{
byte[] sector = ReadSectorLong(sectorAddress + i);
ms.Write(sector, 0, sector.Length);
}
return ms.ToArray();
}
}
}