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-12-19 03:50:57 +00:00
|
|
|
// Copyright © 2011-2018 Natalia Portillo
|
2016-07-28 22:25:26 +01:00
|
|
|
// ****************************************************************************/
|
2015-10-05 18:58:13 +01:00
|
|
|
|
2017-06-06 21:38:30 +01:00
|
|
|
using System;
|
2017-12-19 19:33:46 +00:00
|
|
|
using System.Text;
|
2015-10-05 18:58:13 +01:00
|
|
|
|
|
|
|
|
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)
|
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>
|
2017-08-22 03:40:12 +01:00
|
|
|
public static string CToString(byte[] CString, Encoding encoding, bool twoBytes = false, int start = 0)
|
2015-10-05 18:58:13 +01:00
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
if(CString == null) return null;
|
2015-12-30 11:45:27 +00:00
|
|
|
|
2017-06-06 21:38:30 +01:00
|
|
|
int len = 0;
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2017-08-22 03:40:12 +01:00
|
|
|
for(int i = start; i < CString.Length; i++)
|
2015-10-05 18:58:13 +01:00
|
|
|
{
|
2016-04-19 02:11:47 +01:00
|
|
|
if(CString[i] == 0)
|
2017-07-11 02:32:40 +01:00
|
|
|
if(twoBytes)
|
|
|
|
|
{
|
2017-12-20 17:26:28 +00:00
|
|
|
if(i + 1 < CString.Length && CString[i + 1] == 0)
|
2017-07-11 02:32:40 +01:00
|
|
|
{
|
|
|
|
|
len++;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
// if((i + 1) == CString.Length)
|
|
|
|
|
// break;
|
2017-07-11 02:32:40 +01:00
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
else break;
|
2015-10-05 18:58:13 +01:00
|
|
|
|
2017-06-06 21:38:30 +01:00
|
|
|
len++;
|
2015-10-05 18:58:13 +01:00
|
|
|
}
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2017-06-06 21:38:30 +01:00
|
|
|
byte[] dest = new byte[len];
|
2017-08-22 03:40:12 +01:00
|
|
|
Array.Copy(CString, start, dest, 0, len);
|
2017-06-06 21:38:30 +01:00
|
|
|
|
|
|
|
|
return len == 0 ? "" : encoding.GetString(dest);
|
2015-10-05 18:58:13 +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>
|
|
|
|
|
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>
|
2017-08-22 03:40:12 +01:00
|
|
|
public static string PascalToString(byte[] PascalString, Encoding encoding, int start = 0)
|
2015-10-05 18:58:13 +01:00
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
if(PascalString == null) return null;
|
2015-12-30 11:45:27 +00:00
|
|
|
|
2017-08-22 03:40:12 +01:00
|
|
|
byte length = PascalString[start];
|
2017-06-06 21:38:30 +01:00
|
|
|
int len = 0;
|
2015-10-05 18:58:13 +01:00
|
|
|
|
2017-08-22 03:40:12 +01:00
|
|
|
for(int i = start + 1; i < length + 1 && i < PascalString.Length; i++)
|
2015-10-05 18:58:13 +01:00
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
if(PascalString[i] == 0) break;
|
|
|
|
|
|
2017-06-06 21:38:30 +01:00
|
|
|
len++;
|
2015-10-05 18:58:13 +01:00
|
|
|
}
|
|
|
|
|
|
2017-06-06 21:38:30 +01:00
|
|
|
byte[] dest = new byte[len];
|
2017-08-22 03:40:12 +01:00
|
|
|
Array.Copy(PascalString, start + 1, dest, 0, len);
|
2017-06-06 21:38:30 +01:00
|
|
|
|
|
|
|
|
return len == 0 ? "" : encoding.GetString(dest);
|
2015-10-05 18:58:13 +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>
|
2017-08-22 03:40:12 +01:00
|
|
|
public static string SpacePaddedToString(byte[] SpacePaddedString, Encoding encoding, int start = 0)
|
2015-10-05 18:58:13 +01:00
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
if(SpacePaddedString == null) return null;
|
2016-04-19 02:11:47 +01:00
|
|
|
|
2017-08-22 03:40:12 +01:00
|
|
|
int len = start;
|
2015-10-05 18:58:13 +01:00
|
|
|
|
2017-08-22 03:40:12 +01:00
|
|
|
for(int i = SpacePaddedString.Length; i >= start; i--)
|
2015-10-05 18:58:13 +01:00
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
if(i == start) return "";
|
2015-10-05 18:58:13 +01:00
|
|
|
|
2017-12-21 06:06:19 +00:00
|
|
|
if(SpacePaddedString[i - 1] == 0x20) continue;
|
|
|
|
|
|
|
|
|
|
len = i;
|
|
|
|
|
break;
|
2015-10-05 18:58:13 +01:00
|
|
|
}
|
|
|
|
|
|
2017-08-22 03:40:12 +01:00
|
|
|
return len == 0 ? "" : encoding.GetString(SpacePaddedString, start, len);
|
2015-10-05 18:58:13 +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 = "";
|
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
if(compId != 8 && compId != 16) return null;
|
2016-09-15 01:54:13 +01:00
|
|
|
|
|
|
|
|
for(int byteIndex = 1; byteIndex < dstring.Length;)
|
|
|
|
|
{
|
2017-12-19 20:33:03 +00:00
|
|
|
if(compId == 16) unicode = (ushort)(dstring[byteIndex++] << 8);
|
|
|
|
|
else unicode = 0;
|
2016-09-15 01:54:13 +01:00
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
if(byteIndex < dstring.Length) unicode |= dstring[byteIndex++];
|
2016-09-15 01:54:13 +01:00
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
if(unicode == 0) break;
|
2016-09-15 01:54:13 +01:00
|
|
|
|
2017-12-21 14:30:38 +00:00
|
|
|
temp += Encoding.Unicode.GetString(BitConverter.GetBytes(unicode));
|
2016-09-15 01:54:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return temp;
|
|
|
|
|
}
|
2015-10-05 18:58:13 +01:00
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
}
|