2020-03-25 08:14:35 +00:00
|
|
|
|
using LibHac.Common;
|
|
|
|
|
using Ryujinx.HLE.HOS;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
using System;
|
2018-08-14 00:13:01 +00:00
|
|
|
|
using System.Globalization;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
using System.IO;
|
2018-08-14 00:13:01 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
|
namespace Ryujinx.HLE.Utilities
|
2018-08-14 00:13:01 +00:00
|
|
|
|
{
|
|
|
|
|
static class StringUtils
|
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public static byte[] GetFixedLengthBytes(string inputString, int size, Encoding encoding)
|
2018-08-14 00:13:01 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
inputString = inputString + "\0";
|
2018-08-14 00:13:01 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
int bytesCount = encoding.GetByteCount(inputString);
|
2018-08-14 00:13:01 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
byte[] output = new byte[size];
|
2018-08-14 00:13:01 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (bytesCount < size)
|
2018-08-14 00:13:01 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
encoding.GetBytes(inputString, 0, inputString.Length, output, 0);
|
2018-08-14 00:13:01 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
int nullSize = encoding.GetByteCount("\0");
|
2018-08-14 00:13:01 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
output = encoding.GetBytes(inputString);
|
2018-08-14 00:13:01 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
Array.Resize(ref output, size - nullSize);
|
2018-08-14 00:13:01 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
output = output.Concat(encoding.GetBytes("\0")).ToArray();
|
2018-08-14 00:13:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return output;
|
2018-08-14 00:13:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public static byte[] HexToBytes(string hexString)
|
2018-08-14 00:13:01 +00:00
|
|
|
|
{
|
2019-07-02 02:39:22 +00:00
|
|
|
|
// Ignore last character if HexLength % 2 != 0.
|
2018-12-06 11:16:24 +00:00
|
|
|
|
int bytesInHex = hexString.Length / 2;
|
2018-08-14 00:13:01 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
byte[] output = new byte[bytesInHex];
|
2018-08-14 00:13:01 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
for (int index = 0; index < bytesInHex; index++)
|
2018-08-14 00:13:01 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
output[index] = byte.Parse(hexString.Substring(index * 2, 2), NumberStyles.HexNumber);
|
2018-08-14 00:13:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return output;
|
2018-08-14 00:13:01 +00:00
|
|
|
|
}
|
2018-11-18 19:37:41 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public static string ReadUtf8String(ServiceCtx context, int index = 0)
|
2018-11-18 19:37:41 +00:00
|
|
|
|
{
|
2021-04-24 10:16:01 +00:00
|
|
|
|
ulong position = context.Request.PtrBuff[index].Position;
|
|
|
|
|
ulong size = context.Request.PtrBuff[index].Size;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
using (MemoryStream ms = new MemoryStream())
|
2018-11-18 19:37:41 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
while (size-- > 0)
|
2018-11-18 19:37:41 +00:00
|
|
|
|
{
|
2021-04-24 10:16:01 +00:00
|
|
|
|
byte value = context.Memory.Read<byte>(position++);
|
2018-11-18 19:37:41 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (value == 0)
|
2018-11-18 19:37:41 +00:00
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ms.WriteByte(value);
|
2018-11-18 19:37:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return Encoding.UTF8.GetString(ms.ToArray());
|
2018-11-18 19:37:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-16 01:31:18 +00:00
|
|
|
|
|
2020-03-25 08:14:35 +00:00
|
|
|
|
public static U8Span ReadUtf8Span(ServiceCtx context, int index = 0)
|
|
|
|
|
{
|
|
|
|
|
ulong position = (ulong)context.Request.PtrBuff[index].Position;
|
2020-05-03 22:54:50 +00:00
|
|
|
|
ulong size = (ulong)context.Request.PtrBuff[index].Size;
|
2020-03-25 08:14:35 +00:00
|
|
|
|
|
2020-05-03 22:54:50 +00:00
|
|
|
|
ReadOnlySpan<byte> buffer = context.Memory.GetSpan(position, (int)size);
|
2020-03-25 08:14:35 +00:00
|
|
|
|
|
|
|
|
|
return new U8Span(buffer);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-16 01:31:18 +00:00
|
|
|
|
public static string ReadUtf8StringSend(ServiceCtx context, int index = 0)
|
|
|
|
|
{
|
2021-04-24 10:16:01 +00:00
|
|
|
|
ulong position = context.Request.SendBuff[index].Position;
|
|
|
|
|
ulong size = context.Request.SendBuff[index].Size;
|
2019-06-16 01:31:18 +00:00
|
|
|
|
|
|
|
|
|
using (MemoryStream ms = new MemoryStream())
|
|
|
|
|
{
|
|
|
|
|
while (size-- > 0)
|
|
|
|
|
{
|
2020-05-03 22:54:50 +00:00
|
|
|
|
byte value = context.Memory.Read<byte>((ulong)position++);
|
2019-06-16 01:31:18 +00:00
|
|
|
|
|
|
|
|
|
if (value == 0)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ms.WriteByte(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Encoding.UTF8.GetString(ms.ToArray());
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-04 15:20:40 +00:00
|
|
|
|
|
|
|
|
|
public static unsafe int CompareCStr(char* s1, char* s2)
|
|
|
|
|
{
|
|
|
|
|
int s1Index = 0;
|
|
|
|
|
int s2Index = 0;
|
|
|
|
|
|
|
|
|
|
while (s1[s1Index] != 0 && s2[s2Index] != 0 && s1[s1Index] == s2[s2Index])
|
|
|
|
|
{
|
|
|
|
|
s1Index += 1;
|
|
|
|
|
s2Index += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return s2[s2Index] - s1[s1Index];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static unsafe int LengthCstr(char* s)
|
|
|
|
|
{
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
|
|
while (s[i] != '\0')
|
|
|
|
|
{
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return i;
|
|
|
|
|
}
|
2018-08-14 00:13:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|