2014-04-17 19:58:14 +00:00
|
|
|
/***************************************************************************
|
2014-06-15 23:39:34 +01:00
|
|
|
The Disc Image Chef
|
2014-04-17 19:58:14 +00:00
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Filename : ImagePlugin.cs
|
|
|
|
|
Version : 1.0
|
|
|
|
|
Author(s) : Natalia Portillo
|
|
|
|
|
|
|
|
|
|
Component : Disc image plugins
|
|
|
|
|
|
|
|
|
|
Revision : $Revision$
|
|
|
|
|
Last change by : $Author$
|
|
|
|
|
Date : $Date$
|
|
|
|
|
|
|
|
|
|
--[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Defines functions to be used by disc image plugins and several constants.
|
|
|
|
|
|
|
|
|
|
--[ License ] --------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
2014-04-19 18:23:00 +01:00
|
|
|
it under the terms of the GNU General Public License as
|
2014-04-17 19:58:14 +00:00
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program 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
|
2014-04-19 18:23:00 +01:00
|
|
|
GNU General Public License for more details.
|
2014-04-17 19:58:14 +00:00
|
|
|
|
2014-04-19 18:23:00 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
2014-04-17 19:58:14 +00:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
Copyright (C) 2011-2014 Claunia.com
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
//$Id$
|
|
|
|
|
|
2013-12-14 20:35:22 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2014-06-15 23:39:34 +01:00
|
|
|
namespace DiscImageChef.ImagePlugins
|
2013-12-14 20:35:22 +00:00
|
|
|
{
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Abstract class to implement disk image reading plugins.
|
|
|
|
|
/// </summary>
|
2013-12-14 20:35:22 +00:00
|
|
|
public abstract class ImagePlugin
|
|
|
|
|
{
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Plugin name.</summary>
|
2013-12-14 20:35:22 +00:00
|
|
|
public string Name;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Plugin UUID.</summary>
|
2013-12-14 20:35:22 +00:00
|
|
|
public Guid PluginUUID;
|
2014-08-24 17:46:29 +01:00
|
|
|
/// <summary>Image information</summary>
|
|
|
|
|
public ImageInfo ImageInfo;
|
2013-12-14 20:35:22 +00:00
|
|
|
|
2014-04-14 01:14:20 +00:00
|
|
|
protected ImagePlugin()
|
2013-12-14 23:02:04 +00:00
|
|
|
{
|
|
|
|
|
}
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-14 20:35:22 +00:00
|
|
|
// Basic image handling functions
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Identifies the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns><c>true</c>, if image was identified, <c>false</c> otherwise.</returns>
|
|
|
|
|
/// <param name="imagePath">Image path.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract bool IdentifyImage(string imagePath);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Opens the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns><c>true</c>, if image was opened, <c>false</c> otherwise.</returns>
|
|
|
|
|
/// <param name="imagePath">Image path.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract bool OpenImage(string imagePath);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Asks the disk image plugin if the image contains partitions
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns><c>true</c>, if the image contains partitions, <c>false</c> otherwise.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract bool ImageHasPartitions();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-14 20:35:22 +00:00
|
|
|
// Image size functions
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the size of the image, without headers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The image size.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract UInt64 GetImageSize();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the number of sectors in the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Sectors in image.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract UInt64 GetSectors();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns the size of the biggest sector, counting user data only.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Biggest sector size (user data only).</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract UInt32 GetSectorSize();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-14 20:35:22 +00:00
|
|
|
// Image reading functions
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads a disk tag.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Disk tag</returns>
|
|
|
|
|
/// <param name="tag">Tag type to read.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadDiskTag(DiskTagType tag);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads a sector's user data.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The sector's user data.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Sector address (LBA).</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSector(UInt64 sectorAddress);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads a sector's tag.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The sector's tag.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Sector address (LBA).</param>
|
|
|
|
|
/// <param name="tag">Tag type.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectorTag(UInt64 sectorAddress, SectorTagType tag);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads a sector's user data, relative to track.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The sector's user data.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Sector address (relative LBA).</param>
|
|
|
|
|
/// <param name="track">Track.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSector(UInt64 sectorAddress, UInt32 track);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads a sector's tag, relative to track.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The sector's tag.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Sector address (relative LBA).</param>
|
|
|
|
|
/// <param name="track">Track.</param>
|
|
|
|
|
/// <param name="tag">Tag type.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectorTag(UInt64 sectorAddress, UInt32 track, SectorTagType tag);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads user data from several sectors.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The sectors user data.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Starting sector address (LBA).</param>
|
|
|
|
|
/// <param name="length">How many sectors to read.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectors(UInt64 sectorAddress, UInt32 length);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads tag from several sectors.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The sectors tag.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Starting sector address (LBA).</param>
|
|
|
|
|
/// <param name="length">How many sectors to read.</param>
|
|
|
|
|
/// <param name="tag">Tag type.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectorsTag(UInt64 sectorAddress, UInt32 length, SectorTagType tag);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads user data from several sectors, relative to track.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The sectors user data.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Starting sector address (relative LBA).</param>
|
|
|
|
|
/// <param name="length">How many sectors to read.</param>
|
|
|
|
|
/// <param name="track">Track.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectors(UInt64 sectorAddress, UInt32 length, UInt32 track);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads tag from several sectors, relative to track.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The sectors tag.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Starting sector address (relative LBA).</param>
|
|
|
|
|
/// <param name="length">How many sectors to read.</param>
|
|
|
|
|
/// <param name="track">Track.</param>
|
|
|
|
|
/// <param name="tag">Tag type.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectorsTag(UInt64 sectorAddress, UInt32 length, UInt32 track, SectorTagType tag);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads a complete sector (user data + all tags).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The complete sector. Format depends on disk type.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Sector address (LBA).</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectorLong(UInt64 sectorAddress);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads a complete sector (user data + all tags), relative to track.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The complete sector. Format depends on disk type.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Sector address (relative LBA).</param>
|
|
|
|
|
/// <param name="track">Track.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectorLong(UInt64 sectorAddress, UInt32 track);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads several complete sector (user data + all tags).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The complete sectors. Format depends on disk type.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Starting sector address (LBA).</param>
|
|
|
|
|
/// <param name="length">How many sectors to read.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectorsLong(UInt64 sectorAddress, UInt32 length);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reads several complete sector (user data + all tags), relative to track.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The complete sectors. Format depends on disk type.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Starting sector address (relative LBA).</param>
|
|
|
|
|
/// <param name="length">How many sectors to read.</param>
|
|
|
|
|
/// <param name="track">Track.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract byte[] ReadSectorsLong(UInt64 sectorAddress, UInt32 length, UInt32 track);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-14 20:35:22 +00:00
|
|
|
// Image information functions
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image format.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The image format.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetImageFormat();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image version.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The image version.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetImageVersion();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the application that created the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The application that created the image.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetImageApplication();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the version of the application that created the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The version of the application that created the image.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetImageApplicationVersion();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image creator.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Who created the image.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetImageCreator();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image creation time.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The image creation time.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract DateTime GetImageCreationTime();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image last modification time.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The image last modification time.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract DateTime GetImageLastModificationTime();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name of the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The image name.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetImageName();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image comments.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The image comments.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetImageComments();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-14 20:35:22 +00:00
|
|
|
// Functions to get information from disk represented by image
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the disk manufacturer.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The disk manufacturer.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetDiskManufacturer();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the disk model.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The disk model.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetDiskModel();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the disk serial number.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The disk serial number.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetDiskSerialNumber();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the disk (or product) barcode.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The disk barcode.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetDiskBarcode();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the disk part number.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The disk part number.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetDiskPartNumber();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the type of the disk.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The disk type.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract DiskType GetDiskType();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the disk sequence.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The disk sequence, starting at 1.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract int GetDiskSequence();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the last disk in the sequence.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The last disk in the sequence.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract int GetLastDiskSequence();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-14 20:35:22 +00:00
|
|
|
// Functions to get information from drive used to create image
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the manufacturer of the drive used to create the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The drive manufacturer.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetDriveManufacturer();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the model of the drive used to create the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The drive model.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetDriveModel();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the serial number of the drive used to create the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The drive serial number.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract string GetDriveSerialNumber();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-14 20:35:22 +00:00
|
|
|
// Partitioning functions
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets an array partitions. Typically only useful for optical disc
|
|
|
|
|
/// images where each track and index means a different partition, as
|
|
|
|
|
/// reads can be relative to them.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The partitions.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract List<PartPlugins.Partition> GetPartitions();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the disc track extents (start, length).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The track extents.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract List<Track> GetTracks();
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the disc track extents for a specified session.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The track exents for that session.</returns>
|
|
|
|
|
/// <param name="session">Session.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract List<Track> GetSessionTracks(Session session);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the disc track extents for a specified session.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The track exents for that session.</returns>
|
|
|
|
|
/// <param name="session">Session.</param>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract List<Track> GetSessionTracks(UInt16 session);
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the sessions (optical discs only).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The sessions.</returns>
|
2014-04-14 01:14:20 +00:00
|
|
|
public abstract List<Session> GetSessions();
|
2014-08-25 05:00:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies a sector.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>True if correct, false if incorrect, null if uncheckable.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Sector address (LBA).</param>
|
|
|
|
|
public abstract bool? VerifySector(UInt64 sectorAddress);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies a sector, relative to track.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>True if correct, false if incorrect, null if uncheckable.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Sector address (relative LBA).</param>
|
|
|
|
|
/// <param name="track">Track.</param>
|
|
|
|
|
public abstract bool? VerifySector(UInt64 sectorAddress, UInt32 track);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies several sectors.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>True if all are correct, false if any is incorrect, null if any is uncheckable.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Starting sector address (LBA).</param>
|
|
|
|
|
/// <param name="length">How many sectors to read.</param>
|
|
|
|
|
/// <param name="FailingLBAs">List of incorrect sectors</param>
|
|
|
|
|
/// <param name="UnknownLBAs">List of uncheckable sectors</param>
|
|
|
|
|
public abstract bool? VerifySectors(UInt64 sectorAddress, UInt32 length, out List<UInt64> FailingLBAs, out List<UInt64> UnknownLBAs);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies several sectors, relative to track.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>True if all are correct, false if any is incorrect, null if any is uncheckable.</returns>
|
|
|
|
|
/// <param name="sectorAddress">Starting sector address (relative LBA).</param>
|
|
|
|
|
/// <param name="length">How many sectors to read.</param>
|
|
|
|
|
/// <param name="track">Track.</param>
|
|
|
|
|
/// <param name="FailingLBAs">List of incorrect sectors</param>
|
|
|
|
|
/// <param name="UnknownLBAs">List of uncheckable sectors</param>
|
|
|
|
|
public abstract bool? VerifySectors(UInt64 sectorAddress, UInt32 length, UInt32 track, out List<UInt64> FailingLBAs, out List<UInt64> UnknownLBAs);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies disk image internal checksum.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>True if correct, false if incorrect, null if there is no internal checksum available</returns>
|
|
|
|
|
public abstract bool? VerifyDiskImage();
|
|
|
|
|
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-16 01:04:17 +00:00
|
|
|
// CD flags bitmask
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>Track is quadraphonic.</summary>
|
2013-12-16 01:04:17 +00:00
|
|
|
public const byte CDFlagsFourChannel = 0x20;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Track is non-audio (data).</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public const byte CDFlagsDataTrack = 0x10;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Track is copy protected.</summary>
|
2013-12-16 01:04:17 +00:00
|
|
|
public const byte CDFlagsCopyPrevent = 0x08;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Track has pre-emphasis.</summary>
|
2013-12-16 01:04:17 +00:00
|
|
|
public const byte CDFlagsPreEmphasis = 0x04;
|
2013-12-14 20:35:22 +00:00
|
|
|
}
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-14 20:35:22 +00:00
|
|
|
// Disk types
|
|
|
|
|
public enum DiskType
|
|
|
|
|
{
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Unknown disk type</summary>
|
2013-12-16 01:04:17 +00:00
|
|
|
Unknown,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-16 01:04:17 +00:00
|
|
|
// Somewhat standard Compact Disc formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD Digital Audio (Red Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDDA,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD+G (Red Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDG,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD+EG (Red Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDEG,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD-i (Green Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDI,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD-ROM (Yellow Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDROM,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD-ROM XA (Yellow Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDROMXA,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD+ (Blue Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDPLUS,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD-MO (Orange Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDMO,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD-Recordable (Orange Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDR,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD-ReWritable (Orange Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDRW,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Mount-Rainier CD-RW</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDMRW,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Video CD (White Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
VCD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Super Video CD (White Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
SVCD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Photo CD (Beige Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
PCD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Super Audio CD (Scarlet Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
SACD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Double-Density CD-ROM (Purple Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DDCD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DD CD-R (Purple Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DDCDR,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DD CD-RW (Purple Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DDCDRW,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DTS audio CD (non-standard)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DTSCD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD-MIDI (Red Book)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CDMIDI,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Any unknown or standard violating CD</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CD,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-16 01:04:17 +00:00
|
|
|
// Standard DVD formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD-ROM (applies to DVD Video and DVD Audio)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DVDROM,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD-R</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DVDR,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD-RW</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DVDRW,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD+R</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DVDPR,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD+RW</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DVDPRW,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD+RW DL</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DVDPRWDL,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD-R DL</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DVDRDL,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD+R DL</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DVDPRDL,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD-RAM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DVDRAM,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-16 01:04:17 +00:00
|
|
|
// Standard HD-DVD formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>HD DVD-ROM (applies to HD DVD Video)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
HDDVDROM,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>HD DVD-RAM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
HDDVDRAM,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>HD DVD-R</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
HDDVDR,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>HD DVD-RW</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
HDDVDRW,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-16 01:04:17 +00:00
|
|
|
// Standard Blu-ray formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>BD-ROM (and BD Video)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
BDROM,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>BD-R</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
BDR,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>BD-RE</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
BDRE,
|
2014-06-07 23:32:59 +01:00
|
|
|
/// <summary>BD-R XL</summary>
|
|
|
|
|
BDRXL,
|
|
|
|
|
/// <summary>BD-RE XL</summary>
|
|
|
|
|
BDREXL,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-16 01:04:17 +00:00
|
|
|
// Rare or uncommon standards
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Enhanced Versatile Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
EVD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Forward Versatile Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
FVD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Holographic Versatile Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
HVD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>China Blue High Definition</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
CBHD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>High Definition Versatile Multilayer Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
HDVMD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Versatile Compact Disc High Density</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
VCDHD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Pioneer LaserDisc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
LD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Pioneer LaserDisc data</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
LDROM,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sony MiniDisc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
MD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sony Hi-MD</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
HiMD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Ultra Density Optical</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
UDO,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Stacked Volumetric Optical Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
SVOD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Five Dimensional disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
FDDVD,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2013-12-16 01:04:17 +00:00
|
|
|
// Propietary game discs
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sony PlayStation game CD</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
PS1CD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sony PlayStation 2 game CD</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
PS2CD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sony PlayStation 2 game DVD</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
PS2DVD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sony PlayStation 3 game DVD</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
PS3DVD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sony PlayStation 3 game Blu-ray</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
PS3BD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sony PlayStation 4 game Blu-ray</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
PS4BD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sony PlayStation Portable Universal Media Disc (ECMA-365)</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
UMD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Nintendo GameCube Optical Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
GOD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Nintendo Wii Optical Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
WOD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Nintendo Wii U Optical Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
WUOD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Microsoft X-box Game Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
XGD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Microsoft X-box 360 Game Disc</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
XGD2,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Microsoft X-box 360 Game Disc</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
XGD3,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Microsoft X-box One Game Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
XGD4,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sega MegaCD</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
MEGACD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sega Saturn disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
SATURNCD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sega/Yamaha Gigabyte Disc</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
GDROM,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sega/Yamaha recordable Gigabyte Disc}}</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
GDR,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
// Apple standard floppy format
|
|
|
|
|
/// <summary>5.25", SS, DD, 35 tracks, 13 spt, 256 bytes/sector, GCR</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
Apple32SS,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5.25", DS, DD, 35 tracks, 13 spt, 256 bytes/sector, GCR</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
Apple32DS,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5.25", SS, DD, 35 tracks, 16 spt, 256 bytes/sector, GCR</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
Apple33SS,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5.25", DS, DD, 35 tracks, 16 spt, 256 bytes/sector, GCR</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
Apple33DS,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", SS, DD, 80 tracks, 8 to 12 spt, 512 bytes/sector, GCR</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
AppleSonySS,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", DS, DD, 80 tracks, 8 to 12 spt, 512 bytes/sector, GCR</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
AppleSonyDS,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5.25", DS, ?D, ?? tracks, ?? spt, 512 bytes/sector, GCR, opposite side heads, aka Twiggy</summary>
|
2014-04-17 03:19:27 +00:00
|
|
|
AppleFileWare,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2014-04-15 21:04:04 +00:00
|
|
|
// IBM/Microsoft PC standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5.25", SS, DD, 40 tracks, 8 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_525_SS_DD_8,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5.25", SS, DD, 40 tracks, 9 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_525_SS_DD_9,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5.25", DS, DD, 40 tracks, 8 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_525_DS_DD_8,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5.25", DS, DD, 40 tracks, 9 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_525_DS_DD_9,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5.25", DS, HD, 80 tracks, 15 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_525_HD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", SS, DD, 80 tracks, 8 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_35_SS_DD_8,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", SS, DD, 80 tracks, 9 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_35_SS_DD_9,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", DS, DD, 80 tracks, 8 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_35_DS_DD_8,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", DS, DD, 80 tracks, 9 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_35_DS_DD_9,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", DS, HD, 80 tracks, 18 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_35_HD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", DS, ED, 80 tracks, 36 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DOS_35_ED,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2014-04-15 21:04:04 +00:00
|
|
|
// Microsoft non standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", DS, DD, 80 tracks, 21 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DMF,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3.5", DS, DD, 82 tracks, 21 spt, 512 bytes/sector, MFM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
DMF_82,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2014-04-15 21:04:04 +00:00
|
|
|
// IBM non standard floppy formats
|
|
|
|
|
XDF_525,
|
|
|
|
|
XDF_35,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2014-04-15 21:04:04 +00:00
|
|
|
// IBM standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", SS, SD, 32 tracks, 8 spt, 319 bytes/sector, FM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
IBM23FD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", SS, SD, 73 tracks, 26 spt, 128 bytes/sector, FM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
IBM33FD_128,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", SS, SD, 74 tracks, 15 spt, 256 bytes/sector, FM, track 0 = 26 sectors, 128 bytes/sector</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
IBM33FD_256,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", SS, SD, 74 tracks, 8 spt, 512 bytes/sector, FM, track 0 = 26 sectors, 128 bytes/sector</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
IBM33FD_512,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", DS, SD, 74 tracks, 26 spt, 128 bytes/sector, FM, track 0 = 26 sectors, 128 bytes/sector</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
IBM43FD_128,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", DS, SD, 74 tracks, 26 spt, 256 bytes/sector, FM, track 0 = 26 sectors, 128 bytes/sector</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
IBM43FD_256,
|
2014-06-07 23:32:59 +01:00
|
|
|
/// <summary>8", DS, DD, 74 tracks, 26 spt, 256 bytes/sector, MFM, track 0 side 0 = 26 sectors, 128 bytes/sector, track 0 side 1 = 26 sectors, 256 bytes/sector</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
IBM53FD_256,
|
2014-06-07 23:32:59 +01:00
|
|
|
/// <summary>8", DS, DD, 74 tracks, 15 spt, 512 bytes/sector, MFM, track 0 side 0 = 26 sectors, 128 bytes/sector, track 0 side 1 = 26 sectors, 256 bytes/sector</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
IBM53FD_512,
|
2014-06-07 23:32:59 +01:00
|
|
|
/// <summary>8", DS, DD, 74 tracks, 8 spt, 1024 bytes/sector, MFM, track 0 side 0 = 26 sectors, 128 bytes/sector, track 0 side 1 = 26 sectors, 256 bytes/sector</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
IBM53FD_1024,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
2014-04-15 21:04:04 +00:00
|
|
|
// DEC standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", SS, DD, 77 tracks, 26 spt, 128 bytes/sector, FM</summary>
|
2014-04-15 21:04:04 +00:00
|
|
|
RX01,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", SS, DD, 77 tracks, 26 spt, 256 bytes/sector, FM/MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
RX02,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
// Acorn standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", SS, SD, 40 tracks, 10 spt, 256 bytes/sector, FM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ACORN_525_SS_SD_40,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", SS, SD, 80 tracks, 10 spt, 256 bytes/sector, FM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ACORN_525_SS_SD_80,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", SS, DD, 40 tracks, 16 spt, 256 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ACORN_525_SS_DD_40,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", SS, DD, 80 tracks, 16 spt, 256 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ACORN_525_SS_DD_80,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, DD, 80 tracks, 16 spt, 256 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ACORN_525_DS_DD,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
// Atari standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", SS, SD, 40 tracks, 18 spt, 128 bytes/sector, FM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ATARI_525_SD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", SS, ED, 40 tracks, 26 spt, 128 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ATARI_525_ED,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", SS, DD, 40 tracks, 18 spt, 256 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ATARI_525_DD,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
// Commodore standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", DS, DD, 80 tracks, 10 spt, 512 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
CBM_35_DD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", DS, DD, 80 tracks, 11 spt, 512 bytes/sector, MFM (Amiga)</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
CBM_AMIGA_35_DD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", DS, HD, 80 tracks, 22 spt, 512 bytes/sector, MFM (Amiga)</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
CBM_AMIGA_35_HD,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
// NEC standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", SS, SD, 77 tracks, 26 spt, 128 bytes/sector, FM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
NEC_8_SD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", DS, DD, 77 tracks, 8 spt, 1024 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
NEC_8_DD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, HD, 80 tracks, 8 spt, 1024 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
NEC_525_HD,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", DS, HD, 80 tracks, 8 spt, 1024 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
NEC_35_HD_8,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", DS, HD, 80 tracks, 15 spt, 512 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
NEC_35_HD_15,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
// SHARP standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, DD, 77 tracks, 8 spt, 1024 bytes/sector, FM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
SHARP_525,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", DS, DD, 77 tracks, 8 spt, 1024 bytes/sector, FM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
SHARP_35,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
// ECMA standards
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, DD, 80 tracks, 8 spt, 1024 bytes/sector, MFM, track 0 side 0 = 26 sectors, 128 bytes/sector, track 0 side 1 = 26 sectors, 256 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_99_8,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, DD, 77 tracks, 15 spt, 512 bytes/sector, MFM, track 0 side 0 = 26 sectors, 128 bytes/sector, track 0 side 1 = 26 sectors, 256 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_99_15,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, DD, 77 tracks, 26 spt, 256 bytes/sector, MFM, track 0 side 0 = 26 sectors, 128 bytes/sector, track 0 side 1 = 26 sectors, 256 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_99_26,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", DS, DD, 80 tracks, 9 spt, 512 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_100,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", DS, HD, 80 tracks, 18 spt, 512 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_125,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", DS, ED, 80 tracks, 36 spt, 512 bytes/sector, MFM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_147,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", SS, SD, 77 tracks, 26 spt, 128 bytes/sector, FM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_54,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", DS, SD, 77 tracks, 26 spt, 128 bytes/sector, FM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_59,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", SS, DD, 35 tracks, 9 spt, 256 bytes/sector, FM, track 0 side 0 = 16 sectors, 128 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_66,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", DS, DD, 77 tracks, 8 spt, 1024 bytes/sector, FM, track 0 side 0 = 26 sectors, 128 bytes/sector, track 0 side 1 = 26 sectors, 256 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_69_8,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", DS, DD, 77 tracks, 15 spt, 512 bytes/sector, FM, track 0 side 0 = 26 sectors, 128 bytes/sector, track 0 side 1 = 26 sectors, 256 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_69_15,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>8", DS, DD, 77 tracks, 26 spt, 256 bytes/sector, FM, track 0 side 0 = 26 sectors, 128 bytes/sector, track 0 side 1 = 26 sectors, 256 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_69_26,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, DD, 40 tracks, 16 spt, 256 bytes/sector, FM, track 0 side 0 = 16 sectors, 128 bytes/sector, track 0 side 1 = 16 sectors, 256 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_70,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, DD, 80 tracks, 16 spt, 256 bytes/sector, FM, track 0 side 0 = 16 sectors, 128 bytes/sector, track 0 side 1 = 16 sectors, 256 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_78,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, DD, 80 tracks, 9 spt, 512 bytes/sector, FM</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_78_2,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", M.O., 250000 sectors, 512 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_154,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", M.O., 940470 sectors, 512 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_183_512,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", M.O., 520902 sectors, 1024 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_183_1024,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", M.O., 1165600 sectors, 512 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_184_512,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", M.O., 639200 sectors, 1024 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_184_1024,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>3,5", M.O., 448500 sectors, 512 bytes/sector</summary>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
ECMA_201,
|
2014-06-07 05:57:17 +01:00
|
|
|
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
// FDFORMAT, non-standard floppy formats
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>5,25", DS, DD, 82 tracks, 10 spt, 512 bytes/sector, MFM</summary>
|
2014-06-07 23:32:59 +01:00
|
|
|
FDFORMAT_525_DD,
|
|
|
|
|
/// <summary>5,25", DS, HD, 82 tracks, 17 spt, 512 bytes/sector, MFM</summary>
|
|
|
|
|
FDFORMAT_525_HD,
|
|
|
|
|
/// <summary>5,25", DS, DD, 82 tracks, 10 spt, 512 bytes/sector, MFM</summary>
|
|
|
|
|
FDFORMAT_35_DD,
|
|
|
|
|
/// <summary>5,25", DS, HD, 82 tracks, 21 spt, 512 bytes/sector, MFM</summary>
|
|
|
|
|
FDFORMAT_35_HD,
|
|
|
|
|
|
|
|
|
|
// Generic hard disks
|
2014-08-29 03:50:24 +01:00
|
|
|
GENERIC_HDD
|
|
|
|
|
};
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Track (as partitioning element) types.
|
|
|
|
|
/// </summary>
|
2013-12-14 20:35:22 +00:00
|
|
|
public enum TrackType
|
|
|
|
|
{
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Audio track</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
Audio,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Data track (not any of the below defined ones)</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
Data,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Data track, compact disc mode 1</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDMode1,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Data track, compact disc mode 2, formless</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDMode2Formless,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Data track, compact disc mode 2, form 1</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDMode2Form1,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Data track, compact disc mode 2, form 2</summary>
|
2014-08-29 03:50:24 +01:00
|
|
|
CDMode2Form2
|
|
|
|
|
};
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Track defining structure.
|
|
|
|
|
/// </summary>
|
2013-12-14 20:35:22 +00:00
|
|
|
public struct Track
|
|
|
|
|
{
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Track number, 1-started</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt32 TrackSequence;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Partition type</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public TrackType TrackType;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Track starting sector</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt64 TrackStartSector;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Track ending sector</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt64 TrackEndSector;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Track pre-gap</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt64 TrackPregap;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Session this track belongs to</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt16 TrackSession;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Information that does not find space in this struct</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public string TrackDescription;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Indexes, 00 to 99 and sector offset</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public Dictionary<int, UInt64> Indexes;
|
2013-12-14 20:35:22 +00:00
|
|
|
}
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Session defining structure.
|
|
|
|
|
/// </summary>
|
2013-12-14 20:35:22 +00:00
|
|
|
public struct Session
|
|
|
|
|
{
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Session number, 1-started</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt16 SessionSequence;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>First track present on this session</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt32 StartTrack;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Last track present on this session</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt32 EndTrack;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>First sector present on this session</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt64 StartSector;
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Last sector present on this session</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
public UInt64 EndSector;
|
2013-12-14 20:35:22 +00:00
|
|
|
}
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Metadata present for each sector (aka, "tag").
|
|
|
|
|
/// </summary>
|
2013-12-14 20:35:22 +00:00
|
|
|
public enum SectorTagType
|
|
|
|
|
{
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Apple's GCR sector tags, 12 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
AppleSectorTag,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>Sync frame from CD sector, 12 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDSectorSync,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD sector header, 4 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDSectorHeader,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD mode 2 sector subheader</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDSectorSubHeader,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD sector EDC, 4 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDSectorEDC,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD sector ECC P, 172 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDSectorECC_P,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD sector ECC Q, 104 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDSectorECC_Q,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD sector ECC (P and Q), 276 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDSectorECC,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD sector subchannel, 96 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDSectorSubchannel,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD track ISRC, string, 12 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDTrackISRC,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD track text, string, 13 bytes</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDTrackText,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD track flags, 1 byte</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CDTrackFlags,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD sector copyright information</summary>
|
2014-08-29 03:50:24 +01:00
|
|
|
DVD_CMI
|
|
|
|
|
};
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Metadata present for each disk.
|
|
|
|
|
/// </summary>
|
2013-12-14 20:35:22 +00:00
|
|
|
public enum DiskTagType
|
|
|
|
|
{
|
2014-09-05 21:15:52 +01:00
|
|
|
/// <summary>CD table of contents</summary>
|
|
|
|
|
CD_TOC,
|
|
|
|
|
/// <summary>CD session information</summary>
|
|
|
|
|
CD_SessionInfo,
|
|
|
|
|
/// <summary>CD full table of contents</summary>
|
|
|
|
|
CD_FullTOC,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD PMA</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CD_PMA,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD Adress-Time-In-Pregroove</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CD_ATIP,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD-Text</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CD_TEXT,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>CD Media Catalogue Number</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
CD_MCN,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD Burst Cutting Area</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
DVD_BCA,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD Physical Format Information</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
DVD_PFI,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD Copyright Management Information</summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
DVD_CMI,
|
2014-06-07 05:57:17 +01:00
|
|
|
/// <summary>DVD Disc Manufacturer Information</summary>
|
2014-09-05 19:07:07 +01:00
|
|
|
DVD_DMI,
|
|
|
|
|
/// <summary>SCSI INQUIRY response</summary>
|
|
|
|
|
SCSI_INQUIRY
|
2014-08-29 03:50:24 +01:00
|
|
|
};
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Feature is supported by image but not implemented yet.
|
|
|
|
|
/// </summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
[Serializable]
|
|
|
|
|
public class FeatureSupportedButNotImplementedImageException : Exception
|
2013-12-14 20:35:22 +00:00
|
|
|
{
|
2014-04-14 01:14:20 +00:00
|
|
|
public FeatureSupportedButNotImplementedImageException(string message, Exception inner) : base(message, inner)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public FeatureSupportedButNotImplementedImageException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-12-14 20:35:22 +00:00
|
|
|
|
|
|
|
|
protected FeatureSupportedButNotImplementedImageException(System.Runtime.Serialization.SerializationInfo info,
|
2014-04-14 01:14:20 +00:00
|
|
|
System.Runtime.Serialization.StreamingContext context)
|
|
|
|
|
{
|
|
|
|
|
if (info == null)
|
|
|
|
|
throw new ArgumentNullException("info");
|
|
|
|
|
}
|
2013-12-14 20:35:22 +00:00
|
|
|
}
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Feature is not supported by image.
|
|
|
|
|
/// </summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
[Serializable]
|
|
|
|
|
public class FeatureUnsupportedImageException : Exception
|
2013-12-14 20:35:22 +00:00
|
|
|
{
|
2014-04-14 01:14:20 +00:00
|
|
|
public FeatureUnsupportedImageException(string message, Exception inner) : base(message, inner)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public FeatureUnsupportedImageException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-12-14 20:35:22 +00:00
|
|
|
|
|
|
|
|
protected FeatureUnsupportedImageException(System.Runtime.Serialization.SerializationInfo info,
|
2014-04-14 01:14:20 +00:00
|
|
|
System.Runtime.Serialization.StreamingContext context)
|
|
|
|
|
{
|
|
|
|
|
if (info == null)
|
|
|
|
|
throw new ArgumentNullException("info");
|
|
|
|
|
}
|
2013-12-14 20:35:22 +00:00
|
|
|
}
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Feature is supported by image but not present on it.
|
|
|
|
|
/// </summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
[Serializable]
|
|
|
|
|
public class FeatureNotPresentImageException : Exception
|
2013-12-14 20:35:22 +00:00
|
|
|
{
|
2014-04-14 01:14:20 +00:00
|
|
|
public FeatureNotPresentImageException(string message, Exception inner) : base(message, inner)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public FeatureNotPresentImageException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-12-14 20:35:22 +00:00
|
|
|
|
|
|
|
|
protected FeatureNotPresentImageException(System.Runtime.Serialization.SerializationInfo info,
|
2014-04-14 01:14:20 +00:00
|
|
|
System.Runtime.Serialization.StreamingContext context)
|
|
|
|
|
{
|
|
|
|
|
if (info == null)
|
|
|
|
|
throw new ArgumentNullException("info");
|
|
|
|
|
}
|
2013-12-14 20:35:22 +00:00
|
|
|
}
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Feature is supported by image but not by the disc it represents.
|
|
|
|
|
/// </summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
[Serializable]
|
|
|
|
|
public class FeaturedNotSupportedByDiscImageException : Exception
|
2013-12-14 20:35:22 +00:00
|
|
|
{
|
2014-04-14 01:14:20 +00:00
|
|
|
public FeaturedNotSupportedByDiscImageException(string message, Exception inner) : base(message, inner)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public FeaturedNotSupportedByDiscImageException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-12-14 20:35:22 +00:00
|
|
|
|
|
|
|
|
protected FeaturedNotSupportedByDiscImageException(System.Runtime.Serialization.SerializationInfo info,
|
2014-04-14 01:14:20 +00:00
|
|
|
System.Runtime.Serialization.StreamingContext context)
|
|
|
|
|
{
|
|
|
|
|
if (info == null)
|
|
|
|
|
throw new ArgumentNullException("info");
|
|
|
|
|
}
|
2013-12-14 20:35:22 +00:00
|
|
|
}
|
2014-06-07 05:57:17 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Corrupt, incorrect or unhandled feature found on image
|
|
|
|
|
/// </summary>
|
2014-04-14 01:14:20 +00:00
|
|
|
[Serializable]
|
|
|
|
|
public class ImageNotSupportedException : Exception
|
2013-12-16 01:04:17 +00:00
|
|
|
{
|
2014-04-14 01:14:20 +00:00
|
|
|
public ImageNotSupportedException(string message, Exception inner) : base(message, inner)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ImageNotSupportedException(string message) : base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-12-16 01:04:17 +00:00
|
|
|
|
|
|
|
|
protected ImageNotSupportedException(System.Runtime.Serialization.SerializationInfo info,
|
2014-04-14 01:14:20 +00:00
|
|
|
System.Runtime.Serialization.StreamingContext context)
|
|
|
|
|
{
|
|
|
|
|
if (info == null)
|
|
|
|
|
throw new ArgumentNullException("info");
|
|
|
|
|
}
|
2013-12-16 01:04:17 +00:00
|
|
|
}
|
2013-12-14 20:35:22 +00:00
|
|
|
}
|