Ryujinx/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IStorage.cs

69 lines
1.7 KiB
C#
Raw Normal View History

using LibHac;
using Ryujinx.HLE.HOS.Ipc;
using System;
2018-02-05 00:08:20 +01:00
namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
2018-02-05 00:08:20 +01:00
{
class IStorage : IpcService, IDisposable
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 ResultCode 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
Result result = _baseStorage.Read(offset, data);
2018-02-05 00:08:20 +01:00
context.Memory.Write((ulong)buffDesc.Position, data);
return (ResultCode)result.Value;
2018-02-05 00:08:20 +01:00
}
return ResultCode.Success;
2018-02-05 00:08:20 +01:00
}
2019-02-15 16:44:25 +01:00
[Command(4)]
2019-02-15 16:44:25 +01:00
// GetSize() -> u64 size
public ResultCode GetSize(ServiceCtx context)
2019-02-15 16:44:25 +01:00
{
Result result = _baseStorage.GetSize(out long size);
2019-02-15 16:44:25 +01:00
context.ResponseData.Write(size);
return (ResultCode)result.Value;
2019-02-15 16:44:25 +01:00
}
public void Dispose()
{
Dispose(true);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
_baseStorage?.Dispose();
}
}
2018-02-05 00:08:20 +01:00
}
}