You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
3.9 KiB
134 lines
3.9 KiB
using System; |
|
|
|
namespace UniRx.Operators |
|
{ |
|
internal class TakeWhileObservable<T> : OperatorObservableBase<T> |
|
{ |
|
readonly IObservable<T> source; |
|
readonly Func<T, bool> predicate; |
|
readonly Func<T, int, bool> predicateWithIndex; |
|
|
|
public TakeWhileObservable(IObservable<T> source, Func<T, bool> predicate) |
|
: base(source.IsRequiredSubscribeOnCurrentThread()) |
|
{ |
|
this.source = source; |
|
this.predicate = predicate; |
|
} |
|
|
|
public TakeWhileObservable(IObservable<T> source, Func<T, int, bool> predicateWithIndex) |
|
: base(source.IsRequiredSubscribeOnCurrentThread()) |
|
{ |
|
this.source = source; |
|
this.predicateWithIndex = predicateWithIndex; |
|
} |
|
|
|
protected override IDisposable SubscribeCore(IObserver<T> observer, IDisposable cancel) |
|
{ |
|
if (predicate != null) |
|
{ |
|
return new TakeWhile(this, observer, cancel).Run(); |
|
} |
|
else |
|
{ |
|
return new TakeWhile_(this, observer, cancel).Run(); |
|
} |
|
} |
|
|
|
class TakeWhile : OperatorObserverBase<T, T> |
|
{ |
|
readonly TakeWhileObservable<T> parent; |
|
|
|
public TakeWhile(TakeWhileObservable<T> parent, IObserver<T> observer, IDisposable cancel) : base(observer, cancel) |
|
{ |
|
this.parent = parent; |
|
} |
|
|
|
public IDisposable Run() |
|
{ |
|
return parent.source.Subscribe(this); |
|
} |
|
|
|
public override void OnNext(T value) |
|
{ |
|
bool isPassed; |
|
try |
|
{ |
|
isPassed = parent.predicate(value); |
|
} |
|
catch (Exception ex) |
|
{ |
|
try { observer.OnError(ex); } finally { Dispose(); } |
|
return; |
|
} |
|
|
|
if (isPassed) |
|
{ |
|
observer.OnNext(value); |
|
} |
|
else |
|
{ |
|
try { observer.OnCompleted(); } finally { Dispose(); } |
|
} |
|
} |
|
|
|
public override void OnError(Exception error) |
|
{ |
|
try { observer.OnError(error); } finally { Dispose(); } |
|
} |
|
|
|
public override void OnCompleted() |
|
{ |
|
try { observer.OnCompleted(); } finally { Dispose(); } |
|
} |
|
} |
|
|
|
class TakeWhile_ : OperatorObserverBase<T, T> |
|
{ |
|
readonly TakeWhileObservable<T> parent; |
|
int index = 0; |
|
|
|
public TakeWhile_(TakeWhileObservable<T> parent, IObserver<T> observer, IDisposable cancel) : base(observer, cancel) |
|
{ |
|
this.parent = parent; |
|
} |
|
|
|
public IDisposable Run() |
|
{ |
|
return parent.source.Subscribe(this); |
|
} |
|
|
|
public override void OnNext(T value) |
|
{ |
|
bool isPassed; |
|
try |
|
{ |
|
isPassed = parent.predicateWithIndex(value, index++); |
|
} |
|
catch (Exception ex) |
|
{ |
|
try { observer.OnError(ex); } finally { Dispose(); } |
|
return; |
|
} |
|
|
|
if (isPassed) |
|
{ |
|
observer.OnNext(value); |
|
} |
|
else |
|
{ |
|
try { observer.OnCompleted(); } finally { Dispose(); } |
|
} |
|
} |
|
|
|
public override void OnError(Exception error) |
|
{ |
|
try { observer.OnError(error); } finally { Dispose(); } |
|
} |
|
|
|
public override void OnCompleted() |
|
{ |
|
try { observer.OnCompleted(); } finally { Dispose(); } |
|
} |
|
} |
|
} |
|
} |