mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move to file scoped namespaces.
This commit is contained in:
@@ -38,78 +38,77 @@ using Aaru.CommonTypes.Enums;
|
||||
using Aaru.CommonTypes.Structs;
|
||||
using Schemas;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
namespace Aaru.DiscImages;
|
||||
|
||||
public sealed partial class AaruFormat
|
||||
{
|
||||
public sealed partial class AaruFormat
|
||||
/// <inheritdoc />
|
||||
public OpticalImageCapabilities OpticalCapabilities => OpticalImageCapabilities.CanStoreAudioTracks |
|
||||
OpticalImageCapabilities.CanStoreDataTracks |
|
||||
OpticalImageCapabilities.CanStorePregaps |
|
||||
OpticalImageCapabilities.CanStoreSubchannelRw |
|
||||
OpticalImageCapabilities.CanStoreSessions |
|
||||
OpticalImageCapabilities.CanStoreIsrc |
|
||||
OpticalImageCapabilities.CanStoreCdText |
|
||||
OpticalImageCapabilities.CanStoreMcn |
|
||||
OpticalImageCapabilities.CanStoreRawData |
|
||||
OpticalImageCapabilities.CanStoreCookedData |
|
||||
OpticalImageCapabilities.CanStoreMultipleTracks |
|
||||
OpticalImageCapabilities.CanStoreNotCdSessions |
|
||||
OpticalImageCapabilities.CanStoreNotCdTracks |
|
||||
OpticalImageCapabilities.CanStoreIndexes;
|
||||
/// <inheritdoc />
|
||||
public ImageInfo Info => _imageInfo;
|
||||
/// <inheritdoc />
|
||||
public string Name => "Aaru Format";
|
||||
/// <inheritdoc />
|
||||
public Guid Id => new Guid("49360069-1784-4A2F-B723-0C844D610B0A");
|
||||
/// <inheritdoc />
|
||||
public string Format => "Aaru";
|
||||
/// <inheritdoc />
|
||||
public string Author => "Natalia Portillo";
|
||||
/// <inheritdoc />
|
||||
public List<Partition> Partitions { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public List<Track> Tracks { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public List<Session> Sessions { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public List<DumpHardwareType> DumpHardware { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public CICMMetadataType CicmMetadata { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<MediaTagType> SupportedMediaTags =>
|
||||
Enum.GetValues(typeof(MediaTagType)).Cast<MediaTagType>();
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<SectorTagType> SupportedSectorTags =>
|
||||
Enum.GetValues(typeof(SectorTagType)).Cast<SectorTagType>();
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<MediaType> SupportedMediaTypes => Enum.GetValues(typeof(MediaType)).Cast<MediaType>();
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions => new[]
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public OpticalImageCapabilities OpticalCapabilities => OpticalImageCapabilities.CanStoreAudioTracks |
|
||||
OpticalImageCapabilities.CanStoreDataTracks |
|
||||
OpticalImageCapabilities.CanStorePregaps |
|
||||
OpticalImageCapabilities.CanStoreSubchannelRw |
|
||||
OpticalImageCapabilities.CanStoreSessions |
|
||||
OpticalImageCapabilities.CanStoreIsrc |
|
||||
OpticalImageCapabilities.CanStoreCdText |
|
||||
OpticalImageCapabilities.CanStoreMcn |
|
||||
OpticalImageCapabilities.CanStoreRawData |
|
||||
OpticalImageCapabilities.CanStoreCookedData |
|
||||
OpticalImageCapabilities.CanStoreMultipleTracks |
|
||||
OpticalImageCapabilities.CanStoreNotCdSessions |
|
||||
OpticalImageCapabilities.CanStoreNotCdTracks |
|
||||
OpticalImageCapabilities.CanStoreIndexes;
|
||||
/// <inheritdoc />
|
||||
public ImageInfo Info => _imageInfo;
|
||||
/// <inheritdoc />
|
||||
public string Name => "Aaru Format";
|
||||
/// <inheritdoc />
|
||||
public Guid Id => new Guid("49360069-1784-4A2F-B723-0C844D610B0A");
|
||||
/// <inheritdoc />
|
||||
public string Format => "Aaru";
|
||||
/// <inheritdoc />
|
||||
public string Author => "Natalia Portillo";
|
||||
/// <inheritdoc />
|
||||
public List<Partition> Partitions { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public List<Track> Tracks { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public List<Session> Sessions { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public List<DumpHardwareType> DumpHardware { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public CICMMetadataType CicmMetadata { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<MediaTagType> SupportedMediaTags =>
|
||||
Enum.GetValues(typeof(MediaTagType)).Cast<MediaTagType>();
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<SectorTagType> SupportedSectorTags =>
|
||||
Enum.GetValues(typeof(SectorTagType)).Cast<SectorTagType>();
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<MediaType> SupportedMediaTypes => Enum.GetValues(typeof(MediaType)).Cast<MediaType>();
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions => new[]
|
||||
{
|
||||
("sectors_per_block", typeof(uint),
|
||||
"How many sectors to store per block (will be rounded to next power of two)", 4096U),
|
||||
("dictionary", typeof(uint), "Size, in bytes, of the LZMA dictionary", (uint)(1 << 25)),
|
||||
("max_ddt_size", typeof(uint),
|
||||
"Maximum size, in mebibytes, for in-memory DDT. If image needs a bigger one, it will be on-disk", 256U),
|
||||
("md5", typeof(bool), "Calculate and store MD5 of image's user data", false),
|
||||
("sha1", typeof(bool), "Calculate and store SHA1 of image's user data", false),
|
||||
("sha256", typeof(bool), "Calculate and store SHA256 of image's user data", false),
|
||||
("spamsum", typeof(bool), "Calculate and store SpamSum of image's user data", false),
|
||||
("deduplicate", typeof(bool),
|
||||
"Store only unique sectors. This consumes more memory and is slower, but it's enabled by default", true),
|
||||
("compress", typeof(bool), "Compress user data blocks. Other blocks will always be compressed",
|
||||
(object)true)
|
||||
};
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<string> KnownExtensions => new[]
|
||||
{
|
||||
".dicf", ".aaru", ".aaruformat", ".aaruf", ".aif"
|
||||
};
|
||||
/// <inheritdoc />
|
||||
public bool IsWriting { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public string ErrorMessage { get; private set; }
|
||||
}
|
||||
("sectors_per_block", typeof(uint),
|
||||
"How many sectors to store per block (will be rounded to next power of two)", 4096U),
|
||||
("dictionary", typeof(uint), "Size, in bytes, of the LZMA dictionary", (uint)(1 << 25)),
|
||||
("max_ddt_size", typeof(uint),
|
||||
"Maximum size, in mebibytes, for in-memory DDT. If image needs a bigger one, it will be on-disk", 256U),
|
||||
("md5", typeof(bool), "Calculate and store MD5 of image's user data", false),
|
||||
("sha1", typeof(bool), "Calculate and store SHA1 of image's user data", false),
|
||||
("sha256", typeof(bool), "Calculate and store SHA256 of image's user data", false),
|
||||
("spamsum", typeof(bool), "Calculate and store SpamSum of image's user data", false),
|
||||
("deduplicate", typeof(bool),
|
||||
"Store only unique sectors. This consumes more memory and is slower, but it's enabled by default", true),
|
||||
("compress", typeof(bool), "Compress user data blocks. Other blocks will always be compressed",
|
||||
(object)true)
|
||||
};
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<string> KnownExtensions => new[]
|
||||
{
|
||||
".dicf", ".aaru", ".aaruformat", ".aaruf", ".aif"
|
||||
};
|
||||
/// <inheritdoc />
|
||||
public bool IsWriting { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public string ErrorMessage { get; private set; }
|
||||
}
|
||||
Reference in New Issue
Block a user