mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Implement "decode" verb.
This commit is contained in:
83
DiscImageChef/Commands/Decode.cs
Normal file
83
DiscImageChef/Commands/Decode.cs
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
using System;
|
||||||
|
using DiscImageChef.ImagePlugins;
|
||||||
|
|
||||||
|
namespace DiscImageChef.Commands
|
||||||
|
{
|
||||||
|
public static class Decode
|
||||||
|
{
|
||||||
|
public static void doDecode(DecodeSubOptions options)
|
||||||
|
{
|
||||||
|
if (MainClass.isDebug)
|
||||||
|
{
|
||||||
|
Console.WriteLine("--debug={0}", options.Debug);
|
||||||
|
Console.WriteLine("--verbose={0}", options.Verbose);
|
||||||
|
Console.WriteLine("--input={0}", options.InputFile);
|
||||||
|
Console.WriteLine("--start={0}", options.StartSector);
|
||||||
|
Console.WriteLine("--length={0}", options.Length);
|
||||||
|
Console.WriteLine("--disk-tags={0}", options.DiskTags);
|
||||||
|
Console.WriteLine("--sector-tags={0}", options.SectorTags);
|
||||||
|
}
|
||||||
|
|
||||||
|
ImagePlugin inputFormat = ImageFormat.Detect(options.InputFile);
|
||||||
|
|
||||||
|
if (inputFormat == null)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Unable to recognize image format, not verifying");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
inputFormat.OpenImage(options.InputFile);
|
||||||
|
|
||||||
|
if (options.DiskTags)
|
||||||
|
{
|
||||||
|
if (inputFormat.ImageInfo.readableDiskTags.Count == 0)
|
||||||
|
Console.WriteLine("There are no disk tags in chosen disc image.");
|
||||||
|
else
|
||||||
|
{
|
||||||
|
foreach (DiskTagType tag in inputFormat.ImageInfo.readableDiskTags)
|
||||||
|
{
|
||||||
|
switch (tag)
|
||||||
|
{
|
||||||
|
default:
|
||||||
|
Console.WriteLine("Decoder for disk tag type \"{0}\" not yet implemented, sorry.", tag);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.SectorTags)
|
||||||
|
{
|
||||||
|
UInt64 length;
|
||||||
|
|
||||||
|
if (options.Length.ToLowerInvariant() == "all")
|
||||||
|
length = inputFormat.GetSectors() - 1;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!UInt64.TryParse(options.Length, out length))
|
||||||
|
{
|
||||||
|
Console.WriteLine("Value \"{0}\" is not a valid number for length.", options.Length);
|
||||||
|
Console.WriteLine("Not decoding sectors tags");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (inputFormat.ImageInfo.readableSectorTags.Count == 0)
|
||||||
|
Console.WriteLine("There are no sector tags in chosen disc image.");
|
||||||
|
else
|
||||||
|
{
|
||||||
|
foreach (SectorTagType tag in inputFormat.ImageInfo.readableSectorTags)
|
||||||
|
{
|
||||||
|
switch (tag)
|
||||||
|
{
|
||||||
|
default:
|
||||||
|
Console.WriteLine("Decoder for disk tag type \"{0}\" not yet implemented, sorry.", tag);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -99,6 +99,7 @@
|
|||||||
<Compile Include="Checksums\CDChecksums.cs" />
|
<Compile Include="Checksums\CDChecksums.cs" />
|
||||||
<Compile Include="Checksums\ReedSolomon.cs" />
|
<Compile Include="Checksums\ReedSolomon.cs" />
|
||||||
<Compile Include="Commands\PrintHex.cs" />
|
<Compile Include="Commands\PrintHex.cs" />
|
||||||
|
<Compile Include="Commands\Decode.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -111,6 +111,12 @@ namespace DiscImageChef
|
|||||||
isVerbose = PrintHexOptions.Verbose;
|
isVerbose = PrintHexOptions.Verbose;
|
||||||
Commands.PrintHex.doPrintHex(PrintHexOptions);
|
Commands.PrintHex.doPrintHex(PrintHexOptions);
|
||||||
break;
|
break;
|
||||||
|
case "decode":
|
||||||
|
DecodeSubOptions DecodeOptions = (DecodeSubOptions)invokedVerbInstance;
|
||||||
|
isDebug = DecodeOptions.Debug;
|
||||||
|
isVerbose = DecodeOptions.Verbose;
|
||||||
|
Commands.Decode.doDecode(DecodeOptions);
|
||||||
|
break;
|
||||||
case "formats":
|
case "formats":
|
||||||
FormatsSubOptions FormatsOptions = (FormatsSubOptions)invokedVerbInstance;
|
FormatsSubOptions FormatsOptions = (FormatsSubOptions)invokedVerbInstance;
|
||||||
isVerbose = FormatsOptions.Verbose;
|
isVerbose = FormatsOptions.Verbose;
|
||||||
|
|||||||
@@ -154,6 +154,28 @@ namespace DiscImageChef
|
|||||||
public string InputFile { get; set; }
|
public string InputFile { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class DecodeSubOptions : CommonSubOptions
|
||||||
|
{
|
||||||
|
[Option('s', "start", DefaultValue = (ulong)0,
|
||||||
|
HelpText = "Start sector.")]
|
||||||
|
public ulong StartSector { get; set; }
|
||||||
|
|
||||||
|
[Option('l', "length", DefaultValue = "all",
|
||||||
|
HelpText = "How many sectors to decode, or \"all\".")]
|
||||||
|
public string Length { get; set; }
|
||||||
|
|
||||||
|
[Option('k', "disk-tags", DefaultValue = true,
|
||||||
|
HelpText = "Decode disk tags.")]
|
||||||
|
public bool DiskTags { get; set; }
|
||||||
|
|
||||||
|
[Option('t', "sector-tags", DefaultValue = true,
|
||||||
|
HelpText = "Decode sector tags.")]
|
||||||
|
public bool SectorTags { get; set; }
|
||||||
|
|
||||||
|
[Option('i', "input", Required = true, HelpText = "Disc image.")]
|
||||||
|
public string InputFile { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
public class FormatsSubOptions : CommonSubOptions
|
public class FormatsSubOptions : CommonSubOptions
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@@ -168,6 +190,7 @@ namespace DiscImageChef
|
|||||||
VerifyVerb = new VerifySubOptions();
|
VerifyVerb = new VerifySubOptions();
|
||||||
FormatsVerb = new FormatsSubOptions();
|
FormatsVerb = new FormatsSubOptions();
|
||||||
PrintHexVerb = new PrintHexSubOptions();
|
PrintHexVerb = new PrintHexSubOptions();
|
||||||
|
DecodeVerb = new DecodeSubOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
[VerbOption("analyze", HelpText = "Analyzes a disc image and searches for partitions and/or filesystems.")]
|
[VerbOption("analyze", HelpText = "Analyzes a disc image and searches for partitions and/or filesystems.")]
|
||||||
@@ -185,6 +208,9 @@ namespace DiscImageChef
|
|||||||
[VerbOption("printhex", HelpText = "Prints a sector, in hexadecimal values, to the console.")]
|
[VerbOption("printhex", HelpText = "Prints a sector, in hexadecimal values, to the console.")]
|
||||||
public PrintHexSubOptions PrintHexVerb { get; set; }
|
public PrintHexSubOptions PrintHexVerb { get; set; }
|
||||||
|
|
||||||
|
[VerbOption("decode", HelpText = "Decodes and pretty prints disk and/or sector tags.")]
|
||||||
|
public DecodeSubOptions DecodeVerb { get; set; }
|
||||||
|
|
||||||
[VerbOption("formats", HelpText = "Lists all supported disc images, partition schemes and file systems.")]
|
[VerbOption("formats", HelpText = "Lists all supported disc images, partition schemes and file systems.")]
|
||||||
public FormatsSubOptions FormatsVerb { get; set; }
|
public FormatsSubOptions FormatsVerb { get; set; }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user