// 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 TakeWhile(this IAsyncEnumerable source, Func predicate) { if (source == null) throw Error.ArgumentNull(nameof(source)); if (predicate == null) throw Error.ArgumentNull(nameof(predicate)); return new TakeWhileAsyncIterator(source, predicate); } public static IAsyncEnumerable TakeWhile(this IAsyncEnumerable source, Func predicate) { if (source == null) throw Error.ArgumentNull(nameof(source)); if (predicate == null) throw Error.ArgumentNull(nameof(predicate)); return new TakeWhileWithIndexAsyncIterator(source, predicate); } public static IAsyncEnumerable TakeWhile(this IAsyncEnumerable source, Func> predicate) { if (source == null) throw Error.ArgumentNull(nameof(source)); if (predicate == null) throw Error.ArgumentNull(nameof(predicate)); return new TakeWhileAsyncIteratorWithTask(source, predicate); } public static IAsyncEnumerable TakeWhile(this IAsyncEnumerable source, Func> predicate) { if (source == null) throw Error.ArgumentNull(nameof(source)); if (predicate == null) throw Error.ArgumentNull(nameof(predicate)); return new TakeWhileWithIndexAsyncIteratorWithTask(source, predicate); } private sealed class TakeWhileAsyncIterator : AsyncIterator { private readonly Func _predicate; private readonly IAsyncEnumerable _source; private IAsyncEnumerator _enumerator; public TakeWhileAsyncIterator(IAsyncEnumerable source, Func predicate) { Debug.Assert(predicate != null); Debug.Assert(source != null); _source = source; _predicate = predicate; } public override AsyncIterator Clone() { return new TakeWhileAsyncIterator(_source, _predicate); } public override async ValueTask DisposeAsync() { if (_enumerator != null) { await _enumerator.DisposeAsync().ConfigureAwait(false); _enumerator = null; } await base.DisposeAsync().ConfigureAwait(false); } protected override async ValueTask MoveNextCore() { switch (state) { case AsyncIteratorState.Allocated: _enumerator = _source.GetAsyncEnumerator(cancellationToken); state = AsyncIteratorState.Iterating; goto case AsyncIteratorState.Iterating; case AsyncIteratorState.Iterating: if (await _enumerator.MoveNextAsync().ConfigureAwait(false)) { var item = _enumerator.Current; if (!_predicate(item)) { break; } current = item; return true; } break; } await DisposeAsync().ConfigureAwait(false); return false; } } private sealed class TakeWhileWithIndexAsyncIterator : AsyncIterator { private readonly Func _predicate; private readonly IAsyncEnumerable _source; private IAsyncEnumerator _enumerator; private int _index; public TakeWhileWithIndexAsyncIterator(IAsyncEnumerable source, Func predicate) { Debug.Assert(predicate != null); Debug.Assert(source != null); _source = source; _predicate = predicate; } public override AsyncIterator Clone() { return new TakeWhileWithIndexAsyncIterator(_source, _predicate); } public override async ValueTask DisposeAsync() { if (_enumerator != null) { await _enumerator.DisposeAsync().ConfigureAwait(false); _enumerator = null; } await base.DisposeAsync().ConfigureAwait(false); } protected override async ValueTask MoveNextCore() { switch (state) { case AsyncIteratorState.Allocated: _enumerator = _source.GetAsyncEnumerator(cancellationToken); _index = -1; state = AsyncIteratorState.Iterating; goto case AsyncIteratorState.Iterating; case AsyncIteratorState.Iterating: if (await _enumerator.MoveNextAsync().ConfigureAwait(false)) { var item = _enumerator.Current; checked { _index++; } if (!_predicate(item, _index)) { break; } current = item; return true; } break; } await DisposeAsync().ConfigureAwait(false); return false; } } private sealed class TakeWhileAsyncIteratorWithTask : AsyncIterator { private readonly Func> _predicate; private readonly IAsyncEnumerable _source; private IAsyncEnumerator _enumerator; public TakeWhileAsyncIteratorWithTask(IAsyncEnumerable source, Func> predicate) { Debug.Assert(predicate != null); Debug.Assert(source != null); _source = source; _predicate = predicate; } public override AsyncIterator Clone() { return new TakeWhileAsyncIteratorWithTask(_source, _predicate); } public override async ValueTask DisposeAsync() { if (_enumerator != null) { await _enumerator.DisposeAsync().ConfigureAwait(false); _enumerator = null; } await base.DisposeAsync().ConfigureAwait(false); } protected override async ValueTask MoveNextCore() { switch (state) { case AsyncIteratorState.Allocated: _enumerator = _source.GetAsyncEnumerator(cancellationToken); state = AsyncIteratorState.Iterating; goto case AsyncIteratorState.Iterating; case AsyncIteratorState.Iterating: if (await _enumerator.MoveNextAsync().ConfigureAwait(false)) { var item = _enumerator.Current; if (!await _predicate(item).ConfigureAwait(false)) { break; } current = item; return true; } break; } await DisposeAsync().ConfigureAwait(false); return false; } } private sealed class TakeWhileWithIndexAsyncIteratorWithTask : AsyncIterator { private readonly Func> _predicate; private readonly IAsyncEnumerable _source; private IAsyncEnumerator _enumerator; private int _index; public TakeWhileWithIndexAsyncIteratorWithTask(IAsyncEnumerable source, Func> predicate) { Debug.Assert(predicate != null); Debug.Assert(source != null); _source = source; _predicate = predicate; } public override AsyncIterator Clone() { return new TakeWhileWithIndexAsyncIteratorWithTask(_source, _predicate); } public override async ValueTask DisposeAsync() { if (_enumerator != null) { await _enumerator.DisposeAsync().ConfigureAwait(false); _enumerator = null; } await base.DisposeAsync().ConfigureAwait(false); } protected override async ValueTask MoveNextCore() { switch (state) { case AsyncIteratorState.Allocated: _enumerator = _source.GetAsyncEnumerator(cancellationToken); _index = -1; state = AsyncIteratorState.Iterating; goto case AsyncIteratorState.Iterating; case AsyncIteratorState.Iterating: if (await _enumerator.MoveNextAsync().ConfigureAwait(false)) { var item = _enumerator.Current; checked { _index++; } if (!await _predicate(item, _index).ConfigureAwait(false)) { break; } current = item; return true; } break; } await DisposeAsync().ConfigureAwait(false); return false; } } } }