Ryujinx/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorageAccessor.cs

86 lines
2.3 KiB
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using System;
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
2018-02-05 00:08:20 +01:00
{
class IStorageAccessor : IpcService
2018-02-05 00:08:20 +01:00
{
private IStorage _storage;
public IStorageAccessor(IStorage storage)
2018-02-05 00:08:20 +01:00
{
_storage = storage;
2018-02-05 00:08:20 +01:00
}
[CommandHipc(0)]
// GetSize() -> u64
public ResultCode GetSize(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
context.ResponseData.Write((long)_storage.Data.Length);
2018-02-05 00:08:20 +01:00
return ResultCode.Success;
2018-02-05 00:08:20 +01:00
}
[CommandHipc(10)]
// Write(u64, buffer<bytes, 0x21>)
public ResultCode Write(ServiceCtx context)
{
if (_storage.IsReadOnly)
{
return ResultCode.ObjectInvalid;
}
ulong writePosition = context.RequestData.ReadUInt64();
if (writePosition > (ulong)_storage.Data.Length)
{
return ResultCode.OutOfBounds;
}
(ulong position, ulong size) = context.Request.GetBufferType0x21();
size = Math.Min(size, (ulong)_storage.Data.Length - writePosition);
if (size > 0)
{
ulong maxSize = (ulong)_storage.Data.Length - writePosition;
if (size > maxSize)
{
size = maxSize;
}
byte[] data = new byte[size];
context.Memory.Read(position, data);
Buffer.BlockCopy(data, 0, _storage.Data, (int)writePosition, (int)size);
}
return ResultCode.Success;
}
[CommandHipc(11)]
// Read(u64) -> buffer<bytes, 0x22>
public ResultCode Read(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
ulong readPosition = context.RequestData.ReadUInt64();
2018-02-05 00:08:20 +01:00
if (readPosition > (ulong)_storage.Data.Length)
{
return ResultCode.OutOfBounds;
}
(ulong position, ulong size) = context.Request.GetBufferType0x22();
2018-02-05 00:08:20 +01:00
size = Math.Min(size, (ulong)_storage.Data.Length - readPosition);
2018-02-05 00:08:20 +01:00
byte[] data = new byte[size];
2018-02-05 00:08:20 +01:00
Buffer.BlockCopy(_storage.Data, (int)readPosition, data, 0, (int)size);
2018-02-05 00:08:20 +01:00
context.Memory.Write(position, data);
return ResultCode.Success;
2018-02-05 00:08:20 +01:00
}
}
}