2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-06-11 00:46:42 +00:00
|
|
|
using Ryujinx.HLE.Logging;
|
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
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
2018-07-29 04:36:29 +00:00
|
|
|
private KEvent Event0;
|
|
|
|
private KEvent Event1;
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-09-18 23:36:43 +00:00
|
|
|
public IRequest(Horizon System)
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
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-09-18 23:36:43 +00:00
|
|
|
Event0 = new KEvent(System);
|
|
|
|
Event1 = new KEvent(System);
|
2018-02-28 03:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public long GetRequestState(ServiceCtx Context)
|
|
|
|
{
|
2018-07-29 04:36:29 +00:00
|
|
|
Context.ResponseData.Write(1);
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-02-28 03:31:52 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetResult(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-02-28 03:31:52 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetSystemEventReadableHandles(ServiceCtx Context)
|
|
|
|
{
|
2018-09-23 18:11:46 +00:00
|
|
|
if (Context.Process.HandleTable.GenerateHandle(Event0.ReadableEvent, out int Handle0) != KernelResult.Success)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Context.Process.HandleTable.GenerateHandle(Event1.ReadableEvent, out int Handle1) != KernelResult.Success)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-07-29 04:36:29 +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-04-04 22:16:59 +00:00
|
|
|
public long Cancel(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-04-04 22:16:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long Submit(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-04-04 22:16:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-17 18:25:42 +00:00
|
|
|
public long SetConnectionConfirmationOption(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-05-17 18:25:42 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-28 03:31:52 +00:00
|
|
|
}
|
|
|
|
}
|