2019-09-10 11:55:28 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Glue;
|
|
|
|
using System;
|
|
|
|
using System.Text;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Bcat
|
2018-07-23 16:20:16 +02:00
|
|
|
{
|
|
|
|
class IDeliveryCacheStorageService : IpcService
|
|
|
|
{
|
2019-09-10 11:55:28 +02:00
|
|
|
private const int DeliveryCacheDirectoriesLimit = 100;
|
|
|
|
private const int DeliveryCacheDirectoryNameLength = 32;
|
|
|
|
|
|
|
|
private string[] _deliveryCacheDirectories = new string[0];
|
|
|
|
|
|
|
|
public IDeliveryCacheStorageService(ServiceCtx context, ApplicationLaunchProperty applicationLaunchProperty)
|
|
|
|
{
|
|
|
|
// TODO: Read directories.meta file from the save data (loaded in IServiceCreator) in _deliveryCacheDirectories.
|
|
|
|
}
|
|
|
|
|
|
|
|
[Command(10)]
|
|
|
|
// EnumerateDeliveryCacheDirectory() -> (u32, buffer<nn::bcat::DirectoryName, 6>)
|
|
|
|
public ResultCode EnumerateDeliveryCacheDirectory(ServiceCtx context)
|
|
|
|
{
|
|
|
|
long outputPosition = context.Request.ReceiveBuff[0].Position;
|
|
|
|
long outputSize = context.Request.ReceiveBuff[0].Size;
|
|
|
|
|
|
|
|
for (int index = 0; index < _deliveryCacheDirectories.Length; index++)
|
|
|
|
{
|
|
|
|
if (index == DeliveryCacheDirectoriesLimit - 1)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte[] directoryNameBuffer = Encoding.ASCII.GetBytes(_deliveryCacheDirectories[index]);
|
|
|
|
|
|
|
|
Array.Resize(ref directoryNameBuffer, DeliveryCacheDirectoryNameLength);
|
|
|
|
|
|
|
|
directoryNameBuffer[DeliveryCacheDirectoryNameLength - 1] = 0x00;
|
|
|
|
|
|
|
|
context.Memory.WriteBytes(outputPosition + index * DeliveryCacheDirectoryNameLength, directoryNameBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.Write(_deliveryCacheDirectories.Length);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2018-07-23 16:20:16 +02:00
|
|
|
}
|
2019-07-12 03:13:43 +02:00
|
|
|
}
|