org.redisson.RedissonIdGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson Show documentation
Show all versions of redisson Show documentation
Redis Java client with features of In-Memory Data Grid
/**
* Copyright (c) 2013-2024 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 org.redisson.api.RFuture;
import org.redisson.api.RIdGenerator;
import org.redisson.client.codec.LongCodec;
import org.redisson.client.codec.StringCodec;
import org.redisson.client.protocol.RedisCommands;
import org.redisson.command.CommandAsyncExecutor;
import org.redisson.misc.CompletableFutureWrapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Arrays;
import java.util.List;
import java.util.Queue;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicLong;
/**
*
* @author Nikita Koksharov
*
*/
public class RedissonIdGenerator extends RedissonExpirable implements RIdGenerator {
final Logger log = LoggerFactory.getLogger(getClass());
RedissonIdGenerator(CommandAsyncExecutor connectionManager, String name) {
super(connectionManager, name);
}
private String getAllocationSizeName() {
return suffixName(getRawName(), "allocation");
}
@Override
public boolean tryInit(long value, long allocationSize) {
return get(tryInitAsync(value, allocationSize));
}
@Override
public long nextId() {
return get(nextIdAsync());
}
@Override
public RFuture tryInitAsync(long value, long allocationSize) {
return commandExecutor.evalWriteNoRetryAsync(getRawName(), StringCodec.INSTANCE, RedisCommands.EVAL_BOOLEAN,
"redis.call('setnx', KEYS[1], ARGV[1]); "
+ "return redis.call('setnx', KEYS[2], ARGV[2]); ",
Arrays.asList(getRawName(), getAllocationSizeName()), value, allocationSize);
}
private final AtomicLong start = new AtomicLong();
private final AtomicLong counter = new AtomicLong();
private final Queue> queue = new ConcurrentLinkedQueue<>();
private final AtomicBoolean isWorkerActive = new AtomicBoolean();
private void startIdRequestsHandle() {
if (!isWorkerActive.compareAndSet(false, true)) {
return;
}
handleIdRequests();
}
private void handleIdRequests() {
if (getServiceManager().isShuttingDown()) {
return;
}
if (queue.peek() == null) {
isWorkerActive.set(false);
if (!queue.isEmpty()) {
startIdRequestsHandle();
}
return;
}
long v = counter.decrementAndGet();
if (v >= 0) {
CompletableFuture pp = queue.poll();
if (pp != null) {
pp.complete(start.incrementAndGet());
handleIdRequests();
} else {
counter.incrementAndGet();
isWorkerActive.set(false);
if (!queue.isEmpty()) {
startIdRequestsHandle();
}
}
} else {
RFuture> future = commandExecutor.evalWriteAsync(getRawName(), LongCodec.INSTANCE, RedisCommands.EVAL_LIST,
"local allocationSize = redis.call('get', KEYS[2]); " +
"if allocationSize == false then " +
"allocationSize = 5000; " +
"redis.call('set', KEYS[2], allocationSize);" +
"end;" +
"local value = redis.call('get', KEYS[1]); " +
"if value == false then " +
"redis.call('incr', KEYS[1]);" +
"value = 1; " +
"end; " +
"redis.call('incrby', KEYS[1], allocationSize); " +
"return {value, allocationSize}; ",
Arrays.asList(getRawName(), getAllocationSizeName()));
future.whenComplete((res, ex) -> {
if (ex != null) {
if (ex instanceof RedissonShutdownException) {
return;
}
log.error(ex.getMessage(), ex);
commandExecutor.getServiceManager().newTimeout(task -> {
handleIdRequests();
}, 1, TimeUnit.SECONDS);
return;
}
long value = (long) res.get(0);
long allocationSize = (long) res.get(1);
start.set(value);
counter.set(allocationSize);
CompletableFuture pp = queue.poll();
if (pp != null) {
counter.decrementAndGet();
pp.complete(start.get());
}
handleIdRequests();
});
}
}
@Override
public RFuture nextIdAsync() {
CompletableFuture promise = new CompletableFuture<>();
queue.add(promise);
startIdRequestsHandle();
return new CompletableFutureWrapper<>(promise);
}
@Override
public RFuture deleteAsync() {
return deleteAsync(getRawName(), getAllocationSizeName());
}
@Override
public RFuture sizeInMemoryAsync() {
return super.sizeInMemoryAsync(Arrays.asList(getRawName(), getAllocationSizeName()));
}
@Override
public RFuture expireAsync(long timeToLive, TimeUnit timeUnit, String param, String... keys) {
return super.expireAsync(timeToLive, timeUnit, param, getRawName(), getAllocationSizeName());
}
@Override
protected RFuture expireAtAsync(long timestamp, String param, String... keys) {
return super.expireAtAsync(timestamp, param, getRawName(), getAllocationSizeName());
}
@Override
public RFuture clearExpireAsync() {
return clearExpireAsync(getRawName(), getAllocationSizeName());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy