Ryujinx/Ryujinx.HLE/Utilities/StringUtils.cs

77 lines
2 KiB
C#
Raw Normal View History

using Ryujinx.HLE.HOS;
using System;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
namespace Ryujinx.HLE.Utilities
{
static class StringUtils
{
2018-12-01 21:01:59 +01:00
public static byte[] GetFixedLengthBytes(string inputString, int size, Encoding encoding)
{
2018-12-01 21:01:59 +01:00
inputString = inputString + "\0";
2018-12-01 21:01:59 +01:00
int bytesCount = encoding.GetByteCount(inputString);
2018-12-01 21:01:59 +01:00
byte[] output = new byte[size];
2018-12-01 21:01:59 +01:00
if (bytesCount < size)
{
2018-12-01 21:01:59 +01:00
encoding.GetBytes(inputString, 0, inputString.Length, output, 0);
}
else
{
2018-12-01 21:01:59 +01:00
int nullSize = encoding.GetByteCount("\0");
2018-12-01 21:01:59 +01:00
output = encoding.GetBytes(inputString);
2018-12-01 21:01:59 +01:00
Array.Resize(ref output, size - nullSize);
2018-12-01 21:01:59 +01:00
output = output.Concat(encoding.GetBytes("\0")).ToArray();
}
2018-12-01 21:01:59 +01:00
return output;
}
2018-12-01 21:01:59 +01:00
public static byte[] HexToBytes(string hexString)
{
//Ignore last charactor if HexLength % 2 != 0.
2018-12-01 21:01:59 +01:00
int bytesInHex = hexString.Length / 2;
2018-12-01 21:01:59 +01:00
byte[] output = new byte[bytesInHex];
2018-12-01 21:01:59 +01:00
for (int index = 0; index < bytesInHex; index++)
{
2018-12-01 21:01:59 +01:00
output[index] = byte.Parse(hexString.Substring(index * 2, 2), NumberStyles.HexNumber);
}
2018-12-01 21:01:59 +01:00
return output;
}
2018-12-01 21:01:59 +01:00
public static string ReadUtf8String(ServiceCtx context, int index = 0)
{
2018-12-01 21:01:59 +01:00
long position = context.Request.PtrBuff[index].Position;
long size = context.Request.PtrBuff[index].Size;
2018-12-01 21:01:59 +01:00
using (MemoryStream ms = new MemoryStream())
{
2018-12-01 21:01:59 +01:00
while (size-- > 0)
{
2018-12-01 21:01:59 +01:00
byte value = context.Memory.ReadByte(position++);
2018-12-01 21:01:59 +01:00
if (value == 0)
{
break;
}
2018-12-01 21:01:59 +01:00
ms.WriteByte(value);
}
2018-12-01 21:01:59 +01:00
return Encoding.UTF8.GetString(ms.ToArray());
}
}
}
}