Files
Aaru/Aaru.Images/Virtual98/Read.cs

113 lines
4.2 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 Virtual98 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/>.
//
// ----------------------------------------------------------------------------
2022-02-18 10:02:53 +00:00
// Copyright © 2011-2022 Natalia Portillo
// ****************************************************************************/
2022-03-07 07:36:44 +00:00
namespace Aaru.DiscImages;
using System.IO;
using System.Text;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Interfaces;
using Aaru.Helpers;
2022-03-06 13:29:38 +00:00
public sealed partial class Virtual98
{
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber Open(IFilter imageFilter)
{
2022-03-06 13:29:38 +00:00
Stream stream = imageFilter.GetDataForkStream();
stream.Seek(0, SeekOrigin.Begin);
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
// Even if comment is supposedly ASCII, I'm pretty sure most emulators allow Shift-JIS to be used :p
var shiftjis = Encoding.GetEncoding("shift_jis");
2022-03-06 13:29:38 +00:00
if(stream.Length < Marshal.SizeOf<Virtual98Header>())
return ErrorNumber.InvalidArgument;
2022-03-07 07:36:44 +00:00
var hdrB = new byte[Marshal.SizeOf<Virtual98Header>()];
stream.EnsureRead(hdrB, 0, hdrB.Length);
2022-03-06 13:29:38 +00:00
_v98Hdr = Marshal.ByteArrayToStructureLittleEndian<Virtual98Header>(hdrB);
2022-03-06 13:29:38 +00:00
_imageInfo.MediaType = MediaType.GENERIC_HDD;
2022-03-06 13:29:38 +00:00
_imageInfo.ImageSize = (ulong)(stream.Length - 0xDC);
_imageInfo.CreationTime = imageFilter.CreationTime;
_imageInfo.LastModificationTime = imageFilter.LastWriteTime;
_imageInfo.MediaTitle = Path.GetFileNameWithoutExtension(imageFilter.Filename);
_imageInfo.Sectors = _v98Hdr.totals;
_imageInfo.XmlMediaType = XmlMediaType.BlockMedia;
_imageInfo.SectorSize = _v98Hdr.sectorsize;
_imageInfo.Cylinders = _v98Hdr.cylinders;
_imageInfo.Heads = _v98Hdr.surfaces;
_imageInfo.SectorsPerTrack = _v98Hdr.sectors;
_imageInfo.Comments = StringHandlers.CToString(_v98Hdr.comment, shiftjis);
2022-03-06 13:29:38 +00:00
_nhdImageFilter = imageFilter;
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber ReadSector(ulong sectorAddress, out byte[] buffer) => ReadSectors(sectorAddress, 1, out buffer);
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber ReadSectors(ulong sectorAddress, uint length, out byte[] buffer)
{
buffer = null;
2022-03-07 07:36:44 +00:00
2022-03-06 13:29:38 +00:00
if(sectorAddress > _imageInfo.Sectors - 1)
return ErrorNumber.OutOfRange;
2022-03-06 13:29:38 +00:00
if(sectorAddress + length > _imageInfo.Sectors)
return ErrorNumber.OutOfRange;
2022-03-06 13:29:38 +00:00
buffer = new byte[length * _imageInfo.SectorSize];
2022-03-06 13:29:38 +00:00
Stream stream = _nhdImageFilter.GetDataForkStream();
2022-03-06 13:29:38 +00:00
// V98 are lazy allocated
2022-03-07 07:36:44 +00:00
if((long)(0xDC + sectorAddress * _imageInfo.SectorSize) >= stream.Length)
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
2022-03-07 07:36:44 +00:00
stream.Seek((long)(0xDC + sectorAddress * _imageInfo.SectorSize), SeekOrigin.Begin);
2022-03-07 07:36:44 +00:00
var toRead = (int)(length * _imageInfo.SectorSize);
2022-03-06 13:29:38 +00:00
if(toRead + stream.Position > stream.Length)
toRead = (int)(stream.Length - stream.Position);
stream.EnsureRead(buffer, 0, toRead);
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
}