Files
Aaru/DiscImageChef.Filesystems/AODOS.cs

138 lines
5.7 KiB
C#
Raw Normal View History

2017-08-25 01:58:22 +01:00
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : AODOS.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Commodore file system plugin.
//
// --[ Description ] ----------------------------------------------------------
//
// Identifies the AO-DOS file system and shows information.
//
// --[ 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 © 2011-2019 Natalia Portillo
2017-08-25 01:58:22 +01:00
// ****************************************************************************/
using System;
2017-12-19 19:33:46 +00:00
using System.Linq;
2017-08-25 01:58:22 +01:00
using System.Runtime.InteropServices;
using System.Text;
using DiscImageChef.CommonTypes;
using DiscImageChef.CommonTypes.Interfaces;
2017-12-21 14:30:38 +00:00
using Schemas;
2017-08-25 01:58:22 +01:00
namespace DiscImageChef.Filesystems
{
// Information has been extracted looking at available disk images
// This may be missing fields, or not, I don't know russian so any help is appreciated
public class AODOS : IFilesystem
2017-08-25 01:58:22 +01:00
{
2018-06-22 08:08:38 +01:00
readonly byte[] AODOSIdentifier = {0x20, 0x41, 0x4F, 0x2D, 0x44, 0x4F, 0x53, 0x20};
public FileSystemType XmlFsType { get; private set; }
public string Name => "Alexander Osipov DOS file system";
public Guid Id => new Guid("668E5039-9DDD-442A-BE1B-A315D6E38E26");
public Encoding Encoding { get; private set; }
2018-08-29 22:15:43 +01:00
public string Author => "Natalia Portillo";
public bool Identify(IMediaImage imagePlugin, Partition partition)
2017-08-25 01:58:22 +01:00
{
// Does AO-DOS support hard disks?
2017-12-19 20:33:03 +00:00
if(partition.Start > 0) return false;
2017-08-25 01:58:22 +01:00
// How is it really?
if(imagePlugin.Info.SectorSize != 512) return false;
2017-08-25 01:58:22 +01:00
// Does AO-DOS support any other kind of disk?
if(imagePlugin.Info.Sectors != 800 && imagePlugin.Info.Sectors != 1600) return false;
2017-08-25 01:58:22 +01:00
2018-06-22 08:08:38 +01:00
byte[] sector = imagePlugin.ReadSector(0);
AODOS_BootBlock bb = Helpers.Marshal.ByteArrayToStructureLittleEndian<AODOS_BootBlock>(sector);
2017-08-25 01:58:22 +01:00
return bb.identifier.SequenceEqual(AODOSIdentifier);
}
2017-12-26 08:01:40 +00:00
public void GetInformation(IMediaImage imagePlugin, Partition partition, out string information,
2018-06-22 08:08:38 +01:00
Encoding encoding)
2017-08-25 01:58:22 +01:00
{
2017-12-26 08:01:40 +00:00
Encoding = Encoding.GetEncoding("koi8-r");
2018-06-22 08:08:38 +01:00
byte[] sector = imagePlugin.ReadSector(0);
AODOS_BootBlock bb = Helpers.Marshal.ByteArrayToStructureLittleEndian<AODOS_BootBlock>(sector);
2017-08-25 01:58:22 +01:00
StringBuilder sbInformation = new StringBuilder();
sbInformation.AppendLine("Alexander Osipov DOS file system");
2017-12-26 08:01:40 +00:00
XmlFsType = new FileSystemType
2017-08-25 01:58:22 +01:00
{
2018-06-22 08:08:38 +01:00
Type = "Alexander Osipov DOS file system",
Clusters = (long)imagePlugin.Info.Sectors,
ClusterSize = (int)imagePlugin.Info.SectorSize,
Files = bb.files,
FilesSpecified = true,
FreeClusters = (long)(imagePlugin.Info.Sectors - bb.usedSectors),
2017-08-25 01:58:22 +01:00
FreeClustersSpecified = true,
2018-06-22 08:08:38 +01:00
VolumeName = StringHandlers.SpacePaddedToString(bb.volumeLabel, Encoding),
Bootable = true
2017-08-25 01:58:22 +01:00
};
sbInformation.AppendFormat("{0} files on volume", bb.files).AppendLine();
sbInformation.AppendFormat("{0} used sectors on volume", bb.usedSectors).AppendLine();
2017-12-26 08:01:40 +00:00
sbInformation.AppendFormat("Disk name: {0}", StringHandlers.CToString(bb.volumeLabel, Encoding))
2017-12-19 20:33:03 +00:00
.AppendLine();
2017-08-25 01:58:22 +01:00
information = sbInformation.ToString();
}
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct AODOS_BootBlock
{
/// <summary>
/// A NOP opcode
/// </summary>
public byte nop;
/// <summary>
/// A branch to real bootloader
/// </summary>
public ushort branch;
/// <summary>
/// Unused
/// </summary>
public byte unused;
/// <summary>
/// " AO-DOS "
/// </summary>
2018-06-22 08:08:38 +01:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)]
public byte[] identifier;
/// <summary>
/// Volume label
/// </summary>
2018-06-22 08:08:38 +01:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 12)]
public byte[] volumeLabel;
/// <summary>
/// How many files are present in disk
/// </summary>
public ushort files;
/// <summary>
/// How many sectors are used
/// </summary>
public ushort usedSectors;
}
2017-08-25 01:58:22 +01:00
}
}