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

83 lines
2.1 KiB
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
2018-02-04 23:08:20 +00:00
using System;
using System.Collections.Generic;
2018-02-04 23:08:20 +00:00
namespace Ryujinx.HLE.HOS.Services.Am
2018-02-04 23:08:20 +00:00
{
class IStorageAccessor : IpcService
2018-02-04 23:08:20 +00:00
{
private Dictionary<int, ServiceProcessRequest> _commands;
2018-02-04 23:08:20 +00:00
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
private IStorage _storage;
public IStorageAccessor(IStorage storage)
2018-02-04 23:08:20 +00:00
{
_commands = new Dictionary<int, ServiceProcessRequest>
{
2018-04-24 18:57:39 +00:00
{ 0, GetSize },
{ 10, Write },
{ 11, Read }
};
_storage = storage;
2018-02-04 23:08:20 +00:00
}
public long GetSize(ServiceCtx context)
2018-02-04 23:08:20 +00:00
{
context.ResponseData.Write((long)_storage.Data.Length);
2018-02-04 23:08:20 +00:00
return 0;
}
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;
}
public long Read(ServiceCtx context)
2018-02-04 23:08:20 +00:00
{
//TODO: Error conditions.
long readPosition = context.RequestData.ReadInt64();
2018-02-04 23:08:20 +00:00
(long position, long size) = context.Request.GetBufferType0x22();
2018-02-04 23:08:20 +00:00
byte[] data;
2018-02-04 23:08:20 +00:00
if (_storage.Data.Length > size)
{
data = new byte[size];
2018-02-04 23:08:20 +00:00
Buffer.BlockCopy(_storage.Data, 0, data, 0, (int)size);
}
else
{
data = _storage.Data;
2018-02-04 23:08:20 +00:00
}
context.Memory.WriteBytes(position, data);
2018-02-04 23:08:20 +00:00
return 0;
}
}
}