forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
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 ReactiveX#626 from akarnokd/OperationLatestAndFixes
Added: BO.Latest, fixed: BO.next, BO.mostRecent, BO.toIterable
- Loading branch information
Showing
9 changed files
with
422 additions
and
23 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
114 changes: 114 additions & 0 deletions
114
rxjava-core/src/main/java/rx/operators/OperationLatest.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,114 @@ | ||
/** | ||
* Copyright 2013 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 java.util.Iterator; | ||
import java.util.NoSuchElementException; | ||
import java.util.concurrent.Semaphore; | ||
import java.util.concurrent.atomic.AtomicReference; | ||
import rx.Notification; | ||
import rx.Observable; | ||
import rx.Observer; | ||
import rx.util.Exceptions; | ||
|
||
/** | ||
* Wait for and iterate over the latest values of the source observable. | ||
* If the source works faster than the iterator, values may be skipped, but | ||
* not the onError or onCompleted events. | ||
*/ | ||
public final class OperationLatest { | ||
/** Utility class. */ | ||
private OperationLatest() { throw new IllegalStateException("No instances!"); } | ||
|
||
public static <T> Iterable<T> latest(final Observable<? extends T> source) { | ||
return new Iterable<T>() { | ||
@Override | ||
public Iterator<T> iterator() { | ||
LatestObserverIterator<T> lio = new LatestObserverIterator<T>(); | ||
source.materialize().subscribe(lio); | ||
return lio; | ||
} | ||
}; | ||
} | ||
|
||
/** Observer of source, iterator for output. */ | ||
static final class LatestObserverIterator<T> implements Observer<Notification<? extends T>>, Iterator<T> { | ||
final Semaphore notify = new Semaphore(0); | ||
// observer's notification | ||
final AtomicReference<Notification<? extends T>> reference = new AtomicReference<Notification<? extends T>>(); | ||
@Override | ||
public void onNext(Notification<? extends T> args) { | ||
boolean wasntAvailable = reference.getAndSet(args) == null; | ||
if (wasntAvailable) { | ||
notify.release(); | ||
} | ||
} | ||
|
||
@Override | ||
public void onError(Throwable e) { | ||
// not expected | ||
} | ||
|
||
@Override | ||
public void onCompleted() { | ||
// not expected | ||
} | ||
|
||
// iterator's notification | ||
Notification<? extends T> iNotif; | ||
@Override | ||
public boolean hasNext() { | ||
if (iNotif != null && iNotif.isOnError()) { | ||
throw Exceptions.propagate(iNotif.getThrowable()); | ||
} | ||
if (iNotif == null || !iNotif.isOnCompleted()) { | ||
if (iNotif == null) { | ||
try { | ||
notify.acquire(); | ||
} catch (InterruptedException ex) { | ||
Thread.currentThread().interrupt(); | ||
iNotif = new Notification<T>(ex); | ||
throw Exceptions.propagate(ex); | ||
} | ||
|
||
iNotif = reference.getAndSet(null); | ||
if (iNotif.isOnError()) { | ||
throw Exceptions.propagate(iNotif.getThrowable()); | ||
} | ||
} | ||
} | ||
return !iNotif.isOnCompleted(); | ||
} | ||
|
||
@Override | ||
public T next() { | ||
if (hasNext()) { | ||
if (iNotif.isOnNext()) { | ||
T v = iNotif.getValue(); | ||
iNotif = null; | ||
return v; | ||
} | ||
} | ||
throw new NoSuchElementException(); | ||
} | ||
|
||
@Override | ||
public void remove() { | ||
throw new UnsupportedOperationException("Read-only iterator."); | ||
} | ||
|
||
} | ||
} |
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
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
Oops, something went wrong.