2018-12-18 06:33:36 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
2019-01-18 23:26:39 +01:00
|
|
|
using System.Collections.Generic;
|
2018-12-18 06:33:36 +01:00
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
|
|
|
class KServerPort : KSynchronizationObject
|
|
|
|
{
|
2019-01-18 23:26:39 +01:00
|
|
|
private LinkedList<KServerSession> _incomingConnections;
|
|
|
|
private LinkedList<KLightServerSession> _lightIncomingConnections;
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private KPort _parent;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
public bool IsLight => _parent.IsLight;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
public KServerPort(Horizon system, KPort parent) : base(system)
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_parent = parent;
|
2019-01-18 23:26:39 +01:00
|
|
|
|
|
|
|
_incomingConnections = new LinkedList<KServerSession>();
|
|
|
|
_lightIncomingConnections = new LinkedList<KLightServerSession>();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void EnqueueIncomingSession(KServerSession session)
|
|
|
|
{
|
|
|
|
AcceptIncomingConnection(_incomingConnections, session);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void EnqueueIncomingLightSession(KLightServerSession session)
|
|
|
|
{
|
|
|
|
AcceptIncomingConnection(_lightIncomingConnections, session);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void AcceptIncomingConnection<T>(LinkedList<T> list, T session)
|
|
|
|
{
|
|
|
|
System.CriticalSection.Enter();
|
|
|
|
|
|
|
|
list.AddLast(session);
|
|
|
|
|
|
|
|
if (list.Count == 1)
|
|
|
|
{
|
|
|
|
Signal();
|
|
|
|
}
|
|
|
|
|
|
|
|
System.CriticalSection.Leave();
|
|
|
|
}
|
|
|
|
|
|
|
|
public KServerSession AcceptIncomingConnection()
|
|
|
|
{
|
|
|
|
return AcceptIncomingConnection(_incomingConnections);
|
|
|
|
}
|
|
|
|
|
|
|
|
public KLightServerSession AcceptIncomingLightConnection()
|
|
|
|
{
|
|
|
|
return AcceptIncomingConnection(_lightIncomingConnections);
|
|
|
|
}
|
|
|
|
|
|
|
|
private T AcceptIncomingConnection<T>(LinkedList<T> list)
|
|
|
|
{
|
|
|
|
T session = default(T);
|
|
|
|
|
|
|
|
System.CriticalSection.Enter();
|
|
|
|
|
|
|
|
if (list.Count != 0)
|
|
|
|
{
|
|
|
|
session = list.First.Value;
|
|
|
|
|
|
|
|
list.RemoveFirst();
|
|
|
|
}
|
|
|
|
|
|
|
|
System.CriticalSection.Leave();
|
|
|
|
|
|
|
|
return session;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool IsSignaled()
|
|
|
|
{
|
|
|
|
if (_parent.IsLight)
|
|
|
|
{
|
|
|
|
return _lightIncomingConnections.Count != 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return _incomingConnections.Count != 0;
|
|
|
|
}
|
2018-11-28 23:18:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|