rust_observable 0.2.1

Push-based data source Observable type
Documentation
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
/*!
Work with observables.

The [`Observable`] type can be used to model push-based
data sources. In addition, observables are:

- _Compositional:_ Observables can be composed with higher-order
combinators.
- _Lazy:_ Observables do not start emitting data until an **observer**
has subscribed.

This module follows the [TC39 `Observable`](https://github.com/tc39/proposal-observable) proposal.
User observers other than `Observer` can be defined by implementing
the `AbstractObserver` trait.

# Example

```
use rust_observable::*;

fn my_observable() -> Observable<String> {
    Observable::new(|observer| {
        // send initial data
        observer.next("initial value".into());

        // return a cleanup function that runs on
        // unsubscribe.
        || {
            println!("cleanup on unsubscribe");
        }
    })
}

let _ = my_observable()
    .subscribe(observer! {
        next: |value| {},
        error: |error| {},
        complete: || {},
        start: |subscription| {},
    })
    .unsubscribe();

// you can also use functional methods such as `filter` and `map`.
let _ = my_observable()
    .filter(|value| true)
    .map(|value| value);
```

You can directly construct an `Observable` from a list of values:

```
# use rust_observable::*;
Observable::from(["red", "green", "blue"])
    .subscribe(observer! {
        next: |color| {
            println!("{}", color);
        },
    });
```
*/

#![feature(trait_alias)]

use std::sync::{RwLock, Arc};

/// An `Observable` represents a sequence of values which
/// may be observed.
pub struct Observable<T, Error = ()>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    subscriber: BoxedSubscriberFunction<T, Error>,
}

impl<T, Error> Observable<T, Error>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    /// Constructs an observable given a callback.
    pub fn new<F, G>(subscriber: F) -> Self
        where
            F: Fn(SubscriptionObserver<T, Error>) -> G + Send + Sync + 'static,
            G: Fn() + Send + Sync + 'static,
    {
        Self {
            subscriber: Arc::new(move |subobserver| { Arc::new(subscriber(subobserver)) })
        }
    }

    /// Subscribes to the sequence with an observer.
    pub fn subscribe(&self, observer: impl Into<BoxedObserver<T, Error>>) -> Arc<Subscription<T, Error>> {
        Subscription::new(observer.into(), Arc::clone(&self.subscriber))
    }

    /// Returns a new `Observable` that performs a map on data from the original.
    pub fn map<U, F>(&self, map_fn: impl Fn(T) -> U + Send + Sync + 'static) -> Observable<U, Error>
        where
            U: Send + Sync + 'static,
            F: SubscriberFunction<U, Error>,
    {
        let orig = self.clone();
        let map_fn = Arc::new(map_fn);
        Observable::<U, Error>::new(move |observer| {
            let map_fn = map_fn.clone();
            let observer = Arc::new(observer);
            let subscription = orig.subscribe(observer! {
                next: {
                    let observer = Arc::clone(&observer);
                    move |value: T| {
                        observer.next(map_fn(value));
                    }
                },
                error: {
                    let observer = Arc::clone(&observer);
                    move |error| {
                        observer.error(error);
                    }
                },
                complete: {
                    let observer = Arc::clone(&observer);
                    move || {
                        observer.complete();
                    }
                },
            });
            move || {
                subscription.unsubscribe();
            }
        })
    }

    /// Returns a new `Observable` that filters data specified by the predicate.
    pub fn filter<F>(&self, filter_fn: impl Fn(T) -> bool + 'static + Send + Sync) -> Observable<T, Error>
        where
            T: Clone,
            F: SubscriberFunction<T, Error>,
    {
        let orig = self.clone();
        let filter_fn = Arc::new(filter_fn);
        Self::new(move |observer| {
            let filter_fn = filter_fn.clone();
            let observer = Arc::new(observer);
            let subscription = orig.subscribe(observer! {
                next: {
                    let observer = Arc::clone(&observer);
                    move |value: T| {
                        if filter_fn(value.clone()) {
                            observer.next(value);
                        }
                    }
                },
                error: {
                    let observer = Arc::clone(&observer);
                    move |error| {
                        observer.error(error);
                    }
                },
                complete: {
                    let observer = Arc::clone(&observer);
                    move || {
                        observer.complete();
                    }
                },
            });
            move || {
                subscription.unsubscribe();
            }
        })
    }
}

impl<T, Iterable> From<Iterable> for Observable<T, ()>
    where
        Iterable: IntoIterator<Item = T> + Send + Sync,
        T: Clone + Send + Sync + 'static
{
    /// Constructs an `Observable` from a list of values.
    fn from(value: Iterable) -> Self {
        let value = value.into_iter().collect::<Vec<T>>();
        Self::new(move |observer| {
            let cleanup = || {};
            for item in &value {
                observer.next(item.clone());
                if observer.closed() {
                    return cleanup;
                }
            }
            observer.complete();
            cleanup
        })
    }
}

impl<T, Error> Clone for Observable<T, Error>
where
    T: Send + Sync + 'static,
    Error: Send + Sync + 'static,
{
    fn clone(&self) -> Self {
        Self {
            subscriber: Arc::clone(&self.subscriber)
        }
    }
}

pub trait SubscriberFunction<T, Error = ()> = Fn(SubscriptionObserver<T, Error>) -> Arc<dyn SubscriptionCleanupFunction> + Sync + Send + 'static
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static;
type BoxedSubscriberFunction<T, Error = ()> = Arc<(dyn SubscriberFunction<T, Error>)>;

pub trait SubscriptionCleanupFunction = Fn() + Sync + Send + 'static;

/// A `Subscription` is returned by `subscribe`.
pub struct Subscription<T, Error = ()>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    cleanup: RwLock<Option<Arc<dyn Fn() + Sync + Send>>>,
    observer: SubscriptionObserverLock<T, Error>,
}

type SubscriptionObserverLock<T, Error> = RwLock<Option<Arc<RwLock<BoxedObserver<T, Error>>>>>;

impl<T, Error> Subscription<T, Error>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    fn new(observer: BoxedObserver<T, Error>, subscriber: BoxedSubscriberFunction<T, Error>) -> Arc<Self> {
        let this = Arc::new(Self {
            cleanup: RwLock::new(None),
            observer: RwLock::new(Some(Arc::new(RwLock::new(observer)))),
        });
        this.observer.read().unwrap().as_ref().unwrap().read().unwrap().start(Arc::clone(&this));

        // if the observer has unsubscribed from the start method, exit
        if subscription_closed(&this) {
            return this;
        }

        let observer = SubscriptionObserver { subscription: Arc::clone(&this) };

        // call the subscriber function.
        let cleanup = subscriber(observer);

        // the return value of the cleanup is always a function.
        *this.cleanup.write().unwrap() = Some(Arc::clone(&cleanup));

        if subscription_closed(&this) {
            cleanup_subscription(&this);
        }

        this
    }

    /// Indicates whether the subscription is closed.
    pub fn closed(&self) -> bool {
        subscription_closed(self)
    }

    /// Cancels the subscription.
    pub fn unsubscribe(&self) {
        close_subscription(self);
    }
}

/// A `SubscriptionObserver` wraps the observer object supplied to `subscribe`.
pub struct SubscriptionObserver<T, Error = ()>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    subscription: Arc<Subscription<T, Error>>,
}

impl<T, Error> SubscriptionObserver<T, Error>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    /// Indicates whether the subscription is closed.
    pub fn closed(&self) -> bool {
        subscription_closed(&self.subscription)
    }

    /// Sends the next value in the sequence.
    pub fn next(&self, value: T) {
        let subscription = Arc::clone(&self.subscription);

        // if the stream if closed, then exit.
        if subscription_closed(&subscription) {
            return;
        }

        let observer = subscription.observer.read().unwrap().clone();
        if observer.is_none() {
            return;
        }

        // send the next value to the sink.
        observer.unwrap().read().unwrap().next(value);
    }

    /// Sends the sequence error.
    pub fn error(&self, error: Error) {
        let subscription = Arc::clone(&self.subscription);

        // if the stream if closed, throw the error to the caller.
        if subscription_closed(&subscription) {
            return;
        }

        let observer = subscription.observer.read().unwrap();
        if let Some(o) = observer.as_ref().map(Arc::clone) {
            drop(observer);
            *subscription.observer.write().unwrap() = None;
            o.read().unwrap().error(error);
        } else {
            // host_report_errors(e)
        }

        cleanup_subscription(&subscription);
    }

    /// Sends the completion notification.
    pub fn complete(&self) {
        let subscription = Arc::clone(&self.subscription);

        // if the stream if closed, throw the error to the caller.
        if subscription_closed(&subscription) {
            return;
        }

        let observer = subscription.observer.read().unwrap();
        if let Some(o) = observer.as_ref().map(Arc::clone) {
            drop(observer);
            *subscription.observer.write().unwrap() = None;
            o.read().unwrap().complete();
        }

        cleanup_subscription(&subscription);
    }
}

/// The `BoxedObserver` type represents an abstract observer into a box.
pub type BoxedObserver<T, Error = ()> = Box<dyn AbstractObserver<T, Error>>;

pub use rust_observable_literal::observer;

/// An `Observer` is used to receive data from an `Observable`, and
/// is supplied as an argument to `subscribe`.
pub struct Observer<T, Error = ()>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    /// Receives the next value in the sequence.
    pub next: Box<dyn Fn(T) + Sync + Send>,
    /// Receives the sequence error.
    pub error: Box<dyn Fn(Error) + Sync + Send>,
    /// Receives a completion notification.
    pub complete: Box<dyn Fn() + Sync + Send>,
    /// Receives the subscription object when `subscribe` is called.
    pub start: Box<dyn ObserverStartFunction<T, Error>>,
}

pub trait ObserverStartFunction<T, Error> = Fn(Arc<Subscription<T, Error>>) + Sync + Send
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static;

impl<T, Error> AbstractObserver<T, Error> for Observer<T, Error>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    fn next(&self, value: T) {
        (self.next)(value);
    }
    fn error(&self, error: Error) {
        (self.error)(error);
    }
    fn complete(&self) {
        (self.complete)();
    }
    fn start(&self, subscription: Arc<Subscription<T, Error>>) {
        (self.start)(subscription);
    }
}

impl<T, Error> Default for Observer<T, Error>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    fn default() -> Self {
        Self {
            next: Box::new(|_| {}),
            error: Box::new(|_| {}),
            complete: Box::new(|| {}),
            start: Box::new(|_| {}),
        }
    }
}

impl<T, Error> From<Observer<T, Error>> for BoxedObserver<T, Error>
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    fn from(value: Observer<T, Error>) -> Self {
        Box::new(value)
    }
}

/// An `AbstractObserver` is used to receive data from an `Observable`, and
/// is supplied as an argument to `subscribe` in boxed form.
pub trait AbstractObserver<T, Error = ()>: Send + Sync
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    /// Receives the next value in the sequence.
    fn next(&self, value: T) {
        let _ = value;
    }
    /// Receives the sequence error.
    fn error(&self, error: Error) {
        let _ = error;
    }
    /// Receives a completion notification.
    fn complete(&self) {}
    /// Receives the subscription object when `subscribe` is called.
    fn start(&self, subscription: Arc<Subscription<T, Error>>) {
        let _ = subscription;
    }
}

fn cleanup_subscription<T, Error>(subscription: &Subscription<T, Error>)
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    assert!(subscription.observer.read().unwrap().is_none());
    let cleanup = subscription.cleanup.read().unwrap().clone();
    if cleanup.is_none() {
        return;
    }
    let cleanup = Arc::clone(&cleanup.unwrap());

    // drop the reference to the cleanup function so that we won't call it
    // more than once.
    *subscription.cleanup.write().unwrap() = None;

    // call the cleanup function.
    cleanup();
}

fn subscription_closed<T, Error>(subscription: &Subscription<T, Error>) -> bool
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    let observer = subscription.observer.read().unwrap().clone();
    observer.is_none()
}

fn close_subscription<T, Error>(subscription: &Subscription<T, Error>)
    where
        T: Send + Sync + 'static,
        Error: Send + Sync + 'static
{
    if subscription_closed(subscription) {
        return;
    }
    *subscription.observer.write().unwrap() = None;
    cleanup_subscription(subscription);
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn subscription() {
        let list = Arc::new(RwLock::new(vec![]));
        Observable::<_, ()>::new(|observer| {
            for color in ["red", "green", "blue"] {
                observer.next(color.to_owned());
            }
            || {
                // cleanup
            }
        })
            .subscribe(observer! {
                next: {
                    let list = Arc::clone(&list);
                    move |color| {
                        list.write().unwrap().push(color);
                    }
                },
            });
        assert_eq!(
            *list.read().unwrap(),
            Vec::from_iter(["red", "green", "blue"])
        );

        // from a collection
        let list = Arc::new(RwLock::new(vec![]));
        Observable::from(Vec::from_iter(["red", "green", "blue"]))
            .subscribe(observer! {
                next: {
                    let list = Arc::clone(&list);
                    move |color| {
                        list.write().unwrap().push(color);
                    }
                },
            });
        assert_eq!(
            *list.read().unwrap(),
            Vec::from_iter(["red", "green", "blue"])
        );
    }
}