All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.reactivex.flowable.internal.operators.FlowableWindowBoundarySupplier Maven / Gradle / Ivy

The newest version!
/**
 * 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.flowable.internal.operators;

import java.util.concurrent.Callable;
import java.util.concurrent.atomic.*;

import org.reactivestreams.*;

import io.reactivex.common.*;
import io.reactivex.common.exceptions.*;
import io.reactivex.common.internal.disposables.DisposableHelper;
import io.reactivex.common.internal.functions.ObjectHelper;
import io.reactivex.flowable.Flowable;
import io.reactivex.flowable.internal.queues.*;
import io.reactivex.flowable.internal.subscribers.QueueDrainSubscriber;
import io.reactivex.flowable.internal.subscriptions.SubscriptionHelper;
import io.reactivex.flowable.internal.utils.NotificationLite;
import io.reactivex.flowable.processors.UnicastProcessor;
import io.reactivex.flowable.subscribers.*;

public final class FlowableWindowBoundarySupplier extends AbstractFlowableWithUpstream> {
    final Callable> other;
    final int bufferSize;

    public FlowableWindowBoundarySupplier(Flowable source,
            Callable> other, int bufferSize) {
        super(source);
        this.other = other;
        this.bufferSize = bufferSize;
    }

    @Override
    protected void subscribeActual(Subscriber> s) {
        source.subscribe(new WindowBoundaryMainSubscriber(
                new SerializedSubscriber>(s), other, bufferSize));
    }

    static final class WindowBoundaryMainSubscriber
    extends QueueDrainSubscriber>
    implements Subscription {

        final Callable> other;
        final int bufferSize;

        Subscription s;

        final AtomicReference boundary = new AtomicReference();

        UnicastProcessor window;

        static final Object NEXT = new Object();

        final AtomicLong windows = new AtomicLong();

        WindowBoundaryMainSubscriber(Subscriber> actual, Callable> other,
                int bufferSize) {
            super(actual, new MpscLinkedQueue());
            this.other = other;
            this.bufferSize = bufferSize;
            windows.lazySet(1);
        }

        @Override
        public void onSubscribe(Subscription s) {
            if (SubscriptionHelper.validate(this.s, s)) {
                this.s = s;

                Subscriber> a = actual;
                a.onSubscribe(this);

                if (cancelled) {
                    return;
                }

                Publisher p;

                try {
                    p = ObjectHelper.requireNonNull(other.call(), "The first window publisher supplied is null");
                } catch (Throwable e) {
                    Exceptions.throwIfFatal(e);
                    s.cancel();
                    a.onError(e);
                    return;
                }

                UnicastProcessor w = UnicastProcessor.create(bufferSize);

                long r = requested();
                if (r != 0L) {
                    a.onNext(w);
                    if (r != Long.MAX_VALUE) {
                        produced(1);
                    }
                } else {
                    s.cancel();
                    a.onError(new MissingBackpressureException("Could not deliver first window due to lack of requests"));
                    return;
                }

                window = w;

                WindowBoundaryInnerSubscriber inner = new WindowBoundaryInnerSubscriber(this);

                if (boundary.compareAndSet(null, inner)) {
                    windows.getAndIncrement();
                    s.request(Long.MAX_VALUE);
                    p.subscribe(inner);
                }
            }
        }

        @Override
        public void onNext(T t) {
            if (done) {
                return;
            }
            if (fastEnter()) {
                UnicastProcessor w = window;

                w.onNext(t);

                if (leave(-1) == 0) {
                    return;
                }
            } else {
                queue.offer(NotificationLite.next(t));
                if (!enter()) {
                    return;
                }
            }
            drainLoop();
        }

        @Override
        public void onError(Throwable t) {
            if (done) {
                RxJavaCommonPlugins.onError(t);
                return;
            }
            error = t;
            done = true;
            if (enter()) {
                drainLoop();
            }

            if (windows.decrementAndGet() == 0) {
                DisposableHelper.dispose(boundary);
            }

            actual.onError(t);
        }

        @Override
        public void onComplete() {
            if (done) {
                return;
            }
            done = true;
            if (enter()) {
                drainLoop();
            }

            if (windows.decrementAndGet() == 0) {
                DisposableHelper.dispose(boundary);
            }

            actual.onComplete();

        }

        @Override
        public void request(long n) {
            requested(n);
        }

        @Override
        public void cancel() {
            cancelled = true;
        }

        void drainLoop() {
            final SimplePlainQueue q = queue;
            final Subscriber> a = actual;
            int missed = 1;
            UnicastProcessor w = window;
            for (;;) {

                for (;;) {
                    boolean d = done;

                    Object o = q.poll();

                    boolean empty = o == null;

                    if (d && empty) {
                        DisposableHelper.dispose(boundary);
                        Throwable e = error;
                        if (e != null) {
                            w.onError(e);
                        } else {
                            w.onComplete();
                        }
                        return;
                    }

                    if (empty) {
                        break;
                    }

                    if (o == NEXT) {
                        w.onComplete();

                        if (windows.decrementAndGet() == 0) {
                            DisposableHelper.dispose(boundary);
                            return;
                        }

                        if (cancelled) {
                            continue;
                        }

                        Publisher p;

                        try {
                            p = ObjectHelper.requireNonNull(other.call(), "The publisher supplied is null");
                        } catch (Throwable e) {
                            Exceptions.throwIfFatal(e);
                            DisposableHelper.dispose(boundary);
                            a.onError(e);
                            return;
                        }

                        w = UnicastProcessor.create(bufferSize);

                        long r = requested();
                        if (r != 0L) {
                            windows.getAndIncrement();

                            a.onNext(w);
                            if (r != Long.MAX_VALUE) {
                                produced(1);
                            }
                        } else {
                            // don't emit new windows
                            cancelled = true;
                            a.onError(new MissingBackpressureException("Could not deliver new window due to lack of requests"));
                            continue;
                        }

                        window = w;

                        WindowBoundaryInnerSubscriber b = new WindowBoundaryInnerSubscriber(this);

                        if (boundary.compareAndSet(boundary.get(), b)) {
                            p.subscribe(b);
                        }

                        continue;
                    }

                    w.onNext(NotificationLite.getValue(o));
                }

                missed = leave(-missed);
                if (missed == 0) {
                    return;
                }
            }
        }

        void next() {
            queue.offer(NEXT);
            if (enter()) {
                drainLoop();
            }
        }
    }

    static final class WindowBoundaryInnerSubscriber extends DisposableSubscriber {
        final WindowBoundaryMainSubscriber parent;

        boolean done;

        WindowBoundaryInnerSubscriber(WindowBoundaryMainSubscriber parent) {
            this.parent = parent;
        }

        @Override
        public void onNext(B t) {
            if (done) {
                return;
            }
            done = true;
            cancel();
            parent.next();
        }

        @Override
        public void onError(Throwable t) {
            if (done) {
                RxJavaCommonPlugins.onError(t);
                return;
            }
            done = true;
            parent.onError(t);
        }

        @Override
        public void onComplete() {
            if (done) {
                return;
            }
            done = true;
            parent.onComplete();
//            parent.next();
        }
    }
}