1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-23 15:34:01 +01:00
Ryujinx/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IStorage.cs

65 lines
1.9 KiB
C#
Raw Normal View History

using LibHac;
using LibHac.Common;
using LibHac.Sf;
using Ryujinx.HLE.HOS.Ipc;
2018-02-04 23:08:20 +00:00
namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
2018-02-04 23:08:20 +00:00
{
class IStorage : DisposableIpcService
2018-02-04 23:08:20 +00:00
{
private SharedRef<LibHac.FsSrv.Sf.IStorage> _baseStorage;
2018-02-04 23:08:20 +00:00
public IStorage(ref SharedRef<LibHac.FsSrv.Sf.IStorage> baseStorage)
2018-02-04 23:08:20 +00:00
{
_baseStorage = SharedRef<LibHac.FsSrv.Sf.IStorage>.CreateMove(ref baseStorage);
2018-02-04 23:08:20 +00:00
}
[CommandHipc(0)]
// Read(u64 offset, u64 length) -> buffer<u8, 0x46, 0> buffer
public ResultCode Read(ServiceCtx context)
2018-02-04 23:08:20 +00:00
{
ulong offset = context.RequestData.ReadUInt64();
ulong size = context.RequestData.ReadUInt64();
2018-02-04 23:08:20 +00:00
if (context.Request.ReceiveBuff.Count > 0)
2018-02-04 23:08:20 +00:00
{
ulong bufferAddress = context.Request.ReceiveBuff[0].Position;
ulong bufferLen = context.Request.ReceiveBuff[0].Size;
2018-02-04 23:08:20 +00:00
// Use smaller length to avoid overflows.
if (size > bufferLen)
2018-02-04 23:08:20 +00:00
{
size = bufferLen;
2018-02-04 23:08:20 +00:00
}
using (var region = context.Memory.GetWritableRegion(bufferAddress, (int)bufferLen, true))
{
Result result = _baseStorage.Get.Read((long)offset, new OutBuffer(region.Memory.Span), (long)size);
return (ResultCode)result.Value;
}
2018-02-04 23:08:20 +00:00
}
return ResultCode.Success;
2018-02-04 23:08:20 +00:00
}
2019-02-15 15:44:25 +00:00
[CommandHipc(4)]
2019-02-15 15:44:25 +00:00
// GetSize() -> u64 size
public ResultCode GetSize(ServiceCtx context)
2019-02-15 15:44:25 +00:00
{
Result result = _baseStorage.Get.GetSize(out long size);
2019-02-15 15:44:25 +00:00
context.ResponseData.Write(size);
return (ResultCode)result.Value;
2019-02-15 15:44:25 +00:00
}
protected override void Dispose(bool isDisposing)
{
if (isDisposing)
{
_baseStorage.Destroy();
}
}
2018-02-04 23:08:20 +00:00
}
}