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

205 lines
8.8 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/>.
//
// ----------------------------------------------------------------------------
2022-02-18 10:02:53 +00:00
// Copyright © 2011-2022 Natalia Portillo
// ****************************************************************************/
using System;
using System.Collections.Generic;
2021-08-03 03:58:53 +01:00
using System.Linq;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Structs;
using Schemas;
namespace Aaru.DiscImages;
2022-03-06 13:29:38 +00:00
public sealed partial class Cdrdao
{
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
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;
/// <inheritdoc />
public ImageInfo Info => _imageInfo;
/// <inheritdoc />
public string Name => "CDRDAO tocfile";
/// <inheritdoc />
public Guid Id => new("04D7BA12-1BE8-44D4-97A4-1B48A505463E");
/// <inheritdoc />
public string Format => "CDRDAO tocfile";
/// <inheritdoc />
public string Author => "Natalia Portillo";
/// <inheritdoc />
public List<Partition> Partitions { get; private set; }
/// <inheritdoc />
public List<Session> Sessions
{
2022-03-06 13:29:38 +00:00
get
2021-08-03 03:58:53 +01:00
{
2022-03-06 13:29:38 +00:00
Track firstTrack = Tracks.First(t => t.Sequence == Tracks.Min(m => m.Sequence));
Track lastTrack = Tracks.First(t => t.Sequence == Tracks.Max(m => m.Sequence));
2021-08-03 03:58:53 +01:00
2022-03-06 13:29:38 +00:00
return new List<Session>
{
new()
2021-08-03 03:58:53 +01:00
{
2022-03-06 13:29:38 +00:00
Sequence = 1,
StartSector = firstTrack.StartSector,
EndSector = lastTrack.EndSector,
StartTrack = firstTrack.Sequence,
EndTrack = lastTrack.Sequence
}
};
2021-08-03 03:58:53 +01:00
}
2022-03-06 13:29:38 +00:00
}
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public List<Track> Tracks
{
get
{
2022-03-06 13:29:38 +00:00
List<Track> tracks = new();
foreach(CdrdaoTrack cdrTrack in _discimage.Tracks)
{
2022-03-06 13:29:38 +00:00
var aaruTrack = new Track
{
Description = cdrTrack.Title,
StartSector = cdrTrack.StartSector,
Pregap = cdrTrack.Pregap,
Session = 1,
Sequence = cdrTrack.Sequence,
Type = CdrdaoTrackTypeToTrackType(cdrTrack.Tracktype),
Filter = cdrTrack.Trackfile.Datafilter,
File = cdrTrack.Trackfile.Datafilter.Filename,
FileOffset = cdrTrack.Trackfile.Offset,
FileType = cdrTrack.Trackfile.Filetype,
RawBytesPerSector = cdrTrack.Bps,
BytesPerSector = CdrdaoTrackTypeToCookedBytesPerSector(cdrTrack.Tracktype)
};
aaruTrack.EndSector = aaruTrack.StartSector + cdrTrack.Sectors - 1;
if(!cdrTrack.Indexes.TryGetValue(0, out aaruTrack.StartSector))
cdrTrack.Indexes.TryGetValue(1, out aaruTrack.StartSector);
2022-03-06 13:29:38 +00:00
if(cdrTrack.Subchannel)
{
2022-03-06 13:29:38 +00:00
aaruTrack.SubchannelType = cdrTrack.Packedsubchannel ? TrackSubchannelType.PackedInterleaved
: TrackSubchannelType.RawInterleaved;
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
aaruTrack.SubchannelFilter = cdrTrack.Trackfile.Datafilter;
aaruTrack.SubchannelFile = cdrTrack.Trackfile.Datafilter.Filename;
aaruTrack.SubchannelOffset = cdrTrack.Trackfile.Offset;
}
else
aaruTrack.SubchannelType = TrackSubchannelType.None;
2022-03-06 13:29:38 +00:00
if(aaruTrack.Sequence == 1)
{
aaruTrack.Pregap = 150;
if(cdrTrack.Indexes.Count == 0)
{
2022-03-06 13:29:38 +00:00
aaruTrack.Indexes[0] = -150;
aaruTrack.Indexes[1] = 0;
}
2022-03-06 13:29:38 +00:00
else if(!cdrTrack.Indexes.ContainsKey(0))
{
aaruTrack.Indexes[0] = -150;
foreach(KeyValuePair<int, ulong> idx in cdrTrack.Indexes.OrderBy(i => i.Key))
aaruTrack.Indexes[(ushort)idx.Key] = (int)idx.Value;
2022-03-06 13:29:38 +00:00
}
}
2022-03-06 13:29:38 +00:00
else
foreach(KeyValuePair<int, ulong> idx in cdrTrack.Indexes.OrderBy(i => i.Key))
aaruTrack.Indexes[(ushort)idx.Key] = (int)idx.Value;
2022-03-06 13:29:38 +00:00
tracks.Add(aaruTrack);
}
2022-03-06 13:29:38 +00:00
return tracks;
}
2022-03-06 13:29:38 +00:00
}
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public List<DumpHardwareType> DumpHardware => null;
/// <inheritdoc />
public CICMMetadataType CicmMetadata => null;
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
// TODO: Decode CD-Text to text
/// <inheritdoc />
public IEnumerable<MediaTagType> SupportedMediaTags => new[]
{
MediaTagType.CD_MCN
};
/// <inheritdoc />
public IEnumerable<SectorTagType> SupportedSectorTags => new[]
{
2022-03-07 07:36:44 +00:00
SectorTagType.CdSectorEcc, SectorTagType.CdSectorEccP, SectorTagType.CdSectorEccQ, SectorTagType.CdSectorEdc,
SectorTagType.CdSectorHeader, SectorTagType.CdSectorSubchannel, SectorTagType.CdSectorSubHeader,
SectorTagType.CdSectorSync, SectorTagType.CdTrackFlags, SectorTagType.CdTrackIsrc
2022-03-06 13:29:38 +00:00
};
/// <inheritdoc />
public IEnumerable<MediaType> SupportedMediaTypes => new[]
{
2022-03-07 07:36:44 +00: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.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, MediaType.VideoNowColor,
MediaType.VideoNowXp, MediaType.CVD, MediaType.PCD
2022-03-06 13:29:38 +00:00
};
/// <inheritdoc />
public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions => new[]
{
("separate", typeof(bool), "Write each track to a separate file.", (object)false)
};
/// <inheritdoc />
public IEnumerable<string> KnownExtensions => new[]
{
".toc"
};
/// <inheritdoc />
public bool IsWriting { get; private set; }
/// <inheritdoc />
public string ErrorMessage { get; private set; }
}