2019-07-10 19:20:01 +02:00
|
|
|
using LibHac;
|
2020-03-25 09:14:35 +01:00
|
|
|
using LibHac.Common;
|
2019-06-01 02:31:10 +02:00
|
|
|
using LibHac.Fs;
|
2020-09-01 22:08:59 +02:00
|
|
|
using LibHac.Fs.Fsa;
|
2018-11-18 20:37:41 +01:00
|
|
|
using static Ryujinx.HLE.Utilities.StringUtils;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class IFileSystem : IpcService
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2020-09-01 22:08:59 +02:00
|
|
|
private LibHac.Fs.Fsa.IFileSystem _fileSystem;
|
2018-11-18 20:37:41 +01:00
|
|
|
|
2020-09-01 22:08:59 +02:00
|
|
|
public IFileSystem(LibHac.Fs.Fsa.IFileSystem provider)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-07-10 19:20:01 +02:00
|
|
|
_fileSystem = provider;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2020-09-01 22:08:59 +02:00
|
|
|
public LibHac.Fs.Fsa.IFileSystem GetBaseFileSystem()
|
2020-03-25 09:14:35 +01:00
|
|
|
{
|
|
|
|
return _fileSystem;
|
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(0)]
|
2019-06-01 02:31:10 +02:00
|
|
|
// CreateFile(u32 createOption, u64 size, buffer<bytes<0x301>, 0x19, 0x301> path)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CreateFile(ServiceCtx context)
|
2018-02-20 12:03:04 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-06-07 00:01:44 +02:00
|
|
|
CreateFileOptions createOption = (CreateFileOptions)context.RequestData.ReadInt32();
|
2019-06-01 02:31:10 +02:00
|
|
|
context.RequestData.BaseStream.Position += 4;
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-06-01 02:31:10 +02:00
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-20 12:03:04 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)_fileSystem.CreateFile(name, size, createOption).Value;
|
2018-02-20 12:03:04 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(1)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// DeleteFile(buffer<bytes<0x301>, 0x19, 0x301> path)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode DeleteFile(ServiceCtx context)
|
2018-02-20 12:03:04 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)_fileSystem.DeleteFile(name).Value;
|
2018-02-20 12:03:04 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(2)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// CreateDirectory(buffer<bytes<0x301>, 0x19, 0x301> path)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CreateDirectory(ServiceCtx context)
|
2018-02-20 12:03:04 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-02-20 12:03:04 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)_fileSystem.CreateDirectory(name).Value;
|
2018-02-21 22:56:52 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(3)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// DeleteDirectory(buffer<bytes<0x301>, 0x19, 0x301> path)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode DeleteDirectory(ServiceCtx context)
|
2018-02-21 22:56:52 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2019-06-01 02:31:10 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)_fileSystem.DeleteDirectory(name).Value;
|
2018-02-20 12:03:04 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(4)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// DeleteDirectoryRecursively(buffer<bytes<0x301>, 0x19, 0x301> path)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode DeleteDirectoryRecursively(ServiceCtx context)
|
2018-02-20 12:03:04 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-02-20 12:03:04 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)_fileSystem.DeleteDirectoryRecursively(name).Value;
|
2018-02-20 12:03:04 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(5)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// RenameFile(buffer<bytes<0x301>, 0x19, 0x301> oldPath, buffer<bytes<0x301>, 0x19, 0x301> newPath)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode RenameFile(ServiceCtx context)
|
2018-02-20 12:03:04 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span oldName = ReadUtf8Span(context, 0);
|
|
|
|
U8Span newName = ReadUtf8Span(context, 1);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)_fileSystem.RenameFile(oldName, newName).Value;
|
2018-02-20 12:03:04 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(6)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// RenameDirectory(buffer<bytes<0x301>, 0x19, 0x301> oldPath, buffer<bytes<0x301>, 0x19, 0x301> newPath)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode RenameDirectory(ServiceCtx context)
|
2018-02-20 12:03:04 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span oldName = ReadUtf8Span(context, 0);
|
|
|
|
U8Span newName = ReadUtf8Span(context, 1);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)_fileSystem.RenameDirectory(oldName, newName).Value;
|
2018-02-20 12:03:04 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(7)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// GetEntryType(buffer<bytes<0x301>, 0x19, 0x301> path) -> nn::fssrv::sf::DirectoryEntryType
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetEntryType(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
Result result = _fileSystem.GetEntryType(out DirectoryEntryType entryType, name);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
context.ResponseData.Write((int)entryType);
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(8)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// OpenFile(u32 mode, buffer<bytes<0x301>, 0x19, 0x301> path) -> object<nn::fssrv::sf::IFile> file
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode OpenFile(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-06-07 00:01:44 +02:00
|
|
|
OpenMode mode = (OpenMode)context.RequestData.ReadInt32();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2020-09-01 22:08:59 +02:00
|
|
|
Result result = _fileSystem.OpenFile(out LibHac.Fs.Fsa.IFile file, name, mode);
|
2018-02-24 01:59:38 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
if (result.IsSuccess())
|
|
|
|
{
|
2019-07-10 19:20:01 +02:00
|
|
|
IFile fileInterface = new IFile(file);
|
2018-02-24 01:59:38 +01:00
|
|
|
|
2019-07-10 19:20:01 +02:00
|
|
|
MakeObject(context, fileInterface);
|
2019-06-01 02:31:10 +02:00
|
|
|
}
|
2018-11-18 20:37:41 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)result.Value;
|
2018-02-20 12:03:04 +01:00
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(9)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// OpenDirectory(u32 filter_flags, buffer<bytes<0x301>, 0x19, 0x301> path) -> object<nn::fssrv::sf::IDirectory> directory
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode OpenDirectory(ServiceCtx context)
|
2018-02-20 12:03:04 +01:00
|
|
|
{
|
2019-06-07 00:01:44 +02:00
|
|
|
OpenDirectoryMode mode = (OpenDirectoryMode)context.RequestData.ReadInt32();
|
2018-02-20 12:03:04 +01:00
|
|
|
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-02-20 12:03:04 +01:00
|
|
|
|
2020-09-01 22:08:59 +02:00
|
|
|
Result result = _fileSystem.OpenDirectory(out LibHac.Fs.Fsa.IDirectory dir, name, mode);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
if (result.IsSuccess())
|
|
|
|
{
|
2019-07-10 19:20:01 +02:00
|
|
|
IDirectory dirInterface = new IDirectory(dir);
|
2019-06-01 02:31:10 +02:00
|
|
|
|
2019-07-10 19:20:01 +02:00
|
|
|
MakeObject(context, dirInterface);
|
2019-06-01 02:31:10 +02:00
|
|
|
}
|
2018-11-18 20:37:41 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)result.Value;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(10)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// Commit()
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode Commit(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)_fileSystem.Commit().Value;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(11)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// GetFreeSpaceSize(buffer<bytes<0x301>, 0x19, 0x301> path) -> u64 totalFreeSpace
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetFreeSpaceSize(ServiceCtx context)
|
2018-02-21 22:56:52 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
Result result = _fileSystem.GetFreeSpaceSize(out long size, name);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
context.ResponseData.Write(size);
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
2018-02-21 22:56:52 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(12)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// GetTotalSpaceSize(buffer<bytes<0x301>, 0x19, 0x301> path) -> u64 totalSize
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetTotalSpaceSize(ServiceCtx context)
|
2018-02-21 22:56:52 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
Result result = _fileSystem.GetTotalSpaceSize(out long size, name);
|
|
|
|
|
|
|
|
context.ResponseData.Write(size);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)result.Value;
|
2018-02-21 22:56:52 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(13)]
|
2018-11-18 20:37:41 +01:00
|
|
|
// CleanDirectoryRecursively(buffer<bytes<0x301>, 0x19, 0x301> path)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CleanDirectoryRecursively(ServiceCtx context)
|
2018-07-18 21:05:17 +02:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2018-07-18 21:05:17 +02:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)_fileSystem.CleanDirectoryRecursively(name).Value;
|
2018-07-18 21:05:17 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(14)]
|
2019-02-14 01:44:39 +01:00
|
|
|
// GetFileTimeStampRaw(buffer<bytes<0x301>, 0x19, 0x301> path) -> bytes<0x20> timestamp
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetFileTimeStampRaw(ServiceCtx context)
|
2019-02-14 01:44:39 +01:00
|
|
|
{
|
2020-03-25 09:14:35 +01:00
|
|
|
U8Span name = ReadUtf8Span(context);
|
2019-02-14 01:44:39 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
Result result = _fileSystem.GetFileTimeStampRaw(out FileTimeStampRaw timestamp, name);
|
2019-02-14 01:44:39 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
context.ResponseData.Write(timestamp.Created);
|
|
|
|
context.ResponseData.Write(timestamp.Modified);
|
|
|
|
context.ResponseData.Write(timestamp.Accessed);
|
2019-02-14 01:44:39 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
byte[] data = new byte[8];
|
2019-02-14 01:44:39 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
// is valid?
|
|
|
|
data[0] = 1;
|
2019-02-14 01:44:39 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
context.ResponseData.Write(data);
|
2018-02-21 22:56:52 +01:00
|
|
|
|
2019-10-17 08:17:44 +02:00
|
|
|
return (ResultCode)result.Value;
|
2018-03-03 06:24:04 +01:00
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|