Ryujinx/Ryujinx.HLE/HOS/Services/FspSrv/IStorage.cs

65 lines
1.6 KiB
C#
Raw Normal View History

using LibHac;
using Ryujinx.HLE.HOS.Ipc;
2018-02-05 00:08:20 +01:00
namespace Ryujinx.HLE.HOS.Services.FspSrv
2018-02-05 00:08:20 +01:00
{
class IStorage : IpcService
2018-02-05 00:08:20 +01:00
{
private LibHac.Fs.IStorage _baseStorage;
2018-02-05 00:08:20 +01:00
public IStorage(LibHac.Fs.IStorage baseStorage)
2018-02-05 00:08:20 +01:00
{
_baseStorage = baseStorage;
2018-02-05 00:08:20 +01:00
}
[Command(0)]
// Read(u64 offset, u64 length) -> buffer<u8, 0x46, 0> buffer
public long Read(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
long offset = context.RequestData.ReadInt64();
long size = context.RequestData.ReadInt64();
2018-02-05 00:08:20 +01:00
if (context.Request.ReceiveBuff.Count > 0)
2018-02-05 00:08:20 +01:00
{
IpcBuffDesc buffDesc = context.Request.ReceiveBuff[0];
2018-02-05 00:08:20 +01:00
// Use smaller length to avoid overflows.
if (size > buffDesc.Size)
2018-02-05 00:08:20 +01:00
{
size = buffDesc.Size;
2018-02-05 00:08:20 +01:00
}
byte[] data = new byte[size];
2018-02-05 00:08:20 +01:00
try
{
_baseStorage.Read(data, offset);
}
catch (HorizonResultException ex)
{
return ex.ResultValue.Value;
}
2018-02-05 00:08:20 +01:00
context.Memory.WriteBytes(buffDesc.Position, data);
2018-02-05 00:08:20 +01:00
}
return 0;
}
2019-02-15 16:44:25 +01:00
[Command(4)]
2019-02-15 16:44:25 +01:00
// GetSize() -> u64 size
public long GetSize(ServiceCtx context)
{
try
{
context.ResponseData.Write(_baseStorage.GetSize());
}
catch (HorizonResultException ex)
{
return ex.ResultValue.Value;
}
2019-02-15 16:44:25 +01:00
return 0;
}
2018-02-05 00:08:20 +01:00
}
}