3541a9053f
* Update to LibHac 0.4.1 Updates the IFile Read and Write methods to use any specified ReadOption and WriteOption * Move casts around
116 lines
No EOL
3.1 KiB
C#
116 lines
No EOL
3.1 KiB
C#
using LibHac.Fs;
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.FspSrv
|
|
{
|
|
class IFile : IpcService, IDisposable
|
|
{
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
|
|
|
private LibHac.Fs.IFile _baseFile;
|
|
|
|
public event EventHandler<EventArgs> Disposed;
|
|
|
|
public string Path { get; private set; }
|
|
|
|
public IFile(LibHac.Fs.IFile baseFile, string path)
|
|
{
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
|
{
|
|
{ 0, Read },
|
|
{ 1, Write },
|
|
{ 2, Flush },
|
|
{ 3, SetSize },
|
|
{ 4, GetSize }
|
|
};
|
|
|
|
_baseFile = baseFile;
|
|
Path = LibHac.Fs.PathTools.Normalize(path);
|
|
}
|
|
|
|
// Read(u32 readOption, u64 offset, u64 size) -> (u64 out_size, buffer<u8, 0x46, 0> out_buf)
|
|
public long Read(ServiceCtx context)
|
|
{
|
|
long position = context.Request.ReceiveBuff[0].Position;
|
|
|
|
ReadOption readOption = (ReadOption)context.RequestData.ReadInt32();
|
|
context.RequestData.BaseStream.Position += 4;
|
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
long size = context.RequestData.ReadInt64();
|
|
|
|
byte[] data = new byte[size];
|
|
|
|
int readSize = _baseFile.Read(data, offset, readOption);
|
|
|
|
context.Memory.WriteBytes(position, data);
|
|
|
|
context.ResponseData.Write((long)readSize);
|
|
|
|
return 0;
|
|
}
|
|
|
|
// Write(u32 writeOption, u64 offset, u64 size, buffer<u8, 0x45, 0>)
|
|
public long Write(ServiceCtx context)
|
|
{
|
|
long position = context.Request.SendBuff[0].Position;
|
|
|
|
WriteOption writeOption = (WriteOption)context.RequestData.ReadInt32();
|
|
context.RequestData.BaseStream.Position += 4;
|
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
long size = context.RequestData.ReadInt64();
|
|
|
|
byte[] data = context.Memory.ReadBytes(position, size);
|
|
|
|
_baseFile.Write(data, offset, writeOption);
|
|
|
|
return 0;
|
|
}
|
|
|
|
// Flush()
|
|
public long Flush(ServiceCtx context)
|
|
{
|
|
_baseFile.Flush();
|
|
|
|
return 0;
|
|
}
|
|
|
|
// SetSize(u64 size)
|
|
public long SetSize(ServiceCtx context)
|
|
{
|
|
long size = context.RequestData.ReadInt64();
|
|
|
|
_baseFile.SetSize(size);
|
|
|
|
return 0;
|
|
}
|
|
|
|
// GetSize() -> u64 fileSize
|
|
public long GetSize(ServiceCtx context)
|
|
{
|
|
context.ResponseData.Write(_baseFile.GetSize());
|
|
|
|
return 0;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(true);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (disposing && _baseFile != null)
|
|
{
|
|
_baseFile.Dispose();
|
|
|
|
Disposed?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
}
|
|
}
|
|
} |