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

115 lines
3.0 KiB
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
2018-02-05 00:08:20 +01:00
using System;
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 IFile : IpcService, IDisposable
2018-02-05 00:08:20 +01:00
{
private Dictionary<int, ServiceProcessRequest> _commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
2018-02-05 00:08:20 +01:00
private Stream _baseStream;
public event EventHandler<EventArgs> Disposed;
public string HostPath { get; private set; }
public IFile(Stream baseStream, string hostPath)
2018-02-05 00:08:20 +01:00
{
_commands = new Dictionary<int, ServiceProcessRequest>
{
{ 0, Read },
{ 1, Write },
{ 2, Flush },
{ 3, SetSize },
{ 4, GetSize }
};
_baseStream = baseStream;
HostPath = hostPath;
2018-02-05 00:08:20 +01:00
}
// Read(u32, u64 offset, u64 size) -> (u64 out_size, buffer<u8, 0x46, 0> out_buf)
public long Read(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
long position = context.Request.ReceiveBuff[0].Position;
2018-02-05 00:08:20 +01:00
long zero = context.RequestData.ReadInt64();
long offset = context.RequestData.ReadInt64();
long size = context.RequestData.ReadInt64();
2018-02-05 00:08:20 +01:00
byte[] data = new byte[size];
2018-02-05 00:08:20 +01:00
_baseStream.Seek(offset, SeekOrigin.Begin);
int readSize = _baseStream.Read(data, 0, (int)size);
2018-02-05 00:08:20 +01:00
context.Memory.WriteBytes(position, data);
2018-02-05 00:08:20 +01:00
context.ResponseData.Write((long)readSize);
2018-02-05 00:08:20 +01:00
return 0;
}
// Write(u32, u64 offset, u64 size, buffer<u8, 0x45, 0>)
public long Write(ServiceCtx context)
2018-02-05 00:08:20 +01:00
{
long position = context.Request.SendBuff[0].Position;
2018-02-05 00:08:20 +01:00
long zero = context.RequestData.ReadInt64();
long offset = context.RequestData.ReadInt64();
long size = context.RequestData.ReadInt64();
2018-02-05 00:08:20 +01:00
byte[] data = context.Memory.ReadBytes(position, size);
2018-02-05 00:08:20 +01:00
_baseStream.Seek(offset, SeekOrigin.Begin);
_baseStream.Write(data, 0, (int)size);
2018-02-05 00:08:20 +01:00
return 0;
}
// Flush()
public long Flush(ServiceCtx context)
{
_baseStream.Flush();
return 0;
}
// SetSize(u64 size)
public long SetSize(ServiceCtx context)
{
long size = context.RequestData.ReadInt64();
_baseStream.SetLength(size);
return 0;
}
// GetSize() -> u64 fileSize
public long GetSize(ServiceCtx context)
{
context.ResponseData.Write(_baseStream.Length);
return 0;
}
2018-02-05 00:08:20 +01:00
public void Dispose()
{
Dispose(true);
}
protected virtual void Dispose(bool disposing)
{
if (disposing && _baseStream != null)
2018-02-05 00:08:20 +01:00
{
_baseStream.Dispose();
Disposed?.Invoke(this, EventArgs.Empty);
2018-02-05 00:08:20 +01:00
}
}
}
}