2018-08-16 16:47:36 -07:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-17 21:33:36 -08:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Memory;
|
2023-01-04 14:15:45 -08:00
|
|
|
using Ryujinx.Horizon.Common;
|
2018-09-23 11:11:46 -07:00
|
|
|
using System;
|
2018-02-09 16:14:55 -08:00
|
|
|
|
2019-09-18 17:45:11 -07:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Hid.HidServer
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2018-03-19 11:58:46 -07:00
|
|
|
class IAppletResource : IpcService
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
private KSharedMemory _hidSharedMem;
|
2020-12-01 15:23:43 -08:00
|
|
|
private int _hidSharedMemHandle;
|
2018-02-09 16:14:55 -08:00
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public IAppletResource(KSharedMemory hidSharedMem)
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
_hidSharedMem = hidSharedMem;
|
2018-02-09 16:14:55 -08:00
|
|
|
}
|
|
|
|
|
2021-04-13 15:01:24 -07:00
|
|
|
[CommandHipc(0)]
|
2019-07-11 18:13:43 -07:00
|
|
|
// GetSharedMemoryHandle() -> handle<copy>
|
2019-07-14 12:04:38 -07:00
|
|
|
public ResultCode GetSharedMemoryHandle(ServiceCtx context)
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2020-12-01 15:23:43 -08:00
|
|
|
if (_hidSharedMemHandle == 0)
|
2018-09-23 11:11:46 -07:00
|
|
|
{
|
2023-01-04 14:15:45 -08:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_hidSharedMem, out _hidSharedMemHandle) != Result.Success)
|
2020-12-01 15:23:43 -08:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-09-23 11:11:46 -07:00
|
|
|
}
|
2018-03-11 21:04:52 -07:00
|
|
|
|
2020-12-01 15:23:43 -08:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_hidSharedMemHandle);
|
2018-02-09 16:14:55 -08:00
|
|
|
|
2019-07-14 12:04:38 -07:00
|
|
|
return ResultCode.Success;
|
2018-02-09 16:14:55 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|