PooledList.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine.Assertions;
  4. namespace UnityEditor.ShaderGraph
  5. {
  6. class PooledList<T> : List<T>, IDisposable
  7. {
  8. static Stack<PooledList<T>> s_Pool = new Stack<PooledList<T>>();
  9. bool m_Active;
  10. PooledList() {}
  11. public static PooledList<T> Get()
  12. {
  13. if (s_Pool.Count == 0)
  14. {
  15. return new PooledList<T> { m_Active = true };
  16. }
  17. var list = s_Pool.Pop();
  18. list.m_Active = true;
  19. #if DEBUG
  20. GC.ReRegisterForFinalize(list);
  21. #endif
  22. return list;
  23. }
  24. public void Dispose()
  25. {
  26. Assert.IsTrue(m_Active);
  27. m_Active = false;
  28. Clear();
  29. s_Pool.Push(this);
  30. #if DEBUG
  31. GC.SuppressFinalize(this);
  32. #endif
  33. }
  34. // Destructor causes some GC alloc so only do this sanity check in debug build
  35. #if DEBUG
  36. ~PooledList()
  37. {
  38. throw new InvalidOperationException($"{nameof(PooledList<T>)} must be disposed manually.");
  39. }
  40. #endif
  41. }
  42. }