org.redisson.RedissonBaseAdder 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;
import io.netty.buffer.ByteBufUtil;
import org.redisson.api.RFuture;
import org.redisson.api.RSemaphore;
import org.redisson.api.RTopic;
import org.redisson.api.RedissonClient;
import org.redisson.client.codec.StringCodec;
import org.redisson.command.CommandAsyncExecutor;
import org.redisson.misc.RPromise;
import org.redisson.misc.RedissonPromise;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.concurrent.ThreadLocalRandom;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.function.BiConsumer;
/**
*
* @author Nikita Koksharov
*
*/
public abstract class RedissonBaseAdder extends RedissonExpirable {
private class ResetListener implements BiConsumer {
private final RPromise result;
private final RSemaphore semaphore;
ResetListener(RSemaphore semaphore, RPromise result) {
this.result = result;
this.semaphore = semaphore;
}
@Override
public void accept(Long t, Throwable u) {
if (u != null) {
result.tryFailure(u);
return;
}
acquireAsync(t.intValue()).onComplete((res, e) -> {
if (e != null) {
result.tryFailure(e);
return;
}
semaphore.deleteAsync().onComplete((re, exc) -> {
if (exc != null) {
result.tryFailure(exc);
return;
}
result.trySuccess(res);
});
});
}
protected RFuture acquireAsync(int value) {
return semaphore.acquireAsync(value);
}
}
private class SumListener implements BiConsumer {
private final RPromise result;
private final RSemaphore semaphore;
private final String id;
SumListener(String id, RSemaphore semaphore, RPromise result) {
this.result = result;
this.semaphore = semaphore;
this.id = id;
}
@Override
public void accept(Long t, Throwable u) {
if (u != null) {
result.tryFailure(u);
return;
}
acquireAsync(t.intValue()).onComplete((r, e) -> {
if (e != null) {
result.tryFailure(e);
return;
}
RFuture valueFuture = getAndDeleteAsync(id);
valueFuture.onComplete((res, ex) -> {
if (ex != null) {
result.tryFailure(ex);
return;
}
semaphore.deleteAsync().onComplete((re, exc) -> {
if (exc != null) {
result.tryFailure(exc);
return;
}
result.trySuccess(res);
});
});
});
}
protected RFuture acquireAsync(int value) {
return semaphore.acquireAsync(value);
}
}
private static final Logger log = LoggerFactory.getLogger(RedissonBaseAdder.class);
private static final String CLEAR_MSG = "0";
private static final String SUM_MSG = "1";
private final RedissonClient redisson;
private final RTopic topic;
private final int listenerId;
public RedissonBaseAdder(CommandAsyncExecutor connectionManager, String name, RedissonClient redisson) {
super(connectionManager, name);
topic = redisson.getTopic(suffixName(getRawName(), "topic"), StringCodec.INSTANCE);
this.redisson = redisson;
listenerId = topic.addListener(String.class, (channel, msg) -> {
String[] parts = msg.split(":");
String id = parts[1];
RSemaphore semaphore = getSemaphore(id);
if (parts[0].equals(SUM_MSG)) {
RFuture addAndGetFuture = addAndGetAsync(id);
addAndGetFuture.onComplete((res, e) -> {
if (e != null) {
log.error("Can't increase sum", e);
return;
}
semaphore.releaseAsync().onComplete((r, ex) -> {
if (ex != null) {
log.error("Can't release semaphore", ex);
}
});
});
}
if (parts[0].equals(CLEAR_MSG)) {
doReset();
semaphore.releaseAsync().onComplete((res, e) -> {
if (e != null) {
log.error("Can't release semaphore", e);
}
});
}
});
}
protected abstract void doReset();
private String generateId() {
byte[] id = new byte[16];
ThreadLocalRandom.current().nextBytes(id);
return ByteBufUtil.hexDump(id);
}
public void reset() {
get(resetAsync());
}
public void reset(long timeout, TimeUnit timeUnit) {
get(resetAsync(timeout, timeUnit));
}
public RFuture sumAsync() {
RPromise result = new RedissonPromise();
String id = generateId();
RFuture future = topic.publishAsync(SUM_MSG + ":" + id);
RSemaphore semaphore = getSemaphore(id);
future.onComplete(new SumListener(id, semaphore, result));
return result;
}
private RSemaphore getSemaphore(String id) {
return redisson.getSemaphore(suffixName(getRawName(), id + ":semaphore"));
}
protected String getCounterName(String id) {
return suffixName(getRawName(), id + ":counter");
}
public RFuture sumAsync(long timeout, TimeUnit timeUnit) {
RPromise result = new RedissonPromise();
String id = generateId();
RFuture future = topic.publishAsync(SUM_MSG + ":" + id);
RSemaphore semaphore = getSemaphore(id);
future.onComplete(new SumListener(id, semaphore, result) {
@Override
protected RFuture acquireAsync(int value) {
return tryAcquire(semaphore, timeout, timeUnit, value);
}
});
return result;
}
protected RFuture tryAcquire(RSemaphore semaphore, long timeout, TimeUnit timeUnit, int value) {
RPromise acquireResult = new RedissonPromise<>();
semaphore.tryAcquireAsync(value, timeout, timeUnit).onComplete((res, e) -> {
if (e != null) {
acquireResult.tryFailure(e);
return;
}
if (res) {
acquireResult.trySuccess(null);
} else {
acquireResult.tryFailure(new TimeoutException());
}
});
return acquireResult;
}
public RFuture resetAsync() {
RPromise result = new RedissonPromise<>();
String id = generateId();
RFuture future = topic.publishAsync(CLEAR_MSG + ":" + id);
RSemaphore semaphore = getSemaphore(id);
future.onComplete(new ResetListener(semaphore, result));
return result;
}
public RFuture resetAsync(long timeout, TimeUnit timeUnit) {
RPromise result = new RedissonPromise<>();
String id = generateId();
RFuture future = topic.publishAsync(CLEAR_MSG + ":" + id);
RSemaphore semaphore = getSemaphore(id);
future.onComplete(new ResetListener(semaphore, result) {
@Override
protected RFuture acquireAsync(int value) {
return tryAcquire(semaphore, timeout, timeUnit, value);
}
});
return result;
}
public void destroy() {
topic.removeListener(listenerId);
}
protected abstract RFuture addAndGetAsync(String id);
protected abstract RFuture getAndDeleteAsync(String id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy