2018-02-04 23:08:20 +00:00
|
|
|
using System;
|
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IStorageAccessor : IpcService
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
private IStorage _storage;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public IStorageAccessor(IStorage storage)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_storage = storage;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
|
|
|
// GetSize() -> u64
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetSize(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write((long)_storage.Data.Length);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(10)]
|
|
|
|
// Write(u64, buffer<bytes, 0x21>)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode Write(ServiceCtx context)
|
2018-06-02 22:46:09 +00:00
|
|
|
{
|
2021-01-19 02:28:35 +00:00
|
|
|
if (_storage.IsReadOnly)
|
|
|
|
{
|
|
|
|
return ResultCode.ObjectInvalid;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
long writePosition = context.RequestData.ReadInt64();
|
2018-06-04 05:09:41 +00:00
|
|
|
|
2019-11-18 11:16:26 +00:00
|
|
|
if (writePosition > _storage.Data.Length)
|
|
|
|
{
|
|
|
|
return ResultCode.OutOfBounds;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
(long position, long size) = context.Request.GetBufferType0x21();
|
2018-06-04 05:09:41 +00:00
|
|
|
|
2019-11-18 11:16:26 +00:00
|
|
|
size = Math.Min(size, _storage.Data.Length - writePosition);
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (size > 0)
|
2018-06-04 05:09:41 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long maxSize = _storage.Data.Length - writePosition;
|
2018-06-04 05:09:41 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (size > maxSize)
|
2018-06-04 05:09:41 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
size = maxSize;
|
2018-06-04 05:09:41 +00:00
|
|
|
}
|
|
|
|
|
2020-05-03 22:54:50 +00:00
|
|
|
byte[] data = new byte[size];
|
|
|
|
|
|
|
|
context.Memory.Read((ulong)position, data);
|
2018-06-04 05:09:41 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
Buffer.BlockCopy(data, 0, _storage.Data, (int)writePosition, (int)size);
|
2018-06-04 05:09:41 +00:00
|
|
|
}
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-06-02 22:46:09 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(11)]
|
|
|
|
// Read(u64) -> buffer<bytes, 0x22>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode Read(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long readPosition = context.RequestData.ReadInt64();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-11-18 11:16:26 +00:00
|
|
|
if (readPosition > _storage.Data.Length)
|
|
|
|
{
|
|
|
|
return ResultCode.OutOfBounds;
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
(long position, long size) = context.Request.GetBufferType0x22();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-11-18 11:16:26 +00:00
|
|
|
size = Math.Min(size, _storage.Data.Length - readPosition);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-11-18 11:16:26 +00:00
|
|
|
byte[] data = new byte[size];
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-11-18 11:16:26 +00:00
|
|
|
Buffer.BlockCopy(_storage.Data, (int)readPosition, data, 0, (int)size);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2020-05-03 22:54:50 +00:00
|
|
|
context.Memory.Write((ulong)position, data);
|
2018-06-04 05:09:41 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|