diff options
author | TSR Berry <20988865+TSRBerry@users.noreply.github.com> | 2023-04-08 01:22:00 +0200 |
---|---|---|
committer | Mary <thog@protonmail.com> | 2023-04-27 23:51:14 +0200 |
commit | cee712105850ac3385cd0091a923438167433f9f (patch) | |
tree | 4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /src/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs | |
parent | cd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff) |
Move solution and projects to src
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs')
-rw-r--r-- | src/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs new file mode 100644 index 00000000..424bf788 --- /dev/null +++ b/src/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs @@ -0,0 +1,73 @@ +using Ryujinx.Horizon.Common; +using System.Diagnostics; +using System.Threading; + +namespace Ryujinx.HLE.HOS.Kernel.Common +{ + class KAutoObject + { + protected KernelContext KernelContext; + + private int _referenceCount; + + public KAutoObject(KernelContext context) + { + KernelContext = context; + + _referenceCount = 1; + } + + public virtual Result SetName(string name) + { + if (!KernelContext.AutoObjectNames.TryAdd(name, this)) + { + return KernelResult.InvalidState; + } + + return Result.Success; + } + + public static Result RemoveName(KernelContext context, string name) + { + if (!context.AutoObjectNames.TryRemove(name, out _)) + { + return KernelResult.NotFound; + } + + return Result.Success; + } + + public static KAutoObject FindNamedObject(KernelContext context, string name) + { + if (context.AutoObjectNames.TryGetValue(name, out KAutoObject obj)) + { + return obj; + } + + return null; + } + + public void IncrementReferenceCount() + { + int newRefCount = Interlocked.Increment(ref _referenceCount); + + Debug.Assert(newRefCount >= 2); + } + + public void DecrementReferenceCount() + { + int newRefCount = Interlocked.Decrement(ref _referenceCount); + + Debug.Assert(newRefCount >= 0); + + if (newRefCount == 0) + { + Destroy(); + } + } + + protected virtual void Destroy() + { + } + } +}
\ No newline at end of file |