1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
//! This module defines a unique [`Observable`] type that requires `&mut` access
//! to update its inner value but can be dereferenced (immutably).
//!
//! Use this in situations where only a single location in the code should be
//! able to update the inner value.
use std::{hash::Hash, ops};
use readlock::Shared;
use crate::{state::ObservableState, Subscriber};
/// A value whose changes will be broadcast to subscribers.
///
/// `Observable<T>` dereferences to `T`, and does not have methods of its own to
/// not clash with methods of the inner type. Instead, to interact with the
/// `Observable` itself rather than the inner value, use its associated
/// functions (e.g. `Observable::subscribe(observable)`).
#[derive(Debug)]
pub struct Observable<T> {
state: Shared<ObservableState<T>>,
}
impl<T> Observable<T> {
/// Create a new `Observable` with the given initial value.
pub fn new(value: T) -> Self {
Self { state: Shared::new(ObservableState::new(value)) }
}
/// Obtain a new subscriber.
///
/// Calling `.next().await` or `.next_ref().await` on the returned
/// subscriber only resolves once the inner value has been updated again
/// after the call to `subscribe`.
///
/// See [`subscribe_reset`][Self::subscribe_reset] if you want to obtain a
/// subscriber that immediately yields without any updates.
pub fn subscribe(this: &Self) -> Subscriber<T> {
Subscriber::new(Shared::get_read_lock(&this.state), this.state.version())
}
/// Obtain a new subscriber that immediately yields.
///
/// `.subscribe_reset()` is equivalent to `.subscribe()` with a subsequent
/// call to [`.reset()`][Subscriber::reset] on the returned subscriber.
///
/// In contrast to [`subscribe`][Self::subscribe], calling `.next().await`
/// or `.next_ref().await` on the returned subscriber before updating the
/// inner value yields the current value instead of waiting. Further calls
/// to either of the two will wait for updates.
pub fn subscribe_reset(this: &Self) -> Subscriber<T> {
Subscriber::new(Shared::get_read_lock(&this.state), 0)
}
/// Get a reference to the inner value.
///
/// Usually, you don't need to call this function since `Observable<T>`
/// implements `Deref`. Use this if you want to pass the inner value to a
/// generic function where the compiler can't infer that you want to have
/// the `Observable` dereferenced otherwise.
pub fn get(this: &Self) -> &T {
this.state.get()
}
/// Set the inner value to the given `value` and notify subscribers.
pub fn set(this: &mut Self, value: T) {
Shared::lock(&mut this.state).set(value);
}
/// Set the inner value to the given `value` and notify subscribers if the
/// updated value does not equal the previous value.
pub fn set_eq(this: &mut Self, value: T)
where
T: Clone + PartialEq,
{
Self::update_eq(this, |inner| {
*inner = value;
});
}
/// Set the inner value to the given `value` and notify subscribers if the
/// hash of the updated value does not equal the hash of the previous
/// value.
pub fn set_hash(this: &mut Self, value: T)
where
T: Hash,
{
Self::update_hash(this, |inner| {
*inner = value;
});
}
/// Set the inner value to the given `value`, notify subscribers and return
/// the previous value.
pub fn replace(this: &mut Self, value: T) -> T {
Shared::lock(&mut this.state).replace(value)
}
/// Set the inner value to a `Default` instance of its type, notify
/// subscribers and return the previous value.
///
/// Shorthand for `Observable::replace(this, T::default())`.
pub fn take(this: &mut Self) -> T
where
T: Default,
{
Self::replace(this, T::default())
}
/// Update the inner value and notify subscribers.
///
/// Note that even if the inner value is not actually changed by the
/// closure, subscribers will be notified as if it was. Use one of the
/// other update methods below if you want to conditionally mutate the
/// inner value.
pub fn update(this: &mut Self, f: impl FnOnce(&mut T)) {
Shared::lock(&mut this.state).update(f);
}
/// Update the inner value and notify subscribers if the updated value does
/// not equal the previous value.
pub fn update_eq(this: &mut Self, f: impl FnOnce(&mut T))
where
T: Clone + PartialEq,
{
Shared::lock(&mut this.state).update_eq(f);
}
/// Update the inner value and notify subscribers if the hash of the updated
/// value does not equal the hash of the previous value.
pub fn update_hash(this: &mut Self, f: impl FnOnce(&mut T))
where
T: Hash,
{
Shared::lock(&mut this.state).update_hash(f);
}
}
impl<T: Default> Default for Observable<T> {
fn default() -> Self {
Self::new(T::default())
}
}
// Note: No DerefMut because all mutating must go through inherent methods that
// notify subscribers
impl<T> ops::Deref for Observable<T> {
type Target = T;
fn deref(&self) -> &Self::Target {
self.state.get()
}
}
impl<T> Drop for Observable<T> {
fn drop(&mut self) {
Shared::lock(&mut self.state).close();
}
}