FastEnumerator.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. // Animancer // https://kybernetik.com.au/animancer // Copyright 2022 Kybernetik //
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. namespace Animancer
  6. {
  7. /// <summary>
  8. /// An <see cref="IEnumerator{T}"/> for any <see cref="IList{T}"/> doesn't bother checking if the target has been
  9. /// modified. This gives it good performance but also makes it slightly less safe to use.
  10. /// </summary>
  11. /// <remarks>
  12. /// This struct also implements <see cref="IEnumerable{T}"/> so it can be used in <c>foreach</c> statements and
  13. /// <see cref="IList{T}"/> to allow the target collection to be modified without breaking the enumerator (though
  14. /// doing so is still somewhat dangerous so use with care).
  15. /// </remarks>
  16. /// <example><code>
  17. /// var numbers = new int[] { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, };
  18. /// var count = 4;
  19. /// foreach (var number in new FastEnumerator&lt;int&gt;(numbers, count))
  20. /// {
  21. /// Debug.Log(number);
  22. /// }
  23. ///
  24. /// // Log Output:
  25. /// // 9
  26. /// // 8
  27. /// // 7
  28. /// // 6
  29. /// </code></example>
  30. public struct FastEnumerator<T> : IList<T>, IEnumerator<T>
  31. {
  32. /************************************************************************************************************************/
  33. /// <summary>The target <see cref="IList{T}"/>.</summary>
  34. private readonly IList<T> List;
  35. /************************************************************************************************************************/
  36. private int _Count;
  37. /// <summary>[<see cref="ICollection{T}"/>]
  38. /// The number of items in the <see cref="List"/> (which can be less than the
  39. /// <see cref="ICollection{T}.Count"/> of the <see cref="List"/>).
  40. /// </summary>
  41. public int Count
  42. {
  43. get => _Count;
  44. set
  45. {
  46. AssertCount(value);
  47. _Count = value;
  48. }
  49. }
  50. /************************************************************************************************************************/
  51. private int _Index;
  52. /// <summary>The position of the <see cref="Current"/> item in the <see cref="List"/>.</summary>
  53. public int Index
  54. {
  55. get => _Index;
  56. set
  57. {
  58. AssertIndex(value);
  59. _Index = value;
  60. }
  61. }
  62. /************************************************************************************************************************/
  63. /// <summary>The item at the current <see cref="Index"/> in the <see cref="List"/>.</summary>
  64. public T Current
  65. {
  66. get
  67. {
  68. AssertCount(_Count);
  69. AssertIndex(_Index);
  70. return List[_Index];
  71. }
  72. set
  73. {
  74. AssertCount(_Count);
  75. AssertIndex(_Index);
  76. List[_Index] = value;
  77. }
  78. }
  79. /// <summary>The item at the current <see cref="Index"/> in the <see cref="List"/>.</summary>
  80. object IEnumerator.Current => Current;
  81. /************************************************************************************************************************/
  82. /// <summary>Creates a new <see cref="FastEnumerator{T}"/>.</summary>
  83. /// <exception cref="NullReferenceException">
  84. /// The `list` is null. Use the <c>default</c> <see cref="FastEnumerator{T}"/> instead.
  85. /// </exception>
  86. public FastEnumerator(IList<T> list)
  87. : this(list, list.Count)
  88. { }
  89. /// <summary>Creates a new <see cref="FastEnumerator{T}"/>.</summary>
  90. /// <exception cref="NullReferenceException">
  91. /// The `list` is null. Use the <c>default</c> <see cref="FastEnumerator{T}"/> instead.
  92. /// </exception>
  93. public FastEnumerator(IList<T> list, int count)
  94. {
  95. List = list;
  96. _Count = count;
  97. _Index = -1;
  98. AssertCount(count);
  99. }
  100. /************************************************************************************************************************/
  101. /// <summary>Moves to the next item in the <see cref="List"/> and returns true if there is one.</summary>
  102. /// <remarks>At the end of the <see cref="List"/> the <see cref="Index"/> is set to <see cref="int.MinValue"/>.</remarks>
  103. public bool MoveNext()
  104. {
  105. _Index++;
  106. if ((uint)_Index < (uint)_Count)
  107. {
  108. return true;
  109. }
  110. else
  111. {
  112. _Index = int.MinValue;
  113. return false;
  114. }
  115. }
  116. /************************************************************************************************************************/
  117. /// <summary>Moves to the previous item in the <see cref="List"/> and returns true if there is one.</summary>
  118. /// <remarks>At the end of the <see cref="List"/> the <see cref="Index"/> is set to <c>-1</c>.</remarks>
  119. public bool MovePrevious()
  120. {
  121. if (_Index > 0)
  122. {
  123. _Index--;
  124. return true;
  125. }
  126. else
  127. {
  128. _Index = -1;
  129. return false;
  130. }
  131. }
  132. /************************************************************************************************************************/
  133. /// <summary>[<see cref="IEnumerator"/>] Reverts this enumerator to the start of the <see cref="List"/>.</summary>
  134. public void Reset()
  135. {
  136. _Index = -1;
  137. }
  138. /************************************************************************************************************************/
  139. /// <inheritdoc/>
  140. void IDisposable.Dispose() { }
  141. /************************************************************************************************************************/
  142. // IEnumerator.
  143. /************************************************************************************************************************/
  144. /// <summary>Returns <c>this</c>.</summary>
  145. public FastEnumerator<T> GetEnumerator() => this;
  146. /// <inheritdoc/>
  147. IEnumerator<T> IEnumerable<T>.GetEnumerator() => this;
  148. /// <inheritdoc/>
  149. IEnumerator IEnumerable.GetEnumerator() => this;
  150. /************************************************************************************************************************/
  151. // IList.
  152. /************************************************************************************************************************/
  153. /// <summary>[<see cref="IList{T}"/>] Returns the first index of the `item` in the <see cref="List"/>.</summary>
  154. public int IndexOf(T item) => List.IndexOf(item);
  155. /// <summary>[<see cref="IList{T}"/>] The item at the specified `index` in the <see cref="List"/>.</summary>
  156. public T this[int index]
  157. {
  158. get
  159. {
  160. AssertIndex(index);
  161. return List[index];
  162. }
  163. set
  164. {
  165. AssertIndex(index);
  166. List[index] = value;
  167. }
  168. }
  169. /// <summary>[<see cref="IList{T}"/>] Inserts the `item` at the specified `index` in the <see cref="List"/>.</summary>
  170. public void Insert(int index, T item)
  171. {
  172. AssertIndex(index);
  173. List.Insert(index, item);
  174. if (_Index >= index)
  175. _Index++;
  176. _Count++;
  177. }
  178. /// <summary>[<see cref="IList{T}"/>] Removes the item at the specified `index` from the <see cref="List"/>.</summary>
  179. public void RemoveAt(int index)
  180. {
  181. AssertIndex(index);
  182. List.RemoveAt(index);
  183. if (_Index >= index)
  184. _Index--;
  185. _Count--;
  186. }
  187. /************************************************************************************************************************/
  188. // ICollection.
  189. /************************************************************************************************************************/
  190. /// <summary>[<see cref="ICollection{T}"/>] Is the <see cref="List"/> read-only?</summary>
  191. public bool IsReadOnly => List.IsReadOnly;
  192. /// <summary>[<see cref="ICollection{T}"/>] Does the <see cref="List"/> contain the `item`?</summary>
  193. public bool Contains(T item) => List.Contains(item);
  194. /// <summary>[<see cref="ICollection{T}"/>] Adds the `item` to the end of the <see cref="List"/>.</summary>
  195. public void Add(T item)
  196. {
  197. List.Add(item);
  198. _Count++;
  199. }
  200. /// <summary>[<see cref="ICollection{T}"/>] Removes the `item` from the <see cref="List"/> and returns true if successful.</summary>
  201. public bool Remove(T item)
  202. {
  203. var index = List.IndexOf(item);
  204. if (index >= 0)
  205. {
  206. RemoveAt(index);
  207. return true;
  208. }
  209. else return false;
  210. }
  211. /// <summary>[<see cref="ICollection{T}"/>] Removes everything from the <see cref="List"/>.</summary>
  212. public void Clear()
  213. {
  214. List.Clear();
  215. _Index = -1;
  216. _Count = 0;
  217. }
  218. /// <summary>[<see cref="ICollection{T}"/>] Copies the contents of the <see cref="List"/> into the `array`.</summary>
  219. public void CopyTo(T[] array, int arrayIndex)
  220. {
  221. for (int i = 0; i < _Count; i++)
  222. array[arrayIndex + i] = List[i];
  223. }
  224. /************************************************************************************************************************/
  225. /// <summary>[Assert-Only] Throws an exception unless 0 &lt;= `index` &lt; <see cref="Count"/>.</summary>
  226. /// <exception cref="ArgumentOutOfRangeException"/>
  227. [System.Diagnostics.Conditional(Strings.Assertions)]
  228. private void AssertIndex(int index)
  229. {
  230. #if UNITY_ASSERTIONS
  231. if ((uint)index > (uint)_Count)
  232. throw new ArgumentOutOfRangeException(nameof(index),
  233. $"{nameof(FastEnumerator<T>)}.{nameof(Index)}" +
  234. $" must be within 0 <= {nameof(Index)} ({index}) < {nameof(Count)} ({_Count}).");
  235. #endif
  236. }
  237. /************************************************************************************************************************/
  238. /// <summary>[Assert-Only] Throws an exception unless 0 &lt; `count` &lt;= <see cref="ICollection{T}.Count"/>.</summary>
  239. /// <exception cref="ArgumentOutOfRangeException"/>
  240. [System.Diagnostics.Conditional(Strings.Assertions)]
  241. private void AssertCount(int count)
  242. {
  243. #if UNITY_ASSERTIONS
  244. if (List == null)
  245. {
  246. if (count != 0)
  247. throw new ArgumentOutOfRangeException(nameof(count),
  248. $"Must be within 0 since the {nameof(List)} is null.");
  249. }
  250. else
  251. {
  252. if ((uint)count > (uint)List.Count)
  253. throw new ArgumentOutOfRangeException(nameof(count),
  254. $"Must be within 0 <= {nameof(count)} ({count}) < {nameof(List)}.{nameof(List.Count)} ({List.Count}).");
  255. }
  256. #endif
  257. }
  258. /************************************************************************************************************************/
  259. }
  260. }