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

io.reactivex.processors.AsyncProcessor 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 java.util.Arrays;
import java.util.concurrent.atomic.AtomicReference;

import org.reactivestreams.*;

import io.reactivex.annotations.*;
import io.reactivex.internal.functions.ObjectHelper;
import io.reactivex.internal.subscriptions.DeferredScalarSubscription;
import io.reactivex.plugins.RxJavaPlugins;

/**
 * Processor that emits the very last value followed by a completion event or the received error
 * to {@link Subscriber}s.
 * 

* *

* The implementation of onXXX methods are technically thread-safe but non-serialized calls * to them may lead to undefined state in the currently subscribed Subscribers. * * @param the value type */ public final class AsyncProcessor extends FlowableProcessor { @SuppressWarnings("rawtypes") static final AsyncSubscription[] EMPTY = new AsyncSubscription[0]; @SuppressWarnings("rawtypes") static final AsyncSubscription[] TERMINATED = new AsyncSubscription[0]; final AtomicReference[]> subscribers; /** Write before updating subscribers, read after reading subscribers as TERMINATED. */ Throwable error; /** Write before updating subscribers, read after reading subscribers as TERMINATED. */ T value; /** * Creates a new AsyncProcessor. * @param the value type to be received and emitted * @return the new AsyncProcessor instance */ @CheckReturnValue @NonNull public static AsyncProcessor create() { return new AsyncProcessor(); } /** * Constructs an AsyncProcessor. * @since 2.0 */ @SuppressWarnings("unchecked") AsyncProcessor() { this.subscribers = new AtomicReference[]>(EMPTY); } @Override public void onSubscribe(Subscription s) { if (subscribers.get() == TERMINATED) { s.cancel(); return; } // PublishSubject doesn't bother with request coordination. s.request(Long.MAX_VALUE); } @Override public void onNext(T t) { ObjectHelper.requireNonNull(t, "onNext called with null. Null values are generally not allowed in 2.x operators and sources."); if (subscribers.get() == TERMINATED) { return; } value = t; } @SuppressWarnings("unchecked") @Override public void onError(Throwable t) { ObjectHelper.requireNonNull(t, "onError called with null. Null values are generally not allowed in 2.x operators and sources."); if (subscribers.get() == TERMINATED) { RxJavaPlugins.onError(t); return; } value = null; error = t; for (AsyncSubscription as : subscribers.getAndSet(TERMINATED)) { as.onError(t); } } @SuppressWarnings("unchecked") @Override public void onComplete() { if (subscribers.get() == TERMINATED) { return; } T v = value; AsyncSubscription[] array = subscribers.getAndSet(TERMINATED); if (v == null) { for (AsyncSubscription as : array) { as.onComplete(); } } else { for (AsyncSubscription as : array) { as.complete(v); } } } @Override public boolean hasSubscribers() { return subscribers.get().length != 0; } @Override public boolean hasThrowable() { return subscribers.get() == TERMINATED && error != null; } @Override public boolean hasComplete() { return subscribers.get() == TERMINATED && error == null; } @Override @Nullable public Throwable getThrowable() { return subscribers.get() == TERMINATED ? error : null; } @Override protected void subscribeActual(Subscriber s) { AsyncSubscription as = new AsyncSubscription(s, this); s.onSubscribe(as); if (add(as)) { if (as.isCancelled()) { remove(as); } } else { Throwable ex = error; if (ex != null) { s.onError(ex); } else { T v = value; if (v != null) { as.complete(v); } else { as.onComplete(); } } } } /** * Tries to add the given subscriber to the subscribers array atomically * or returns false if the subject has terminated. * @param ps the subscriber to add * @return true if successful, false if the subject has terminated */ boolean add(AsyncSubscription ps) { for (;;) { AsyncSubscription[] a = subscribers.get(); if (a == TERMINATED) { return false; } int n = a.length; @SuppressWarnings("unchecked") AsyncSubscription[] b = new AsyncSubscription[n + 1]; System.arraycopy(a, 0, b, 0, n); b[n] = ps; if (subscribers.compareAndSet(a, b)) { return true; } } } /** * Atomically removes the given subscriber if it is subscribed to the subject. * @param ps the subject to remove */ @SuppressWarnings("unchecked") void remove(AsyncSubscription ps) { for (;;) { AsyncSubscription[] a = subscribers.get(); int n = a.length; if (n == 0) { return; } int j = -1; for (int i = 0; i < n; i++) { if (a[i] == ps) { j = i; break; } } if (j < 0) { return; } AsyncSubscription[] b; if (n == 1) { b = EMPTY; } else { b = new AsyncSubscription[n - 1]; System.arraycopy(a, 0, b, 0, j); System.arraycopy(a, j + 1, b, j, n - j - 1); } if (subscribers.compareAndSet(a, b)) { return; } } } /** * Returns true if the subject has any value. *

The method is thread-safe. * @return true if the subject has any value */ public boolean hasValue() { return subscribers.get() == TERMINATED && value != null; } /** * Returns a single value the Subject currently has or null if no such value exists. *

The method is thread-safe. * @return a single value the Subject currently has or null if no such value exists */ @Nullable public T getValue() { return subscribers.get() == TERMINATED ? value : null; } /** * Returns an Object array containing snapshot all values of the Subject. *

The method is thread-safe. * @return the array containing the snapshot of all values of the Subject * @deprecated in 2.1.14; put the result of {@link #getValue()} into an array manually, will be removed in 3.x */ @Deprecated public Object[] getValues() { T v = getValue(); return v != null ? new Object[] { v } : new Object[0]; } /** * Returns a typed array containing a snapshot of all values of the Subject. *

The method follows the conventions of Collection.toArray by setting the array element * after the last value to null (if the capacity permits). *

The method is thread-safe. * @param array the target array to copy values into if it fits * @return the given array if the values fit into it or a new array containing all values * @deprecated in 2.1.14; put the result of {@link #getValue()} into an array manually, will be removed in 3.x */ @Deprecated public T[] getValues(T[] array) { T v = getValue(); if (v == null) { if (array.length != 0) { array[0] = null; } return array; } if (array.length == 0) { array = Arrays.copyOf(array, 1); } array[0] = v; if (array.length != 1) { array[1] = null; } return array; } static final class AsyncSubscription extends DeferredScalarSubscription { private static final long serialVersionUID = 5629876084736248016L; final AsyncProcessor parent; AsyncSubscription(Subscriber actual, AsyncProcessor parent) { super(actual); this.parent = parent; } @Override public void cancel() { if (super.tryCancel()) { parent.remove(this); } } void onComplete() { if (!isCancelled()) { actual.onComplete(); } } void onError(Throwable t) { if (isCancelled()) { RxJavaPlugins.onError(t); } else { actual.onError(t); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy