mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:28:49 +00:00
8a8ea4c8c0
* Update to LibHac 0.6.0 * Create an IFileSystemProxy object from LibHac * Rename rc -> result * Alignment and spacing * Result formatting * Spacing * Sort usings
47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
using LibHac;
|
|
using LibHac.Fs;
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
|
|
{
|
|
class IDirectory : IpcService
|
|
{
|
|
private LibHac.Fs.IDirectory _baseDirectory;
|
|
|
|
public IDirectory(LibHac.Fs.IDirectory directory)
|
|
{
|
|
_baseDirectory = directory;
|
|
}
|
|
|
|
[Command(0)]
|
|
// Read() -> (u64 count, buffer<nn::fssrv::sf::IDirectoryEntry, 6, 0> entries)
|
|
public ResultCode Read(ServiceCtx context)
|
|
{
|
|
long bufferPosition = context.Request.ReceiveBuff[0].Position;
|
|
long bufferLen = context.Request.ReceiveBuff[0].Size;
|
|
|
|
byte[] entriesBytes = new byte[bufferLen];
|
|
Span<DirectoryEntry> entries = MemoryMarshal.Cast<byte, DirectoryEntry>(entriesBytes);
|
|
|
|
Result result = _baseDirectory.Read(out long entriesRead, entries);
|
|
|
|
context.Memory.WriteBytes(bufferPosition, entriesBytes);
|
|
context.ResponseData.Write(entriesRead);
|
|
|
|
return (ResultCode)result.Value;
|
|
}
|
|
|
|
[Command(1)]
|
|
// GetEntryCount() -> u64
|
|
public ResultCode GetEntryCount(ServiceCtx context)
|
|
{
|
|
Result result = _baseDirectory.GetEntryCount(out long entryCount);
|
|
|
|
context.ResponseData.Write(entryCount);
|
|
|
|
return (ResultCode)result.Value;
|
|
}
|
|
}
|
|
}
|