-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
amb typing to match amb_ (add Future)
Curry flip amb Typing on fromfuture tests Doc: Remove 3rd observable in amb since it takes only 2 Doc: show that completion follows winner
- Loading branch information
mat
committed
Feb 7, 2023
1 parent
fe265ef
commit 4a487e3
Showing
3 changed files
with
87 additions
and
88 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
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 |
---|---|---|
@@ -1,92 +1,91 @@ | ||
from asyncio import Future | ||
from typing import Callable, List, Optional, TypeVar, Union | ||
from typing import List, Optional, TypeVar, Union | ||
|
||
from reactivex import Observable, abc, from_future | ||
from reactivex.curry import curry_flip | ||
from reactivex.disposable import CompositeDisposable, SingleAssignmentDisposable | ||
|
||
_T = TypeVar("_T") | ||
|
||
|
||
@curry_flip(1) | ||
def amb_( | ||
right_source: Union[Observable[_T], "Future[_T]"] | ||
) -> Callable[[Observable[_T]], Observable[_T]]: | ||
left_source: Observable[_T], right_source: Union[Observable[_T], "Future[_T]"] | ||
) -> Observable[_T]: | ||
|
||
if isinstance(right_source, Future): | ||
obs: Observable[_T] = from_future(right_source) | ||
else: | ||
obs = right_source | ||
|
||
def amb(left_source: Observable[_T]) -> Observable[_T]: | ||
def subscribe( | ||
observer: abc.ObserverBase[_T], | ||
scheduler: Optional[abc.SchedulerBase] = None, | ||
) -> abc.DisposableBase: | ||
choice: List[Optional[str]] = [None] | ||
left_choice = "L" | ||
right_choice = "R" | ||
left_subscription = SingleAssignmentDisposable() | ||
right_subscription = SingleAssignmentDisposable() | ||
|
||
def choice_left(): | ||
if not choice[0]: | ||
choice[0] = left_choice | ||
right_subscription.dispose() | ||
|
||
def choice_right(): | ||
if not choice[0]: | ||
choice[0] = right_choice | ||
left_subscription.dispose() | ||
|
||
def on_next_left(value: _T) -> None: | ||
with left_source.lock: | ||
choice_left() | ||
if choice[0] == left_choice: | ||
observer.on_next(value) | ||
|
||
def on_error_left(err: Exception) -> None: | ||
with left_source.lock: | ||
choice_left() | ||
if choice[0] == left_choice: | ||
observer.on_error(err) | ||
|
||
def on_completed_left() -> None: | ||
with left_source.lock: | ||
choice_left() | ||
if choice[0] == left_choice: | ||
observer.on_completed() | ||
|
||
left_d = left_source.subscribe( | ||
on_next_left, on_error_left, on_completed_left, scheduler=scheduler | ||
) | ||
left_subscription.disposable = left_d | ||
|
||
def send_right(value: _T) -> None: | ||
with left_source.lock: | ||
choice_right() | ||
if choice[0] == right_choice: | ||
observer.on_next(value) | ||
|
||
def on_error_right(err: Exception) -> None: | ||
with left_source.lock: | ||
choice_right() | ||
if choice[0] == right_choice: | ||
observer.on_error(err) | ||
|
||
def on_completed_right() -> None: | ||
with left_source.lock: | ||
choice_right() | ||
if choice[0] == right_choice: | ||
observer.on_completed() | ||
|
||
right_d = obs.subscribe( | ||
send_right, on_error_right, on_completed_right, scheduler=scheduler | ||
) | ||
right_subscription.disposable = right_d | ||
return CompositeDisposable(left_subscription, right_subscription) | ||
|
||
return Observable(subscribe) | ||
|
||
return amb | ||
def subscribe( | ||
observer: abc.ObserverBase[_T], | ||
scheduler: Optional[abc.SchedulerBase] = None, | ||
) -> abc.DisposableBase: | ||
choice: List[Optional[str]] = [None] | ||
left_choice = "L" | ||
right_choice = "R" | ||
left_subscription = SingleAssignmentDisposable() | ||
right_subscription = SingleAssignmentDisposable() | ||
|
||
def choice_left(): | ||
if not choice[0]: | ||
choice[0] = left_choice | ||
right_subscription.dispose() | ||
|
||
def choice_right(): | ||
if not choice[0]: | ||
choice[0] = right_choice | ||
left_subscription.dispose() | ||
|
||
def on_next_left(value: _T) -> None: | ||
with left_source.lock: | ||
choice_left() | ||
if choice[0] == left_choice: | ||
observer.on_next(value) | ||
|
||
def on_error_left(err: Exception) -> None: | ||
with left_source.lock: | ||
choice_left() | ||
if choice[0] == left_choice: | ||
observer.on_error(err) | ||
|
||
def on_completed_left() -> None: | ||
with left_source.lock: | ||
choice_left() | ||
if choice[0] == left_choice: | ||
observer.on_completed() | ||
|
||
left_d = left_source.subscribe( | ||
on_next_left, on_error_left, on_completed_left, scheduler=scheduler | ||
) | ||
left_subscription.disposable = left_d | ||
|
||
def send_right(value: _T) -> None: | ||
with left_source.lock: | ||
choice_right() | ||
if choice[0] == right_choice: | ||
observer.on_next(value) | ||
|
||
def on_error_right(err: Exception) -> None: | ||
with left_source.lock: | ||
choice_right() | ||
if choice[0] == right_choice: | ||
observer.on_error(err) | ||
|
||
def on_completed_right() -> None: | ||
with left_source.lock: | ||
choice_right() | ||
if choice[0] == right_choice: | ||
observer.on_completed() | ||
|
||
right_d = obs.subscribe( | ||
send_right, on_error_right, on_completed_right, scheduler=scheduler | ||
) | ||
right_subscription.disposable = right_d | ||
return CompositeDisposable(left_subscription, right_subscription) | ||
|
||
return Observable(subscribe) | ||
|
||
|
||
__all__ = ["amb_"] |
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