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