using Ryujinx.HLE.HOS.Ipc; using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.FspSrv { class IStorage : IpcService { private Dictionary _commands; public override IReadOnlyDictionary Commands => _commands; private LibHac.Fs.IStorage _baseStorage; public IStorage(LibHac.Fs.IStorage baseStorage) { _commands = new Dictionary { { 0, Read }, { 4, GetSize } }; _baseStorage = baseStorage; } // Read(u64 offset, u64 length) -> buffer buffer public long Read(ServiceCtx context) { long offset = context.RequestData.ReadInt64(); long size = context.RequestData.ReadInt64(); if (context.Request.ReceiveBuff.Count > 0) { IpcBuffDesc buffDesc = context.Request.ReceiveBuff[0]; // Use smaller length to avoid overflows. if (size > buffDesc.Size) { size = buffDesc.Size; } byte[] data = new byte[size]; _baseStorage.Read(data, offset); context.Memory.WriteBytes(buffDesc.Position, data); } return 0; } // GetSize() -> u64 size public long GetSize(ServiceCtx context) { context.ResponseData.Write(_baseStorage.GetSize()); return 0; } } }