Files
Aaru/Aaru.Images/CDRDAO/Properties.cs

144 lines
7.5 KiB
C#
Raw Normal View History

// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Properties.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Disk image plugins.
//
// --[ Description ] ----------------------------------------------------------
//
// Contains properties for cdrdao cuesheets (toc/bin).
//
// --[ 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/>.
//
// ----------------------------------------------------------------------------
2020-01-03 17:51:30 +00:00
// Copyright © 2011-2020 Natalia Portillo
// ****************************************************************************/
using System;
using System.Collections.Generic;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Structs;
using Schemas;
2020-02-27 00:33:26 +00:00
namespace Aaru.DiscImages
{
public partial class Cdrdao
{
public OpticalImageCapabilities OpticalCapabilities => OpticalImageCapabilities.CanStoreAudioTracks |
OpticalImageCapabilities.CanStoreDataTracks |
OpticalImageCapabilities.CanStorePregaps |
OpticalImageCapabilities.CanStoreSubchannelRw |
OpticalImageCapabilities.CanStoreIsrc |
OpticalImageCapabilities.CanStoreCdText |
OpticalImageCapabilities.CanStoreMcn |
OpticalImageCapabilities.CanStoreRawData |
OpticalImageCapabilities.CanStoreCookedData |
OpticalImageCapabilities.CanStoreMultipleTracks |
OpticalImageCapabilities.CanStoreIndexes;
public ImageInfo Info => imageInfo;
public string Name => "CDRDAO tocfile";
public Guid Id => new Guid("04D7BA12-1BE8-44D4-97A4-1B48A505463E");
public string Format => "CDRDAO tocfile";
2018-08-29 22:15:43 +01:00
public string Author => "Natalia Portillo";
public List<Partition> Partitions { get; private set; }
public List<Session> Sessions => throw new NotImplementedException();
public List<Track> Tracks
{
get
{
List<Track> tracks = new List<Track>();
foreach(CdrdaoTrack cdrTrack in discimage.Tracks)
{
2020-02-29 18:03:35 +00:00
var aaruTrack = new Track
{
2020-06-17 21:32:19 +01:00
TrackDescription = cdrTrack.Title, TrackStartSector = cdrTrack.StartSector,
TrackPregap = cdrTrack.Pregap, TrackSession = 1, TrackSequence = cdrTrack.Sequence,
TrackType = CdrdaoTrackTypeToTrackType(cdrTrack.Tracktype),
TrackFilter = cdrTrack.Trackfile.Datafilter,
TrackFile = cdrTrack.Trackfile.Datafilter.GetFilename(),
2020-02-29 18:03:35 +00:00
TrackFileOffset = cdrTrack.Trackfile.Offset, TrackFileType = cdrTrack.Trackfile.Filetype,
TrackRawBytesPerSector = cdrTrack.Bps,
TrackBytesPerSector = CdrdaoTrackTypeToCookedBytesPerSector(cdrTrack.Tracktype)
};
2020-02-29 18:03:35 +00:00
aaruTrack.TrackEndSector = (aaruTrack.TrackStartSector + cdrTrack.Sectors) - 1;
2020-02-28 00:19:50 +00:00
if(!cdrTrack.Indexes.TryGetValue(0, out aaruTrack.TrackStartSector))
cdrTrack.Indexes.TryGetValue(1, out aaruTrack.TrackStartSector);
2020-02-29 18:03:35 +00:00
if(cdrTrack.Subchannel)
{
2020-02-28 00:19:50 +00:00
aaruTrack.TrackSubchannelType = cdrTrack.Packedsubchannel
2020-02-29 18:03:35 +00:00
? TrackSubchannelType.PackedInterleaved
: TrackSubchannelType.RawInterleaved;
2020-02-28 00:19:50 +00:00
aaruTrack.TrackSubchannelFilter = cdrTrack.Trackfile.Datafilter;
aaruTrack.TrackSubchannelFile = cdrTrack.Trackfile.Datafilter.GetFilename();
aaruTrack.TrackSubchannelOffset = cdrTrack.Trackfile.Offset;
}
2020-02-29 18:03:35 +00:00
else
aaruTrack.TrackSubchannelType = TrackSubchannelType.None;
2020-02-28 00:19:50 +00:00
tracks.Add(aaruTrack);
}
return tracks;
}
}
2020-02-29 18:03:35 +00:00
public List<DumpHardwareType> DumpHardware => null;
public CICMMetadataType CicmMetadata => null;
2020-02-29 18:03:35 +00:00
// TODO: Decode CD-Text to text
2020-02-29 18:03:35 +00:00
public IEnumerable<MediaTagType> SupportedMediaTags => new[]
{
MediaTagType.CD_MCN
};
public IEnumerable<SectorTagType> SupportedSectorTags => new[]
{
SectorTagType.CdSectorEcc, SectorTagType.CdSectorEccP, SectorTagType.CdSectorEccQ,
SectorTagType.CdSectorEdc, SectorTagType.CdSectorHeader, SectorTagType.CdSectorSubchannel,
SectorTagType.CdSectorSubHeader, SectorTagType.CdSectorSync, SectorTagType.CdTrackFlags,
SectorTagType.CdTrackIsrc
};
public IEnumerable<MediaType> SupportedMediaTypes => new[]
{
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.DDCD, MediaType.DDCDR, MediaType.DDCDRW, 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,
2020-07-19 16:10:50 +01:00
MediaType.VideoNowColor, MediaType.VideoNowXp, MediaType.CVD
2020-02-29 18:03:35 +00:00
};
public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions => new[]
{
("separate", typeof(bool), "Write each track to a separate file.", (object)false)
};
public IEnumerable<string> KnownExtensions => new[]
{
".toc"
};
public bool IsWriting { get; private set; }
public string ErrorMessage { get; private set; }
}
}