// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : AppleDOS.cs // Author(s) : Natalia Portillo // // Component : Apple DOS filesystem plugin. // // --[ Description ] ---------------------------------------------------------- // // Constructors and common variables for the Apple DOS filesystem plugin. // // --[ 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 . // // ---------------------------------------------------------------------------- // Copyright © 2011-2018 Natalia Portillo // ****************************************************************************/ using System; using System.Collections.Generic; using Claunia.Encoding; using DiscImageChef.CommonTypes; using DiscImageChef.DiscImages; using Encoding = System.Text.Encoding; namespace DiscImageChef.Filesystems.AppleDOS { public partial class AppleDOS : Filesystem { bool mounted; bool debug; readonly ImagePlugin device; #region Caches /// Caches track/sector lists Dictionary extentCache; /// Caches files Dictionary fileCache; /// Caches catalog Dictionary catalogCache; /// Caches file size Dictionary fileSizeCache; /// Caches VTOC byte[] vtocBlocks; /// Caches catalog byte[] catalogBlocks; /// Caches boot code byte[] bootBlocks; /// Caches file type Dictionary fileTypeCache; /// Caches locked files List lockedFiles; #endregion Caches Vtoc vtoc; ulong start; int sectorsPerTrack; ulong totalFileEntries; bool track1UsedByFiles; bool track2UsedByFiles; int usedSectors; public AppleDOS() { Name = "Apple DOS File System"; PluginUUID = new Guid("8658A1E9-B2E7-4BCC-9638-157A31B0A700\n"); CurrentEncoding = new LisaRoman(); } public AppleDOS(Encoding encoding) { Name = "Apple DOS File System"; PluginUUID = new Guid("8658A1E9-B2E7-4BCC-9638-157A31B0A700\n"); // TODO: Until Apple ][ encoding is implemented CurrentEncoding = new LisaRoman(); } public AppleDOS(ImagePlugin imagePlugin, Partition partition, Encoding encoding) { device = imagePlugin; start = partition.Start; Name = "Apple DOS File System"; PluginUUID = new Guid("8658A1E9-B2E7-4BCC-9638-157A31B0A700\n"); // TODO: Until Apple ][ encoding is implemented CurrentEncoding = new LisaRoman(); } } }