2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-06-11 02:46:42 +02:00
|
|
|
using Ryujinx.HLE.Logging;
|
2018-02-28 04:31:52 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nifm
|
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
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
2018-07-29 06:36:29 +02:00
|
|
|
private KEvent Event0;
|
|
|
|
private KEvent Event1;
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
public IRequest(Horizon System)
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-05-17 20:25:42 +02:00
|
|
|
{ 0, GetRequestState },
|
|
|
|
{ 1, GetResult },
|
|
|
|
{ 2, GetSystemEventReadableHandles },
|
|
|
|
{ 3, Cancel },
|
|
|
|
{ 4, Submit },
|
|
|
|
{ 11, SetConnectionConfirmationOption }
|
2018-02-28 04:31:52 +01:00
|
|
|
};
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
Event0 = new KEvent(System);
|
|
|
|
Event1 = new KEvent(System);
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public long GetRequestState(ServiceCtx Context)
|
|
|
|
{
|
2018-07-29 06:36:29 +02:00
|
|
|
Context.ResponseData.Write(1);
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-02-28 04:31:52 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetResult(ServiceCtx Context)
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-02-28 04:31:52 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetSystemEventReadableHandles(ServiceCtx Context)
|
|
|
|
{
|
2018-07-29 06:36:29 +02:00
|
|
|
int Handle0 = Context.Process.HandleTable.OpenHandle(Event0);
|
|
|
|
int Handle1 = Context.Process.HandleTable.OpenHandle(Event1);
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2018-07-29 06:36:29 +02:00
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle0, Handle1);
|
2018-02-28 04:31:52 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2018-04-05 00:16:59 +02:00
|
|
|
public long Cancel(ServiceCtx Context)
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-04-05 00:16:59 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long Submit(ServiceCtx Context)
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-04-05 00:16:59 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-17 20:25:42 +02:00
|
|
|
public long SetConnectionConfirmationOption(ServiceCtx Context)
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-05-17 20:25:42 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
|
|
|
}
|