2020-04-30 06:58:19 +02:00
|
|
|
|
using LibHac;
|
|
|
|
|
using LibHac.Bcat;
|
|
|
|
|
using Ryujinx.Common;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Bcat.ServiceCreator
|
|
|
|
|
{
|
2021-06-29 19:37:13 +02:00
|
|
|
|
class IDeliveryCacheFileService : DisposableIpcService
|
2020-04-30 06:58:19 +02:00
|
|
|
|
{
|
2021-08-12 23:56:24 +02:00
|
|
|
|
private LibHac.Bcat.Impl.Ipc.IDeliveryCacheFileService _base;
|
2020-04-30 06:58:19 +02:00
|
|
|
|
|
2021-08-12 23:56:24 +02:00
|
|
|
|
public IDeliveryCacheFileService(LibHac.Bcat.Impl.Ipc.IDeliveryCacheFileService baseService)
|
2020-04-30 06:58:19 +02:00
|
|
|
|
{
|
|
|
|
|
_base = baseService;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(0)]
|
2020-04-30 06:58:19 +02:00
|
|
|
|
// Open(nn::bcat::DirectoryName, nn::bcat::FileName)
|
|
|
|
|
public ResultCode Open(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
DirectoryName directoryName = context.RequestData.ReadStruct<DirectoryName>();
|
|
|
|
|
FileName fileName = context.RequestData.ReadStruct<FileName>();
|
|
|
|
|
|
|
|
|
|
Result result = _base.Open(ref directoryName, ref fileName);
|
|
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(1)]
|
2020-04-30 06:58:19 +02:00
|
|
|
|
// Read(u64) -> (u64, buffer<bytes, 6>)
|
|
|
|
|
public ResultCode Read(ServiceCtx context)
|
|
|
|
|
{
|
2021-04-24 12:16:01 +02:00
|
|
|
|
ulong position = context.Request.ReceiveBuff[0].Position;
|
|
|
|
|
ulong size = context.Request.ReceiveBuff[0].Size;
|
2020-04-30 06:58:19 +02:00
|
|
|
|
|
|
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
|
|
|
|
|
|
|
|
byte[] data = new byte[size];
|
|
|
|
|
|
|
|
|
|
Result result = _base.Read(out long bytesRead, offset, data);
|
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
|
context.Memory.Write(position, data);
|
2020-04-30 06:58:19 +02:00
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(bytesRead);
|
|
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(2)]
|
2020-04-30 06:58:19 +02:00
|
|
|
|
// GetSize() -> u64
|
|
|
|
|
public ResultCode GetSize(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
Result result = _base.GetSize(out long size);
|
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(size);
|
|
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(3)]
|
2020-04-30 06:58:19 +02:00
|
|
|
|
// GetDigest() -> nn::bcat::Digest
|
|
|
|
|
public ResultCode GetDigest(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
Result result = _base.GetDigest(out Digest digest);
|
|
|
|
|
|
|
|
|
|
context.ResponseData.WriteStruct(digest);
|
|
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-29 19:37:13 +02:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
2020-04-30 06:58:19 +02:00
|
|
|
|
{
|
2021-06-29 19:37:13 +02:00
|
|
|
|
if (isDisposing)
|
|
|
|
|
{
|
|
|
|
|
_base?.Dispose();
|
|
|
|
|
}
|
2020-04-30 06:58:19 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|