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