| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | // 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;using System.Collections.Generic;using System.Linq;using System.Threading;using System.Threading.Tasks;namespace System.Linq{    public static partial class AsyncEnumerable    {        public static IAsyncEnumerable<TResult> Zip<TFirst, TSecond, TResult>(this IAsyncEnumerable<TFirst> first, IAsyncEnumerable<TSecond> second, Func<TFirst, TSecond, TResult> selector)        {            if (first == null)                throw new ArgumentNullException(nameof(first));            if (second == null)                throw new ArgumentNullException(nameof(second));            if (selector == null)                throw new ArgumentNullException(nameof(selector));            return new ZipAsyncIterator<TFirst, TSecond, TResult>(first, second, selector);        }        private sealed class ZipAsyncIterator<TFirst, TSecond, TResult> : AsyncIterator<TResult>        {            private readonly IAsyncEnumerable<TFirst> first;            private readonly IAsyncEnumerable<TSecond> second;            private readonly Func<TFirst, TSecond, TResult> selector;            private IAsyncEnumerator<TFirst> firstEnumerator;            private IAsyncEnumerator<TSecond> secondEnumerator;            public ZipAsyncIterator(IAsyncEnumerable<TFirst> first, IAsyncEnumerable<TSecond> second, Func<TFirst, TSecond, TResult> selector)            {                this.first = first;                this.second = second;                this.selector = selector;            }            public override AsyncIterator<TResult> Clone()            {                return new ZipAsyncIterator<TFirst, TSecond, TResult>(first, second, selector);            }            public override void Dispose()            {                if (firstEnumerator != null)                {                    firstEnumerator.Dispose();                    firstEnumerator = null;                }                if (secondEnumerator != null)                {                    secondEnumerator.Dispose();                    secondEnumerator = null;                }                base.Dispose();            }            protected override async Task<bool> MoveNextCore(CancellationToken cancellationToken)            {                switch (state)                {                    case AsyncIteratorState.Allocated:                        firstEnumerator = first.GetEnumerator();                        secondEnumerator = second.GetEnumerator();                        state = AsyncIteratorState.Iterating;                        goto case AsyncIteratorState.Iterating;                    case AsyncIteratorState.Iterating:                        // We kick these off and join so they can potentially run in parallel                        var ft = firstEnumerator.MoveNext(cancellationToken);                        var st = secondEnumerator.MoveNext(cancellationToken);                        await Task.WhenAll(ft, st)                                  .ConfigureAwait(false);                        if (ft.Result && st.Result)                        {                            current = selector(firstEnumerator.Current, secondEnumerator.Current);                            return true;                        }                        Dispose();                        break;                }                return false;            }        }    }}
 |