2018-09-08 22:04:26 +00:00
|
|
|
using Ryujinx.HLE.FileSystem;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-09-08 22:04:26 +00:00
|
|
|
using Ryujinx.HLE.HOS.SystemState;
|
2018-02-25 04:34:16 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.FspSrv
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-04-06 04:01:52 +00:00
|
|
|
class IFileSystemProxy : IpcService
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2018-04-06 04:01:52 +00:00
|
|
|
public IFileSystemProxy()
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-09-08 22:04:26 +00:00
|
|
|
{ 1, SetCurrentProcess },
|
|
|
|
{ 18, OpenSdCardFileSystem },
|
|
|
|
{ 51, OpenSaveDataFileSystem },
|
|
|
|
{ 52, OpenSaveDataFileSystemBySystemSaveDataId },
|
|
|
|
{ 200, OpenDataStorageByCurrentProcess },
|
|
|
|
{ 203, OpenPatchDataStorageByCurrentProcess },
|
|
|
|
{ 1005, GetGlobalAccessLogMode }
|
2018-02-25 04:34:16 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-21 16:28:12 +00:00
|
|
|
public long SetCurrentProcess(ServiceCtx Context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-21 16:28:12 +00:00
|
|
|
public long OpenSdCardFileSystem(ServiceCtx Context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
MakeObject(Context, new IFileSystem(Context.Device.FileSystem.GetSdCardPath()));
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-08 22:04:26 +00:00
|
|
|
public long OpenSaveDataFileSystem(ServiceCtx Context)
|
2018-06-02 22:46:09 +00:00
|
|
|
{
|
2018-09-08 22:04:26 +00:00
|
|
|
LoadSaveDataFileSystem(Context);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-08 22:04:26 +00:00
|
|
|
public long OpenSaveDataFileSystemBySystemSaveDataId(ServiceCtx Context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-09-08 22:04:26 +00:00
|
|
|
LoadSaveDataFileSystem(Context);
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long OpenDataStorageByCurrentProcess(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
MakeObject(Context, new IStorage(Context.Device.FileSystem.RomFs));
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-21 16:28:12 +00:00
|
|
|
public long OpenPatchDataStorageByCurrentProcess(ServiceCtx Context)
|
2018-02-25 04:34:16 +00:00
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
MakeObject(Context, new IStorage(Context.Device.FileSystem.RomFs));
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetGlobalAccessLogMode(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(0);
|
|
|
|
|
|
|
|
return 0;
|
2018-04-06 04:01:52 +00:00
|
|
|
}
|
2018-09-08 22:04:26 +00:00
|
|
|
|
|
|
|
public void LoadSaveDataFileSystem(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
SaveSpaceId SaveSpaceId = (SaveSpaceId)Context.RequestData.ReadInt64();
|
|
|
|
|
|
|
|
long TitleId = Context.RequestData.ReadInt64();
|
|
|
|
|
|
|
|
UserId UserId = new UserId(
|
|
|
|
Context.RequestData.ReadInt64(),
|
|
|
|
Context.RequestData.ReadInt64());
|
|
|
|
|
|
|
|
long SaveId = Context.RequestData.ReadInt64();
|
|
|
|
|
|
|
|
SaveDataType SaveDataType = (SaveDataType)Context.RequestData.ReadByte();
|
|
|
|
|
|
|
|
SaveInfo SaveInfo = new SaveInfo(TitleId, SaveId, SaveDataType, UserId, SaveSpaceId);
|
|
|
|
|
|
|
|
MakeObject(Context, new IFileSystem(Context.Device.FileSystem.GetGameSavePath(SaveInfo, Context)));
|
|
|
|
}
|
2018-02-25 04:34:16 +00:00
|
|
|
}
|
|
|
|
}
|