2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
2018-02-10 01:14:55 +01:00
|
|
|
using System.Collections.Generic;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class IStorageAccessor : IpcService
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private IStorage _storage;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public IStorageAccessor(IStorage storage)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-04-24 20:57:39 +02:00
|
|
|
{ 0, GetSize },
|
2018-06-03 00:46:09 +02:00
|
|
|
{ 10, Write },
|
2018-02-10 01:14:55 +01:00
|
|
|
{ 11, Read }
|
|
|
|
};
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
_storage = storage;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long GetSize(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write((long)_storage.Data.Length);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long Write(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-06-04 07:09:41 +02:00
|
|
|
//TODO: Error conditions.
|
2018-12-06 12:16:24 +01:00
|
|
|
long writePosition = context.RequestData.ReadInt64();
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
(long position, long size) = context.Request.GetBufferType0x21();
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (size > 0)
|
2018-06-04 07:09:41 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
long maxSize = _storage.Data.Length - writePosition;
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (size > maxSize)
|
2018-06-04 07:09:41 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
size = maxSize;
|
2018-06-04 07:09:41 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] data = context.Memory.ReadBytes(position, size);
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
Buffer.BlockCopy(data, 0, _storage.Data, (int)writePosition, (int)size);
|
2018-06-04 07:09:41 +02:00
|
|
|
}
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public long Read(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-06-04 07:09:41 +02:00
|
|
|
//TODO: Error conditions.
|
2018-12-06 12:16:24 +01:00
|
|
|
long readPosition = context.RequestData.ReadInt64();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
(long position, long size) = context.Request.GetBufferType0x22();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] data;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (_storage.Data.Length > size)
|
2018-06-04 07:09:41 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
data = new byte[size];
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
Buffer.BlockCopy(_storage.Data, 0, data, 0, (int)size);
|
2018-06-04 07:09:41 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
data = _storage.Data;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Memory.WriteBytes(position, data);
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|