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

io.reactivex.processors.SerializedProcessor Maven / Gradle / Ivy

There is a newer version: 2.2.21
Show 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.processors;

import io.reactivex.annotations.Nullable;
import org.reactivestreams.*;

import io.reactivex.internal.util.*;
import io.reactivex.plugins.RxJavaPlugins;

/**
 * Serializes calls to the Subscriber methods.
 * 

All other Publisher and Subject methods are thread-safe by design. * * @param the item value type */ /* public */ final class SerializedProcessor extends FlowableProcessor { /** The actual subscriber to serialize Subscriber calls to. */ final FlowableProcessor actual; /** Indicates an emission is going on, guarded by this. */ boolean emitting; /** If not null, it holds the missed NotificationLite events. */ AppendOnlyLinkedArrayList queue; /** Indicates a terminal event has been received and all further events will be dropped. */ volatile boolean done; /** * Constructor that wraps an actual subject. * @param actual the subject wrapped */ SerializedProcessor(final FlowableProcessor actual) { this.actual = actual; } @Override protected void subscribeActual(Subscriber s) { actual.subscribe(s); } @Override public void onSubscribe(Subscription s) { boolean cancel; if (!done) { synchronized (this) { if (done) { cancel = true; } else { if (emitting) { AppendOnlyLinkedArrayList q = queue; if (q == null) { q = new AppendOnlyLinkedArrayList(4); queue = q; } q.add(NotificationLite.subscription(s)); return; } emitting = true; cancel = false; } } } else { cancel = true; } if (cancel) { s.cancel(); } else { actual.onSubscribe(s); emitLoop(); } } @Override public void onNext(T t) { if (done) { return; } synchronized (this) { if (done) { return; } if (emitting) { AppendOnlyLinkedArrayList q = queue; if (q == null) { q = new AppendOnlyLinkedArrayList(4); queue = q; } q.add(NotificationLite.next(t)); return; } emitting = true; } actual.onNext(t); emitLoop(); } @Override public void onError(Throwable t) { if (done) { RxJavaPlugins.onError(t); return; } boolean reportError; synchronized (this) { if (done) { reportError = true; } else { done = true; if (emitting) { AppendOnlyLinkedArrayList q = queue; if (q == null) { q = new AppendOnlyLinkedArrayList(4); queue = q; } q.setFirst(NotificationLite.error(t)); return; } reportError = false; emitting = true; } } if (reportError) { RxJavaPlugins.onError(t); return; } actual.onError(t); } @Override public void onComplete() { if (done) { return; } synchronized (this) { if (done) { return; } done = true; if (emitting) { AppendOnlyLinkedArrayList q = queue; if (q == null) { q = new AppendOnlyLinkedArrayList(4); queue = q; } q.add(NotificationLite.complete()); return; } emitting = true; } actual.onComplete(); } /** Loops until all notifications in the queue has been processed. */ void emitLoop() { for (;;) { AppendOnlyLinkedArrayList q; synchronized (this) { q = queue; if (q == null) { emitting = false; return; } queue = null; } q.accept(actual); } } @Override public boolean hasSubscribers() { return actual.hasSubscribers(); } @Override public boolean hasThrowable() { return actual.hasThrowable(); } @Override @Nullable public Throwable getThrowable() { return actual.getThrowable(); } @Override public boolean hasComplete() { return actual.hasComplete(); } }