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

hu.akarnokd.rxjava2.subjects.nbp.NbpSerializedSubject Maven / Gradle / Ivy

There is a newer version: 2.0.0-RC3
Show newest version
/**
 * Copyright 2015 David Karnok and Netflix, Inc.
 * 
 * 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.subjects.nbp;

import hu.akarnokd.rxjava2.disposables.Disposable;
import hu.akarnokd.rxjava2.functions.Predicate;
import hu.akarnokd.rxjava2.internal.util.*;
import hu.akarnokd.rxjava2.plugins.RxJavaPlugins;

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

All other Publisher and Subject methods are thread-safe by design. * * @param the source value type * @param the subject's result value type */ /* public */ final class NbpSerializedSubject extends NbpSubject { /** The actual subscriber to serialize Subscriber calls to. */ final NbpSubject actual; /** Indicates an emission is going on, guarted 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 */ public NbpSerializedSubject(final NbpSubject actual) { super(new hu.akarnokd.rxjava2.NbpObservable.NbpOnSubscribe() { @Override public void accept(hu.akarnokd.rxjava2.NbpObservable.NbpSubscriber s) { actual.subscribe(s); } }); this.actual = actual; } @Override public void onSubscribe(Disposable s) { // NO-OP } @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; return; } 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.forEachWhile(consumer); } } final Predicate consumer = new Predicate() { @Override public boolean test(Object v) { return accept(v); } }; /** Delivers the notification to the actual subscriber. */ boolean accept(Object o) { return NotificationLite.accept(o, actual); } @Override public boolean hasSubscribers() { return actual.hasSubscribers(); } @Override public boolean hasThrowable() { return actual.hasThrowable(); } @Override public Throwable getThrowable() { return actual.getThrowable(); } @Override public boolean hasValue() { return actual.hasValue(); } @Override public R getValue() { return actual.getValue(); } @Override public Object[] getValues() { return actual.getValues(); } @Override public R[] getValues(R[] array) { return actual.getValues(array); } @Override public boolean hasComplete() { return actual.hasComplete(); } }