// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. #if !NO_PERF using System; namespace System.Reactive.Linq.Observαble { class Where : Producer { private readonly IObservable _source; private readonly Func _predicate; private readonly Func _predicateI; public Where(IObservable source, Func predicate) { _source = source; _predicate = predicate; } public Where(IObservable source, Func predicate) { _source = source; _predicateI = predicate; } public IObservable Ω(Func predicate) { if (_predicate != null) return new Where(_source, x => _predicate(x) && predicate(x)); else return new Where(this, predicate); } protected override IDisposable Run(IObserver observer, IDisposable cancel, Action setSink) { if (_predicate != null) { var sink = new _(this, observer, cancel); setSink(sink); return _source.SubscribeSafe(sink); } else { var sink = new τ(this, observer, cancel); setSink(sink); return _source.SubscribeSafe(sink); } } class _ : Sink, IObserver { private readonly Where _parent; public _(Where parent, IObserver observer, IDisposable cancel) : base(observer, cancel) { _parent = parent; } public void OnNext(TSource value) { var shouldRun = default(bool); try { shouldRun = _parent._predicate(value); } catch (Exception exception) { base._observer.OnError(exception); base.Dispose(); return; } if (shouldRun) base._observer.OnNext(value); } public void OnError(Exception error) { base._observer.OnError(error); base.Dispose(); } public void OnCompleted() { base._observer.OnCompleted(); base.Dispose(); } } class τ : Sink, IObserver { private readonly Where _parent; private int _index; public τ(Where parent, IObserver observer, IDisposable cancel) : base(observer, cancel) { _parent = parent; _index = 0; } public void OnNext(TSource value) { var shouldRun = default(bool); try { shouldRun = _parent._predicateI(value, checked(_index++)); } catch (Exception exception) { base._observer.OnError(exception); base.Dispose(); return; } if (shouldRun) base._observer.OnNext(value); } public void OnError(Exception error) { base._observer.OnError(error); base.Dispose(); } public void OnCompleted() { base._observer.OnCompleted(); base.Dispose(); } } } } #endif