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 /ARMeilleure/Translation/TranslatorCache.cs | |
| parent | cd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff) | |
Move solution and projects to src
Diffstat (limited to 'ARMeilleure/Translation/TranslatorCache.cs')
| -rw-r--r-- | ARMeilleure/Translation/TranslatorCache.cs | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/ARMeilleure/Translation/TranslatorCache.cs b/ARMeilleure/Translation/TranslatorCache.cs deleted file mode 100644 index 11286381..00000000 --- a/ARMeilleure/Translation/TranslatorCache.cs +++ /dev/null @@ -1,95 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Threading; - -namespace ARMeilleure.Translation -{ - internal class TranslatorCache<T> - { - private readonly IntervalTree<ulong, T> _tree; - private readonly ReaderWriterLock _treeLock; - - public int Count => _tree.Count; - - public TranslatorCache() - { - _tree = new IntervalTree<ulong, T>(); - _treeLock = new ReaderWriterLock(); - } - - public bool TryAdd(ulong address, ulong size, T value) - { - return AddOrUpdate(address, size, value, null); - } - - public bool AddOrUpdate(ulong address, ulong size, T value, Func<ulong, T, T> updateFactoryCallback) - { - _treeLock.AcquireWriterLock(Timeout.Infinite); - bool result = _tree.AddOrUpdate(address, address + size, value, updateFactoryCallback); - _treeLock.ReleaseWriterLock(); - - return result; - } - - public T GetOrAdd(ulong address, ulong size, T value) - { - _treeLock.AcquireWriterLock(Timeout.Infinite); - value = _tree.GetOrAdd(address, address + size, value); - _treeLock.ReleaseWriterLock(); - - return value; - } - - public bool Remove(ulong address) - { - _treeLock.AcquireWriterLock(Timeout.Infinite); - bool removed = _tree.Remove(address) != 0; - _treeLock.ReleaseWriterLock(); - - return removed; - } - - public void Clear() - { - _treeLock.AcquireWriterLock(Timeout.Infinite); - _tree.Clear(); - _treeLock.ReleaseWriterLock(); - } - - public bool ContainsKey(ulong address) - { - _treeLock.AcquireReaderLock(Timeout.Infinite); - bool result = _tree.ContainsKey(address); - _treeLock.ReleaseReaderLock(); - - return result; - } - - public bool TryGetValue(ulong address, out T value) - { - _treeLock.AcquireReaderLock(Timeout.Infinite); - bool result = _tree.TryGet(address, out value); - _treeLock.ReleaseReaderLock(); - - return result; - } - - public int GetOverlaps(ulong address, ulong size, ref ulong[] overlaps) - { - _treeLock.AcquireReaderLock(Timeout.Infinite); - int count = _tree.Get(address, address + size, ref overlaps); - _treeLock.ReleaseReaderLock(); - - return count; - } - - public List<T> AsList() - { - _treeLock.AcquireReaderLock(Timeout.Infinite); - List<T> list = _tree.AsList(); - _treeLock.ReleaseReaderLock(); - - return list; - } - } -} |
