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

92 lines
3.5 KiB
C#
Raw Permalink 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/>.
//
// ----------------------------------------------------------------------------
2024-12-19 10:45:18 +00:00
// Copyright © 2011-2025 Natalia Portillo
// ****************************************************************************/
using System.IO;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Interfaces;
using Aaru.Helpers;
using Aaru.Logging;
namespace Aaru.Images;
2022-03-06 13:29:38 +00:00
public sealed partial class MaxiDisk
{
2023-10-03 23:34:59 +01:00
#region IWritableImage Members
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();
2024-05-01 04:05:22 +01:00
if(stream.Length < 8) return false;
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);
2025-08-17 06:11:22 +01:00
AaruLogging.Debug(MODULE_NAME, "tmp_header.unknown = {0}", tmpHeader.unknown);
AaruLogging.Debug(MODULE_NAME, "tmp_header.diskType = {0}", tmpHeader.diskType);
AaruLogging.Debug(MODULE_NAME, "tmp_header.heads = {0}", tmpHeader.heads);
AaruLogging.Debug(MODULE_NAME, "tmp_header.cylinders = {0}", tmpHeader.cylinders);
AaruLogging.Debug(MODULE_NAME, "tmp_header.bytesPerSector = {0}", tmpHeader.bytesPerSector);
2020-02-29 18:03:35 +00:00
2025-08-17 06:11:22 +01:00
AaruLogging.Debug(MODULE_NAME, "tmp_header.sectorsPerTrack = {0}", tmpHeader.sectorsPerTrack);
2020-02-29 18:03:35 +00:00
2025-08-17 06:11:22 +01:00
AaruLogging.Debug(MODULE_NAME, "tmp_header.unknown2 = {0}", tmpHeader.unknown2);
AaruLogging.Debug(MODULE_NAME, "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
2024-05-01 04:05:22 +01:00
if(tmpHeader.heads is 0 or > 2) return false;
2022-03-06 13:29:38 +00:00
// No floppies with more than this?
2024-05-01 04:05:22 +01:00
if(tmpHeader.cylinders > 90) return false;
2022-03-06 13:29:38 +00:00
// Maximum supported bps is 16384
2024-05-01 04:05:22 +01:00
if(tmpHeader.bytesPerSector > 7) return false;
int expectedFileSize = tmpHeader.heads *
tmpHeader.cylinders *
tmpHeader.sectorsPerTrack *
(128 << tmpHeader.bytesPerSector) +
8;
2022-03-06 13:29:38 +00:00
return expectedFileSize == stream.Length;
}
2023-10-03 23:34:59 +01:00
#endregion
}