2018-10-17 18:15:50 +01:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
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 19:11:46 +01:00
|
|
|
|
using System;
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2018-08-17 00:47:36 +01:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-06-02 23:46:09 +01:00
|
|
|
|
{
|
|
|
|
|
class ILibraryAppletAccessor : IpcService
|
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private KEvent _stateChangedEvent;
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public ILibraryAppletAccessor(Horizon system)
|
2018-06-02 23:46:09 +01:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_stateChangedEvent = new KEvent(system);
|
2018-06-02 23:46:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
|
[Command(0)]
|
|
|
|
|
// GetAppletStateChangedEvent() -> handle<copy>
|
2019-07-14 20:04:38 +01:00
|
|
|
|
public ResultCode GetAppletStateChangedEvent(ServiceCtx context)
|
2018-06-02 23:46:09 +01:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_stateChangedEvent.ReadableEvent.Signal();
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_stateChangedEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 19:11:46 +01:00
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
|
}
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2019-07-14 20:04:38 +01:00
|
|
|
|
return ResultCode.Success;
|
2018-06-02 23:46:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
|
[Command(10)]
|
|
|
|
|
// Start()
|
2019-07-14 20:04:38 +01:00
|
|
|
|
public ResultCode Start(ServiceCtx context)
|
2018-06-02 23:46:09 +01:00
|
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2019-07-14 20:04:38 +01:00
|
|
|
|
return ResultCode.Success;
|
2018-06-02 23:46:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
|
[Command(30)]
|
|
|
|
|
// GetResult()
|
2019-07-14 20:04:38 +01:00
|
|
|
|
public ResultCode GetResult(ServiceCtx context)
|
2018-06-02 23:46:09 +01:00
|
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2019-07-14 20:04:38 +01:00
|
|
|
|
return ResultCode.Success;
|
2018-06-02 23:46:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
|
[Command(100)]
|
|
|
|
|
// PushInData(object<nn::am::service::IStorage>)
|
2019-07-14 20:04:38 +01:00
|
|
|
|
public ResultCode PushInData(ServiceCtx context)
|
2018-06-02 23:46:09 +01:00
|
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2019-07-14 20:04:38 +01:00
|
|
|
|
return ResultCode.Success;
|
2018-06-02 23:46:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
|
[Command(101)]
|
|
|
|
|
// PopOutData() -> object<nn::am::service::IStorage>
|
2019-07-14 20:04:38 +01:00
|
|
|
|
public ResultCode PopOutData(ServiceCtx context)
|
2018-06-02 23:46:09 +01:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
MakeObject(context, new IStorage(StorageHelper.MakeLaunchParams()));
|
2018-06-02 23:46:09 +01:00
|
|
|
|
|
2019-07-14 20:04:38 +01:00
|
|
|
|
return ResultCode.Success;
|
2018-06-02 23:46:09 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|