Files
Aaru/Aaru.Images/WCDiskImage/WCDiskImage.cs

84 lines
3.4 KiB
C#
Raw Permalink Normal View History

// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : WCDiskImage.cs
// Author(s) : Michael Drüing <michael@drueing.de>
//
// Component : Disk image plugins.
//
// --[ Description ] ----------------------------------------------------------
//
// Manages floppy disk images created with d2f by DataPackRat
//
// --[ 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 © 2018-2025 Michael Drüing
// Copyright © 2011-2025 Natalia Portillo
// ****************************************************************************/
using System.Collections.Generic;
2020-07-20 07:47:12 +01:00
using System.Diagnostics.CodeAnalysis;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Interfaces;
using Aaru.CommonTypes.Structs;
namespace Aaru.Images;
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
/// <summary>Manages floppy disk images created with d2f by DataPackRat</summary>
2023-10-03 23:34:59 +01:00
[SuppressMessage("ReSharper", "NotAccessedField.Local")]
[SuppressMessage("ReSharper", "InconsistentNaming")]
2023-10-05 01:05:23 +01:00
[SuppressMessage("ReSharper", "UnusedType.Global")]
2022-03-06 13:29:38 +00:00
public sealed partial class WCDiskImage : IMediaImage
{
2023-10-03 23:34:59 +01:00
const string MODULE_NAME = "d2f plugin";
2022-03-07 07:36:44 +00:00
readonly Dictionary<(int cylinder, int head, int sector), bool> _badSectors = new();
2018-12-31 13:17:27 +00:00
2022-03-06 13:29:38 +00:00
/* the sectors are cached here */
2022-03-07 07:36:44 +00:00
readonly Dictionary<(int cylinder, int head, int sector), byte[]> _sectorCache = new();
2023-10-03 23:34:59 +01:00
/// <summary>The file header after the image has been opened</summary>
FileHeader _fileHeader;
ImageInfo _imageInfo;
2022-03-06 13:29:38 +00:00
/// <summary>The ImageFilter we're reading from, after the file has been opened</summary>
IFilter _wcImageFilter;
2022-03-06 13:29:38 +00:00
/// <summary>Manages floppy disk images created with d2f by DataPackRat</summary>
public WCDiskImage() => _imageInfo = new ImageInfo
{
2024-05-01 04:39:38 +01:00
ReadableSectorTags = [],
ReadableMediaTags = [],
2022-03-06 13:29:38 +00:00
HasPartitions = false,
HasSessions = false,
Version = null,
Application = null,
ApplicationVersion = null,
Creator = null,
Comments = null,
MediaManufacturer = null,
MediaModel = null,
MediaSerialNumber = null,
MediaBarcode = null,
MediaPartNumber = null,
MediaSequence = 0,
LastMediaSequence = 0,
DriveManufacturer = null,
DriveModel = null,
DriveSerialNumber = null,
DriveFirmwareRevision = null
};
}