2019-01-18 14:26:39 -08:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
2018-03-19 11:58:46 -07:00
|
|
|
|
2018-12-17 21:33:36 -08:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
2018-03-19 11:58:46 -07:00
|
|
|
{
|
2020-12-01 15:23:43 -08:00
|
|
|
class KSession : KAutoObject
|
2018-03-19 11:58:46 -07:00
|
|
|
{
|
2019-01-18 14:26:39 -08:00
|
|
|
public KServerSession ServerSession { get; }
|
|
|
|
public KClientSession ClientSession { get; }
|
2018-03-19 11:58:46 -07:00
|
|
|
|
2019-01-18 14:26:39 -08:00
|
|
|
private bool _hasBeenInitialized;
|
2018-04-05 22:38:59 -07:00
|
|
|
|
2020-07-16 21:19:07 -07:00
|
|
|
public KSession(KernelContext context, KClientPort parentPort = null) : base(context)
|
2018-03-19 11:58:46 -07:00
|
|
|
{
|
2020-12-09 14:20:05 -08:00
|
|
|
IncrementReferenceCount();
|
|
|
|
|
2020-05-03 20:41:29 -07:00
|
|
|
ServerSession = new KServerSession(context, this);
|
2020-07-16 21:19:07 -07:00
|
|
|
ClientSession = new KClientSession(context, this, parentPort);
|
2019-01-18 14:26:39 -08: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 11:58:46 -07:00
|
|
|
}
|
|
|
|
|
2019-01-18 14:26:39 -08:00
|
|
|
protected override void Destroy()
|
|
|
|
{
|
|
|
|
if (_hasBeenInitialized)
|
|
|
|
{
|
2020-07-16 21:19:07 -07:00
|
|
|
ClientSession.DisconnectFromPort();
|
|
|
|
|
2019-01-18 14:26:39 -08:00
|
|
|
KProcess creatorProcess = ClientSession.CreatorProcess;
|
|
|
|
|
|
|
|
creatorProcess.ResourceLimit?.Release(LimitableResource.Session, 1);
|
|
|
|
creatorProcess.DecrementReferenceCount();
|
|
|
|
}
|
|
|
|
}
|
2018-03-19 11:58:46 -07:00
|
|
|
}
|
|
|
|
}
|