org.redisson.pubsub.PubSubConnectionEntry 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
/**
* Copyright (c) 2013-2021 Nikita Koksharov
*
* 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 org.redisson.pubsub;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.atomic.AtomicInteger;
import org.redisson.PubSubMessageListener;
import org.redisson.PubSubPatternMessageListener;
import org.redisson.client.BaseRedisPubSubListener;
import org.redisson.client.ChannelName;
import org.redisson.client.RedisPubSubConnection;
import org.redisson.client.RedisPubSubListener;
import org.redisson.client.SubscribeListener;
import org.redisson.client.codec.Codec;
import org.redisson.client.protocol.pubsub.PubSubType;
import io.netty.channel.ChannelFuture;
/**
*
* @author Nikita Koksharov
*
*/
public class PubSubConnectionEntry {
private final AtomicInteger subscribedChannelsAmount;
private final RedisPubSubConnection conn;
private final ConcurrentMap subscribeChannelListeners = new ConcurrentHashMap();
private final ConcurrentMap>> channelListeners = new ConcurrentHashMap>>();
private static final Queue> EMPTY_QUEUE = new LinkedList<>();
public PubSubConnectionEntry(RedisPubSubConnection conn, int subscriptionsPerConnection) {
super();
this.conn = conn;
this.subscribedChannelsAmount = new AtomicInteger(subscriptionsPerConnection);
}
public int countListeners(ChannelName channelName) {
return channelListeners.getOrDefault(channelName, EMPTY_QUEUE).size();
}
public boolean hasListeners(ChannelName channelName) {
return channelListeners.containsKey(channelName);
}
public Queue> getListeners(ChannelName channelName) {
return channelListeners.getOrDefault(channelName, EMPTY_QUEUE);
}
public void addListener(ChannelName channelName, RedisPubSubListener> listener) {
if (listener == null) {
return;
}
Queue> queue = channelListeners.get(channelName);
if (queue == null) {
queue = new ConcurrentLinkedQueue>();
Queue> oldQueue = channelListeners.putIfAbsent(channelName, queue);
if (oldQueue != null) {
queue = oldQueue;
}
}
boolean deleted = false;
synchronized (queue) {
if (channelListeners.get(channelName) != queue) {
deleted = true;
} else {
queue.add(listener);
}
}
if (deleted) {
addListener(channelName, listener);
return;
}
conn.addListener(listener);
}
// TODO optimize
public boolean removeListener(ChannelName channelName, EventListener msgListener) {
Queue> listeners = channelListeners.get(channelName);
for (RedisPubSubListener> listener : listeners) {
if (listener instanceof PubSubMessageListener) {
if (((PubSubMessageListener>) listener).getListener() == msgListener) {
removeListener(channelName, listener);
return true;
}
}
if (listener instanceof PubSubPatternMessageListener) {
if (((PubSubPatternMessageListener>) listener).getListener() == msgListener) {
removeListener(channelName, listener);
return true;
}
}
}
return false;
}
public boolean removeListener(ChannelName channelName, int listenerId) {
Queue> listeners = channelListeners.get(channelName);
for (RedisPubSubListener> listener : listeners) {
if (System.identityHashCode(listener) == listenerId) {
removeListener(channelName, listener);
return true;
}
}
return false;
}
public void removeListener(ChannelName channelName, RedisPubSubListener> listener) {
Queue> queue = channelListeners.get(channelName);
synchronized (queue) {
if (queue.remove(listener) && queue.isEmpty()) {
channelListeners.remove(channelName);
}
}
conn.removeListener(listener);
}
public int tryAcquire() {
while (true) {
int value = subscribedChannelsAmount.get();
if (value == 0) {
return -1;
}
if (subscribedChannelsAmount.compareAndSet(value, value - 1)) {
return value - 1;
}
}
}
public int release() {
return subscribedChannelsAmount.incrementAndGet();
}
public ChannelFuture subscribe(Codec codec, ChannelName channelName) {
return conn.subscribe(codec, channelName);
}
public ChannelFuture psubscribe(Codec codec, ChannelName pattern) {
return conn.psubscribe(codec, pattern);
}
public SubscribeListener getSubscribeFuture(ChannelName channel, PubSubType type) {
SubscribeListener listener = subscribeChannelListeners.get(channel);
if (listener == null) {
listener = new SubscribeListener(channel, type);
SubscribeListener oldSubscribeListener = subscribeChannelListeners.putIfAbsent(channel, listener);
if (oldSubscribeListener != null) {
listener = oldSubscribeListener;
} else {
conn.addListener(listener);
}
}
return listener;
}
public ChannelFuture unsubscribe(ChannelName channel, RedisPubSubListener> listener) {
conn.addListener(new BaseRedisPubSubListener() {
@Override
public boolean onStatus(PubSubType type, CharSequence ch) {
if (type == PubSubType.UNSUBSCRIBE && channel.equals(ch)) {
conn.removeListener(this);
removeListeners(channel);
if (listener != null) {
listener.onStatus(type, ch);
}
return true;
}
return false;
}
});
return conn.unsubscribe(channel);
}
private void removeListeners(ChannelName channel) {
conn.removeDisconnectListener(channel);
SubscribeListener s = subscribeChannelListeners.remove(channel);
conn.removeListener(s);
Queue> queue = channelListeners.get(channel);
if (queue != null) {
synchronized (queue) {
channelListeners.remove(channel);
}
for (RedisPubSubListener> listener : queue) {
conn.removeListener(listener);
}
}
}
public ChannelFuture punsubscribe(final ChannelName channel, final RedisPubSubListener> listener) {
conn.addListener(new BaseRedisPubSubListener() {
@Override
public boolean onStatus(PubSubType type, CharSequence ch) {
if (type == PubSubType.PUNSUBSCRIBE && channel.equals(ch)) {
conn.removeListener(this);
removeListeners(channel);
if (listener != null) {
listener.onStatus(type, ch);
}
return true;
}
return false;
}
});
return conn.punsubscribe(channel);
}
public RedisPubSubConnection getConnection() {
return conn;
}
@Override
public String toString() {
return "PubSubConnectionEntry [subscribedChannelsAmount=" + subscribedChannelsAmount + ", conn=" + conn + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy