Publish.cs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Collections;
  5. using System.Collections.Generic;
  6. namespace System.Linq
  7. {
  8. public static partial class EnumerableEx
  9. {
  10. /// <summary>
  11. /// Creates a buffer with a view over the source sequence, causing each enumerator to obtain access to the remainder of
  12. /// the sequence from the current index in the buffer.
  13. /// </summary>
  14. /// <typeparam name="TSource">Source sequence element type.</typeparam>
  15. /// <param name="source">Source sequence.</param>
  16. /// <returns>
  17. /// Buffer enabling each enumerator to retrieve elements from the shared source sequence, starting from the index
  18. /// at the point of obtaining the enumerator.
  19. /// </returns>
  20. /// <example>
  21. /// var rng = Enumerable.Range(0, 10).Publish();
  22. /// var e1 = rng.GetEnumerator(); // e1 has a view on the source starting from element 0
  23. /// Assert.IsTrue(e1.MoveNext());
  24. /// Assert.AreEqual(0, e1.Current);
  25. /// Assert.IsTrue(e1.MoveNext());
  26. /// Assert.AreEqual(1, e1.Current);
  27. /// var e2 = rng.GetEnumerator();
  28. /// Assert.IsTrue(e2.MoveNext()); // e2 has a view on the source starting from element 2
  29. /// Assert.AreEqual(2, e2.Current);
  30. /// Assert.IsTrue(e1.MoveNext()); // e1 continues to enumerate over its view
  31. /// Assert.AreEqual(2, e1.Current);
  32. /// </example>
  33. public static IBuffer<TSource> Publish<TSource>(this IEnumerable<TSource> source)
  34. {
  35. if (source == null)
  36. {
  37. throw new ArgumentNullException(nameof(source));
  38. }
  39. return new PublishedBuffer<TSource>(source.GetEnumerator());
  40. }
  41. /// <summary>
  42. /// Publishes the source sequence within a selector function where each enumerator can obtain a view over a tail of the
  43. /// source sequence.
  44. /// </summary>
  45. /// <typeparam name="TSource">Source sequence element type.</typeparam>
  46. /// <typeparam name="TResult">Result sequence element type.</typeparam>
  47. /// <param name="source">Source sequence.</param>
  48. /// <param name="selector">Selector function with published access to the source sequence for each enumerator.</param>
  49. /// <returns>Sequence resulting from applying the selector function to the published view over the source sequence.</returns>
  50. public static IEnumerable<TResult> Publish<TSource, TResult>(this IEnumerable<TSource> source, Func<IEnumerable<TSource>, IEnumerable<TResult>> selector)
  51. {
  52. if (source == null)
  53. {
  54. throw new ArgumentNullException(nameof(source));
  55. }
  56. if (selector == null)
  57. {
  58. throw new ArgumentNullException(nameof(selector));
  59. }
  60. return Create(() => selector(source.Publish()).GetEnumerator());
  61. }
  62. private sealed class PublishedBuffer<T> : IBuffer<T>
  63. {
  64. private RefCountList<T> _buffer;
  65. private bool _disposed;
  66. private Exception _error;
  67. private IEnumerator<T> _source;
  68. private bool _stopped;
  69. public PublishedBuffer(IEnumerator<T> source)
  70. {
  71. _buffer = new RefCountList<T>(0);
  72. _source = source;
  73. }
  74. public IEnumerator<T> GetEnumerator()
  75. {
  76. if (_disposed)
  77. {
  78. throw new ObjectDisposedException("");
  79. }
  80. var i = default(int);
  81. lock (_source)
  82. {
  83. i = _buffer.Count;
  84. _buffer.ReaderCount++;
  85. }
  86. return GetEnumeratorCore(i);
  87. }
  88. IEnumerator IEnumerable.GetEnumerator()
  89. {
  90. if (_disposed)
  91. {
  92. throw new ObjectDisposedException("");
  93. }
  94. return GetEnumerator();
  95. }
  96. public void Dispose()
  97. {
  98. lock (_source)
  99. {
  100. if (!_disposed)
  101. {
  102. _source.Dispose();
  103. _source = null;
  104. _buffer.Clear();
  105. _buffer = null;
  106. }
  107. _disposed = true;
  108. }
  109. }
  110. private IEnumerator<T> GetEnumeratorCore(int i)
  111. {
  112. try
  113. {
  114. while (true)
  115. {
  116. if (_disposed)
  117. {
  118. throw new ObjectDisposedException("");
  119. }
  120. var hasValue = default(bool);
  121. var current = default(T);
  122. lock (_source)
  123. {
  124. if (i >= _buffer.Count)
  125. {
  126. if (!_stopped)
  127. {
  128. try
  129. {
  130. hasValue = _source.MoveNext();
  131. if (hasValue)
  132. {
  133. current = _source.Current;
  134. }
  135. }
  136. catch (Exception ex)
  137. {
  138. _stopped = true;
  139. _error = ex;
  140. _source.Dispose();
  141. }
  142. }
  143. if (_stopped)
  144. {
  145. if (_error != null)
  146. {
  147. throw _error;
  148. }
  149. else
  150. {
  151. break;
  152. }
  153. }
  154. if (hasValue)
  155. {
  156. _buffer.Add(current);
  157. }
  158. }
  159. else
  160. {
  161. hasValue = true;
  162. }
  163. }
  164. if (hasValue)
  165. {
  166. yield return _buffer[i];
  167. }
  168. else
  169. {
  170. break;
  171. }
  172. i++;
  173. }
  174. }
  175. finally
  176. {
  177. if (_buffer != null)
  178. {
  179. _buffer.Done(i + 1);
  180. }
  181. }
  182. }
  183. }
  184. }
  185. }