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

82 lines
3.3 KiB
C#
Raw 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/>.
//
// ----------------------------------------------------------------------------
2018-12-29 17:34:38 +00:00
// Copyright © 2018-2019 Michael Drüing
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.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.Enums;
using Aaru.CommonTypes.Interfaces;
using Aaru.CommonTypes.Structs;
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
/// <summary>Manages floppy disk images created with d2f by DataPackRat</summary>
[SuppressMessage("ReSharper", "NotAccessedField.Local"), SuppressMessage("ReSharper", "InconsistentNaming")]
public sealed partial class WCDiskImage : IMediaImage
{
2022-03-07 07:36:44 +00:00
readonly Dictionary<(int cylinder, int head, int sector), bool> _badSectors = new();
2022-03-06 13:29:38 +00:00
/// <summary>The file header after the image has been opened</summary>
FileHeader _fileHeader;
ImageInfo _imageInfo;
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();
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
{
ReadableSectorTags = new List<SectorTagType>(),
ReadableMediaTags = new List<MediaTagType>(),
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
};
}