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

56 lines
1.5 KiB
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
2018-02-04 23:08:20 +00:00
using System.IO;
namespace Ryujinx.HLE.HOS.Services.FspSrv
2018-02-04 23:08:20 +00:00
{
class IStorage : IpcService
2018-02-04 23:08:20 +00:00
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
private Stream BaseStream;
2018-02-04 23:08:20 +00:00
public IStorage(Stream BaseStream)
2018-02-04 23:08:20 +00:00
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, Read }
};
this.BaseStream = BaseStream;
2018-02-04 23:08:20 +00:00
}
// Read(u64 offset, u64 length) -> buffer<u8, 0x46, 0> buffer
public long Read(ServiceCtx Context)
2018-02-04 23:08:20 +00:00
{
long Offset = Context.RequestData.ReadInt64();
long Size = Context.RequestData.ReadInt64();
2018-02-04 23:08:20 +00:00
if (Context.Request.ReceiveBuff.Count > 0)
2018-02-04 23:08:20 +00:00
{
IpcBuffDesc BuffDesc = Context.Request.ReceiveBuff[0];
2018-02-04 23:08:20 +00:00
//Use smaller length to avoid overflows.
if (Size > BuffDesc.Size)
2018-02-04 23:08:20 +00:00
{
Size = BuffDesc.Size;
2018-02-04 23:08:20 +00:00
}
byte[] Data = new byte[Size];
2018-02-04 23:08:20 +00:00
lock (BaseStream)
{
BaseStream.Seek(Offset, SeekOrigin.Begin);
BaseStream.Read(Data, 0, Data.Length);
}
2018-02-04 23:08:20 +00:00
Context.Memory.WriteBytes(BuffDesc.Position, Data);
2018-02-04 23:08:20 +00:00
}
return 0;
}
}
}