| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 | // Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the Apache 2.0 License.// See the LICENSE file in the project root for more information. using System.Collections.Generic;using System.Diagnostics;using System.Threading;using System.Threading.Tasks;namespace System.Linq{    public static partial class AsyncEnumerable    {        public static IAsyncEnumerable<TSource> Intersect<TSource>(this IAsyncEnumerable<TSource> first, IAsyncEnumerable<TSource> second)        {            if (first == null)                throw new ArgumentNullException(nameof(first));            if (second == null)                throw new ArgumentNullException(nameof(second));            return first.Intersect(second, EqualityComparer<TSource>.Default);        }        public static IAsyncEnumerable<TSource> Intersect<TSource>(this IAsyncEnumerable<TSource> first, IAsyncEnumerable<TSource> second, IEqualityComparer<TSource> comparer)        {            if (first == null)                throw new ArgumentNullException(nameof(first));            if (second == null)                throw new ArgumentNullException(nameof(second));            if (comparer == null)                throw new ArgumentNullException(nameof(comparer));            return new IntersectAsyncIterator<TSource>(first, second, comparer);        }        private sealed class IntersectAsyncIterator<TSource> : AsyncIterator<TSource>        {            private readonly IEqualityComparer<TSource> _comparer;            private readonly IAsyncEnumerable<TSource> _first;            private readonly IAsyncEnumerable<TSource> _second;            private Task _fillSetTask;            private IAsyncEnumerator<TSource> _firstEnumerator;            private Set<TSource> _set;            private bool _setFilled;            public IntersectAsyncIterator(IAsyncEnumerable<TSource> first, IAsyncEnumerable<TSource> second, IEqualityComparer<TSource> comparer)            {                Debug.Assert(first != null);                Debug.Assert(second != null);                Debug.Assert(comparer != null);                _first = first;                _second = second;                _comparer = comparer;            }            public override AsyncIterator<TSource> Clone()            {                return new IntersectAsyncIterator<TSource>(_first, _second, _comparer);            }            public override async ValueTask DisposeAsync()            {                if (_firstEnumerator != null)                {                    await _firstEnumerator.DisposeAsync().ConfigureAwait(false);                    _firstEnumerator = null;                }                _set = null;                await base.DisposeAsync().ConfigureAwait(false);            }            protected override async ValueTask<bool> MoveNextCore(CancellationToken cancellationToken)            {                switch (state)                {                    case AsyncIteratorState.Allocated:                        _firstEnumerator = _first.GetAsyncEnumerator(cancellationToken);                        _set = new Set<TSource>(_comparer);                        _setFilled = false;                        _fillSetTask = FillSet();                        state = AsyncIteratorState.Iterating;                        goto case AsyncIteratorState.Iterating;                    case AsyncIteratorState.Iterating:                        bool moveNext;                        do                        {                            if (!_setFilled)                            {                                // This is here so we don't need to call Task.WhenAll each time after the set is filled                                var moveNextTask = _firstEnumerator.MoveNextAsync();                                await Task.WhenAll(moveNextTask.AsTask(), _fillSetTask).ConfigureAwait(false);                                _setFilled = true;                                moveNext = moveNextTask.Result;                            }                            else                            {                                moveNext = await _firstEnumerator.MoveNextAsync().ConfigureAwait(false);                            }                            if (moveNext)                            {                                var item = _firstEnumerator.Current;                                if (_set.Remove(item))                                {                                    current = item;                                    return true;                                }                            }                        } while (moveNext);                        await DisposeAsync().ConfigureAwait(false);                        break;                }                return false;            }            private async Task FillSet()            {                var array = await _second.ToArray().ConfigureAwait(false);                for (var i = 0; i < array.Length; i++)                {                    _set.Add(array[i]);                }            }        }    }}
 |