Ryujinx/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFile.cs

136 lines
3.5 KiB
C#
Raw Normal View History

using LibHac;
using LibHac.Fs;
2018-02-05 00:08:20 +01:00
using System;
namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
2018-02-05 00:08:20 +01:00
{
class IFile : IpcService, IDisposable
2018-02-05 00:08:20 +01:00
{
private LibHac.Fs.IFile _baseFile;
public IFile(LibHac.Fs.IFile baseFile)
2018-02-05 00:08:20 +01:00
{
_baseFile = baseFile;
2018-02-05 00:08:20 +01:00
}
[Command(0)]
// Read(u32 readOption, u64 offset, u64 size) -> (u64 out_size, buffer<u8, 0x46, 0> out_buf)
public ResultCode 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
ReadOption readOption = (ReadOption)context.RequestData.ReadInt32();
context.RequestData.BaseStream.Position += 4;
long offset = context.RequestData.ReadInt64();
long size = context.RequestData.ReadInt64();
2018-02-05 00:08:20 +01:00
byte[] data = new byte[size];
int readSize;
2018-02-05 00:08:20 +01:00
try
{
readSize = _baseFile.Read(data, offset, readOption);
}
catch (HorizonResultException ex)
{
return (ResultCode)ex.ResultValue.Value;
}
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 ResultCode.Success;
2018-02-05 00:08:20 +01:00
}
[Command(1)]
// Write(u32 writeOption, u64 offset, u64 size, buffer<u8, 0x45, 0>)
public ResultCode 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
WriteOption writeOption = (WriteOption)context.RequestData.ReadInt32();
context.RequestData.BaseStream.Position += 4;
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
try
{
_baseFile.Write(data, offset, writeOption);
}
catch (HorizonResultException ex)
{
return (ResultCode)ex.ResultValue.Value;
}
2018-02-05 00:08:20 +01:00
return ResultCode.Success;
2018-02-05 00:08:20 +01:00
}
[Command(2)]
// Flush()
public ResultCode Flush(ServiceCtx context)
{
try
{
_baseFile.Flush();
}
catch (HorizonResultException ex)
{
return (ResultCode)ex.ResultValue.Value;
}
return ResultCode.Success;
}
[Command(3)]
// SetSize(u64 size)
public ResultCode SetSize(ServiceCtx context)
{
try
{
long size = context.RequestData.ReadInt64();
_baseFile.SetSize(size);
}
catch (HorizonResultException ex)
{
return (ResultCode)ex.ResultValue.Value;
}
return ResultCode.Success;
}
[Command(4)]
// GetSize() -> u64 fileSize
public ResultCode GetSize(ServiceCtx context)
{
try
{
context.ResponseData.Write(_baseFile.GetSize());
}
catch (HorizonResultException ex)
{
return (ResultCode)ex.ResultValue.Value;
}
return ResultCode.Success;
}
2018-02-05 00:08:20 +01:00
public void Dispose()
{
Dispose(true);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
2018-02-05 00:08:20 +01:00
{
_baseFile?.Dispose();
2018-02-05 00:08:20 +01:00
}
}
}
}