forked from peter-iakovlev/Signals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SSignal+Dispatch.m
212 lines (190 loc) · 6.39 KB
/
SSignal+Dispatch.m
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
#import "SSignal+Dispatch.h"
#import "SAtomic.h"
#import "STimer.h"
#import "SBlockDisposable.h"
#import "SMetaDisposable.h"
@interface SSignal_ThrottleContainer : NSObject
@property (nonatomic, strong, readonly) id value;
@property (nonatomic, readonly) bool committed;
@property (nonatomic, readonly) bool last;
@end
@implementation SSignal_ThrottleContainer
- (instancetype)initWithValue:(id)value committed:(bool)committed last:(bool)last {
self = [super init];
if (self != nil) {
_value = value;
_committed = committed;
_last = last;
}
return self;
}
@end
@implementation SSignal (Dispatch)
- (SSignal *)deliverOn:(SQueue *)queue
{
return [[SSignal alloc] initWithGenerator:^id<SDisposable> (SSubscriber *subscriber)
{
return [self startWithNext:^(id next)
{
[queue dispatch:^
{
[subscriber putNext:next];
}];
} error:^(id error)
{
[queue dispatch:^
{
[subscriber putError:error];
}];
} completed:^
{
[queue dispatch:^
{
[subscriber putCompletion];
}];
}];
}];
}
- (SSignal *)deliverOnThreadPool:(SThreadPool *)threadPool
{
return [[SSignal alloc] initWithGenerator:^id<SDisposable> (SSubscriber *subscriber)
{
SThreadPoolQueue *queue = [threadPool nextQueue];
return [self startWithNext:^(id next)
{
SThreadPoolTask *task = [[SThreadPoolTask alloc] initWithBlock:^(bool (^cancelled)())
{
if (!cancelled())
[subscriber putNext:next];
}];
[queue addTask:task];
} error:^(id error)
{
SThreadPoolTask *task = [[SThreadPoolTask alloc] initWithBlock:^(bool (^cancelled)())
{
if (!cancelled())
[subscriber putError:error];
}];
[queue addTask:task];
} completed:^
{
SThreadPoolTask *task = [[SThreadPoolTask alloc] initWithBlock:^(bool (^cancelled)())
{
if (!cancelled())
[subscriber putCompletion];
}];
[queue addTask:task];
}];
}];
}
- (SSignal *)startOn:(SQueue *)queue
{
return [[SSignal alloc] initWithGenerator:^id<SDisposable> (SSubscriber *subscriber)
{
__block bool isCancelled = false;
SMetaDisposable *disposable = [[SMetaDisposable alloc] init];
[disposable setDisposable:[[SBlockDisposable alloc] initWithBlock:^
{
isCancelled = true;
}]];
[queue dispatch:^
{
if (!isCancelled)
{
[disposable setDisposable:[self startWithNext:^(id next)
{
[subscriber putNext:next];
} error:^(id error)
{
[subscriber putError:error];
} completed:^
{
[subscriber putCompletion];
}]];
}
}];
return disposable;
}];
}
- (SSignal *)startOnThreadPool:(SThreadPool *)threadPool
{
return [[SSignal alloc] initWithGenerator:^id<SDisposable> (SSubscriber *subscriber)
{
SMetaDisposable *disposable = [[SMetaDisposable alloc] init];
SThreadPoolTask *task = [[SThreadPoolTask alloc] initWithBlock:^(bool (^cancelled)())
{
if (cancelled && cancelled())
return;
[disposable setDisposable:[self startWithNext:^(id next)
{
[subscriber putNext:next];
} error:^(id error)
{
[subscriber putError:error];
} completed:^
{
[subscriber putCompletion];
}]];
}];
[disposable setDisposable:[[SBlockDisposable alloc] initWithBlock:^
{
[task cancel];
}]];
[threadPool addTask:task];
return disposable;
}];
}
- (SSignal *)throttleOn:(SQueue *)queue delay:(NSTimeInterval)delay
{
return [[SSignal alloc] initWithGenerator:^id<SDisposable>(SSubscriber *subscriber) {
SAtomic *value = [[SAtomic alloc] initWithValue:nil];
STimer *timer = [[STimer alloc] initWithTimeout:delay repeat:false completion:^{
[value modify:^id(SSignal_ThrottleContainer *container) {
if (container != nil) {
if (!container.committed) {
[subscriber putNext:container.value];
container = [[SSignal_ThrottleContainer alloc] initWithValue:container.value committed:true last:container.last];
}
if (container.last) {
[subscriber putCompletion];
}
}
return container;
}];
} queue:queue];
return [[self deliverOn:queue] startWithNext:^(id next) {
[value modify:^id(SSignal_ThrottleContainer *container) {
if (container == nil) {
container = [[SSignal_ThrottleContainer alloc] initWithValue:next committed:false last:false];
}
return container;
}];
[timer invalidate];
[timer start];
} error:^(id error) {
[timer invalidate];
[subscriber putError:error];
} completed:^{
[timer invalidate];
__block bool start = false;
[value modify:^id(SSignal_ThrottleContainer *container) {
bool wasCommitted = false;
if (container == nil) {
wasCommitted = true;
container = [[SSignal_ThrottleContainer alloc] initWithValue:nil committed:true last:true];
} else {
wasCommitted = container.committed;
container = [[SSignal_ThrottleContainer alloc] initWithValue:container.value committed:container.committed last:true];
}
start = wasCommitted;
return container;
}];
if (start) {
[timer start];
} else {
[timer fireAndInvalidate];
}
}];
}];
}
@end