2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
2018-02-10 01:14:55 +01:00
|
|
|
using System.Collections.Generic;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System.IO;
|
|
|
|
|
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
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private Stream _baseStream;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-02-21 22:56:52 +01:00
|
|
|
public event EventHandler<EventArgs> Disposed;
|
|
|
|
|
2018-12-05 01:52:39 +01:00
|
|
|
public string HostPath { get; private set; }
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public IFile(Stream baseStream, string hostPath)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-02-21 22:56:52 +01:00
|
|
|
{ 0, Read },
|
|
|
|
{ 1, Write },
|
|
|
|
{ 2, Flush },
|
2018-02-20 12:03:04 +01:00
|
|
|
{ 3, SetSize },
|
|
|
|
{ 4, GetSize }
|
2018-02-10 01:14:55 +01:00
|
|
|
};
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
_baseStream = baseStream;
|
|
|
|
HostPath = hostPath;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-11-18 20:37:41 +01:00
|
|
|
// Read(u32, 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
|
|
|
|
2018-12-06 12:16:24 +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
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] data = new byte[size];
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
_baseStream.Seek(offset, SeekOrigin.Begin);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
int readSize = _baseStream.Read(data, 0, (int)size);
|
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;
|
|
|
|
}
|
|
|
|
|
2018-11-18 20:37:41 +01:00
|
|
|
// Write(u32, 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
|
|
|
|
2018-12-06 12:16:24 +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
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] data = context.Memory.ReadBytes(position, size);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
_baseStream.Seek(offset, SeekOrigin.Begin);
|
|
|
|
_baseStream.Write(data, 0, (int)size);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_baseStream.Flush();
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2018-02-20 12:03:04 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
_baseStream.SetLength(size);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(_baseStream.Length);
|
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)
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (disposing && _baseStream != null)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_baseStream.Dispose();
|
2018-02-21 22:56:52 +01:00
|
|
|
|
|
|
|
Disposed?.Invoke(this, EventArgs.Empty);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|