2018-07-23 23:25:43 +01:00
|
|
|
|
// /***************************************************************************
|
2020-02-27 12:31:25 +00:00
|
|
|
|
// Aaru Data Preservation Suite
|
2018-07-23 23:25:43 +01:00
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : Properties.cs
|
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// Component : Disk image plugins.
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Contains properties for CloneCD disc images.
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// This library is free software; you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
|
//
|
|
|
|
|
|
// This library is distributed in the hope that it will be useful, but
|
|
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2022-12-03 16:07:10 +00:00
|
|
|
|
// Copyright © 2011-2023 Natalia Portillo
|
2018-07-23 23:25:43 +01:00
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2020-02-27 00:33:26 +00:00
|
|
|
|
using Aaru.CommonTypes;
|
2022-12-15 22:21:07 +00:00
|
|
|
|
using Aaru.CommonTypes.AaruMetadata;
|
2020-02-27 00:33:26 +00:00
|
|
|
|
using Aaru.CommonTypes.Enums;
|
|
|
|
|
|
using Aaru.CommonTypes.Structs;
|
2022-12-15 22:21:07 +00:00
|
|
|
|
using Partition = Aaru.CommonTypes.Partition;
|
|
|
|
|
|
using Track = Aaru.CommonTypes.Structs.Track;
|
2018-07-23 23:25:43 +01:00
|
|
|
|
|
2023-10-06 01:16:28 +01:00
|
|
|
|
namespace Aaru.Images;
|
2022-11-15 15:58:43 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
public sealed partial class CloneCd
|
2018-07-23 23:25:43 +01:00
|
|
|
|
{
|
2023-10-03 23:34:59 +01:00
|
|
|
|
#region IWritableOpticalImage Members
|
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public OpticalImageCapabilities OpticalCapabilities => OpticalImageCapabilities.CanStoreAudioTracks |
|
|
|
|
|
|
OpticalImageCapabilities.CanStoreDataTracks |
|
|
|
|
|
|
OpticalImageCapabilities.CanStorePregaps |
|
|
|
|
|
|
OpticalImageCapabilities.CanStoreSubchannelRw |
|
2021-07-12 18:21:22 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
// TODO: Disabled until 6.0
|
|
|
|
|
|
//OpticalImageCapabilities.CanStoreSessions |
|
|
|
|
|
|
OpticalImageCapabilities.CanStoreIsrc |
|
|
|
|
|
|
OpticalImageCapabilities.CanStoreCdText |
|
|
|
|
|
|
OpticalImageCapabilities.CanStoreMcn |
|
|
|
|
|
|
OpticalImageCapabilities.CanStoreRawData |
|
|
|
|
|
|
OpticalImageCapabilities.CanStoreCookedData |
|
|
|
|
|
|
OpticalImageCapabilities.CanStoreMultipleTracks;
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
2023-10-04 08:35:43 +01:00
|
|
|
|
// ReSharper disable once ConvertToAutoProperty
|
2022-03-06 13:29:38 +00:00
|
|
|
|
public ImageInfo Info => _imageInfo;
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
2022-11-29 02:10:37 +00:00
|
|
|
|
public string Name => Localization.CloneCd_Name;
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
2022-03-07 07:36:44 +00:00
|
|
|
|
public Guid Id => new("EE9C2975-2E79-427A-8EE9-F86F19165784");
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public string Format => "CloneCD";
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
2022-11-29 02:10:37 +00:00
|
|
|
|
public string Author => Authors.NataliaPortillo;
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public List<Partition> Partitions { get; private set; }
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public List<Track> Tracks { get; private set; }
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public List<Session> Sessions { get; private set; }
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
2022-12-15 22:21:07 +00:00
|
|
|
|
public List<DumpHardware> DumpHardware => null;
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
2022-12-15 22:21:07 +00:00
|
|
|
|
public Metadata AaruMetadata => null;
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
2023-10-04 17:34:40 +01:00
|
|
|
|
public IEnumerable<MediaTagType> SupportedMediaTags => new[]
|
|
|
|
|
|
{
|
|
|
|
|
|
MediaTagType.CD_MCN, MediaTagType.CD_FullTOC
|
|
|
|
|
|
};
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public IEnumerable<SectorTagType> SupportedSectorTags => new[]
|
|
|
|
|
|
{
|
2023-10-04 17:34:40 +01:00
|
|
|
|
SectorTagType.CdSectorEcc, SectorTagType.CdSectorEccP, SectorTagType.CdSectorEccQ, SectorTagType.CdSectorEdc,
|
|
|
|
|
|
SectorTagType.CdSectorHeader, SectorTagType.CdSectorSubHeader, SectorTagType.CdSectorSync,
|
|
|
|
|
|
SectorTagType.CdTrackFlags, SectorTagType.CdSectorSubchannel
|
2022-03-06 13:29:38 +00:00
|
|
|
|
};
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public IEnumerable<MediaType> SupportedMediaTypes => new[]
|
|
|
|
|
|
{
|
2023-10-04 17:34:40 +01:00
|
|
|
|
MediaType.CD, MediaType.CDDA, MediaType.CDEG, MediaType.CDG, MediaType.CDI, MediaType.CDMIDI, MediaType.CDMRW,
|
|
|
|
|
|
MediaType.CDPLUS, MediaType.CDR, MediaType.CDROM, MediaType.CDROMXA, MediaType.CDRW, MediaType.CDV,
|
|
|
|
|
|
MediaType.DTSCD, MediaType.JaguarCD, MediaType.MEGACD, MediaType.PS1CD, MediaType.PS2CD, MediaType.SuperCDROM2,
|
|
|
|
|
|
MediaType.SVCD, MediaType.SATURNCD, MediaType.ThreeDO, MediaType.VCD, MediaType.VCDHD, MediaType.NeoGeoCD,
|
|
|
|
|
|
MediaType.PCFX, MediaType.CDTV, MediaType.CD32, MediaType.Nuon, MediaType.Playdia, MediaType.Pippin,
|
|
|
|
|
|
MediaType.FMTOWNS, MediaType.MilCD, MediaType.VideoNow, MediaType.VideoNowColor, MediaType.VideoNowXp,
|
|
|
|
|
|
MediaType.CVD, MediaType.PCD
|
2022-03-06 13:29:38 +00:00
|
|
|
|
};
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions =>
|
2022-03-16 23:43:36 +00:00
|
|
|
|
Array.Empty<(string name, Type type, string description, object @default)>();
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
2023-10-04 17:34:40 +01:00
|
|
|
|
public IEnumerable<string> KnownExtensions => new[]
|
|
|
|
|
|
{
|
|
|
|
|
|
".ccd"
|
|
|
|
|
|
};
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public bool IsWriting { get; private set; }
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public string ErrorMessage { get; private set; }
|
2023-10-03 23:34:59 +01:00
|
|
|
|
|
|
|
|
|
|
#endregion
|
2018-07-23 23:25:43 +01:00
|
|
|
|
}
|