2020-12-09 22:20:05 +00:00
|
|
|
using System.Diagnostics;
|
2019-01-18 22:26:39 +00:00
|
|
|
using System.Threading;
|
|
|
|
|
2018-12-18 05:33:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Common
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
|
|
|
class KAutoObject
|
|
|
|
{
|
2020-05-04 03:41:29 +00:00
|
|
|
protected KernelContext KernelContext;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
2019-01-18 22:26:39 +00:00
|
|
|
private int _referenceCount;
|
|
|
|
|
2020-05-04 03:41:29 +00:00
|
|
|
public KAutoObject(KernelContext context)
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
2020-05-04 03:41:29 +00:00
|
|
|
KernelContext = context;
|
2019-01-18 22:26:39 +00:00
|
|
|
|
|
|
|
_referenceCount = 1;
|
2018-11-28 22:18:09 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public virtual KernelResult SetName(string name)
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
2020-05-04 03:41:29 +00:00
|
|
|
if (!KernelContext.AutoObjectNames.TryAdd(name, this))
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
|
|
|
return KernelResult.InvalidState;
|
|
|
|
}
|
|
|
|
|
|
|
|
return KernelResult.Success;
|
|
|
|
}
|
|
|
|
|
2020-05-04 03:41:29 +00:00
|
|
|
public static KernelResult RemoveName(KernelContext context, string name)
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
2020-05-04 03:41:29 +00:00
|
|
|
if (!context.AutoObjectNames.TryRemove(name, out _))
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
|
|
|
return KernelResult.NotFound;
|
|
|
|
}
|
|
|
|
|
|
|
|
return KernelResult.Success;
|
|
|
|
}
|
|
|
|
|
2020-05-04 03:41:29 +00:00
|
|
|
public static KAutoObject FindNamedObject(KernelContext context, string name)
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
2020-05-04 03:41:29 +00:00
|
|
|
if (context.AutoObjectNames.TryGetValue(name, out KAutoObject obj))
|
2018-11-28 22:18:09 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
return obj;
|
2018-11-28 22:18:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2019-01-18 22:26:39 +00:00
|
|
|
|
|
|
|
public void IncrementReferenceCount()
|
|
|
|
{
|
2020-12-09 22:20:05 +00:00
|
|
|
int newRefCount = Interlocked.Increment(ref _referenceCount);
|
|
|
|
|
|
|
|
Debug.Assert(newRefCount >= 2);
|
2019-01-18 22:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void DecrementReferenceCount()
|
|
|
|
{
|
2020-12-09 22:20:05 +00:00
|
|
|
int newRefCount = Interlocked.Decrement(ref _referenceCount);
|
|
|
|
|
|
|
|
Debug.Assert(newRefCount >= 0);
|
|
|
|
|
|
|
|
if (newRefCount == 0)
|
2019-01-18 22:26:39 +00:00
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-09 22:20:05 +00:00
|
|
|
protected virtual void Destroy()
|
|
|
|
{
|
|
|
|
}
|
2018-11-28 22:18:09 +00:00
|
|
|
}
|
|
|
|
}
|