-
Notifications
You must be signed in to change notification settings - Fork 7.6k
/
Copy pathObservableConcatMapMaybe.java
306 lines (249 loc) · 9.3 KB
/
ObservableConcatMapMaybe.java
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
/**
* Copyright (c) 2016-present, RxJava Contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
* the License for the specific language governing permissions and limitations under the License.
*/
package io.reactivex.internal.operators.mixed;
import java.util.concurrent.atomic.*;
import io.reactivex.*;
import io.reactivex.annotations.Experimental;
import io.reactivex.disposables.Disposable;
import io.reactivex.exceptions.Exceptions;
import io.reactivex.functions.Function;
import io.reactivex.internal.disposables.DisposableHelper;
import io.reactivex.internal.functions.ObjectHelper;
import io.reactivex.internal.fuseable.SimplePlainQueue;
import io.reactivex.internal.queue.SpscLinkedArrayQueue;
import io.reactivex.internal.util.*;
import io.reactivex.plugins.RxJavaPlugins;
/**
* Maps each upstream item into a {@link MaybeSource}, subscribes to them one after the other terminates
* and relays their success values, optionally delaying any errors till the main and inner sources
* terminate.
*
* @param <T> the upstream element type
* @param <R> the output element type
*
* @since 2.1.11 - experimental
*/
@Experimental
public final class ObservableConcatMapMaybe<T, R> extends Observable<R> {
final Observable<T> source;
final Function<? super T, ? extends MaybeSource<? extends R>> mapper;
final ErrorMode errorMode;
final int prefetch;
public ObservableConcatMapMaybe(Observable<T> source,
Function<? super T, ? extends MaybeSource<? extends R>> mapper,
ErrorMode errorMode, int prefetch) {
this.source = source;
this.mapper = mapper;
this.errorMode = errorMode;
this.prefetch = prefetch;
}
@Override
protected void subscribeActual(Observer<? super R> s) {
source.subscribe(new ConcatMapMaybeMainObserver<T, R>(s, mapper, prefetch, errorMode));
}
static final class ConcatMapMaybeMainObserver<T, R>
extends AtomicInteger
implements Observer<T>, Disposable {
private static final long serialVersionUID = -9140123220065488293L;
final Observer<? super R> downstream;
final Function<? super T, ? extends MaybeSource<? extends R>> mapper;
final AtomicThrowable errors;
final ConcatMapMaybeObserver<R> inner;
final SimplePlainQueue<T> queue;
final ErrorMode errorMode;
Disposable upstream;
volatile boolean done;
volatile boolean cancelled;
R item;
volatile int state;
/** No inner MaybeSource is running. */
static final int STATE_INACTIVE = 0;
/** An inner MaybeSource is running but there are no results yet. */
static final int STATE_ACTIVE = 1;
/** The inner MaybeSource succeeded with a value in {@link #item}. */
static final int STATE_RESULT_VALUE = 2;
ConcatMapMaybeMainObserver(Observer<? super R> downstream,
Function<? super T, ? extends MaybeSource<? extends R>> mapper,
int prefetch, ErrorMode errorMode) {
this.downstream = downstream;
this.mapper = mapper;
this.errorMode = errorMode;
this.errors = new AtomicThrowable();
this.inner = new ConcatMapMaybeObserver<R>(this);
this.queue = new SpscLinkedArrayQueue<T>(prefetch);
}
@Override
public void onSubscribe(Disposable s) {
if (DisposableHelper.validate(upstream, s)) {
upstream = s;
downstream.onSubscribe(this);
}
}
@Override
public void onNext(T t) {
queue.offer(t);
drain();
}
@Override
public void onError(Throwable t) {
if (errors.addThrowable(t)) {
if (errorMode == ErrorMode.IMMEDIATE) {
inner.dispose();
}
done = true;
drain();
} else {
RxJavaPlugins.onError(t);
}
}
@Override
public void onComplete() {
done = true;
drain();
}
@Override
public void dispose() {
cancelled = true;
upstream.dispose();
inner.dispose();
if (getAndIncrement() != 0) {
queue.clear();
item = null;
}
}
@Override
public boolean isDisposed() {
return cancelled;
}
void innerSuccess(R item) {
this.item = item;
this.state = STATE_RESULT_VALUE;
drain();
}
void innerComplete() {
this.state = STATE_INACTIVE;
drain();
}
void innerError(Throwable ex) {
if (errors.addThrowable(ex)) {
if (errorMode != ErrorMode.END) {
upstream.dispose();
}
this.state = STATE_INACTIVE;
drain();
} else {
RxJavaPlugins.onError(ex);
}
}
void drain() {
if (getAndIncrement() != 0) {
return;
}
int missed = 1;
Observer<? super R> downstream = this.downstream;
ErrorMode errorMode = this.errorMode;
SimplePlainQueue<T> queue = this.queue;
AtomicThrowable errors = this.errors;
for (;;) {
for (;;) {
if (cancelled) {
queue.clear();
item = null;
}
int s = state;
if (errors.get() != null) {
if (errorMode == ErrorMode.IMMEDIATE
|| (errorMode == ErrorMode.BOUNDARY && s == STATE_INACTIVE)) {
queue.clear();
item = null;
Throwable ex = errors.terminate();
downstream.onError(ex);
return;
}
}
if (s == STATE_INACTIVE) {
boolean d = done;
T v = queue.poll();
boolean empty = v == null;
if (d && empty) {
Throwable ex = errors.terminate();
if (ex == null) {
downstream.onComplete();
} else {
downstream.onError(ex);
}
return;
}
if (empty) {
break;
}
MaybeSource<? extends R> ms;
try {
ms = ObjectHelper.requireNonNull(mapper.apply(v), "The mapper returned a null MaybeSource");
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
upstream.dispose();
queue.clear();
errors.addThrowable(ex);
ex = errors.terminate();
downstream.onError(ex);
return;
}
state = STATE_ACTIVE;
ms.subscribe(inner);
break;
} else if (s == STATE_RESULT_VALUE) {
R w = item;
item = null;
downstream.onNext(w);
state = STATE_INACTIVE;
} else {
break;
}
}
missed = addAndGet(-missed);
if (missed == 0) {
break;
}
}
}
static final class ConcatMapMaybeObserver<R>
extends AtomicReference<Disposable>
implements MaybeObserver<R> {
private static final long serialVersionUID = -3051469169682093892L;
final ConcatMapMaybeMainObserver<?, R> parent;
ConcatMapMaybeObserver(ConcatMapMaybeMainObserver<?, R> parent) {
this.parent = parent;
}
@Override
public void onSubscribe(Disposable d) {
DisposableHelper.replace(this, d);
}
@Override
public void onSuccess(R t) {
parent.innerSuccess(t);
}
@Override
public void onError(Throwable e) {
parent.innerError(e);
}
@Override
public void onComplete() {
parent.innerComplete();
}
void dispose() {
DisposableHelper.dispose(this);
}
}
}
}