mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
* DiscImageChef/Options.cs: * DiscImageChef/DiscImageChef.csproj: * DiscImageChef/Commands/MediaScan.cs: Added media-scan command. * DiscImageChef.Decoders/SCSI/Inquiry.cs: Fixes decoding for devices that follow old 5-byte SCSI INQUIRY format. * DiscImageChef.Decoders/SCSI/Sense.cs: Fixes printing of sense block missing a newline. * DiscImageChef.Devices/Device/Variables.cs: * DiscImageChef.Devices/Device/Constructor.cs: Added an IsRemovable field. * DiscImageChef.Devices/Device/ScsiCommands.cs: Fixed SCSI READ CAPACITY CDB size. Fixed READ CD-DA MSF method name. Implemented SCSI SEEK (6) and SEEK (10) commands. * DiscImageChef.Devices/Linux/Command.cs: * DiscImageChef.Devices/Windows/Command.cs: Fixed memory leaking on unmanaged heap. * DiscImageChef.Helpers/StringHandlers.cs: Fixed string conversion when input byte array is null. * DiscImageChef/Commands/MediaInfo.cs: Check for inserted medium only on removable media devices.
131 lines
4.3 KiB
C#
131 lines
4.3 KiB
C#
/***************************************************************************
|
|
The Disc Image Chef
|
|
----------------------------------------------------------------------------
|
|
|
|
Filename : StringHandlers.cs
|
|
Version : 1.0
|
|
Author(s) : Natalia Portillo
|
|
|
|
Component : Program tools
|
|
|
|
Revision : $Revision$
|
|
Last change by : $Author$
|
|
Date : $Date$
|
|
|
|
--[ Description ] ----------------------------------------------------------
|
|
|
|
Convert byte arrays to C# strings.
|
|
|
|
--[ License ] --------------------------------------------------------------
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
----------------------------------------------------------------------------
|
|
Copyright (C) 2011-2014 Claunia.com
|
|
****************************************************************************/
|
|
//$Id$
|
|
|
|
using System;
|
|
using System.Text;
|
|
|
|
namespace DiscImageChef
|
|
{
|
|
public static class StringHandlers
|
|
{
|
|
/// <summary>
|
|
/// Converts a null-terminated (aka C string) ASCII byte array to a C# string
|
|
/// </summary>
|
|
/// <returns>The corresponding C# string</returns>
|
|
/// <param name="CString">A null-terminated (aka C string) ASCII byte array</param>
|
|
public static string CToString(byte[] CString)
|
|
{
|
|
return CToString(CString, Encoding.ASCII);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts a null-terminated (aka C string) byte array with the specified encoding to a C# string
|
|
/// </summary>
|
|
/// <returns>The corresponding C# string</returns>
|
|
/// <param name="CString">A null-terminated (aka C string) byte array in the specified encoding</param>
|
|
/// <param name="encoding">Encoding.</param>
|
|
public static string CToString(byte[] CString, Encoding encoding)
|
|
{
|
|
if (CString == null)
|
|
return null;
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
for (int i = 0; i < CString.Length; i++)
|
|
{
|
|
if (CString[i] == 0)
|
|
break;
|
|
|
|
sb.Append(encoding.GetString(CString, i, 1));
|
|
}
|
|
|
|
return sb.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts a length-prefixed (aka Pascal string) ASCII byte array to a C# string
|
|
/// </summary>
|
|
/// <returns>The corresponding C# string</returns>
|
|
/// <param name="PascalString">A length-prefixed (aka Pascal string) ASCII byte array</param>
|
|
public static string PascalToString(byte[] PascalString)
|
|
{
|
|
if (PascalString == null)
|
|
return null;
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
byte length = PascalString[0];
|
|
|
|
for (int i = 1; i < length + 1; i++)
|
|
{
|
|
sb.Append(Encoding.ASCII.GetString(PascalString, i, 1));
|
|
}
|
|
|
|
return sb.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts a space (' ', 0x20, ASCII SPACE) padded ASCII byte array to a C# string
|
|
/// </summary>
|
|
/// <returns>The corresponding C# string</returns>
|
|
/// <param name="SpacePaddedString">A space (' ', 0x20, ASCII SPACE) padded ASCII byte array</param>
|
|
public static string SpacePaddedToString(byte[] SpacePaddedString)
|
|
{
|
|
if (SpacePaddedString == null)
|
|
return null;
|
|
|
|
int length = 0;
|
|
|
|
for (int i = SpacePaddedString.Length; i >= 0; i--)
|
|
{
|
|
if (i == 0)
|
|
return "";
|
|
|
|
if (SpacePaddedString[i - 1] != 0x20)
|
|
{
|
|
length = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return length == 0 ? "" : Encoding.ASCII.GetString(SpacePaddedString, 0, length);
|
|
}
|
|
}
|
|
}
|
|
|