2020-02-06 04:09:59 +00:00
|
|
|
|
using Ryujinx.Common;
|
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
|
|
|
using Ryujinx.HLE.HOS.Services.Bcat.ServiceCreator.Types;
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Bcat.ServiceCreator
|
|
|
|
|
{
|
|
|
|
|
class IDeliveryCacheProgressService : IpcService
|
|
|
|
|
{
|
|
|
|
|
private KEvent _event;
|
|
|
|
|
|
|
|
|
|
public IDeliveryCacheProgressService(ServiceCtx context)
|
|
|
|
|
{
|
2020-05-04 03:41:29 +00:00
|
|
|
|
_event = new KEvent(context.Device.System.KernelContext);
|
2020-02-06 04:09:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Command(0)]
|
|
|
|
|
// GetEvent() -> handle<copy>
|
|
|
|
|
public ResultCode GetEvent(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_event.ReadableEvent, out int handle) != KernelResult.Success)
|
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-21 00:54:50 +00:00
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2020-02-06 04:09:59 +00:00
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceBcat);
|
2020-02-06 04:09:59 +00:00
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Command(1)]
|
|
|
|
|
// GetImpl() -> buffer<nn::bcat::detail::DeliveryCacheProgressImpl, 0x1a>
|
|
|
|
|
public ResultCode GetImpl(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
DeliveryCacheProgressImpl deliveryCacheProgress = new DeliveryCacheProgressImpl
|
|
|
|
|
{
|
|
|
|
|
State = DeliveryCacheProgressImpl.Status.Done,
|
|
|
|
|
Result = 0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
WriteDeliveryCacheProgressImpl(context, context.Request.RecvListBuff[0], deliveryCacheProgress);
|
|
|
|
|
|
2020-08-03 23:32:53 +00:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceBcat);
|
2020-02-06 04:09:59 +00:00
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void WriteDeliveryCacheProgressImpl(ServiceCtx context, IpcRecvListBuffDesc ipcDesc, DeliveryCacheProgressImpl deliveryCacheProgress)
|
|
|
|
|
{
|
|
|
|
|
using (MemoryStream memory = new MemoryStream((int)ipcDesc.Size))
|
|
|
|
|
using (BinaryWriter bufferWriter = new BinaryWriter(memory))
|
|
|
|
|
{
|
|
|
|
|
bufferWriter.WriteStruct(deliveryCacheProgress);
|
2020-05-03 22:54:50 +00:00
|
|
|
|
context.Memory.Write((ulong)ipcDesc.Position, memory.ToArray());
|
2020-02-06 04:09:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|