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

76 lines
1.8 KiB
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using System;
namespace Ryujinx.HLE.HOS.Services.Am
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
}
[Command(0)]
// GetSize() -> u64
public long 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 0;
}
[Command(10)]
// Write(u64, buffer<bytes, 0x21>)
public long Write(ServiceCtx context)
{
// TODO: Error conditions.
long writePosition = context.RequestData.ReadInt64();
(long position, long size) = context.Request.GetBufferType0x21();
if (size > 0)
{
long maxSize = _storage.Data.Length - writePosition;
if (size > maxSize)
{
size = maxSize;
}
byte[] data = context.Memory.ReadBytes(position, size);
Buffer.BlockCopy(data, 0, _storage.Data, (int)writePosition, (int)size);
}
return 0;
}
[Command(11)]
// Read(u64) -> buffer<bytes, 0x22>
public long Read(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
// TODO: Error conditions.
long readPosition = context.RequestData.ReadInt64();
2018-02-05 00:08:20 +01:00
(long position, long size) = context.Request.GetBufferType0x22();
2018-02-05 00:08:20 +01:00
byte[] data;
2018-02-05 00:08:20 +01:00
if (_storage.Data.Length > size)
{
data = new byte[size];
2018-02-05 00:08:20 +01:00
Buffer.BlockCopy(_storage.Data, 0, data, 0, (int)size);
}
else
{
data = _storage.Data;
2018-02-05 00:08:20 +01:00
}
context.Memory.WriteBytes(position, data);
2018-02-05 00:08:20 +01:00
return 0;
}
}
}