mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:28:33 +00:00
15d1cc806b
* Move kernel state from Horizon to KernelContext * Merge syscalls partial classes, split 32 and 64-bit variants * Sort usings
65 lines
1.7 KiB
C#
65 lines
1.7 KiB
C#
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
|
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
|
{
|
|
class KSession : KAutoObject, IDisposable
|
|
{
|
|
public KServerSession ServerSession { get; }
|
|
public KClientSession ClientSession { get; }
|
|
|
|
private bool _hasBeenInitialized;
|
|
|
|
public KSession(KernelContext context) : base(context)
|
|
{
|
|
ServerSession = new KServerSession(context, this);
|
|
ClientSession = new KClientSession(context, 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;
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(true);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (disposing && ClientSession.Service is IDisposable disposableService)
|
|
{
|
|
disposableService.Dispose();
|
|
}
|
|
}
|
|
|
|
protected override void Destroy()
|
|
{
|
|
if (_hasBeenInitialized)
|
|
{
|
|
KProcess creatorProcess = ClientSession.CreatorProcess;
|
|
|
|
creatorProcess.ResourceLimit?.Release(LimitableResource.Session, 1);
|
|
|
|
creatorProcess.DecrementReferenceCount();
|
|
}
|
|
}
|
|
}
|
|
} |