2019-07-10 19:20:01 +02:00
|
|
|
using LibHac;
|
2019-06-07 00:01:44 +02:00
|
|
|
using LibHac.Fs;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.FspSrv
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class IFile : IpcService, IDisposable
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
private LibHac.Fs.IFile _baseFile;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2019-07-10 19:20:01 +02:00
|
|
|
public IFile(LibHac.Fs.IFile baseFile)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-06-01 02:31:10 +02:00
|
|
|
_baseFile = baseFile;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(0)]
|
2019-06-01 02:31:10 +02:00
|
|
|
// Read(u32 readOption, u64 offset, u64 size) -> (u64 out_size, buffer<u8, 0x46, 0> out_buf)
|
2018-12-06 12:16:24 +01:00
|
|
|
public long Read(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
long position = context.Request.ReceiveBuff[0].Position;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-06-07 00:01:44 +02:00
|
|
|
ReadOption readOption = (ReadOption)context.RequestData.ReadInt32();
|
2019-06-01 02:31:10 +02:00
|
|
|
context.RequestData.BaseStream.Position += 4;
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] data = new byte[size];
|
2019-07-10 19:20:01 +02:00
|
|
|
int readSize;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-07-10 19:20:01 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
readSize = _baseFile.Read(data, offset, readOption);
|
|
|
|
}
|
|
|
|
catch (HorizonResultException ex)
|
|
|
|
{
|
|
|
|
return ex.ResultValue.Value;
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Memory.WriteBytes(position, data);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write((long)readSize);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(1)]
|
2019-06-01 02:31:10 +02:00
|
|
|
// Write(u32 writeOption, u64 offset, u64 size, buffer<u8, 0x45, 0>)
|
2018-12-06 12:16:24 +01:00
|
|
|
public long Write(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
long position = context.Request.SendBuff[0].Position;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-06-07 00:01:44 +02:00
|
|
|
WriteOption writeOption = (WriteOption)context.RequestData.ReadInt32();
|
2019-06-01 02:31:10 +02:00
|
|
|
context.RequestData.BaseStream.Position += 4;
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] data = context.Memory.ReadBytes(position, size);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-07-10 19:20:01 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
_baseFile.Write(data, offset, writeOption);
|
|
|
|
}
|
|
|
|
catch (HorizonResultException ex)
|
|
|
|
{
|
|
|
|
return ex.ResultValue.Value;
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(2)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// Flush()
|
2018-12-06 12:16:24 +01:00
|
|
|
public long Flush(ServiceCtx context)
|
2018-02-20 12:03:04 +01:00
|
|
|
{
|
2019-07-10 19:20:01 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
_baseFile.Flush();
|
|
|
|
}
|
|
|
|
catch (HorizonResultException ex)
|
|
|
|
{
|
|
|
|
return ex.ResultValue.Value;
|
|
|
|
}
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2018-02-20 12:03:04 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(3)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// SetSize(u64 size)
|
2018-12-06 12:16:24 +01:00
|
|
|
public long SetSize(ServiceCtx context)
|
2018-02-20 12:03:04 +01:00
|
|
|
{
|
2019-07-10 19:20:01 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-07-10 19:20:01 +02:00
|
|
|
_baseFile.SetSize(size);
|
|
|
|
}
|
|
|
|
catch (HorizonResultException ex)
|
|
|
|
{
|
|
|
|
return ex.ResultValue.Value;
|
|
|
|
}
|
2018-02-21 22:56:52 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(4)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// GetSize() -> u64 fileSize
|
2018-12-06 12:16:24 +01:00
|
|
|
public long GetSize(ServiceCtx context)
|
2018-02-21 22:56:52 +01:00
|
|
|
{
|
2019-07-10 19:20:01 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(_baseFile.GetSize());
|
|
|
|
}
|
|
|
|
catch (HorizonResultException ex)
|
|
|
|
{
|
|
|
|
return ex.ResultValue.Value;
|
|
|
|
}
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2018-02-20 12:03:04 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
{
|
2019-07-10 19:20:01 +02:00
|
|
|
if (disposing)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-07-10 19:20:01 +02:00
|
|
|
_baseFile?.Dispose();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|