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

65 lines
1.8 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
{
IpcBuffDesc buffDesc = context.Request.ReceiveBuff[0];
2018-02-04 23:08:20 +00:00
// Use smaller length to avoid overflows.
if (size > buffDesc.Size)
2018-02-04 23:08:20 +00:00
{
size = buffDesc.Size;
2018-02-04 23:08:20 +00:00
}
byte[] data = new byte[size];
2018-02-04 23:08:20 +00:00
Result result = _baseStorage.Get.Read((long)offset, new OutBuffer(data), (long)size);
2018-02-04 23:08:20 +00:00
context.Memory.Write(buffDesc.Position, data);
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
}
}