mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:29:00 +00:00
15d1cc806b
* Move kernel state from Horizon to KernelContext * Merge syscalls partial classes, split 32 and 64-bit variants * Sort usings
64 lines
2.1 KiB
C#
64 lines
2.1 KiB
C#
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)
|
|
{
|
|
_event = new KEvent(context.Device.System.KernelContext);
|
|
}
|
|
|
|
[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!");
|
|
}
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeMove(handle);
|
|
|
|
Logger.PrintStub(LogClass.ServiceBcat);
|
|
|
|
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);
|
|
|
|
Logger.PrintStub(LogClass.ServiceBcat);
|
|
|
|
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);
|
|
context.Memory.Write((ulong)ipcDesc.Position, memory.ToArray());
|
|
}
|
|
}
|
|
}
|
|
} |