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
{
2018-12-01 20:01:59 +00:00
private Dictionary<int, ServiceProcessRequest> _commands;
2018-02-04 23:08:20 +00:00
2018-12-01 20:01:59 +00:00
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
2018-12-01 20:01:59 +00:00
private IStorage _storage;
2018-12-01 20:01:59 +00:00
public IStorageAccessor(IStorage storage)
2018-02-04 23:08:20 +00:00
{
2018-12-01 20:01:59 +00:00
_commands = new Dictionary<int, ServiceProcessRequest>()
{
2018-04-24 18:57:39 +00:00
{ 0, GetSize },
{ 10, Write },
{ 11, Read }
};
2018-12-01 20:01:59 +00:00
this._storage = storage;
2018-02-04 23:08:20 +00:00
}
2018-12-01 20:01:59 +00:00
public long GetSize(ServiceCtx context)
2018-02-04 23:08:20 +00:00
{
2018-12-01 20:01:59 +00:00
context.ResponseData.Write((long)_storage.Data.Length);
2018-02-04 23:08:20 +00:00
return 0;
}
2018-12-01 20:01:59 +00:00
public long Write(ServiceCtx context)
{
//TODO: Error conditions.
2018-12-01 20:01:59 +00:00
long writePosition = context.RequestData.ReadInt64();
2018-12-01 20:01:59 +00:00
(long position, long size) = context.Request.GetBufferType0x21();
2018-12-01 20:01:59 +00:00
if (size > 0)
{
2018-12-01 20:01:59 +00:00
long maxSize = _storage.Data.Length - writePosition;
2018-12-01 20:01:59 +00:00
if (size > maxSize)
{
2018-12-01 20:01:59 +00:00
size = maxSize;
}
2018-12-01 20:01:59 +00:00
byte[] data = context.Memory.ReadBytes(position, size);
2018-12-01 20:01:59 +00:00
Buffer.BlockCopy(data, 0, _storage.Data, (int)writePosition, (int)size);
}
return 0;
}
2018-12-01 20:01:59 +00:00
public long Read(ServiceCtx context)
2018-02-04 23:08:20 +00:00
{
//TODO: Error conditions.
2018-12-01 20:01:59 +00:00
long readPosition = context.RequestData.ReadInt64();
2018-02-04 23:08:20 +00:00
2018-12-01 20:01:59 +00:00
(long position, long size) = context.Request.GetBufferType0x22();
2018-02-04 23:08:20 +00:00
2018-12-01 20:01:59 +00:00
byte[] data;
2018-02-04 23:08:20 +00:00
2018-12-01 20:01:59 +00:00
if (_storage.Data.Length > size)
{
2018-12-01 20:01:59 +00:00
data = new byte[size];
2018-02-04 23:08:20 +00:00
2018-12-01 20:01:59 +00:00
Buffer.BlockCopy(_storage.Data, 0, data, 0, (int)size);
}
else
{
2018-12-01 20:01:59 +00:00
data = _storage.Data;
2018-02-04 23:08:20 +00:00
}
2018-12-01 20:01:59 +00:00
context.Memory.WriteBytes(position, data);
2018-02-04 23:08:20 +00:00
return 0;
}
}
}