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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
//! Synchronous event system.
//!
//! # What is an event system? #
//!
//! An event system is a set of slots which contain objects. A signal is emitted on a slot, which
//! will call each object in the slot. Invoked objects can then send more signals to different
//! slots.
//!
//! # Synchronous #
//!
//! Revent's events are synchronous, meaning that emitting an event will immediately process all
//! handlers in a slot. Once the function call returns, it is guaranteed that all listeners have
//! been called.
//!
//! # Example #
//!
//! ```
//! use revent::{Anchor, Manager, Named, Null, Slot, Subscriber};
//! use std::{cell::RefCell, rc::Rc};
//!
//! trait BasicSignal {}
//!
//! struct Hub {
//!     basic_slot: Slot<dyn BasicSignal>,
//!     mng: Rc<RefCell<Manager>>,
//! }
//! impl Hub {
//!     fn new() -> Self {
//!         let mng = Rc::new(RefCell::new(Manager::default()));
//!         Self {
//!             basic_slot: Slot::new("basic_slot", mng.clone()),
//!             mng,
//!         }
//!     }
//! }
//! impl Anchor for Hub {
//!     fn manager(&self) -> &Rc<RefCell<Manager>> {
//!         &self.mng
//!     }
//! }
//!
//! // ---
//!
//! struct MySubscriber;
//! impl Subscriber<Hub> for MySubscriber {
//!     type Emitter = Null;
//!
//!     fn register(hub: &mut Hub, item: Rc<RefCell<Self>>) {
//!         hub.basic_slot.register(item);
//!     }
//! }
//! impl Named for MySubscriber {
//!     const NAME: &'static str = "MySubscriber";
//! }
//! impl BasicSignal for MySubscriber {}
//!
//! // ---
//!
//! let mut hub = Hub::new();
//! let item = hub.subscribe(|_| MySubscriber);
//! hub.basic_slot.emit(|x| {
//!     println!("Called for each subscriber");
//! });
//! hub.unsubscribe(&item);
//! ```
//!
//! ## Mutable cycles ##
//!
//! Revent performs cycle detection in [subscribe](crate::Anchor::subscribe) and ensures that no
//! system exists in which we can create double mutable borrows.
//!
//! # Core Concepts #
//!
//! An event system based on revent has 3 core concepts:
//!
//! * Anchors
//! * Emitters
//! * Subscribers
//!
//! ## Anchor ##
//!
//! An anchor contains all event [Slot]s and [Single]s in the system. It also contains a [Manager] and
//! implements [Anchor]. We register new [Subscriber]s to an anchor, and the subscribers will themselves
//! choose which slots/singles to listen or emit to. Only anchors can be subscribed to.
//!
//! ## Subscriber ##
//!
//! Subscribers are classes that implement `Subscriber<A: Anchor>`. They specify their interest in
//! signals to listen to by `fn register`. They specify their singles/slots to emit to via `type
//! Emitter`.
//!
//! ## Emitter ##
//!
//! Each subscriber has an associated [Emitter](crate::Subscriber::Emitter). An emitter contains a list of singles and slots
//! based on the `Anchor` of its subscriber. Emitters simply implement [From] for `&Anchor` which
//! clones singles and slots from a particular anchor.
//!
//! # Example with Emitter #
//!
//! ```
//! use revent::{Anchor, Manager, Named, Null, Slot, Subscriber};
//! use std::{cell::RefCell, rc::Rc};
//!
//! // First let's crate a hub (Anchor) that contains two signals.
//!
//! trait BasicSignal {
//!     fn basic(&mut self);
//! }
//!
//! struct Hub {
//!     basic_slot_1: Slot<dyn BasicSignal>,
//!     basic_slot_2: Slot<dyn BasicSignal>,
//!     mng: Rc<RefCell<Manager>>,
//! }
//! impl Hub {
//!     fn new() -> Self {
//!         let mng = Rc::new(RefCell::new(Manager::default()));
//!         Self {
//!             basic_slot_1: Slot::new("basic_slot_1", mng.clone()),
//!             basic_slot_2: Slot::new("basic_slot_2", mng.clone()),
//!             mng,
//!         }
//!     }
//! }
//! impl Anchor for Hub {
//!     fn manager(&self) -> &Rc<RefCell<Manager>> {
//!         &self.mng
//!     }
//! }
//!
//! // ---
//!
//! // Now we define our emitter structure, this one contains only `basic_slot_2`, which indicates
//! // that we want to emit only to this slot for the subscribers using it as their emitter.
//!
//! struct MyEmitter {
//!     basic_slot_2: Slot<dyn BasicSignal>,
//! }
//!
//! impl From<&Hub> for MyEmitter {
//!     fn from(item: &Hub) -> Self {
//!         Self {
//!             basic_slot_2: item.basic_slot_2.clone(),
//!         }
//!     }
//! }
//!
//! // ---
//!
//! // Create a subscriber that uses MyEmitter (emits on `basic_slot_2`), and listens on
//! // `basic_slot_1`.
//!
//! struct MySubscriber { emitter: MyEmitter }
//! impl Subscriber<Hub> for MySubscriber {
//!     // Indicate which emitter we want to use.
//!     type Emitter = MyEmitter;
//!
//!     fn register(hub: &mut Hub, item: Rc<RefCell<Self>>) {
//!         hub.basic_slot_1.register(item);
//!     }
//! }
//! impl Named for MySubscriber {
//!     const NAME: &'static str = "MySubscriber";
//! }
//!
//! // Whenever we get a basic signal we pass it to the emitter.
//! impl BasicSignal for MySubscriber {
//!     fn basic(&mut self) {
//!         self.emitter.basic_slot_2.emit(|_| println!("Hello world"));
//!     }
//! }
//!
//! // ---
//!
//! let mut hub = Hub::new();
//! let item = hub.subscribe(|emitter| MySubscriber { emitter });
//! hub.basic_slot_1.emit(BasicSignal::basic);
//! hub.unsubscribe(&item);
//! ```
//!
#![deny(
    missing_docs,
    trivial_casts,
    trivial_numeric_casts,
    unsafe_code,
    unused_import_braces,
    unused_qualifications
)]

mod mng;
mod single;
mod slot;
mod traits;
pub(crate) use self::mng::Mode;
pub use self::{
    mng::{Grapher, Manager},
    single::Single,
    slot::Slot,
    traits::{Anchor, Named, Subscriber},
};

use std::{cell::RefCell, rc::Rc};

thread_local! {
    static STACK: RefCell<Vec<(Mode, Rc<RefCell<Manager>>)>> = RefCell::new(Vec::new());
}

fn assert_active_manager(manager: &Rc<RefCell<Manager>>) {
    STACK.with(|x| {
        assert!(
            Rc::ptr_eq(
                &x.borrow()
                    .last()
                    .expect("revent signal modification outside of Anchor context")
                    .1,
                manager
            ),
            "revent manager is different"
        );
    });
}

/// Null `Node` value for subscribers.
///
/// Use this when you want a subscriber that has no further signals to anything else.
/// ```
/// use revent::{Anchor, Manager, Named, Null, Slot, Subscriber};
/// use std::{cell::RefCell, rc::Rc};
///
/// trait BasicSignal {}
///
/// struct Hub {
///     basic_signal: Slot<dyn BasicSignal>,
///     mng: Rc<RefCell<Manager>>,
/// }
/// impl Hub {
///     fn new() -> Self {
///         let mng = Rc::new(RefCell::new(Manager::default()));
///         Self {
///             basic_signal: Slot::new("basic_signal", mng.clone()),
///             mng,
///         }
///     }
/// }
/// impl Anchor for Hub {
///     fn manager(&self) -> &Rc<RefCell<Manager>> {
///         &self.mng
///     }
/// }
///
/// // ---
///
/// struct MySubscriber;
/// impl Subscriber<Hub> for MySubscriber {
///     type Emitter = Null;
///
///     fn register(hub: &mut Hub, item: Rc<RefCell<Self>>) {
///         hub.basic_signal.register(item);
///     }
/// }
/// impl Named for MySubscriber {
///     const NAME: &'static str = "MySubscriber";
/// }
/// impl BasicSignal for MySubscriber {}
/// ```
pub struct Null;

impl<T> From<&T> for Null {
    fn from(_: &T) -> Self {
        Self
    }
}

#[cfg(test)]
mod tests {
    use crate::{Anchor, Manager, Named, Single, Slot, Subscriber};
    use std::{cell::RefCell, rc::Rc};

    #[quickcheck_macros::quickcheck]
    fn basic(value: usize) {
        trait BasicSignal {}

        struct Hub {
            basic_signal: Slot<dyn BasicSignal>,
            mng: Rc<RefCell<Manager>>,
        }
        impl Hub {
            fn new() -> Self {
                let mng = Rc::new(RefCell::new(Manager::default()));
                Self {
                    basic_signal: Slot::new("basic_signal", mng.clone()),

                    mng,
                }
            }
        }
        impl Anchor for Hub {
            fn manager(&self) -> &Rc<RefCell<Manager>> {
                &self.mng
            }
        }

        // ---

        struct MySubscriberNode;
        impl From<&Hub> for MySubscriberNode {
            fn from(_: &Hub) -> Self {
                Self
            }
        }
        struct MySubscriber;
        impl Subscriber<Hub> for MySubscriber {
            type Emitter = MySubscriberNode;

            fn register(hub: &mut Hub, item: Rc<RefCell<Self>>) {
                hub.basic_signal.register(item);
            }
        }
        impl Named for MySubscriber {
            const NAME: &'static str = "MySubscriber";
        }
        impl BasicSignal for MySubscriber {}

        // ---

        let mut hub = Hub::new();

        for _ in 0..value {
            hub.subscribe(|_| MySubscriber);
        }

        let mut count = 0;

        hub.basic_signal.emit(|_| {
            count += 1;
        });

        assert_eq!(value, count);
    }

    #[test]
    #[should_panic(
        expected = "revent found a recursion during subscription: [MySubscriber]basic_signal -> basic_signal"
    )]
    fn self_subscribing() {
        trait BasicSignal {}

        struct Hub {
            basic_signal: Slot<dyn BasicSignal>,
            mng: Rc<RefCell<Manager>>,
        }
        impl Hub {
            fn new() -> Self {
                let mng = Rc::new(RefCell::new(Manager::default()));
                Self {
                    basic_signal: Slot::new("basic_signal", mng.clone()),
                    mng,
                }
            }
        }
        impl Anchor for Hub {
            fn manager(&self) -> &Rc<RefCell<Manager>> {
                &self.mng
            }
        }

        // ---

        struct MySubscriberNode;
        impl From<&Hub> for MySubscriberNode {
            fn from(hub: &Hub) -> Self {
                let _ = hub.basic_signal.clone();
                Self
            }
        }
        struct MySubscriber;
        impl Subscriber<Hub> for MySubscriber {
            type Emitter = MySubscriberNode;
            fn register(hub: &mut Hub, item: Rc<RefCell<Self>>) {
                hub.basic_signal.register(item);
            }
        }
        impl Named for MySubscriber {
            const NAME: &'static str = "MySubscriber";
        }
        impl BasicSignal for MySubscriber {}

        // ---

        let mut hub = Hub::new();

        hub.subscribe(|_| MySubscriber);
    }

    #[test]
    #[should_panic(
        expected = "revent found a recursion during subscription: [MySubscriber]basic_signal -> [OtherSubscriber]other_signal -> basic_signal"
    )]
    fn transitive_self_subscription() {
        trait BasicSignal {}
        trait OtherSignal {}

        struct Hub {
            basic_signal: Slot<dyn BasicSignal>,
            other_signal: Slot<dyn OtherSignal>,
            mng: Rc<RefCell<Manager>>,
        }
        impl Hub {
            fn new() -> Self {
                let mng = Rc::new(RefCell::new(Manager::default()));
                Self {
                    basic_signal: Slot::new("basic_signal", mng.clone()),
                    other_signal: Slot::new("other_signal", mng.clone()),
                    mng,
                }
            }
        }
        impl Anchor for Hub {
            fn manager(&self) -> &Rc<RefCell<Manager>> {
                &self.mng
            }
        }

        // ---

        struct MySubscriberNode;
        impl From<&Hub> for MySubscriberNode {
            fn from(hub: &Hub) -> Self {
                let _ = hub.other_signal.clone();
                Self
            }
        }
        struct MySubscriber;
        impl Subscriber<Hub> for MySubscriber {
            type Emitter = MySubscriberNode;
            fn register(hub: &mut Hub, item: Rc<RefCell<Self>>) {
                hub.basic_signal.register(item);
            }
        }
        impl Named for MySubscriber {
            const NAME: &'static str = "MySubscriber";
        }
        impl BasicSignal for MySubscriber {}

        // ---

        struct OtherSubscriberNode;
        impl From<&Hub> for OtherSubscriberNode {
            fn from(hub: &Hub) -> Self {
                let _ = hub.basic_signal.clone();
                Self
            }
        }
        struct OtherSubscriber;
        impl Subscriber<Hub> for OtherSubscriber {
            type Emitter = OtherSubscriberNode;
            fn register(hub: &mut Hub, item: Rc<RefCell<Self>>) {
                hub.other_signal.register(item);
            }
        }
        impl Named for OtherSubscriber {
            const NAME: &'static str = "OtherSubscriber";
        }
        impl OtherSignal for OtherSubscriber {}

        // ---

        let mut hub = Hub::new();

        hub.subscribe(|_| MySubscriber);
        hub.subscribe(|_| OtherSubscriber);
    }

    #[quickcheck_macros::quickcheck]
    fn register_and_unsubscribe(subscribes: usize) {
        trait BasicSignal {}

        struct Hub {
            basic_signal: Slot<dyn BasicSignal>,
            mng: Rc<RefCell<Manager>>,
        }
        impl Hub {
            fn new() -> Self {
                let mng = Rc::new(RefCell::new(Manager::default()));
                Self {
                    basic_signal: Slot::new("basic_signal", mng.clone()),
                    mng,
                }
            }
        }
        impl Anchor for Hub {
            fn manager(&self) -> &Rc<RefCell<Manager>> {
                &self.mng
            }
        }

        // ---

        struct MySubscriberNode;
        impl From<&Hub> for MySubscriberNode {
            fn from(_: &Hub) -> Self {
                Self
            }
        }
        struct MySubscriber;
        impl Subscriber<Hub> for MySubscriber {
            type Emitter = MySubscriberNode;
            fn register(hub: &mut Hub, item: Rc<RefCell<Self>>) {
                hub.basic_signal.register(item);
            }
        }
        impl Named for MySubscriber {
            const NAME: &'static str = "MySubscriber";
        }
        impl BasicSignal for MySubscriber {}

        // ---

        let mut hub = Hub::new();

        let mut items = Vec::with_capacity(subscribes);
        for _ in 0..subscribes {
            items.push(hub.subscribe(|_| MySubscriber));
        }

        {
            let mut count = 0;
            hub.basic_signal.emit(|_| {
                count += 1;
            });
            assert_eq!(subscribes, count);
        }

        for item in items.drain(..) {
            hub.unsubscribe::<MySubscriber>(&item);
        }

        {
            let mut count = 0;
            hub.basic_signal.emit(|_| {
                count += 1;
            });
            assert_eq!(0, count);
        }
    }

    #[test]
    #[should_panic(expected = "unable to unsubscribe non-subscribed item")]
    fn double_unsubscribe() {
        trait BasicSignal {}

        struct Hub {
            basic_signal: Slot<dyn BasicSignal>,
            mng: Rc<RefCell<Manager>>,
        }
        impl Hub {
            fn new() -> Self {
                let mng = Rc::new(RefCell::new(Manager::default()));
                Self {
                    basic_signal: Slot::new("basic_signal", mng.clone()),
                    mng,
                }
            }
        }
        impl Anchor for Hub {
            fn manager(&self) -> &Rc<RefCell<Manager>> {
                &self.mng
            }
        }

        // ---

        struct MySubscriberNode;
        impl From<&Hub> for MySubscriberNode {
            fn from(_: &Hub) -> Self {
                Self
            }
        }
        struct MySubscriber;
        impl Subscriber<Hub> for MySubscriber {
            type Emitter = MySubscriberNode;
            fn register(hub: &mut Hub, item: Rc<RefCell<Self>>) {
                hub.basic_signal.register(item);
            }
        }
        impl Named for MySubscriber {
            const NAME: &'static str = "MySubscriber";
        }
        impl BasicSignal for MySubscriber {}

        // ---

        let mut hub = Hub::new();
        let item = hub.subscribe(|_| MySubscriber);
        hub.unsubscribe(&item);
        hub.unsubscribe(&item);
    }

    #[test]
    fn double_unsubscribe_deaf_node() {
        struct Hub {
            mng: Rc<RefCell<Manager>>,
        }
        impl Hub {
            fn new() -> Self {
                let mng = Rc::new(RefCell::new(Manager::default()));
                Self { mng }
            }
        }
        impl Anchor for Hub {
            fn manager(&self) -> &Rc<RefCell<Manager>> {
                &self.mng
            }
        }

        // ---

        struct MySubscriberNode;
        impl From<&Hub> for MySubscriberNode {
            fn from(_: &Hub) -> Self {
                Self
            }
        }
        struct MySubscriber;
        impl Subscriber<Hub> for MySubscriber {
            type Emitter = MySubscriberNode;
            fn register(_: &mut Hub, _: Rc<RefCell<Self>>) {}
        }
        impl Named for MySubscriber {
            const NAME: &'static str = "MySubscriber";
        }

        // ---

        let mut hub = Hub::new();
        let item = hub.subscribe(|_| MySubscriber);
        hub.unsubscribe(&item);
        hub.unsubscribe(&item);
    }

    #[test]
    #[should_panic(expected = "revent name is already registered to this manager: signal")]
    fn double_subscription() {
        let mng = Rc::new(RefCell::new(Manager::default()));

        Slot::<()>::new("signal", mng.clone());
        Single::<()>::new("signal", mng);
    }
}