-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #866 from benjchristensen/operator-touchup
Update OperationScan to OperatorScan
- Loading branch information
Showing
5 changed files
with
130 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
140 changes: 0 additions & 140 deletions
140
rxjava-core/src/main/java/rx/operators/OperationScan.java
This file was deleted.
Oops, something went wrong.
117 changes: 117 additions & 0 deletions
117
rxjava-core/src/main/java/rx/operators/OperatorScan.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
/** | ||
* Copyright 2014 Netflix, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package rx.operators; | ||
|
||
import rx.Observable.Operator; | ||
import rx.Subscriber; | ||
import rx.util.functions.Func2; | ||
|
||
/** | ||
* Returns an Observable that applies a function to the first item emitted by a source Observable, | ||
* then feeds the result of that function along with the second item emitted by an Observable into | ||
* the same function, and so on until all items have been emitted by the source Observable, | ||
* emitting the result of each of these iterations. | ||
* <p> | ||
* <img width="640" src="https://github.com/Netflix/RxJava/wiki/images/rx-operators/scan.png"> | ||
* <p> | ||
* This sort of function is sometimes called an accumulator. | ||
* <p> | ||
* Note that when you pass a seed to <code>scan()</code> the resulting Observable will emit that | ||
* seed as its first emitted item. | ||
*/ | ||
public final class OperatorScan<R, T> implements Operator<R, T> { | ||
|
||
private final R initialValue; | ||
private final Func2<R, ? super T, R> accumulator; | ||
// sentinel if we don't receive an initial value | ||
private static final Object NO_INITIAL_VALUE = new Object(); | ||
|
||
/** | ||
* Applies an accumulator function over an observable sequence and returns each intermediate | ||
* result with the specified source and accumulator. | ||
* | ||
* @param sequence | ||
* An observable sequence of elements to project. | ||
* @param initialValue | ||
* The initial (seed) accumulator value. | ||
* @param accumulator | ||
* An accumulator function to be invoked on each element from the sequence. | ||
* | ||
* @return An observable sequence whose elements are the result of accumulating the output from | ||
* the list of Observables. | ||
* @see <a href="http://msdn.microsoft.com/en-us/library/hh212007%28v=vs.103%29.aspx">Observable.Scan(TSource, TAccumulate) Method (IObservable(TSource), TAccumulate, Func(TAccumulate, TSource, | ||
* TAccumulate))</a> | ||
*/ | ||
public OperatorScan(R initialValue, Func2<R, ? super T, R> accumulator) { | ||
this.initialValue = initialValue; | ||
this.accumulator = accumulator; | ||
} | ||
|
||
/** | ||
* Applies an accumulator function over an observable sequence and returns each intermediate | ||
* result with the specified source and accumulator. | ||
* | ||
* @param sequence | ||
* An observable sequence of elements to project. | ||
* @param accumulator | ||
* An accumulator function to be invoked on each element from the sequence. | ||
* | ||
* @return An observable sequence whose elements are the result of accumulating the output from | ||
* the list of Observables. | ||
* @see <a href="http://msdn.microsoft.com/en-us/library/hh211665(v=vs.103).aspx">Observable.Scan(TSource) Method (IObservable(TSource), Func(TSource, TSource, TSource))</a> | ||
*/ | ||
@SuppressWarnings("unchecked") | ||
public OperatorScan(final Func2<R, ? super T, R> accumulator) { | ||
this((R) NO_INITIAL_VALUE, accumulator); | ||
} | ||
|
||
@Override | ||
public Subscriber<? super T> call(final Subscriber<? super R> observer) { | ||
if (initialValue != NO_INITIAL_VALUE) { | ||
observer.onNext(initialValue); | ||
} | ||
return new Subscriber<T>(observer) { | ||
private R value = initialValue; | ||
|
||
@SuppressWarnings("unchecked") | ||
@Override | ||
public void onNext(T value) { | ||
if (this.value == NO_INITIAL_VALUE) { | ||
// if there is NO_INITIAL_VALUE then we know it is type T for both so cast T to R | ||
this.value = (R) value; | ||
} else { | ||
try { | ||
this.value = accumulator.call(this.value, value); | ||
} catch (Throwable e) { | ||
observer.onError(e); | ||
observer.unsubscribe(); | ||
} | ||
} | ||
observer.onNext(this.value); | ||
} | ||
|
||
@Override | ||
public void onError(Throwable e) { | ||
observer.onError(e); | ||
} | ||
|
||
@Override | ||
public void onCompleted() { | ||
observer.onCompleted(); | ||
} | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters