2019-07-10 17:20:01 +00:00
|
|
|
using LibHac;
|
2019-06-06 22:01:44 +00:00
|
|
|
using LibHac.Fs;
|
2021-08-12 21:56:24 +00:00
|
|
|
using LibHac.Sf;
|
|
|
|
using Ryujinx.Common;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2021-06-29 17:37:13 +00:00
|
|
|
class IFile : DisposableIpcService
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2021-08-12 21:56:24 +00:00
|
|
|
private ReferenceCountedDisposable<LibHac.FsSrv.Sf.IFile> _baseFile;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2021-08-12 21:56:24 +00:00
|
|
|
public IFile(ReferenceCountedDisposable<LibHac.FsSrv.Sf.IFile> baseFile)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-06-01 00:31:10 +00:00
|
|
|
_baseFile = baseFile;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(0)]
|
2019-06-01 00:31:10 +00:00
|
|
|
// Read(u32 readOption, u64 offset, u64 size) -> (u64 out_size, buffer<u8, 0x46, 0> out_buf)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode Read(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2021-04-24 10:16:01 +00:00
|
|
|
ulong position = context.Request.ReceiveBuff[0].Position;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2021-08-12 21:56:24 +00:00
|
|
|
ReadOption readOption = context.RequestData.ReadStruct<ReadOption>();
|
2019-06-01 00:31:10 +00:00
|
|
|
context.RequestData.BaseStream.Position += 4;
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2021-08-12 21:56:24 +00:00
|
|
|
byte[] data = new byte[context.Request.ReceiveBuff[0].Size];
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2021-08-12 21:56:24 +00:00
|
|
|
Result result = _baseFile.Target.Read(out long bytesRead, offset, new OutBuffer(data), size, readOption);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2021-04-24 10:16:01 +00:00
|
|
|
context.Memory.Write(position, data);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-10-17 06:17:44 +00:00
|
|
|
context.ResponseData.Write(bytesRead);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-10-17 06:17:44 +00:00
|
|
|
return (ResultCode)result.Value;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(1)]
|
2019-06-01 00:31:10 +00:00
|
|
|
// Write(u32 writeOption, u64 offset, u64 size, buffer<u8, 0x45, 0>)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode Write(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2021-04-24 10:16:01 +00:00
|
|
|
ulong position = context.Request.SendBuff[0].Position;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2021-08-12 21:56:24 +00:00
|
|
|
WriteOption writeOption = context.RequestData.ReadStruct<WriteOption>();
|
2019-06-01 00:31:10 +00:00
|
|
|
context.RequestData.BaseStream.Position += 4;
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2021-08-12 21:56:24 +00:00
|
|
|
byte[] data = new byte[context.Request.SendBuff[0].Size];
|
2020-05-03 22:54:50 +00:00
|
|
|
|
2021-04-24 10:16:01 +00:00
|
|
|
context.Memory.Read(position, data);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2021-08-12 21:56:24 +00:00
|
|
|
return (ResultCode)_baseFile.Target.Write(offset, new InBuffer(data), size, writeOption).Value;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(2)]
|
2018-11-18 19:37:41 +00:00
|
|
|
// Flush()
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode Flush(ServiceCtx context)
|
2018-02-20 11:03:04 +00:00
|
|
|
{
|
2021-08-12 21:56:24 +00:00
|
|
|
return (ResultCode)_baseFile.Target.Flush().Value;
|
2018-02-20 11:03:04 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(3)]
|
2018-11-18 19:37:41 +00:00
|
|
|
// SetSize(u64 size)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetSize(ServiceCtx context)
|
2018-02-20 11:03:04 +00:00
|
|
|
{
|
2019-10-17 06:17:44 +00:00
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-21 21:56:52 +00:00
|
|
|
|
2021-08-12 21:56:24 +00:00
|
|
|
return (ResultCode)_baseFile.Target.SetSize(size).Value;
|
2018-02-21 21:56:52 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(4)]
|
2018-11-18 19:37:41 +00:00
|
|
|
// GetSize() -> u64 fileSize
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetSize(ServiceCtx context)
|
2018-02-21 21:56:52 +00:00
|
|
|
{
|
2021-08-12 21:56:24 +00:00
|
|
|
Result result = _baseFile.Target.GetSize(out long size);
|
2019-10-17 06:17:44 +00:00
|
|
|
|
|
|
|
context.ResponseData.Write(size);
|
2018-02-21 21:56:52 +00:00
|
|
|
|
2019-10-17 06:17:44 +00:00
|
|
|
return (ResultCode)result.Value;
|
2018-02-20 11:03:04 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 17:37:13 +00:00
|
|
|
protected override void Dispose(bool isDisposing)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2021-06-29 17:37:13 +00:00
|
|
|
if (isDisposing)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-07-10 17:20:01 +00:00
|
|
|
_baseFile?.Dispose();
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|