2019-01-18 23:26:39 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2018-12-18 06:33:36 +01:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
2018-03-19 19:58:46 +01:00
|
|
|
{
|
2020-12-02 00:23:43 +01:00
|
|
|
class KSession : KAutoObject
|
2018-03-19 19:58:46 +01:00
|
|
|
{
|
2019-01-18 23:26:39 +01:00
|
|
|
public KServerSession ServerSession { get; }
|
|
|
|
public KClientSession ClientSession { get; }
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
private bool _hasBeenInitialized;
|
2018-04-06 07:38:59 +02:00
|
|
|
|
2020-07-17 06:19:07 +02:00
|
|
|
public KSession(KernelContext context, KClientPort parentPort = null) : base(context)
|
2018-03-19 19:58:46 +01:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
IncrementReferenceCount();
|
|
|
|
|
2020-05-04 05:41:29 +02:00
|
|
|
ServerSession = new KServerSession(context, this);
|
2020-07-17 06:19:07 +02:00
|
|
|
ClientSession = new KClientSession(context, this, parentPort);
|
2019-01-18 23:26:39 +01:00
|
|
|
|
|
|
|
_hasBeenInitialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void DisconnectClient()
|
|
|
|
{
|
|
|
|
if (ClientSession.State == ChannelState.Open)
|
|
|
|
{
|
|
|
|
ClientSession.State = ChannelState.ClientDisconnected;
|
|
|
|
|
|
|
|
ServerSession.CancelAllRequestsClientDisconnected();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void DisconnectServer()
|
|
|
|
{
|
|
|
|
if (ClientSession.State == ChannelState.Open)
|
|
|
|
{
|
|
|
|
ClientSession.State = ChannelState.ServerDisconnected;
|
|
|
|
}
|
2018-03-19 19:58:46 +01:00
|
|
|
}
|
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
protected override void Destroy()
|
|
|
|
{
|
|
|
|
if (_hasBeenInitialized)
|
|
|
|
{
|
2020-07-17 06:19:07 +02:00
|
|
|
ClientSession.DisconnectFromPort();
|
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
KProcess creatorProcess = ClientSession.CreatorProcess;
|
|
|
|
|
|
|
|
creatorProcess.ResourceLimit?.Release(LimitableResource.Session, 1);
|
|
|
|
creatorProcess.DecrementReferenceCount();
|
|
|
|
}
|
|
|
|
}
|
2018-03-19 19:58:46 +01:00
|
|
|
}
|
|
|
|
}
|