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