2016-07-28 22:25:26 +01:00
|
|
|
// /***************************************************************************
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : StringHandlers.cs
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// Component : Helpers.
|
|
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Convert byte arrays to C# strings.
|
|
|
|
|
//
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// This library is free software; you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This library 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
|
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2017-05-19 20:28:49 +01:00
|
|
|
// Copyright © 2011-2017 Natalia Portillo
|
2016-07-28 22:25:26 +01:00
|
|
|
// ****************************************************************************/
|
2014-04-17 19:58:14 +00:00
|
|
|
|
2011-03-03 18:34:33 +00:00
|
|
|
using System.Text;
|
|
|
|
|
|
2014-06-15 23:39:34 +01:00
|
|
|
namespace DiscImageChef
|
2011-03-03 18:34:33 +00:00
|
|
|
{
|
2014-04-14 02:29:13 +00:00
|
|
|
public static class StringHandlers
|
|
|
|
|
{
|
2014-09-03 04:25:33 +01:00
|
|
|
/// <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>
|
2014-04-14 02:29:13 +00:00
|
|
|
public static string CToString(byte[] CString)
|
2015-12-04 03:34:44 +00:00
|
|
|
{
|
|
|
|
|
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)
|
2014-04-14 02:29:13 +00:00
|
|
|
{
|
2016-04-19 02:11:47 +01:00
|
|
|
if(CString == null)
|
2015-12-30 11:45:27 +00:00
|
|
|
return null;
|
|
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
StringBuilder sb = new StringBuilder();
|
2016-04-19 02:11:47 +01:00
|
|
|
|
|
|
|
|
for(int i = 0; i < CString.Length; i++)
|
2014-04-14 02:29:13 +00:00
|
|
|
{
|
2016-04-19 02:11:47 +01:00
|
|
|
if(CString[i] == 0)
|
2014-04-14 02:29:13 +00:00
|
|
|
break;
|
2011-03-03 18:34:33 +00:00
|
|
|
|
2015-12-04 03:34:44 +00:00
|
|
|
sb.Append(encoding.GetString(CString, i, 1));
|
2014-04-14 02:29:13 +00:00
|
|
|
}
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
return sb.ToString();
|
|
|
|
|
}
|
2012-08-04 18:20:03 +00:00
|
|
|
|
2014-09-03 04:25:33 +01:00
|
|
|
/// <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>
|
2014-04-14 02:29:13 +00:00
|
|
|
public static string PascalToString(byte[] PascalString)
|
2017-06-06 21:23:20 +01:00
|
|
|
{
|
|
|
|
|
return PascalToString(PascalString, Encoding.ASCII);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <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>
|
|
|
|
|
/// <param name="encoding">Encoding.</param>
|
|
|
|
|
public static string PascalToString(byte[] PascalString, Encoding encoding)
|
2014-04-14 02:29:13 +00:00
|
|
|
{
|
2016-04-19 02:11:47 +01:00
|
|
|
if(PascalString == null)
|
2015-12-30 11:45:27 +00:00
|
|
|
return null;
|
|
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
StringBuilder sb = new StringBuilder();
|
2012-08-04 18:20:03 +00:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
byte length = PascalString[0];
|
2012-08-04 18:20:03 +00:00
|
|
|
|
2016-04-19 02:11:47 +01:00
|
|
|
for(int i = 1; i < length + 1; i++)
|
2014-04-14 02:29:13 +00:00
|
|
|
{
|
2017-06-06 21:23:20 +01:00
|
|
|
sb.Append(encoding.GetString(PascalString, i, 1));
|
2014-04-14 02:29:13 +00:00
|
|
|
}
|
2012-08-04 18:20:03 +00:00
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
return sb.ToString();
|
|
|
|
|
}
|
2014-09-03 04:22:19 +01:00
|
|
|
|
2014-09-03 04:25:33 +01:00
|
|
|
/// <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)
|
2017-06-06 21:23:20 +01:00
|
|
|
{
|
|
|
|
|
return SpacePaddedToString(SpacePaddedString, Encoding.ASCII);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <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>
|
|
|
|
|
/// <param name="encoding">Encoding.</param>
|
|
|
|
|
public static string SpacePaddedToString(byte[] SpacePaddedString, Encoding encoding)
|
2014-09-03 04:22:19 +01:00
|
|
|
{
|
2016-04-19 02:11:47 +01:00
|
|
|
if(SpacePaddedString == null)
|
2015-12-30 11:45:27 +00:00
|
|
|
return null;
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2014-09-03 05:36:39 +01:00
|
|
|
int length = 0;
|
2014-09-03 04:22:19 +01:00
|
|
|
|
2016-04-19 02:11:47 +01:00
|
|
|
for(int i = SpacePaddedString.Length; i >= 0; i--)
|
2014-09-03 04:22:19 +01:00
|
|
|
{
|
2016-04-19 02:11:47 +01:00
|
|
|
if(i == 0)
|
2014-09-03 04:22:19 +01:00
|
|
|
return "";
|
|
|
|
|
|
2016-04-19 02:11:47 +01:00
|
|
|
if(SpacePaddedString[i - 1] != 0x20)
|
2014-09-03 04:22:19 +01:00
|
|
|
{
|
|
|
|
|
length = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-06 21:23:20 +01:00
|
|
|
return length == 0 ? "" : encoding.GetString(SpacePaddedString, 0, length);
|
2014-09-03 04:22:19 +01:00
|
|
|
}
|
2016-09-15 01:54:13 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Converts an OSTA compressed unicode byte array to a C# string
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The C# string.</returns>
|
|
|
|
|
/// <param name="dstring">OSTA compressed unicode byte array.</param>
|
|
|
|
|
public static string DecompressUnicode(byte[] dstring)
|
|
|
|
|
{
|
|
|
|
|
ushort unicode;
|
|
|
|
|
byte compId = dstring[0];
|
|
|
|
|
string temp = "";
|
|
|
|
|
|
|
|
|
|
if(compId != 8 && compId != 16)
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
for(int byteIndex = 1; byteIndex < dstring.Length;)
|
|
|
|
|
{
|
|
|
|
|
if(compId == 16)
|
|
|
|
|
unicode = (ushort)(dstring[byteIndex++] << 8);
|
|
|
|
|
else
|
|
|
|
|
unicode = 0;
|
|
|
|
|
|
|
|
|
|
if(byteIndex < dstring.Length)
|
|
|
|
|
unicode |= dstring[byteIndex++];
|
|
|
|
|
|
|
|
|
|
if(unicode == 0)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
temp += Encoding.Unicode.GetString(System.BitConverter.GetBytes(unicode));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return temp;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-14 02:29:13 +00:00
|
|
|
}
|
2011-03-03 18:34:33 +00:00
|
|
|
}
|
|
|
|
|
|