2018-10-17 19:15:50 +02:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-18 06:33:36 +01:00
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2018-09-23 20:11:46 +02:00
|
|
|
|
using System;
|
2018-06-03 00:46:09 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
class ILibraryAppletAccessor : IpcService
|
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
private KEvent _stateChangedEvent;
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public ILibraryAppletAccessor(Horizon system)
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
|
|
|
|
{ 0, GetAppletStateChangedEvent },
|
|
|
|
|
{ 10, Start },
|
|
|
|
|
{ 30, GetResult },
|
|
|
|
|
{ 100, PushInData },
|
|
|
|
|
{ 101, PopOutData }
|
|
|
|
|
};
|
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
_stateChangedEvent = new KEvent(system);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long GetAppletStateChangedEvent(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
_stateChangedEvent.ReadableEvent.Signal();
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_stateChangedEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 20:11:46 +02:00
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
|
}
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
2018-10-17 19:15:50 +02:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long Start(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
2018-10-17 19:15:50 +02:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long GetResult(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
2018-10-17 19:15:50 +02:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long PushInData(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
2018-10-17 19:15:50 +02:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
|
public long PopOutData(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
|
MakeObject(context, new IStorage(StorageHelper.MakeLaunchParams()));
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|