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
use crate::prelude::*;
use crate::scheduler::Scheduler;
pub trait SubscribeOn {
fn subscribe_on<SD>(self, scheduler: SD) -> SubscribeOnOP<Self, SD>
where
Self: Sized,
{
SubscribeOnOP {
source: self,
scheduler,
}
}
}
pub struct SubscribeOnOP<S, SD> {
source: S,
scheduler: SD,
}
impl<S, SD> IntoShared for SubscribeOnOP<S, SD>
where
Self: Send + Sync + 'static,
{
type Shared = Self;
#[inline(always)]
fn to_shared(self) -> Self::Shared { self }
}
impl<T> SubscribeOn for T {}
impl<Item, Err, O, S, SD> RawSubscribable<Item, Err, O> for SubscribeOnOP<S, SD>
where
O: IntoShared,
S: IntoShared,
S::Shared: RawSubscribable<Item, Err, O::Shared, Unsub = SharedSubscription>,
SD: Scheduler,
{
type Unsub = SharedSubscription;
fn raw_subscribe(self, subscriber: O) -> Self::Unsub {
let source = self.source.to_shared();
let subscriber = subscriber.to_shared();
self.scheduler.schedule(
move |mut subscription, _| {
subscription.add(source.raw_subscribe(subscriber))
},
None,
(),
)
}
}
#[cfg(test)]
mod test {
use crate::ops::{Delay, SubscribeOn};
use crate::prelude::*;
use crate::scheduler::Schedulers;
use std::sync::{Arc, Mutex};
use std::thread;
use std::time::Duration;
#[test]
fn new_thread() {
let res = Arc::new(Mutex::new(vec![]));
let c_res = res.clone();
let thread = Arc::new(Mutex::new(vec![]));
let c_thread = thread.clone();
observable::from_iter(1..5)
.subscribe_on(Schedulers::NewThread)
.subscribe(move |v| {
res.lock().unwrap().push(v);
let handle = thread::current();
thread.lock().unwrap().push(handle.id());
});
thread::sleep(std::time::Duration::from_millis(1));
assert_eq!(*c_res.lock().unwrap(), (1..5).collect::<Vec<_>>());
assert_ne!(c_thread.lock().unwrap()[0], thread::current().id());
}
#[test]
fn pool_unsubscribe() { unsubscribe_scheduler(Schedulers::ThreadPool) }
#[test]
fn new_thread_unsubscribe() { unsubscribe_scheduler(Schedulers::NewThread) }
fn unsubscribe_scheduler(scheduler: Schedulers) {
let emitted = Arc::new(Mutex::new(vec![]));
let c_emitted = emitted.clone();
observable::from_iter(0..10)
.subscribe_on(scheduler)
.delay(Duration::from_millis(10))
.subscribe(move |v| {
emitted.lock().unwrap().push(v);
})
.unsubscribe();
std::thread::sleep(Duration::from_millis(20));
assert_eq!(c_emitted.lock().unwrap().len(), 0);
}
}