2018-10-17 19:15:50 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-18 06:33:36 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2018-09-23 20:11:46 +02:00
|
|
|
using System;
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nifm.StaticService
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2018-09-19 01:36:43 +02:00
|
|
|
class IRequest : IpcService
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private KEvent _event0;
|
|
|
|
private KEvent _event1;
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-09-04 18:09:20 +02:00
|
|
|
private uint _version;
|
|
|
|
|
|
|
|
public IRequest(Horizon system, uint version)
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_event0 = new KEvent(system);
|
|
|
|
_event1 = new KEvent(system);
|
2019-09-04 18:09:20 +02:00
|
|
|
|
|
|
|
_version = version;
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(0)]
|
|
|
|
// GetRequestState() -> u32
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetRequestState(ServiceCtx context)
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(1);
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceNifm);
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(1)]
|
|
|
|
// GetResult()
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetResult(ServiceCtx context)
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceNifm);
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(2)]
|
|
|
|
// GetSystemEventReadableHandles() -> (handle<copy>, handle<copy>)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetSystemEventReadableHandles(ServiceCtx context)
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_event0.ReadableEvent, out int handle0) != KernelResult.Success)
|
2018-09-23 20:11:46 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_event1.ReadableEvent, out int handle1) != KernelResult.Success)
|
2018-09-23 20:11:46 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle0, handle1);
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(3)]
|
|
|
|
// Cancel()
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode Cancel(ServiceCtx context)
|
2018-04-05 00:16:59 +02:00
|
|
|
{
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceNifm);
|
2018-04-05 00:16:59 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-05 00:16:59 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(4)]
|
|
|
|
// Submit()
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode Submit(ServiceCtx context)
|
2018-04-05 00:16:59 +02:00
|
|
|
{
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceNifm);
|
2018-04-05 00:16:59 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-05 00:16:59 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(11)]
|
|
|
|
// SetConnectionConfirmationOption(i8)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetConnectionConfirmationOption(ServiceCtx context)
|
2018-05-17 20:25:42 +02:00
|
|
|
{
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceNifm);
|
2018-05-17 20:25:42 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-05-17 20:25:42 +02:00
|
|
|
}
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
|
|
|
}
|