2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
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.FspSrv
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class IStorage : IpcService
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-10 01:14:55 +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
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
private LibHac.Fs.IStorage _baseStorage;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
public IStorage(LibHac.Fs.IStorage baseStorage)
|
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
|
|
|
{
|
2019-02-15 16:44:25 +01:00
|
|
|
{ 0, Read },
|
|
|
|
{ 4, GetSize }
|
2018-02-10 01:14:55 +01:00
|
|
|
};
|
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
_baseStorage = baseStorage;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-11-18 20:37:41 +01:00
|
|
|
// Read(u64 offset, u64 length) -> buffer<u8, 0x46, 0> buffer
|
2018-12-06 12:16:24 +01:00
|
|
|
public long Read(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (context.Request.ReceiveBuff.Count > 0)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
IpcBuffDesc buffDesc = context.Request.ReceiveBuff[0];
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
//Use smaller length to avoid overflows.
|
2018-12-06 12:16:24 +01:00
|
|
|
if (size > buffDesc.Size)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
size = buffDesc.Size;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] data = new byte[size];
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
_baseStorage.Read(data, offset);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Memory.WriteBytes(buffDesc.Position, data);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2019-02-15 16:44:25 +01:00
|
|
|
|
|
|
|
// GetSize() -> u64 size
|
|
|
|
public long GetSize(ServiceCtx context)
|
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
context.ResponseData.Write(_baseStorage.GetSize());
|
2019-02-15 16:44:25 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
2018-09-13 13:45:59 +02:00
|
|
|
}
|