// 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.Tasks; namespace System.Linq { public static partial class AsyncEnumerable { public static IAsyncEnumerable OnErrorResumeNext(this IAsyncEnumerable first, IAsyncEnumerable second) { if (first == null) throw new ArgumentNullException(nameof(first)); if (second == null) throw new ArgumentNullException(nameof(second)); return OnErrorResumeNext_(new[] { first, second }); } public static IAsyncEnumerable OnErrorResumeNext(params IAsyncEnumerable[] sources) { if (sources == null) throw new ArgumentNullException(nameof(sources)); return OnErrorResumeNext_(sources); } public static IAsyncEnumerable OnErrorResumeNext(this IEnumerable> sources) { if (sources == null) throw new ArgumentNullException(nameof(sources)); return OnErrorResumeNext_(sources); } private static IAsyncEnumerable OnErrorResumeNext_(IEnumerable> sources) { return new OnErrorResumeNextAsyncIterator(sources); } private sealed class OnErrorResumeNextAsyncIterator : AsyncIterator { private readonly IEnumerable> sources; private IAsyncEnumerator enumerator; private IEnumerator> sourcesEnumerator; public OnErrorResumeNextAsyncIterator(IEnumerable> sources) { Debug.Assert(sources != null); this.sources = sources; } public override AsyncIterator Clone() { return new OnErrorResumeNextAsyncIterator(sources); } public override async Task DisposeAsync() { if (sourcesEnumerator != null) { sourcesEnumerator.Dispose(); sourcesEnumerator = null; } if (enumerator != null) { await enumerator.DisposeAsync().ConfigureAwait(false); enumerator = null; } await base.DisposeAsync().ConfigureAwait(false); } protected override async Task MoveNextCore() { switch (state) { case AsyncIteratorState.Allocated: sourcesEnumerator = sources.GetEnumerator(); state = AsyncIteratorState.Iterating; goto case AsyncIteratorState.Iterating; case AsyncIteratorState.Iterating: while (true) { if (enumerator == null) { if (!sourcesEnumerator.MoveNext()) { break; // while -- done, nothing else to do } enumerator = sourcesEnumerator.Current.GetAsyncEnumerator(); } try { if (await enumerator.MoveNextAsync().ConfigureAwait(false)) { current = enumerator.Current; return true; } } catch { // Ignore } // Done with the current one, go to the next await enumerator.DisposeAsync().ConfigureAwait(false); enumerator = null; } break; // case } await DisposeAsync().ConfigureAwait(false); return false; } } } }