* DiscImageChef.Decoders/ATA/ATA.cs:

* DiscImageChef.Decoders/ATA/Identify.cs:
	* DiscImageChef.Decoders/DiscImageChef.Decoders.csproj:
	  Rename fields, methods and structs to more adequate names.

	* DiscImageChef/Commands/Decode.cs:
	* DiscImageChef/Commands/DeviceInfo.cs:
	  Rename ATA/ATAPI decoders fields, methods and structs to
	  more adequate names.
This commit is contained in:
2015-10-19 03:17:03 +01:00
parent 684c9a1fed
commit 1c0966ce80
3 changed files with 15 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ using System.Runtime.InteropServices;
using System.Text;
using DiscImageChef.Console;
namespace DiscImageChef.Decoders
namespace DiscImageChef.Decoders.ATA
{
/// <summary>
/// Information from following standards:
@@ -56,7 +56,7 @@ namespace DiscImageChef.Decoders
/// T13-2161D rev. 5 (ACS-3)
/// CF+ & CF Specification rev. 1.4 (CFA)
/// </summary>
public static class ATA
public static class Identify
{
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Ansi, Pack=2)]
public struct IdentifyDevice
@@ -1851,7 +1851,7 @@ namespace DiscImageChef.Decoders
Clear = 0x0001,
}
public static IdentifyDevice? DecodeIdentifyDevice(byte[] IdentifyDeviceResponse)
public static IdentifyDevice? Decode(byte[] IdentifyDeviceResponse)
{
if (IdentifyDeviceResponse == null)
return null;
@@ -1880,16 +1880,16 @@ namespace DiscImageChef.Decoders
return ATAID;
}
public static string PrettifyIdentifyDevice(byte[] IdentifyDeviceResponse)
public static string Prettify(byte[] IdentifyDeviceResponse)
{
if (IdentifyDeviceResponse.Length != 512)
return null;
IdentifyDevice? decoded = DecodeIdentifyDevice(IdentifyDeviceResponse);
return PrettifyIdentifyDevice(decoded);
IdentifyDevice? decoded = Decode(IdentifyDeviceResponse);
return Prettify(decoded);
}
public static string PrettifyIdentifyDevice(IdentifyDevice? IdentifyDeviceResponse)
public static string Prettify(IdentifyDevice? IdentifyDeviceResponse)
{
if (IdentifyDeviceResponse == null)
return null;