hu.akarnokd.rxjava2.interop.FlowableCollector Maven / Gradle / Ivy
/*
* Copyright 2016 David Karnok
*
* 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 hu.akarnokd.rxjava2.interop;
import java.util.function.*;
import java.util.stream.Collector;
import org.reactivestreams.*;
import io.reactivex.Flowable;
import io.reactivex.exceptions.Exceptions;
import io.reactivex.internal.subscriptions.*;
import io.reactivex.plugins.RxJavaPlugins;
/**
* Collect elements of the upstream with the help of the Collector's callback functions.
*
* @param the upstream value type
* @param the accumulated type
* @param the result type
*/
final class FlowableCollector extends Flowable {
final Publisher source;
final Collector collector;
FlowableCollector(Publisher source, Collector collector) {
this.source = source;
this.collector = collector;
}
@Override
protected void subscribeActual(Subscriber super R> s) {
A initialValue;
BiConsumer accumulator;
Function finisher;
try {
initialValue = collector.supplier().get();
accumulator = collector.accumulator();
finisher = collector.finisher();
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
EmptySubscription.error(ex, s);
return;
}
source.subscribe(new CollectorSubscriber<>(s, initialValue, accumulator, finisher));
}
static final class CollectorSubscriber extends DeferredScalarSubscription
implements Subscriber {
private static final long serialVersionUID = 2129956429647866524L;
final BiConsumer accumulator;
final Function finisher;
A intermediate;
Subscription s;
boolean done;
public CollectorSubscriber(Subscriber super R> actual,
A initialValue, BiConsumer accumulator, Function finisher) {
super(actual);
this.intermediate = initialValue;
this.accumulator = accumulator;
this.finisher = finisher;
}
@Override
public void onSubscribe(Subscription s) {
if (SubscriptionHelper.validate(this.s, s)) {
this.s = s;
actual.onSubscribe(this);
s.request(Long.MAX_VALUE);
}
}
@Override
public void onNext(T t) {
if (!done) {
try {
accumulator.accept(intermediate, t);
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
s.cancel();
onError(ex);
}
}
}
@Override
public void onError(Throwable t) {
if (done) {
RxJavaPlugins.onError(t);
} else {
done = true;
intermediate = null;
actual.onError(t);
}
}
@Override
public void onComplete() {
if (!done) {
R r;
try {
r = finisher.apply(intermediate);
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
onError(ex);
return;
}
intermediate = null;
complete(r);
}
}
@Override
public void cancel() {
super.cancel();
s.cancel();
}
}
}