2019-07-10 13:20:01 -04:00
|
|
|
using LibHac;
|
2019-10-17 02:17:44 -04:00
|
|
|
using LibHac.Fs;
|
|
|
|
using System;
|
|
|
|
using System.Runtime.InteropServices;
|
2018-02-20 06:03:04 -05:00
|
|
|
|
2019-09-18 20:45:11 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
|
2018-02-20 06:03:04 -05:00
|
|
|
{
|
2019-07-10 13:20:01 -04:00
|
|
|
class IDirectory : IpcService
|
2018-02-20 06:03:04 -05:00
|
|
|
{
|
2020-09-01 16:08:59 -04:00
|
|
|
private LibHac.Fs.Fsa.IDirectory _baseDirectory;
|
2018-11-18 14:37:41 -05:00
|
|
|
|
2020-09-01 16:08:59 -04:00
|
|
|
public IDirectory(LibHac.Fs.Fsa.IDirectory directory)
|
2018-02-20 06:03:04 -05:00
|
|
|
{
|
2019-07-10 13:20:01 -04:00
|
|
|
_baseDirectory = directory;
|
2018-02-20 06:03:04 -05:00
|
|
|
}
|
|
|
|
|
2021-04-13 18:01:24 -04:00
|
|
|
[CommandHipc(0)]
|
2018-11-18 14:37:41 -05:00
|
|
|
// Read() -> (u64 count, buffer<nn::fssrv::sf::IDirectoryEntry, 6, 0> entries)
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode Read(ServiceCtx context)
|
2018-02-20 06:03:04 -05:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
long bufferPosition = context.Request.ReceiveBuff[0].Position;
|
|
|
|
long bufferLen = context.Request.ReceiveBuff[0].Size;
|
2018-02-20 06:03:04 -05:00
|
|
|
|
2019-10-17 02:17:44 -04:00
|
|
|
byte[] entriesBytes = new byte[bufferLen];
|
|
|
|
Span<DirectoryEntry> entries = MemoryMarshal.Cast<byte, DirectoryEntry>(entriesBytes);
|
2019-05-31 20:31:10 -04:00
|
|
|
|
2019-10-17 02:17:44 -04:00
|
|
|
Result result = _baseDirectory.Read(out long entriesRead, entries);
|
2018-02-20 06:03:04 -05:00
|
|
|
|
2020-05-03 18:54:50 -04:00
|
|
|
context.Memory.Write((ulong)bufferPosition, entriesBytes);
|
2019-10-17 02:17:44 -04:00
|
|
|
context.ResponseData.Write(entriesRead);
|
2018-02-20 06:03:04 -05:00
|
|
|
|
2019-10-17 02:17:44 -04:00
|
|
|
return (ResultCode)result.Value;
|
2018-02-20 06:03:04 -05:00
|
|
|
}
|
|
|
|
|
2021-04-13 18:01:24 -04:00
|
|
|
[CommandHipc(1)]
|
2018-11-18 14:37:41 -05:00
|
|
|
// GetEntryCount() -> u64
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode GetEntryCount(ServiceCtx context)
|
2018-02-20 06:03:04 -05:00
|
|
|
{
|
2019-10-17 02:17:44 -04:00
|
|
|
Result result = _baseDirectory.GetEntryCount(out long entryCount);
|
|
|
|
|
|
|
|
context.ResponseData.Write(entryCount);
|
2019-07-10 13:20:01 -04:00
|
|
|
|
2019-10-17 02:17:44 -04:00
|
|
|
return (ResultCode)result.Value;
|
2018-02-21 16:56:52 -05:00
|
|
|
}
|
2018-02-20 06:03:04 -05:00
|
|
|
}
|
|
|
|
}
|