mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Implemented decoding DVD-RAM medium status.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2015-12-02 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
|
* DVD/Cartridge.cs:
|
||||||
|
Implemented decoding DVD-RAM medium status.
|
||||||
|
|
||||||
2015-12-02 Natalia Portillo <claunia@claunia.com>
|
2015-12-02 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* DVD/DDS.cs:
|
* DVD/DDS.cs:
|
||||||
|
|||||||
@@ -36,6 +36,7 @@
|
|||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
// //$Id$
|
// //$Id$
|
||||||
using System;
|
using System;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
namespace DiscImageChef.Decoders.DVD
|
namespace DiscImageChef.Decoders.DVD
|
||||||
{
|
{
|
||||||
@@ -53,7 +54,6 @@ namespace DiscImageChef.Decoders.DVD
|
|||||||
/// T10/1675-D revision 2c
|
/// T10/1675-D revision 2c
|
||||||
/// T10/1675-D revision 4
|
/// T10/1675-D revision 4
|
||||||
/// T10/1836-D revision 2g
|
/// T10/1836-D revision 2g
|
||||||
/// ECMA 365
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static class Cartridge
|
public static class Cartridge
|
||||||
{
|
{
|
||||||
@@ -125,6 +125,92 @@ namespace DiscImageChef.Decoders.DVD
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public byte RAMSWI;
|
public byte RAMSWI;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static MediumStatus? Decode(byte[] response)
|
||||||
|
{
|
||||||
|
if (response == null)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
if (response.Length != 8)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
MediumStatus status = new MediumStatus();
|
||||||
|
|
||||||
|
status.DataLength = (ushort)((response[0] << 8) + response[1]);
|
||||||
|
status.Reserved1 = response[2];
|
||||||
|
status.Reserved2 = response[3];
|
||||||
|
status.Cartridge |= (response[4] & 0x80) == 0x80;
|
||||||
|
status.OUT |= (response[4] & 0x40) == 0x40;
|
||||||
|
status.Reserved3 = (byte)((response[4] & 0x30) >> 4);
|
||||||
|
status.MSWI |= (response[4] & 0x08) == 0x08;
|
||||||
|
status.CWP |= (response[4] & 0x04) == 0x04;
|
||||||
|
status.PWP |= (response[4] & 0x02) == 0x02;
|
||||||
|
status.Reserved4 |= (response[4] & 0x01) == 0x01;
|
||||||
|
status.DiscType = response[5];
|
||||||
|
status.Reserved5 = response[6];
|
||||||
|
status.RAMSWI = response[7];
|
||||||
|
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string Prettify(MediumStatus? status)
|
||||||
|
{
|
||||||
|
if (status == null)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
MediumStatus decoded = status.Value;
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
|
if (decoded.PWP)
|
||||||
|
sb.AppendLine("Disc surface is set to write protected status");
|
||||||
|
|
||||||
|
if (decoded.Cartridge)
|
||||||
|
{
|
||||||
|
sb.AppendLine("Disc comes in a cartridge");
|
||||||
|
if (decoded.OUT)
|
||||||
|
sb.AppendLine("Disc has been extracted from the cartridge");
|
||||||
|
if (decoded.CWP)
|
||||||
|
sb.AppendLine("Cartridge is set to write protected");
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (decoded.DiscType)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
sb.AppendLine("Disc shall not be written without a cartridge");
|
||||||
|
break;
|
||||||
|
case 0x10:
|
||||||
|
sb.AppendLine("Disc may be written without a cartridge");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
sb.AppendFormat("Unknown disc type id {0}", decoded.DiscType).AppendLine();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (decoded.MSWI)
|
||||||
|
{
|
||||||
|
switch (decoded.RAMSWI)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
sb.AppendLine("Disc is write inhibited because it has been extracted from the cartridge");
|
||||||
|
break;
|
||||||
|
case 0xFF:
|
||||||
|
sb.AppendLine("Disc is write inhibited for an unspecified reason");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
sb.AppendFormat("Disc has unknown reason {0} for write inhibition", decoded.RAMSWI).AppendLine();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return sb.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string Prettify(byte[] response)
|
||||||
|
{
|
||||||
|
return Prettify(Decode(response));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2015-12-02 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
|
* Commands/MediaInfo.cs:
|
||||||
|
Implemented decoding DVD-RAM medium status.
|
||||||
|
|
||||||
2015-12-02 Natalia Portillo <claunia@claunia.com>
|
2015-12-02 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* Commands/MediaInfo.cs:
|
* Commands/MediaInfo.cs:
|
||||||
|
|||||||
@@ -423,7 +423,10 @@ namespace DiscImageChef.Commands
|
|||||||
if(sense)
|
if(sense)
|
||||||
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Medium Status\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: Medium Status\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
||||||
else
|
else
|
||||||
|
{
|
||||||
doWriteFile(outputPrefix, "_readdiscstructure_dvdram_status.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
doWriteFile(outputPrefix, "_readdiscstructure_dvdram_status.bin", "SCSI READ DISC STRUCTURE", cmdBuf);
|
||||||
|
DicConsole.WriteLine("Medium Status:\n{0}", Decoders.DVD.Cartridge.Prettify(cmdBuf));
|
||||||
|
}
|
||||||
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DVDRAM_SpareAreaInformation, 0, dev.Timeout, out duration);
|
sense = dev.ReadDiscStructure(out cmdBuf, out senseBuf, MmcDiscStructureMediaType.DVD, 0, 0, MmcDiscStructureFormat.DVDRAM_SpareAreaInformation, 0, dev.Timeout, out duration);
|
||||||
if(sense)
|
if(sense)
|
||||||
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: SAI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
DicConsole.ErrorWriteLine("READ DISC STRUCTURE: SAI\n{0}", Decoders.SCSI.Sense.PrettifySense(senseBuf));
|
||||||
|
|||||||
Reference in New Issue
Block a user