2018-08-16 19:47:36 -04:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-06-10 20:46:42 -04:00
|
|
|
using Ryujinx.HLE.Logging;
|
2018-03-19 14:58:46 -04:00
|
|
|
using System;
|
2018-02-27 22:31:52 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nifm
|
2018-02-27 22:31:52 -05:00
|
|
|
{
|
2018-03-19 14:58:46 -04:00
|
|
|
class IRequest : IpcService, IDisposable
|
2018-02-27 22:31:52 -05:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 14:58:46 -04:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
2018-07-29 00:36:29 -04:00
|
|
|
private KEvent Event0;
|
|
|
|
private KEvent Event1;
|
2018-02-27 22:31:52 -05:00
|
|
|
|
|
|
|
public IRequest()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-05-17 14:25:42 -04:00
|
|
|
{ 0, GetRequestState },
|
|
|
|
{ 1, GetResult },
|
|
|
|
{ 2, GetSystemEventReadableHandles },
|
|
|
|
{ 3, Cancel },
|
|
|
|
{ 4, Submit },
|
|
|
|
{ 11, SetConnectionConfirmationOption }
|
2018-02-27 22:31:52 -05:00
|
|
|
};
|
2018-03-19 14:58:46 -04:00
|
|
|
|
2018-07-29 00:36:29 -04:00
|
|
|
Event0 = new KEvent();
|
|
|
|
Event1 = new KEvent();
|
2018-02-27 22:31:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public long GetRequestState(ServiceCtx Context)
|
|
|
|
{
|
2018-07-29 00:36:29 -04:00
|
|
|
Context.ResponseData.Write(1);
|
2018-02-27 22:31:52 -05:00
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-02-27 22:31:52 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetResult(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-02-27 22:31:52 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetSystemEventReadableHandles(ServiceCtx Context)
|
|
|
|
{
|
2018-07-29 00:36:29 -04:00
|
|
|
int Handle0 = Context.Process.HandleTable.OpenHandle(Event0);
|
|
|
|
int Handle1 = Context.Process.HandleTable.OpenHandle(Event1);
|
2018-02-27 22:31:52 -05:00
|
|
|
|
2018-07-29 00:36:29 -04: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
|
|
|
|
2018-04-04 18:16:59 -04:00
|
|
|
public long Cancel(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-04-04 18:16:59 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long Submit(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-04-04 18:16:59 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-17 14:25:42 -04:00
|
|
|
public long SetConnectionConfirmationOption(ServiceCtx Context)
|
|
|
|
{
|
2018-08-16 19:47:36 -04:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-05-17 14:25:42 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-19 14:58:46 -04:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool Disposing)
|
|
|
|
{
|
|
|
|
if (Disposing)
|
|
|
|
{
|
2018-07-29 00:36:29 -04:00
|
|
|
Event0.Dispose();
|
|
|
|
Event1.Dispose();
|
2018-03-19 14:58:46 -04:00
|
|
|
}
|
|
|
|
}
|
2018-02-27 22:31:52 -05:00
|
|
|
}
|
|
|
|
}
|