2018-02-05 00:08:20 +01:00
|
|
|
using ChocolArm64.Memory;
|
2018-02-10 01:14:55 +01:00
|
|
|
using Ryujinx.OsHle.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
|
|
|
using System.IO;
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
namespace Ryujinx.OsHle.Objects.FspSrv
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-10 01:14:55 +01:00
|
|
|
class IFile : IIpcInterface, IDisposable
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-10 01:14:55 +01:00
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
private Stream BaseStream;
|
|
|
|
|
|
|
|
public IFile(Stream BaseStream)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-10 01:14:55 +01:00
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
{ 0, Read },
|
|
|
|
{ 1, Write }
|
|
|
|
};
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
this.BaseStream = BaseStream;
|
|
|
|
}
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
public long Read(ServiceCtx Context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
long Position = Context.Request.ReceiveBuff[0].Position;
|
|
|
|
|
|
|
|
long Zero = Context.RequestData.ReadInt64();
|
|
|
|
long Offset = Context.RequestData.ReadInt64();
|
|
|
|
long Size = Context.RequestData.ReadInt64();
|
|
|
|
|
|
|
|
byte[] Data = new byte[Size];
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
int ReadSize = BaseStream.Read(Data, 0, (int)Size);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
AMemoryHelper.WriteBytes(Context.Memory, Position, Data);
|
|
|
|
|
|
|
|
//TODO: Use ReadSize, we need to return the size that was REALLY read from the file.
|
|
|
|
//This is a workaround because we are doing something wrong and the game expects to read
|
|
|
|
//data from a file that doesn't yet exists -- and breaks if it can't read anything.
|
|
|
|
Context.ResponseData.Write((long)Size);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
public long Write(ServiceCtx Context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
long Position = Context.Request.SendBuff[0].Position;
|
|
|
|
|
|
|
|
long Zero = Context.RequestData.ReadInt64();
|
|
|
|
long Offset = Context.RequestData.ReadInt64();
|
|
|
|
long Size = Context.RequestData.ReadInt64();
|
|
|
|
|
|
|
|
byte[] Data = AMemoryHelper.ReadBytes(Context.Memory, Position, (int)Size);
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
BaseStream.Seek(Offset, SeekOrigin.Begin);
|
|
|
|
BaseStream.Write(Data, 0, (int)Size);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
{
|
|
|
|
if (disposing && BaseStream != null)
|
|
|
|
{
|
|
|
|
BaseStream.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|