Ryujinx/Ryujinx.HLE/HOS/Services/FspSrv/IStorage.cs

65 lines
1.7 KiB
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
2018-02-05 00:08:20 +01:00
using System.IO;
namespace Ryujinx.HLE.HOS.Services.FspSrv
2018-02-05 00:08:20 +01:00
{
class IStorage : IpcService
2018-02-05 00:08:20 +01:00
{
private Dictionary<int, ServiceProcessRequest> _commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
private Stream _baseStream;
2018-02-05 00:08:20 +01:00
public IStorage(Stream baseStream)
2018-02-05 00:08:20 +01:00
{
_commands = new Dictionary<int, ServiceProcessRequest>
{
2019-02-15 16:44:25 +01:00
{ 0, Read },
{ 4, GetSize }
};
_baseStream = baseStream;
2018-02-05 00:08:20 +01:00
}
// Read(u64 offset, u64 length) -> buffer<u8, 0x46, 0> buffer
public long Read(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
long offset = context.RequestData.ReadInt64();
long size = context.RequestData.ReadInt64();
2018-02-05 00:08:20 +01:00
if (context.Request.ReceiveBuff.Count > 0)
2018-02-05 00:08:20 +01:00
{
IpcBuffDesc buffDesc = context.Request.ReceiveBuff[0];
2018-02-05 00:08:20 +01:00
//Use smaller length to avoid overflows.
if (size > buffDesc.Size)
2018-02-05 00:08:20 +01:00
{
size = buffDesc.Size;
2018-02-05 00:08:20 +01:00
}
byte[] data = new byte[size];
2018-02-05 00:08:20 +01:00
lock (_baseStream)
{
_baseStream.Seek(offset, SeekOrigin.Begin);
_baseStream.Read(data, 0, data.Length);
}
2018-02-05 00:08:20 +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)
{
context.ResponseData.Write(_baseStream.Length);
return 0;
}
2018-02-05 00:08:20 +01:00
}
}