2019-01-18 22:26:39 +00:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
2018-03-19 18:58:46 +00:00
|
|
|
using System;
|
|
|
|
|
2018-12-18 05:33:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
2018-03-19 18:58:46 +00:00
|
|
|
{
|
2019-01-18 22:26:39 +00:00
|
|
|
class KSession : KAutoObject, IDisposable
|
2018-03-19 18:58:46 +00:00
|
|
|
{
|
2019-01-18 22:26:39 +00:00
|
|
|
public KServerSession ServerSession { get; }
|
|
|
|
public KClientSession ClientSession { get; }
|
2018-03-19 18:58:46 +00:00
|
|
|
|
2019-01-18 22:26:39 +00:00
|
|
|
private bool _hasBeenInitialized;
|
2018-04-06 05:38:59 +00:00
|
|
|
|
2019-01-18 22:26:39 +00:00
|
|
|
public KSession(Horizon system) : base(system)
|
2018-03-19 18:58:46 +00:00
|
|
|
{
|
2019-01-18 22:26:39 +00:00
|
|
|
ServerSession = new KServerSession(system, this);
|
|
|
|
ClientSession = new KClientSession(system, this);
|
|
|
|
|
|
|
|
_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 18:58:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
protected virtual void Dispose(bool disposing)
|
2018-03-19 18:58:46 +00:00
|
|
|
{
|
2019-01-18 22:26:39 +00:00
|
|
|
if (disposing && ClientSession.Service is IDisposable disposableService)
|
2018-03-19 18:58:46 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
disposableService.Dispose();
|
2018-03-19 18:58:46 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-18 22:26:39 +00:00
|
|
|
|
|
|
|
protected override void Destroy()
|
|
|
|
{
|
|
|
|
if (_hasBeenInitialized)
|
|
|
|
{
|
|
|
|
KProcess creatorProcess = ClientSession.CreatorProcess;
|
|
|
|
|
|
|
|
creatorProcess.ResourceLimit?.Release(LimitableResource.Session, 1);
|
|
|
|
|
|
|
|
creatorProcess.DecrementReferenceCount();
|
|
|
|
}
|
|
|
|
}
|
2018-03-19 18:58:46 +00:00
|
|
|
}
|
|
|
|
}
|