-
Notifications
You must be signed in to change notification settings - Fork 7.6k
/
Copy pathObservableWithLatestFromMany.java
292 lines (241 loc) · 8.88 KB
/
ObservableWithLatestFromMany.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
/**
* 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.observable;
import java.util.Arrays;
import java.util.concurrent.atomic.*;
import io.reactivex.*;
import io.reactivex.annotations.NonNull;
import io.reactivex.annotations.Nullable;
import io.reactivex.disposables.Disposable;
import io.reactivex.exceptions.Exceptions;
import io.reactivex.functions.Function;
import io.reactivex.internal.disposables.*;
import io.reactivex.internal.functions.ObjectHelper;
import io.reactivex.internal.util.*;
import io.reactivex.plugins.RxJavaPlugins;
/**
* Combines a main sequence of values with the latest from multiple other sequences via
* a selector function.
*
* @param <T> the main sequence's type
* @param <R> the output type
*/
public final class ObservableWithLatestFromMany<T, R> extends AbstractObservableWithUpstream<T, R> {
@Nullable
final ObservableSource<?>[] otherArray;
@Nullable
final Iterable<? extends ObservableSource<?>> otherIterable;
@NonNull
final Function<? super Object[], R> combiner;
public ObservableWithLatestFromMany(@NonNull ObservableSource<T> source, @NonNull ObservableSource<?>[] otherArray, @NonNull Function<? super Object[], R> combiner) {
super(source);
this.otherArray = otherArray;
this.otherIterable = null;
this.combiner = combiner;
}
public ObservableWithLatestFromMany(@NonNull ObservableSource<T> source, @NonNull Iterable<? extends ObservableSource<?>> otherIterable, @NonNull Function<? super Object[], R> combiner) {
super(source);
this.otherArray = null;
this.otherIterable = otherIterable;
this.combiner = combiner;
}
@Override
protected void subscribeActual(Observer<? super R> observer) {
ObservableSource<?>[] others = otherArray;
int n = 0;
if (others == null) {
others = new ObservableSource[8];
try {
for (ObservableSource<?> p : otherIterable) {
if (n == others.length) {
others = Arrays.copyOf(others, n + (n >> 1));
}
others[n++] = p;
}
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
EmptyDisposable.error(ex, observer);
return;
}
} else {
n = others.length;
}
if (n == 0) {
new ObservableMap<T, R>(source, new SingletonArrayFunc()).subscribeActual(observer);
return;
}
WithLatestFromObserver<T, R> parent = new WithLatestFromObserver<T, R>(observer, combiner, n);
observer.onSubscribe(parent);
parent.subscribe(others, n);
source.subscribe(parent);
}
static final class WithLatestFromObserver<T, R>
extends AtomicInteger
implements Observer<T>, Disposable {
private static final long serialVersionUID = 1577321883966341961L;
final Observer<? super R> downstream;
final Function<? super Object[], R> combiner;
final WithLatestInnerObserver[] observers;
final AtomicReferenceArray<Object> values;
final AtomicReference<Disposable> upstream;
final AtomicThrowable error;
volatile boolean done;
WithLatestFromObserver(Observer<? super R> actual, Function<? super Object[], R> combiner, int n) {
this.downstream = actual;
this.combiner = combiner;
WithLatestInnerObserver[] s = new WithLatestInnerObserver[n];
for (int i = 0; i < n; i++) {
s[i] = new WithLatestInnerObserver(this, i);
}
this.observers = s;
this.values = new AtomicReferenceArray<Object>(n);
this.upstream = new AtomicReference<Disposable>();
this.error = new AtomicThrowable();
}
void subscribe(ObservableSource<?>[] others, int n) {
WithLatestInnerObserver[] observers = this.observers;
AtomicReference<Disposable> upstream = this.upstream;
for (int i = 0; i < n; i++) {
if (DisposableHelper.isDisposed(upstream.get()) || done) {
return;
}
others[i].subscribe(observers[i]);
}
}
@Override
public void onSubscribe(Disposable d) {
DisposableHelper.setOnce(this.upstream, d);
}
@Override
public void onNext(T t) {
if (done) {
return;
}
AtomicReferenceArray<Object> ara = values;
int n = ara.length();
Object[] objects = new Object[n + 1];
objects[0] = t;
for (int i = 0; i < n; i++) {
Object o = ara.get(i);
if (o == null) {
// no latest, skip this value
return;
}
objects[i + 1] = o;
}
R v;
try {
v = ObjectHelper.requireNonNull(combiner.apply(objects), "combiner returned a null value");
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
dispose();
onError(ex);
return;
}
HalfSerializer.onNext(downstream, v, this, error);
}
@Override
public void onError(Throwable t) {
if (done) {
RxJavaPlugins.onError(t);
return;
}
done = true;
cancelAllBut(-1);
HalfSerializer.onError(downstream, t, this, error);
}
@Override
public void onComplete() {
if (!done) {
done = true;
cancelAllBut(-1);
HalfSerializer.onComplete(downstream, this, error);
}
}
@Override
public boolean isDisposed() {
return DisposableHelper.isDisposed(upstream.get());
}
@Override
public void dispose() {
DisposableHelper.dispose(upstream);
for (WithLatestInnerObserver observer : observers) {
observer.dispose();
}
}
void innerNext(int index, Object o) {
values.set(index, o);
}
void innerError(int index, Throwable t) {
done = true;
DisposableHelper.dispose(upstream);
cancelAllBut(index);
HalfSerializer.onError(downstream, t, this, error);
}
void innerComplete(int index, boolean nonEmpty) {
if (!nonEmpty) {
done = true;
cancelAllBut(index);
HalfSerializer.onComplete(downstream, this, error);
}
}
void cancelAllBut(int index) {
WithLatestInnerObserver[] observers = this.observers;
for (int i = 0; i < observers.length; i++) {
if (i != index) {
observers[i].dispose();
}
}
}
}
static final class WithLatestInnerObserver
extends AtomicReference<Disposable>
implements Observer<Object> {
private static final long serialVersionUID = 3256684027868224024L;
final WithLatestFromObserver<?, ?> parent;
final int index;
boolean hasValue;
WithLatestInnerObserver(WithLatestFromObserver<?, ?> parent, int index) {
this.parent = parent;
this.index = index;
}
@Override
public void onSubscribe(Disposable d) {
DisposableHelper.setOnce(this, d);
}
@Override
public void onNext(Object t) {
if (!hasValue) {
hasValue = true;
}
parent.innerNext(index, t);
}
@Override
public void onError(Throwable t) {
parent.innerError(index, t);
}
@Override
public void onComplete() {
parent.innerComplete(index, hasValue);
}
public void dispose() {
DisposableHelper.dispose(this);
}
}
final class SingletonArrayFunc implements Function<T, R> {
@Override
public R apply(T t) throws Exception {
return ObjectHelper.requireNonNull(combiner.apply(new Object[] { t }), "The combiner returned a null value");
}
}
}