Files
Aaru/Aaru.Images/MaxiDisk/Identify.cs

89 lines
3.5 KiB
C#
Raw Normal View History

// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Identify.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Disk image plugins.
//
// --[ Description ] ----------------------------------------------------------
//
// Identifies MaxiDisk 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;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Interfaces;
using Aaru.Console;
using Aaru.Helpers;
2022-03-06 13:29:38 +00:00
public sealed partial class MaxiDisk
{
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public bool Identify(IFilter imageFilter)
{
2022-03-06 13:29:38 +00:00
Stream stream = imageFilter.GetDataForkStream();
2022-03-06 13:29:38 +00:00
if(stream.Length < 8)
return false;
2022-03-07 07:36:44 +00:00
var buffer = new byte[8];
2022-03-06 13:29:38 +00:00
stream.Seek(0, SeekOrigin.Begin);
stream.EnsureRead(buffer, 0, buffer.Length);
2022-03-06 13:29:38 +00:00
Header tmpHeader = Marshal.ByteArrayToStructureLittleEndian<Header>(buffer);
2022-03-06 13:29:38 +00:00
AaruConsole.DebugWriteLine("MAXI Disk plugin", "tmp_header.unknown = {0}", tmpHeader.unknown);
AaruConsole.DebugWriteLine("MAXI Disk plugin", "tmp_header.diskType = {0}", tmpHeader.diskType);
AaruConsole.DebugWriteLine("MAXI Disk plugin", "tmp_header.heads = {0}", tmpHeader.heads);
AaruConsole.DebugWriteLine("MAXI Disk plugin", "tmp_header.cylinders = {0}", tmpHeader.cylinders);
AaruConsole.DebugWriteLine("MAXI Disk plugin", "tmp_header.bytesPerSector = {0}", tmpHeader.bytesPerSector);
2020-02-29 18:03:35 +00:00
2022-03-07 07:36:44 +00:00
AaruConsole.DebugWriteLine("MAXI Disk plugin", "tmp_header.sectorsPerTrack = {0}", tmpHeader.sectorsPerTrack);
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
AaruConsole.DebugWriteLine("MAXI Disk plugin", "tmp_header.unknown2 = {0}", tmpHeader.unknown2);
AaruConsole.DebugWriteLine("MAXI Disk plugin", "tmp_header.unknown3 = {0}", tmpHeader.unknown3);
2022-03-06 13:29:38 +00:00
// This is hardcoded
// But its possible values are unknown...
//if(tmp_header.diskType > 11)
// return false;
2022-03-06 13:29:38 +00:00
// Only floppies supported
2022-03-16 11:47:00 +00:00
if(tmpHeader.heads is 0 or > 2)
2022-03-06 13:29:38 +00:00
return false;
2022-03-06 13:29:38 +00:00
// No floppies with more than this?
if(tmpHeader.cylinders > 90)
return false;
2022-03-06 13:29:38 +00:00
// Maximum supported bps is 16384
if(tmpHeader.bytesPerSector > 7)
return false;
2022-03-07 07:36:44 +00:00
int expectedFileSize = tmpHeader.heads * tmpHeader.cylinders * tmpHeader.sectorsPerTrack *
(128 << tmpHeader.bytesPerSector) + 8;
2022-03-06 13:29:38 +00:00
return expectedFileSize == stream.Length;
}
}