2019-06-17 01:08:32 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2019-06-27 14:05:30 +02:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2019-06-17 01:08:32 +02:00
|
|
|
using Ryujinx.HLE.Utilities;
|
2019-06-27 14:05:30 +02:00
|
|
|
using System;
|
2019-06-17 01:08:32 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Friend
|
|
|
|
{
|
|
|
|
class INotificationService : IpcService
|
|
|
|
{
|
|
|
|
private UInt128 _userId;
|
|
|
|
|
2019-06-27 14:05:30 +02:00
|
|
|
private KEvent _notificationEvent;
|
|
|
|
private int _notificationEventHandle = 0;
|
|
|
|
|
2019-06-17 01:08:32 +02:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
|
|
|
|
|
|
|
public INotificationService(UInt128 userId)
|
|
|
|
{
|
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
|
|
|
{
|
2019-06-27 14:05:30 +02:00
|
|
|
{ 0, GetEvent }, // 2.0.0+
|
|
|
|
//{ 1, Clear }, // 2.0.0+
|
|
|
|
//{ 2, Pop }, // 2.0.0+
|
2019-06-17 01:08:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
_userId = userId;
|
|
|
|
}
|
2019-06-27 14:05:30 +02:00
|
|
|
|
|
|
|
public long GetEvent(ServiceCtx context)
|
|
|
|
{
|
|
|
|
if (_notificationEventHandle == 0)
|
|
|
|
{
|
|
|
|
_notificationEvent = new KEvent(context.Device.System);
|
|
|
|
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_notificationEvent.ReadableEvent, out _notificationEventHandle) != KernelResult.Success)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_notificationEventHandle);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2019-06-17 01:08:32 +02:00
|
|
|
}
|
|
|
|
}
|