io.reactivex.rxjava3.internal.operators.flowable.FlowableRefCount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson-all Show documentation
Show all versions of redisson-all Show documentation
Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC
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.rxjava3.internal.operators.flowable;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.*;
import org.reactivestreams.*;
import io.reactivex.rxjava3.core.*;
import io.reactivex.rxjava3.disposables.Disposable;
import io.reactivex.rxjava3.flowables.ConnectableFlowable;
import io.reactivex.rxjava3.functions.Consumer;
import io.reactivex.rxjava3.internal.disposables.*;
import io.reactivex.rxjava3.internal.subscriptions.SubscriptionHelper;
import io.reactivex.rxjava3.plugins.RxJavaPlugins;
/**
* Returns an observable sequence that stays connected to the source as long as
* there is at least one subscription to the observable sequence.
*
* @param
* the value type
*/
public final class FlowableRefCount extends Flowable {
final ConnectableFlowable source;
final int n;
final long timeout;
final TimeUnit unit;
final Scheduler scheduler;
RefConnection connection;
public FlowableRefCount(ConnectableFlowable source) {
this(source, 1, 0L, TimeUnit.NANOSECONDS, null);
}
public FlowableRefCount(ConnectableFlowable source, int n, long timeout, TimeUnit unit,
Scheduler scheduler) {
this.source = source;
this.n = n;
this.timeout = timeout;
this.unit = unit;
this.scheduler = scheduler;
}
@Override
protected void subscribeActual(Subscriber super T> s) {
RefConnection conn;
boolean connect = false;
synchronized (this) {
conn = connection;
if (conn == null) {
conn = new RefConnection(this);
connection = conn;
}
long c = conn.subscriberCount;
if (c == 0L && conn.timer != null) {
conn.timer.dispose();
}
conn.subscriberCount = c + 1;
if (!conn.connected && c + 1 == n) {
connect = true;
conn.connected = true;
}
}
source.subscribe(new RefCountSubscriber<>(s, this, conn));
if (connect) {
source.connect(conn);
}
}
void cancel(RefConnection rc) {
SequentialDisposable sd;
synchronized (this) {
if (connection == null || connection != rc) {
return;
}
long c = rc.subscriberCount - 1;
rc.subscriberCount = c;
if (c != 0L || !rc.connected) {
return;
}
if (timeout == 0L) {
timeout(rc);
return;
}
sd = new SequentialDisposable();
rc.timer = sd;
}
sd.replace(scheduler.scheduleDirect(rc, timeout, unit));
}
void terminated(RefConnection rc) {
synchronized (this) {
if (connection == rc) {
if (rc.timer != null) {
rc.timer.dispose();
rc.timer = null;
}
if (--rc.subscriberCount == 0) {
connection = null;
source.reset();
}
}
}
}
void timeout(RefConnection rc) {
synchronized (this) {
if (rc.subscriberCount == 0 && rc == connection) {
connection = null;
Disposable connectionObject = rc.get();
DisposableHelper.dispose(rc);
if (connectionObject == null) {
rc.disconnectedEarly = true;
} else {
source.reset();
}
}
}
}
static final class RefConnection extends AtomicReference
implements Runnable, Consumer {
private static final long serialVersionUID = -4552101107598366241L;
final FlowableRefCount> parent;
Disposable timer;
long subscriberCount;
boolean connected;
boolean disconnectedEarly;
RefConnection(FlowableRefCount> parent) {
this.parent = parent;
}
@Override
public void run() {
parent.timeout(this);
}
@Override
public void accept(Disposable t) {
DisposableHelper.replace(this, t);
synchronized (parent) {
if (disconnectedEarly) {
parent.source.reset();
}
}
}
}
static final class RefCountSubscriber
extends AtomicBoolean implements FlowableSubscriber, Subscription {
private static final long serialVersionUID = -7419642935409022375L;
final Subscriber super T> downstream;
final FlowableRefCount parent;
final RefConnection connection;
Subscription upstream;
RefCountSubscriber(Subscriber super T> actual, FlowableRefCount parent, RefConnection connection) {
this.downstream = actual;
this.parent = parent;
this.connection = connection;
}
@Override
public void onNext(T t) {
downstream.onNext(t);
}
@Override
public void onError(Throwable t) {
if (compareAndSet(false, true)) {
parent.terminated(connection);
downstream.onError(t);
} else {
RxJavaPlugins.onError(t);
}
}
@Override
public void onComplete() {
if (compareAndSet(false, true)) {
parent.terminated(connection);
downstream.onComplete();
}
}
@Override
public void request(long n) {
upstream.request(n);
}
@Override
public void cancel() {
upstream.cancel();
if (compareAndSet(false, true)) {
parent.cancel(connection);
}
}
@Override
public void onSubscribe(Subscription s) {
if (SubscriptionHelper.validate(upstream, s)) {
this.upstream = s;
downstream.onSubscribe(this);
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy