io.rsocket.internal.LimitableRequestPublisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rsocket-core Show documentation
Show all versions of rsocket-core Show documentation
Core functionality for the RSocket library
/*
* Copyright 2015-2018 the original author or authors.
*
* 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.rsocket.internal;
import java.util.concurrent.atomic.AtomicBoolean;
import javax.annotation.Nullable;
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
import org.reactivestreams.Subscription;
import reactor.core.CoreSubscriber;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Operators;
/** */
public class LimitableRequestPublisher extends Flux implements Subscription {
private final Publisher source;
private final AtomicBoolean canceled;
private long internalRequested;
private long externalRequested;
private volatile boolean subscribed;
private volatile @Nullable Subscription internalSubscription;
private LimitableRequestPublisher(Publisher source) {
this.source = source;
this.canceled = new AtomicBoolean();
}
public static LimitableRequestPublisher wrap(Publisher source) {
return new LimitableRequestPublisher<>(source);
}
@Override
public void subscribe(CoreSubscriber super T> destination) {
synchronized (this) {
if (subscribed) {
throw new IllegalStateException("only one subscriber at a time");
}
subscribed = true;
}
destination.onSubscribe(new InnerSubscription());
source.subscribe(new InnerSubscriber(destination));
}
public void increaseRequestLimit(long n) {
synchronized (this) {
externalRequested = Operators.addCap(n, externalRequested);
}
requestN();
}
@Override
public void request(long n) {
increaseRequestLimit(n);
}
private void requestN() {
long r;
synchronized (this) {
if (internalSubscription == null) {
return;
}
r = Math.min(internalRequested, externalRequested);
externalRequested -= r;
internalRequested -= r;
}
if (r > 0) {
internalSubscription.request(r);
}
}
public void cancel() {
if (canceled.compareAndSet(false, true) && internalSubscription != null) {
internalSubscription.cancel();
internalSubscription = null;
subscribed = false;
}
}
private class InnerSubscriber implements Subscriber {
Subscriber super T> destination;
private InnerSubscriber(Subscriber super T> destination) {
this.destination = destination;
}
@Override
public void onSubscribe(Subscription s) {
synchronized (LimitableRequestPublisher.this) {
LimitableRequestPublisher.this.internalSubscription = s;
if (canceled.get()) {
s.cancel();
subscribed = false;
LimitableRequestPublisher.this.internalSubscription = null;
}
}
requestN();
}
@Override
public void onNext(T t) {
try {
destination.onNext(t);
} catch (Throwable e) {
onError(e);
}
}
@Override
public void onError(Throwable t) {
destination.onError(t);
}
@Override
public void onComplete() {
destination.onComplete();
}
}
private class InnerSubscription implements Subscription {
@Override
public void request(long n) {
synchronized (LimitableRequestPublisher.this) {
internalRequested = Operators.addCap(n, internalRequested);
}
requestN();
}
@Override
public void cancel() {
LimitableRequestPublisher.this.cancel();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy