2018-11-18 20:37:41 +01:00
|
|
|
using Ryujinx.HLE.FileSystem.Content;
|
2018-09-09 00:04:26 +02:00
|
|
|
using Ryujinx.HLE.HOS;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
|
2018-09-09 00:04:26 +02:00
|
|
|
namespace Ryujinx.HLE.FileSystem
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-16 01:06:24 +01:00
|
|
|
class VirtualFileSystem : IDisposable
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-09-09 00:04:26 +02:00
|
|
|
public const string BasePath = "RyuFs";
|
|
|
|
public const string NandPath = "nand";
|
|
|
|
public const string SdCardPath = "sdmc";
|
|
|
|
public const string SystemPath = "system";
|
|
|
|
|
2018-11-18 20:37:41 +01:00
|
|
|
public static string SafeNandPath = Path.Combine(NandPath, "safe");
|
2018-09-09 00:04:26 +02:00
|
|
|
public static string SystemNandPath = Path.Combine(NandPath, "system");
|
|
|
|
public static string UserNandPath = Path.Combine(NandPath, "user");
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
public Stream RomFs { get; private set; }
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void LoadRomFs(string fileName)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
RomFs = new FileStream(fileName, FileMode.Open, FileAccess.Read);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void SetRomFs(Stream romfsStream)
|
2018-09-08 20:33:27 +02:00
|
|
|
{
|
|
|
|
RomFs?.Close();
|
2018-12-06 12:16:24 +01:00
|
|
|
RomFs = romfsStream;
|
2018-09-08 20:33:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public string GetFullPath(string basePath, string fileName)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (fileName.StartsWith("//"))
|
2018-03-06 21:27:50 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
fileName = fileName.Substring(2);
|
2018-03-06 21:27:50 +01:00
|
|
|
}
|
2018-12-06 12:16:24 +01:00
|
|
|
else if (fileName.StartsWith('/'))
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
fileName = fileName.Substring(1);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
2018-03-06 21:27:50 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
string fullPath = Path.GetFullPath(Path.Combine(basePath, fileName));
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (!fullPath.StartsWith(GetBasePath()))
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
return fullPath;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-02-07 00:28:32 +01:00
|
|
|
public string GetSdCardPath() => MakeDirAndGetFullPath(SdCardPath);
|
|
|
|
|
2018-09-09 00:04:26 +02:00
|
|
|
public string GetNandPath() => MakeDirAndGetFullPath(NandPath);
|
2018-02-07 00:28:32 +01:00
|
|
|
|
2018-08-04 23:38:49 +02:00
|
|
|
public string GetSystemPath() => MakeDirAndGetFullPath(SystemPath);
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public string GetGameSavePath(SaveInfo save, ServiceCtx context)
|
2018-09-09 00:04:26 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
return MakeDirAndGetFullPath(SaveHelper.GetSavePath(save, context));
|
2018-09-09 00:04:26 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public string GetFullPartitionPath(string partitionPath)
|
2018-11-18 20:37:41 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
return MakeDirAndGetFullPath(partitionPath);
|
2018-11-18 20:37:41 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public string SwitchPathToSystemPath(string switchPath)
|
2018-07-17 21:14:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string[] parts = switchPath.Split(":");
|
2018-11-18 20:37:41 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (parts.Length != 2)
|
2018-07-17 21:14:27 +02:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2018-11-19 01:20:17 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
return GetFullPath(MakeDirAndGetFullPath(parts[0]), parts[1]);
|
2018-07-17 21:14:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public string SystemPathToSwitchPath(string systemPath)
|
2018-07-17 21:14:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string baseSystemPath = GetBasePath() + Path.DirectorySeparatorChar;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (systemPath.StartsWith(baseSystemPath))
|
2018-07-17 21:14:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string rawPath = systemPath.Replace(baseSystemPath, "");
|
|
|
|
int firstSeparatorOffset = rawPath.IndexOf(Path.DirectorySeparatorChar);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (firstSeparatorOffset == -1)
|
2018-07-17 21:14:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
return $"{rawPath}:/";
|
2018-07-17 21:14:27 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
string basePath = rawPath.Substring(0, firstSeparatorOffset);
|
|
|
|
string fileName = rawPath.Substring(firstSeparatorOffset + 1);
|
2018-11-18 20:37:41 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
return $"{basePath}:/{fileName}";
|
2018-07-17 21:14:27 +02:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private string MakeDirAndGetFullPath(string dir)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-11-18 20:37:41 +01:00
|
|
|
// Handles Common Switch Content Paths
|
2018-12-06 12:16:24 +01:00
|
|
|
switch (dir)
|
2018-11-18 20:37:41 +01:00
|
|
|
{
|
|
|
|
case ContentPath.SdCard:
|
|
|
|
case "@Sdcard":
|
2018-12-06 12:16:24 +01:00
|
|
|
dir = SdCardPath;
|
2018-11-18 20:37:41 +01:00
|
|
|
break;
|
|
|
|
case ContentPath.User:
|
2018-12-06 12:16:24 +01:00
|
|
|
dir = UserNandPath;
|
2018-11-18 20:37:41 +01:00
|
|
|
break;
|
|
|
|
case ContentPath.System:
|
2018-12-06 12:16:24 +01:00
|
|
|
dir = SystemNandPath;
|
2018-11-18 20:37:41 +01:00
|
|
|
break;
|
|
|
|
case ContentPath.SdCardContent:
|
2018-12-06 12:16:24 +01:00
|
|
|
dir = Path.Combine(SdCardPath, "Nintendo", "Contents");
|
2018-11-18 20:37:41 +01:00
|
|
|
break;
|
|
|
|
case ContentPath.UserContent:
|
2018-12-06 12:16:24 +01:00
|
|
|
dir = Path.Combine(UserNandPath, "Contents");
|
2018-11-18 20:37:41 +01:00
|
|
|
break;
|
|
|
|
case ContentPath.SystemContent:
|
2018-12-06 12:16:24 +01:00
|
|
|
dir = Path.Combine(SystemNandPath, "Contents");
|
2018-11-18 20:37:41 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
string fullPath = Path.Combine(GetBasePath(), dir);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (!Directory.Exists(fullPath))
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Directory.CreateDirectory(fullPath);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
return fullPath;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-02-21 22:56:52 +01:00
|
|
|
public DriveInfo GetDrive()
|
|
|
|
{
|
|
|
|
return new DriveInfo(Path.GetPathRoot(GetBasePath()));
|
|
|
|
}
|
|
|
|
|
|
|
|
public string GetBasePath()
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string appDataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
|
2018-02-28 00:45:07 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
return Path.Combine(appDataPath, BasePath);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
{
|
2018-02-20 11:54:00 +01:00
|
|
|
if (disposing)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-20 11:54:00 +01:00
|
|
|
RomFs?.Dispose();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|